This repository has been archived by the owner on Oct 28, 2020. It is now read-only.
forked from igembitsgoa/wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wikisync.log
3157 lines (3157 loc) · 565 KB
/
wikisync.log
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
2020-10-27 20:39:44,867 : INFO : iGEM_login : Successfully logged in as ballaneypranav.
2020-10-27 20:39:45,703 : INFO : iGEM_URL : css/index.css was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/css/indexCSS?action=raw&ctype=text/css in index.html.
2020-10-27 20:39:45,705 : INFO : iGEM_URL : index.bundle.js was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/index-bundleJS?action=raw&ctype=text/javascript in index.html.
2020-10-27 20:39:45,707 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in index.html.
2020-10-27 20:39:45,707 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in index.html.
2020-10-27 20:39:45,707 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in index.html.
2020-10-27 20:39:45,707 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in index.html.
2020-10-27 20:39:45,708 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in index.html.
2020-10-27 20:39:45,708 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in index.html.
2020-10-27 20:39:45,708 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in index.html.
2020-10-27 20:39:45,708 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in index.html.
2020-10-27 20:39:45,708 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in index.html.
2020-10-27 20:39:45,708 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in index.html.
2020-10-27 20:39:45,709 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in index.html.
2020-10-27 20:39:45,709 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in index.html.
2020-10-27 20:39:45,709 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in index.html.
2020-10-27 20:39:45,709 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in index.html.
2020-10-27 20:39:45,709 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in index.html.
2020-10-27 20:39:45,710 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in index.html.
2020-10-27 20:39:45,710 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in index.html.
2020-10-27 20:39:45,710 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in index.html.
2020-10-27 20:39:45,710 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in index.html.
2020-10-27 20:39:45,710 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/index.html but was not found.
2020-10-27 20:39:45,711 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in index.html.
2020-10-27 20:39:45,711 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in index.html.
2020-10-27 20:39:45,711 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in index.html.
2020-10-27 20:39:45,711 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in index.html.
2020-10-27 20:39:45,711 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in index.html.
2020-10-27 20:39:45,711 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in index.html.
2020-10-27 20:39:45,712 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in index.html.
2020-10-27 20:39:45,712 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in index.html.
2020-10-27 20:39:45,712 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in index.html.
2020-10-27 20:39:45,712 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in index.html.
2020-10-27 20:39:45,712 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in index.html.
2020-10-27 20:39:45,712 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in index.html.
2020-10-27 20:39:45,713 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in index.html.
2020-10-27 20:39:45,713 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in index.html.
2020-10-27 20:39:45,713 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in index.html.
2020-10-27 20:39:45,713 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in index.html.
2020-10-27 20:39:45,713 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in index.html.
2020-10-27 20:39:45,713 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in index.html.
2020-10-27 20:39:45,713 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in index.html.
2020-10-27 20:39:45,714 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in index.html.
2020-10-27 20:39:45,714 : INFO : iGEM_URL : /Sample was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Sample in index.html.
2020-10-27 20:39:45,714 : INFO : iGEM_URL : /Acknowledgements was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Acknowledgements in index.html.
2020-10-27 20:39:45,714 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in index.html.
2020-10-27 20:39:45,714 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in index.html.
2020-10-27 20:39:45,714 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in index.html.
2020-10-27 20:39:45,715 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in index.html.
2020-10-27 20:39:45,715 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in index.html.
2020-10-27 20:39:45,715 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in index.html.
2020-10-27 20:39:45,715 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in index.html.
2020-10-27 20:39:45,715 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in index.html.
2020-10-27 20:39:45,715 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in index.html.
2020-10-27 20:39:45,716 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in index.html.
2020-10-27 20:39:45,716 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in index.html.
2020-10-27 20:39:45,716 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in index.html.
2020-10-27 20:39:45,716 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in index.html.
2020-10-27 20:39:45,716 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in index.html.
2020-10-27 20:39:45,716 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in index.html.
2020-10-27 20:39:45,717 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in index.html.
2020-10-27 20:39:45,717 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in index.html.
2020-10-27 20:39:45,717 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in index.html.
2020-10-27 20:39:45,717 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in index.html.
2020-10-27 20:39:45,717 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in index.html.
2020-10-27 20:39:45,717 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in index.html.
2020-10-27 20:39:45,718 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in index.html.
2020-10-27 20:39:45,718 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in index.html.
2020-10-27 20:39:45,718 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in index.html.
2020-10-27 20:39:45,718 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in index.html.
2020-10-27 20:39:45,718 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/index.html but was not found.
2020-10-27 20:39:45,718 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in index.html.
2020-10-27 20:39:45,735 : INFO : iGEM_URL : ./assets/img/Home--Design.svg was changed to https://2020.igem.org/wiki/images/8/87/T--BITSPilani-Goa_India--img--Home--Design.svg in index.html.
2020-10-27 20:39:45,735 : INFO : iGEM_URL : ./assets/img/Home--Design.svg was changed to https://2020.igem.org/wiki/images/8/87/T--BITSPilani-Goa_India--img--Home--Design.svg in index.html.
2020-10-27 20:39:45,735 : INFO : iGEM_URL : ./assets/img/Home--Human-Practices.svg was changed to https://2020.igem.org/wiki/images/3/31/T--BITSPilani-Goa_India--img--Home--Human-Practices.svg in index.html.
2020-10-27 20:39:45,735 : INFO : iGEM_URL : ./assets/img/Home--Human-Practices.svg was changed to https://2020.igem.org/wiki/images/3/31/T--BITSPilani-Goa_India--img--Home--Human-Practices.svg in index.html.
2020-10-27 20:39:45,735 : INFO : iGEM_URL : ./assets/img/Home--Modelling.svg was changed to https://2020.igem.org/wiki/images/4/4c/T--BITSPilani-Goa_India--img--Home--Modelling.svg in index.html.
2020-10-27 20:39:45,735 : INFO : iGEM_URL : ./assets/img/Home--Modelling.svg was changed to https://2020.igem.org/wiki/images/4/4c/T--BITSPilani-Goa_India--img--Home--Modelling.svg in index.html.
2020-10-27 20:39:45,736 : INFO : iGEM_URL : ./assets/img/Home--WikiSync.svg was changed to https://2020.igem.org/wiki/images/4/4f/T--BITSPilani-Goa_India--img--Home--WikiSync.svg in index.html.
2020-10-27 20:39:45,736 : INFO : iGEM_URL : ./assets/img/Home--WikiSync.svg was changed to https://2020.igem.org/wiki/images/4/4f/T--BITSPilani-Goa_India--img--Home--WikiSync.svg in index.html.
2020-10-27 20:39:45,754 : INFO : iGEM_URL : /assets/video/homepage.mp4 was changed to https://2020.igem.org/wiki/images/d/db/T--BITSPilani-Goa_India--video--homepage.mp4 in index.html.
2020-10-27 20:39:45,770 : INFO : build_and_upload : Contents of index.html have been uploaded previously. Skipping.
2020-10-27 20:39:45,825 : INFO : iGEM_URL : ../css/content.css was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/css/contentCSS?action=raw&ctype=text/css in Design/index.html.
2020-10-27 20:39:45,827 : INFO : iGEM_URL : ../content.bundle.js was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/content-bundleJS?action=raw&ctype=text/javascript in Design/index.html.
2020-10-27 20:39:45,829 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Design/index.html.
2020-10-27 20:39:45,829 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Design/index.html.
2020-10-27 20:39:45,830 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Design/index.html.
2020-10-27 20:39:45,830 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Design/index.html.
2020-10-27 20:39:45,830 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Design/index.html.
2020-10-27 20:39:45,830 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Design/index.html.
2020-10-27 20:39:45,830 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Design/index.html.
2020-10-27 20:39:45,830 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Design/index.html.
2020-10-27 20:39:45,831 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Design/index.html.
2020-10-27 20:39:45,831 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Design/index.html.
2020-10-27 20:39:45,831 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Design/index.html.
2020-10-27 20:39:45,831 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Design/index.html.
2020-10-27 20:39:45,831 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Design/index.html.
2020-10-27 20:39:45,831 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Design/index.html.
2020-10-27 20:39:45,832 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Design/index.html.
2020-10-27 20:39:45,832 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Design/index.html.
2020-10-27 20:39:45,832 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Design/index.html.
2020-10-27 20:39:45,832 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Design/index.html.
2020-10-27 20:39:45,832 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Design/index.html.
2020-10-27 20:39:45,833 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Design/index.html but was not found.
2020-10-27 20:39:45,833 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Design/index.html.
2020-10-27 20:39:45,833 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Design/index.html.
2020-10-27 20:39:45,833 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Design/index.html.
2020-10-27 20:39:45,833 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Design/index.html.
2020-10-27 20:39:45,833 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Design/index.html.
2020-10-27 20:39:45,834 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Design/index.html.
2020-10-27 20:39:45,834 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Design/index.html.
2020-10-27 20:39:45,834 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Design/index.html.
2020-10-27 20:39:45,834 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Design/index.html.
2020-10-27 20:39:45,834 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Design/index.html.
2020-10-27 20:39:45,834 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Design/index.html.
2020-10-27 20:39:45,835 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Design/index.html.
2020-10-27 20:39:45,835 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Design/index.html.
2020-10-27 20:39:45,835 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Design/index.html.
2020-10-27 20:39:45,835 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Design/index.html.
2020-10-27 20:39:45,835 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Design/index.html.
2020-10-27 20:39:45,835 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Design/index.html.
2020-10-27 20:39:45,836 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Design/index.html.
2020-10-27 20:39:45,836 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Design/index.html.
2020-10-27 20:39:45,836 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Design/index.html.
2020-10-27 20:39:45,836 : INFO : iGEM_URL : /Sample was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Sample in Design/index.html.
2020-10-27 20:39:45,836 : INFO : iGEM_URL : /Acknowledgements was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Acknowledgements in Design/index.html.
2020-10-27 20:39:45,836 : WARNING : iGEM_URL : dist/Appendix#ANoteOnInvertases/index.html is referenced in dist/Design/index.html but was not found.
2020-10-27 20:39:45,837 : INFO : iGEM_URL : /Appendix#ANoteOnInvertases was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix#ANoteOnInvertases in Design/index.html.
2020-10-27 20:39:45,837 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Design/index.html.
2020-10-27 20:39:45,837 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Design/index.html.
2020-10-27 20:39:45,837 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Design/index.html.
2020-10-27 20:39:45,838 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Design/index.html.
2020-10-27 20:39:45,838 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Design/index.html.
2020-10-27 20:39:45,838 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Design/index.html.
2020-10-27 20:39:45,838 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Design/index.html.
2020-10-27 20:39:45,838 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Design/index.html.
2020-10-27 20:39:45,838 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Design/index.html.
2020-10-27 20:39:45,839 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Design/index.html.
2020-10-27 20:39:45,839 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Design/index.html.
2020-10-27 20:39:45,839 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Design/index.html.
2020-10-27 20:39:45,839 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Design/index.html.
2020-10-27 20:39:45,839 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Design/index.html.
2020-10-27 20:39:45,839 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Design/index.html.
2020-10-27 20:39:45,839 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Design/index.html.
2020-10-27 20:39:45,840 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Design/index.html.
2020-10-27 20:39:45,840 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Design/index.html.
2020-10-27 20:39:45,840 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Design/index.html.
2020-10-27 20:39:45,840 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Design/index.html.
2020-10-27 20:39:45,840 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Design/index.html.
2020-10-27 20:39:45,840 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Design/index.html but was not found.
2020-10-27 20:39:45,841 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Design/index.html.
2020-10-27 20:39:45,856 : INFO : iGEM_URL : ../assets/img/Design--Biosensor_NoFruc.gif was changed to https://2020.igem.org/wiki/images/0/0c/T--BITSPilani-Goa_India--img--Design--Biosensor_NoFruc.gif in Design/index.html.
2020-10-27 20:39:45,856 : INFO : iGEM_URL : ../assets/img/Design--Biosensor_WithFruc.gif was changed to https://2020.igem.org/wiki/images/b/b6/T--BITSPilani-Goa_India--img--Design--Biosensor_WithFruc.gif in Design/index.html.
2020-10-27 20:39:45,856 : INFO : iGEM_URL : ../assets/img/Design--KS_NoOxy.png was changed to https://2020.igem.org/wiki/images/e/ee/T--BITSPilani-Goa_India--img--Design--KS_NoOxy.png in Design/index.html.
2020-10-27 20:39:45,856 : INFO : iGEM_URL : ../assets/img/Design--KS_Oxy.png was changed to https://2020.igem.org/wiki/images/a/aa/T--BITSPilani-Goa_India--img--Design--KS_Oxy.png in Design/index.html.
2020-10-27 20:39:45,857 : INFO : iGEM_URL : ../assets/img/Design--BiosensorPlasmid.png was changed to https://2020.igem.org/wiki/images/8/88/T--BITSPilani-Goa_India--img--Design--BiosensorPlasmid.png in Design/index.html.
2020-10-27 20:39:45,857 : INFO : iGEM_URL : ../assets/img/Design--KSPlasmid.png was changed to https://2020.igem.org/wiki/images/c/cc/T--BITSPilani-Goa_India--img--Design--KSPlasmid.png in Design/index.html.
2020-10-27 20:39:45,880 : INFO : iGEM_URL : ../assets/img/Design--header.svg was changed to https://2020.igem.org/wiki/images/7/72/T--BITSPilani-Goa_India--img--Design--header.svg in Design/index.html.
2020-10-27 20:39:45,886 : INFO : build_and_upload : Contents of Design/index.html have been uploaded previously. Skipping.
2020-10-27 20:39:45,940 : INFO : iGEM_URL : ../css/content.css was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/css/contentCSS?action=raw&ctype=text/css in Education/index.html.
2020-10-27 20:39:45,942 : INFO : iGEM_URL : ../content.bundle.js was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/content-bundleJS?action=raw&ctype=text/javascript in Education/index.html.
2020-10-27 20:39:45,944 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Education/index.html.
2020-10-27 20:39:45,944 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Education/index.html.
2020-10-27 20:39:45,944 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Education/index.html.
2020-10-27 20:39:45,945 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Education/index.html.
2020-10-27 20:39:45,945 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Education/index.html.
2020-10-27 20:39:45,945 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Education/index.html.
2020-10-27 20:39:45,945 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Education/index.html.
2020-10-27 20:39:45,945 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Education/index.html.
2020-10-27 20:39:45,946 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Education/index.html.
2020-10-27 20:39:45,946 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Education/index.html.
2020-10-27 20:39:45,946 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Education/index.html.
2020-10-27 20:39:45,946 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Education/index.html.
2020-10-27 20:39:45,946 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Education/index.html.
2020-10-27 20:39:45,946 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Education/index.html.
2020-10-27 20:39:45,947 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Education/index.html.
2020-10-27 20:39:45,947 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Education/index.html.
2020-10-27 20:39:45,947 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Education/index.html.
2020-10-27 20:39:45,947 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Education/index.html.
2020-10-27 20:39:45,947 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Education/index.html.
2020-10-27 20:39:45,947 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Education/index.html but was not found.
2020-10-27 20:39:45,948 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Education/index.html.
2020-10-27 20:39:45,948 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Education/index.html.
2020-10-27 20:39:45,948 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Education/index.html.
2020-10-27 20:39:45,948 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Education/index.html.
2020-10-27 20:39:45,948 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Education/index.html.
2020-10-27 20:39:45,948 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Education/index.html.
2020-10-27 20:39:45,949 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Education/index.html.
2020-10-27 20:39:45,949 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Education/index.html.
2020-10-27 20:39:45,949 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Education/index.html.
2020-10-27 20:39:45,949 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Education/index.html.
2020-10-27 20:39:45,949 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Education/index.html.
2020-10-27 20:39:45,949 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Education/index.html.
2020-10-27 20:39:45,950 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Education/index.html.
2020-10-27 20:39:45,950 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Education/index.html.
2020-10-27 20:39:45,950 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Education/index.html.
2020-10-27 20:39:45,950 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Education/index.html.
2020-10-27 20:39:45,950 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Education/index.html.
2020-10-27 20:39:45,950 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Education/index.html.
2020-10-27 20:39:45,951 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Education/index.html.
2020-10-27 20:39:45,951 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Education/index.html.
2020-10-27 20:39:45,951 : INFO : iGEM_URL : /Sample was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Sample in Education/index.html.
2020-10-27 20:39:45,951 : INFO : iGEM_URL : /Acknowledgements was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Acknowledgements in Education/index.html.
2020-10-27 20:39:45,951 : INFO : iGEM_URL : ../assets/docs/Education--Country Policy Collaboration.pdf was changed to https://2020.igem.org/wiki/images/9/9d/T--BITSPilani-Goa_India--docs--Education--Country_Policy_Collaboration.pdf in Education/index.html.
2020-10-27 20:39:45,951 : WARNING : iGEM_URL : dist/Collaborations#TheAllIndiaiGEMMeet2020/index.html is referenced in dist/Education/index.html but was not found.
2020-10-27 20:39:45,952 : INFO : iGEM_URL : /Collaborations#TheAllIndiaiGEMMeet2020 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations#TheAllIndiaiGEMMeet2020 in Education/index.html.
2020-10-27 20:39:45,952 : INFO : iGEM_URL : ../assets/docs/Education--CTEHandout.pdf was changed to https://2020.igem.org/wiki/images/d/d1/T--BITSPilani-Goa_India--docs--Education--CTEHandout.pdf in Education/index.html.
2020-10-27 20:39:45,952 : INFO : iGEM_URL : ../assets/docs/Accessibility--Start A Team.pdf was changed to https://2020.igem.org/wiki/images/8/86/T--BITSPilani-Goa_India--docs--Accessibility--Start_A_Team.pdf in Education/index.html.
2020-10-27 20:39:45,952 : INFO : iGEM_URL : ../assets/docs/Accessibility--Navigating iGEM.pdf was changed to https://2020.igem.org/wiki/images/9/90/T--BITSPilani-Goa_India--docs--Accessibility--Navigating_iGEM.pdf in Education/index.html.
2020-10-27 20:39:45,952 : INFO : iGEM_URL : ../assets/docs/Accessibility--Funding.pdf was changed to https://2020.igem.org/wiki/images/0/09/T--BITSPilani-Goa_India--docs--Accessibility--Funding.pdf in Education/index.html.
2020-10-27 20:39:45,952 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Education/index.html.
2020-10-27 20:39:45,953 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Education/index.html.
2020-10-27 20:39:45,953 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Education/index.html.
2020-10-27 20:39:45,953 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Education/index.html.
2020-10-27 20:39:45,953 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Education/index.html.
2020-10-27 20:39:45,953 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Education/index.html.
2020-10-27 20:39:45,953 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Education/index.html.
2020-10-27 20:39:45,954 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Education/index.html.
2020-10-27 20:39:45,954 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Education/index.html.
2020-10-27 20:39:45,954 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Education/index.html.
2020-10-27 20:39:45,954 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Education/index.html.
2020-10-27 20:39:45,954 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Education/index.html.
2020-10-27 20:39:45,955 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Education/index.html.
2020-10-27 20:39:45,955 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Education/index.html.
2020-10-27 20:39:45,955 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Education/index.html.
2020-10-27 20:39:45,955 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Education/index.html.
2020-10-27 20:39:45,955 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Education/index.html.
2020-10-27 20:39:45,955 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Education/index.html.
2020-10-27 20:39:45,956 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Education/index.html.
2020-10-27 20:39:45,956 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Education/index.html.
2020-10-27 20:39:45,956 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Education/index.html but was not found.
2020-10-27 20:39:45,956 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Education/index.html.
2020-10-27 20:39:45,973 : INFO : iGEM_URL : ../assets/img/Education--survey11.png was changed to https://2020.igem.org/wiki/images/f/f7/T--BITSPilani-Goa_India--img--Education--survey11.png in Education/index.html.
2020-10-27 20:39:45,973 : INFO : iGEM_URL : ../assets/img/Education--survey10.png was changed to https://2020.igem.org/wiki/images/3/3f/T--BITSPilani-Goa_India--img--Education--survey10.png in Education/index.html.
2020-10-27 20:39:45,974 : INFO : iGEM_URL : ../assets/img/Education--survey9.png was changed to https://2020.igem.org/wiki/images/5/5a/T--BITSPilani-Goa_India--img--Education--survey9.png in Education/index.html.
2020-10-27 20:39:45,974 : INFO : iGEM_URL : ../assets/img/Education--survey8.png was changed to https://2020.igem.org/wiki/images/1/1e/T--BITSPilani-Goa_India--img--Education--survey8.png in Education/index.html.
2020-10-27 20:39:45,974 : INFO : iGEM_URL : ../assets/img/Education--survey7.png was changed to https://2020.igem.org/wiki/images/e/eb/T--BITSPilani-Goa_India--img--Education--survey7.png in Education/index.html.
2020-10-27 20:39:45,974 : INFO : iGEM_URL : ../assets/img/Education--survey6.png was changed to https://2020.igem.org/wiki/images/d/de/T--BITSPilani-Goa_India--img--Education--survey6.png in Education/index.html.
2020-10-27 20:39:45,974 : INFO : iGEM_URL : ../assets/img/Education--survey5.png was changed to https://2020.igem.org/wiki/images/9/9c/T--BITSPilani-Goa_India--img--Education--survey5.png in Education/index.html.
2020-10-27 20:39:45,975 : INFO : iGEM_URL : ../assets/img/Education--survey4.png was changed to https://2020.igem.org/wiki/images/9/9c/T--BITSPilani-Goa_India--img--Education--survey4.png in Education/index.html.
2020-10-27 20:39:45,975 : INFO : iGEM_URL : ../assets/img/Education--survey3.png was changed to https://2020.igem.org/wiki/images/2/2c/T--BITSPilani-Goa_India--img--Education--survey3.png in Education/index.html.
2020-10-27 20:39:45,975 : INFO : iGEM_URL : ../assets/img/Education--survey2.png was changed to https://2020.igem.org/wiki/images/4/47/T--BITSPilani-Goa_India--img--Education--survey2.png in Education/index.html.
2020-10-27 20:39:45,975 : INFO : iGEM_URL : ../assets/img/Education--survey1.png was changed to https://2020.igem.org/wiki/images/e/ed/T--BITSPilani-Goa_India--img--Education--survey1.png in Education/index.html.
2020-10-27 20:39:45,975 : INFO : iGEM_URL : ../assets/img/Education--Abhigyaan-1.png was changed to https://2020.igem.org/wiki/images/9/92/T--BITSPilani-Goa_India--img--Education--Abhigyaan-1.png in Education/index.html.
2020-10-27 20:39:45,975 : INFO : iGEM_URL : ../assets/img/Education--Abhigyaan-2.png was changed to https://2020.igem.org/wiki/images/7/75/T--BITSPilani-Goa_India--img--Education--Abhigyaan-2.png in Education/index.html.
2020-10-27 20:39:45,976 : INFO : iGEM_URL : ../assets/img/Education--pittsburgh.png was changed to https://2020.igem.org/wiki/images/a/a8/T--BITSPilani-Goa_India--img--Education--pittsburgh.png in Education/index.html.
2020-10-27 20:39:45,976 : INFO : iGEM_URL : ../assets/img/Education--HumansOfiGEM.png was changed to https://2020.igem.org/wiki/images/b/b5/T--BITSPilani-Goa_India--img--Education--HumansOfiGEM.png in Education/index.html.
2020-10-27 20:39:45,976 : INFO : iGEM_URL : ../assets/img/Education--HoICalgary.png was changed to https://2020.igem.org/wiki/images/c/ce/T--BITSPilani-Goa_India--img--Education--HoICalgary.png in Education/index.html.
2020-10-27 20:39:45,976 : INFO : iGEM_URL : ../assets/img/Education--HoIMSP.jpeg was changed to https://2020.igem.org/wiki/images/e/e3/T--BITSPilani-Goa_India--img--Education--HoIMSP.jpeg in Education/index.html.
2020-10-27 20:39:45,976 : INFO : iGEM_URL : ../assets/img/Education--English_Prob.png was changed to https://2020.igem.org/wiki/images/b/bc/T--BITSPilani-Goa_India--img--Education--English_Prob.png in Education/index.html.
2020-10-27 20:39:45,977 : INFO : iGEM_URL : ../assets/img/Education--English_Sol.png was changed to https://2020.igem.org/wiki/images/8/86/T--BITSPilani-Goa_India--img--Education--English_Sol.png in Education/index.html.
2020-10-27 20:39:45,977 : INFO : iGEM_URL : ../assets/img/Education--Hindi_Prob.png was changed to https://2020.igem.org/wiki/images/2/29/T--BITSPilani-Goa_India--img--Education--Hindi_Prob.png in Education/index.html.
2020-10-27 20:39:45,977 : INFO : iGEM_URL : ../assets/img/Education--Hindi_Sol.png was changed to https://2020.igem.org/wiki/images/a/aa/T--BITSPilani-Goa_India--img--Education--Hindi_Sol.png in Education/index.html.
2020-10-27 20:39:45,977 : INFO : iGEM_URL : ../assets/img/Education--Marathi_Prob.png was changed to https://2020.igem.org/wiki/images/b/b0/T--BITSPilani-Goa_India--img--Education--Marathi_Prob.png in Education/index.html.
2020-10-27 20:39:45,977 : INFO : iGEM_URL : ../assets/img/Education--Marathi_Sol.png was changed to https://2020.igem.org/wiki/images/d/d5/T--BITSPilani-Goa_India--img--Education--Marathi_Sol.png in Education/index.html.
2020-10-27 20:39:45,977 : INFO : iGEM_URL : ../assets/img/Education--Tamil_Prob.png was changed to https://2020.igem.org/wiki/images/e/ea/T--BITSPilani-Goa_India--img--Education--Tamil_Prob.png in Education/index.html.
2020-10-27 20:39:45,978 : INFO : iGEM_URL : ../assets/img/Education--Tamil_Sol.png was changed to https://2020.igem.org/wiki/images/e/e0/T--BITSPilani-Goa_India--img--Education--Tamil_Sol.png in Education/index.html.
2020-10-27 20:39:45,978 : INFO : iGEM_URL : ../assets/img/Education--Bengali_Prob.png was changed to https://2020.igem.org/wiki/images/5/5f/T--BITSPilani-Goa_India--img--Education--Bengali_Prob.png in Education/index.html.
2020-10-27 20:39:45,978 : INFO : iGEM_URL : ../assets/img/Education--Bengali_Sol.png was changed to https://2020.igem.org/wiki/images/c/c2/T--BITSPilani-Goa_India--img--Education--Bengali_Sol.png in Education/index.html.
2020-10-27 20:39:45,978 : INFO : iGEM_URL : ../assets/img/Education--Kannada_Prob.png was changed to https://2020.igem.org/wiki/images/3/38/T--BITSPilani-Goa_India--img--Education--Kannada_Prob.png in Education/index.html.
2020-10-27 20:39:45,978 : INFO : iGEM_URL : ../assets/img/Education--Kannada_Sol.png was changed to https://2020.igem.org/wiki/images/9/96/T--BITSPilani-Goa_India--img--Education--Kannada_Sol.png in Education/index.html.
2020-10-27 20:39:45,979 : INFO : iGEM_URL : ../assets/img/Education--French_Prob.png was changed to https://2020.igem.org/wiki/images/8/85/T--BITSPilani-Goa_India--img--Education--French_Prob.png in Education/index.html.
2020-10-27 20:39:45,979 : INFO : iGEM_URL : ../assets/img/Education--French_Sol.png was changed to https://2020.igem.org/wiki/images/d/d1/T--BITSPilani-Goa_India--img--Education--French_Sol.png in Education/index.html.
2020-10-27 20:39:45,979 : INFO : iGEM_URL : ../assets/img/Education--German_Prob.png was changed to https://2020.igem.org/wiki/images/f/f4/T--BITSPilani-Goa_India--img--Education--German_Prob.png in Education/index.html.
2020-10-27 20:39:45,979 : INFO : iGEM_URL : ../assets/img/Education--German_Sol.png was changed to https://2020.igem.org/wiki/images/4/4d/T--BITSPilani-Goa_India--img--Education--German_Sol.png in Education/index.html.
2020-10-27 20:39:45,979 : INFO : iGEM_URL : ../assets/img/Education--InnerWheel.png was changed to https://2020.igem.org/wiki/images/d/de/T--BITSPilani-Goa_India--img--Education--InnerWheel.png in Education/index.html.
2020-10-27 20:39:45,979 : INFO : iGEM_URL : ../assets/img/Dance--PassTheMask.png was changed to https://2020.igem.org/wiki/images/7/7a/T--BITSPilani-Goa_India--img--Dance--PassTheMask.png in Education/index.html.
2020-10-27 20:39:45,995 : INFO : iGEM_URL : ../assets/docs/Education--Country Policy Collaboration.pdf was changed to https://2020.igem.org/wiki/images/9/9d/T--BITSPilani-Goa_India--docs--Education--Country_Policy_Collaboration.pdf in Education/index.html.
2020-10-27 20:39:45,996 : INFO : iGEM_URL : ../assets/docs/Education--CTEHandout.pdf was changed to https://2020.igem.org/wiki/images/d/d1/T--BITSPilani-Goa_India--docs--Education--CTEHandout.pdf in Education/index.html.
2020-10-27 20:39:45,996 : INFO : iGEM_URL : ../assets/docs/Accessibility--Start A Team.pdf was changed to https://2020.igem.org/wiki/images/8/86/T--BITSPilani-Goa_India--docs--Accessibility--Start_A_Team.pdf in Education/index.html.
2020-10-27 20:39:45,996 : INFO : iGEM_URL : ../assets/docs/Accessibility--Navigating iGEM.pdf was changed to https://2020.igem.org/wiki/images/9/90/T--BITSPilani-Goa_India--docs--Accessibility--Navigating_iGEM.pdf in Education/index.html.
2020-10-27 20:39:45,996 : INFO : iGEM_URL : ../assets/docs/Accessibility--Funding.pdf was changed to https://2020.igem.org/wiki/images/0/09/T--BITSPilani-Goa_India--docs--Accessibility--Funding.pdf in Education/index.html.
2020-10-27 20:39:46,000 : INFO : iGEM_URL : ../assets/video/Accessibility--ASL.mp4 was changed to https://2020.igem.org/wiki/images/9/98/T--BITSPilani-Goa_India--video--Accessibility--ASL.mp4 in Education/index.html.
2020-10-27 20:39:46,007 : INFO : iGEM_URL : ../assets/img/Education--header.svg was changed to https://2020.igem.org/wiki/images/a/a3/T--BITSPilani-Goa_India--img--Education--header.svg in Education/index.html.
2020-10-27 20:39:46,015 : INFO : build_and_upload : Contents of Education/index.html have been uploaded previously. Skipping.
2020-10-27 20:39:46,059 : INFO : iGEM_URL : ../css/notebook.css was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/css/notebookCSS?action=raw&ctype=text/css in Notebook/index.html.
2020-10-27 20:39:46,061 : INFO : iGEM_URL : ../notebook.bundle.js was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/notebook-bundleJS?action=raw&ctype=text/javascript in Notebook/index.html.
2020-10-27 20:39:46,063 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Notebook/index.html.
2020-10-27 20:39:46,063 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Notebook/index.html.
2020-10-27 20:39:46,063 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Notebook/index.html.
2020-10-27 20:39:46,064 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Notebook/index.html.
2020-10-27 20:39:46,064 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Notebook/index.html.
2020-10-27 20:39:46,064 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Notebook/index.html.
2020-10-27 20:39:46,064 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Notebook/index.html.
2020-10-27 20:39:46,064 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Notebook/index.html.
2020-10-27 20:39:46,064 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Notebook/index.html.
2020-10-27 20:39:46,065 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Notebook/index.html.
2020-10-27 20:39:46,065 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Notebook/index.html.
2020-10-27 20:39:46,065 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Notebook/index.html.
2020-10-27 20:39:46,065 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Notebook/index.html.
2020-10-27 20:39:46,065 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Notebook/index.html.
2020-10-27 20:39:46,065 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Notebook/index.html.
2020-10-27 20:39:46,066 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Notebook/index.html.
2020-10-27 20:39:46,066 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Notebook/index.html.
2020-10-27 20:39:46,066 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Notebook/index.html.
2020-10-27 20:39:46,066 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Notebook/index.html.
2020-10-27 20:39:46,066 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Notebook/index.html but was not found.
2020-10-27 20:39:46,066 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Notebook/index.html.
2020-10-27 20:39:46,067 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Notebook/index.html.
2020-10-27 20:39:46,067 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Notebook/index.html.
2020-10-27 20:39:46,067 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Notebook/index.html.
2020-10-27 20:39:46,067 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Notebook/index.html.
2020-10-27 20:39:46,067 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Notebook/index.html.
2020-10-27 20:39:46,067 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Notebook/index.html.
2020-10-27 20:39:46,068 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Notebook/index.html.
2020-10-27 20:39:46,068 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Notebook/index.html.
2020-10-27 20:39:46,068 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Notebook/index.html.
2020-10-27 20:39:46,068 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Notebook/index.html.
2020-10-27 20:39:46,068 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Notebook/index.html.
2020-10-27 20:39:46,068 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Notebook/index.html.
2020-10-27 20:39:46,068 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Notebook/index.html.
2020-10-27 20:39:46,069 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Notebook/index.html.
2020-10-27 20:39:46,069 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Notebook/index.html.
2020-10-27 20:39:46,069 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Notebook/index.html.
2020-10-27 20:39:46,069 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Notebook/index.html.
2020-10-27 20:39:46,069 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Notebook/index.html.
2020-10-27 20:39:46,069 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Notebook/index.html.
2020-10-27 20:39:46,070 : INFO : iGEM_URL : /Sample was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Sample in Notebook/index.html.
2020-10-27 20:39:46,070 : INFO : iGEM_URL : /Acknowledgements was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Acknowledgements in Notebook/index.html.
2020-10-27 20:39:46,070 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Notebook/index.html.
2020-10-27 20:39:46,070 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Notebook/index.html.
2020-10-27 20:39:46,070 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Notebook/index.html.
2020-10-27 20:39:46,070 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Notebook/index.html.
2020-10-27 20:39:46,071 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Notebook/index.html.
2020-10-27 20:39:46,071 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Notebook/index.html.
2020-10-27 20:39:46,071 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Notebook/index.html.
2020-10-27 20:39:46,071 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Notebook/index.html.
2020-10-27 20:39:46,071 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Notebook/index.html.
2020-10-27 20:39:46,071 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Notebook/index.html.
2020-10-27 20:39:46,072 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Notebook/index.html.
2020-10-27 20:39:46,072 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Notebook/index.html.
2020-10-27 20:39:46,072 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Notebook/index.html.
2020-10-27 20:39:46,072 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Notebook/index.html.
2020-10-27 20:39:46,072 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Notebook/index.html.
2020-10-27 20:39:46,072 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Notebook/index.html.
2020-10-27 20:39:46,073 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Notebook/index.html.
2020-10-27 20:39:46,073 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Notebook/index.html.
2020-10-27 20:39:46,073 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Notebook/index.html.
2020-10-27 20:39:46,073 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Notebook/index.html.
2020-10-27 20:39:46,073 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Notebook/index.html but was not found.
2020-10-27 20:39:46,073 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Notebook/index.html.
2020-10-27 20:39:46,112 : INFO : iGEM_URL : ../assets/img/Notebook--header.svg was changed to https://2020.igem.org/wiki/images/5/5d/T--BITSPilani-Goa_India--img--Notebook--header.svg in Notebook/index.html.
2020-10-27 20:39:46,117 : INFO : build_and_upload : Contents of Notebook/index.html have been uploaded previously. Skipping.
2020-10-27 20:39:46,173 : INFO : iGEM_URL : ../css/engineering.css was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/css/engineeringCSS?action=raw&ctype=text/css in Engineering/index.html.
2020-10-27 20:39:46,174 : INFO : iGEM_URL : ../engineering.bundle.js was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/engineering-bundleJS?action=raw&ctype=text/javascript in Engineering/index.html.
2020-10-27 20:39:46,176 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Engineering/index.html.
2020-10-27 20:39:46,177 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Engineering/index.html.
2020-10-27 20:39:46,177 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Engineering/index.html.
2020-10-27 20:39:46,177 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Engineering/index.html.
2020-10-27 20:39:46,177 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Engineering/index.html.
2020-10-27 20:39:46,177 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Engineering/index.html.
2020-10-27 20:39:46,177 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Engineering/index.html.
2020-10-27 20:39:46,178 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Engineering/index.html.
2020-10-27 20:39:46,178 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Engineering/index.html.
2020-10-27 20:39:46,178 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Engineering/index.html.
2020-10-27 20:39:46,178 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Engineering/index.html.
2020-10-27 20:39:46,178 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Engineering/index.html.
2020-10-27 20:39:46,178 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Engineering/index.html.
2020-10-27 20:39:46,179 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Engineering/index.html.
2020-10-27 20:39:46,179 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Engineering/index.html.
2020-10-27 20:39:46,179 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Engineering/index.html.
2020-10-27 20:39:46,179 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Engineering/index.html.
2020-10-27 20:39:46,179 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Engineering/index.html.
2020-10-27 20:39:46,179 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Engineering/index.html.
2020-10-27 20:39:46,180 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Engineering/index.html but was not found.
2020-10-27 20:39:46,180 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Engineering/index.html.
2020-10-27 20:39:46,180 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Engineering/index.html.
2020-10-27 20:39:46,180 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Engineering/index.html.
2020-10-27 20:39:46,180 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Engineering/index.html.
2020-10-27 20:39:46,181 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Engineering/index.html.
2020-10-27 20:39:46,181 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Engineering/index.html.
2020-10-27 20:39:46,181 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Engineering/index.html.
2020-10-27 20:39:46,181 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Engineering/index.html.
2020-10-27 20:39:46,181 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Engineering/index.html.
2020-10-27 20:39:46,181 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Engineering/index.html.
2020-10-27 20:39:46,182 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Engineering/index.html.
2020-10-27 20:39:46,182 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Engineering/index.html.
2020-10-27 20:39:46,182 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Engineering/index.html.
2020-10-27 20:39:46,182 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Engineering/index.html.
2020-10-27 20:39:46,182 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Engineering/index.html.
2020-10-27 20:39:46,182 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Engineering/index.html.
2020-10-27 20:39:46,183 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Engineering/index.html.
2020-10-27 20:39:46,183 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Engineering/index.html.
2020-10-27 20:39:46,183 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Engineering/index.html.
2020-10-27 20:39:46,183 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Engineering/index.html.
2020-10-27 20:39:46,183 : INFO : iGEM_URL : /Sample was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Sample in Engineering/index.html.
2020-10-27 20:39:46,183 : INFO : iGEM_URL : /Acknowledgements was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Acknowledgements in Engineering/index.html.
2020-10-27 20:39:46,184 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Engineering/index.html.
2020-10-27 20:39:46,184 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Engineering/index.html.
2020-10-27 20:39:46,184 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Engineering/index.html.
2020-10-27 20:39:46,184 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Engineering/index.html.
2020-10-27 20:39:46,184 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Engineering/index.html.
2020-10-27 20:39:46,184 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Engineering/index.html.
2020-10-27 20:39:46,184 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Engineering/index.html.
2020-10-27 20:39:46,185 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Engineering/index.html.
2020-10-27 20:39:46,185 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Engineering/index.html.
2020-10-27 20:39:46,185 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Engineering/index.html.
2020-10-27 20:39:46,185 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Engineering/index.html.
2020-10-27 20:39:46,185 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Engineering/index.html.
2020-10-27 20:39:46,185 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Engineering/index.html.
2020-10-27 20:39:46,186 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Engineering/index.html.
2020-10-27 20:39:46,186 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Engineering/index.html.
2020-10-27 20:39:46,186 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Engineering/index.html.
2020-10-27 20:39:46,186 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Engineering/index.html.
2020-10-27 20:39:46,186 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Engineering/index.html.
2020-10-27 20:39:46,186 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Engineering/index.html.
2020-10-27 20:39:46,187 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Engineering/index.html.
2020-10-27 20:39:46,187 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Engineering/index.html.
2020-10-27 20:39:46,187 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Engineering/index.html.
2020-10-27 20:39:46,187 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Engineering/index.html but was not found.
2020-10-27 20:39:46,187 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Engineering/index.html.
2020-10-27 20:39:46,227 : INFO : iGEM_URL : ../assets/img/Engineering--header.svg was changed to https://2020.igem.org/wiki/images/1/11/T--BITSPilani-Goa_India--img--Engineering--header.svg in Engineering/index.html.
2020-10-27 20:39:46,235 : INFO : build_and_upload : Contents of Engineering/index.html have been uploaded previously. Skipping.
2020-10-27 20:39:46,277 : INFO : iGEM_URL : ../css/content.css was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/css/contentCSS?action=raw&ctype=text/css in Collaborations/index.html.
2020-10-27 20:39:46,278 : INFO : iGEM_URL : ../content.bundle.js was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/content-bundleJS?action=raw&ctype=text/javascript in Collaborations/index.html.
2020-10-27 20:39:46,280 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Collaborations/index.html.
2020-10-27 20:39:46,280 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Collaborations/index.html.
2020-10-27 20:39:46,281 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Collaborations/index.html.
2020-10-27 20:39:46,281 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Collaborations/index.html.
2020-10-27 20:39:46,281 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Collaborations/index.html.
2020-10-27 20:39:46,281 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Collaborations/index.html.
2020-10-27 20:39:46,281 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Collaborations/index.html.
2020-10-27 20:39:46,281 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Collaborations/index.html.
2020-10-27 20:39:46,282 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Collaborations/index.html.
2020-10-27 20:39:46,282 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Collaborations/index.html.
2020-10-27 20:39:46,282 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Collaborations/index.html.
2020-10-27 20:39:46,282 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Collaborations/index.html.
2020-10-27 20:39:46,282 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Collaborations/index.html.
2020-10-27 20:39:46,282 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Collaborations/index.html.
2020-10-27 20:39:46,283 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Collaborations/index.html.
2020-10-27 20:39:46,283 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Collaborations/index.html.
2020-10-27 20:39:46,283 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Collaborations/index.html.
2020-10-27 20:39:46,283 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Collaborations/index.html.
2020-10-27 20:39:46,283 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Collaborations/index.html.
2020-10-27 20:39:46,284 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Collaborations/index.html but was not found.
2020-10-27 20:39:46,284 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Collaborations/index.html.
2020-10-27 20:39:46,284 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Collaborations/index.html.
2020-10-27 20:39:46,284 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Collaborations/index.html.
2020-10-27 20:39:46,284 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Collaborations/index.html.
2020-10-27 20:39:46,284 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Collaborations/index.html.
2020-10-27 20:39:46,285 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Collaborations/index.html.
2020-10-27 20:39:46,285 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Collaborations/index.html.
2020-10-27 20:39:46,285 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Collaborations/index.html.
2020-10-27 20:39:46,285 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Collaborations/index.html.
2020-10-27 20:39:46,285 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Collaborations/index.html.
2020-10-27 20:39:46,285 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Collaborations/index.html.
2020-10-27 20:39:46,286 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Collaborations/index.html.
2020-10-27 20:39:46,286 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Collaborations/index.html.
2020-10-27 20:39:46,286 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Collaborations/index.html.
2020-10-27 20:39:46,286 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Collaborations/index.html.
2020-10-27 20:39:46,286 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Collaborations/index.html.
2020-10-27 20:39:46,286 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Collaborations/index.html.
2020-10-27 20:39:46,287 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Collaborations/index.html.
2020-10-27 20:39:46,287 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Collaborations/index.html.
2020-10-27 20:39:46,287 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Collaborations/index.html.
2020-10-27 20:39:46,287 : INFO : iGEM_URL : /Sample was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Sample in Collaborations/index.html.
2020-10-27 20:39:46,287 : INFO : iGEM_URL : /Acknowledgements was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Acknowledgements in Collaborations/index.html.
2020-10-27 20:39:46,287 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Collaborations/index.html.
2020-10-27 20:39:46,288 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Collaborations/index.html.
2020-10-27 20:39:46,288 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Collaborations/index.html.
2020-10-27 20:39:46,288 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Collaborations/index.html.
2020-10-27 20:39:46,288 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Collaborations/index.html.
2020-10-27 20:39:46,288 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Collaborations/index.html.
2020-10-27 20:39:46,288 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Collaborations/index.html.
2020-10-27 20:39:46,288 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Collaborations/index.html.
2020-10-27 20:39:46,289 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Collaborations/index.html.
2020-10-27 20:39:46,289 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Collaborations/index.html.
2020-10-27 20:39:46,289 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Collaborations/index.html.
2020-10-27 20:39:46,289 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Collaborations/index.html.
2020-10-27 20:39:46,289 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Collaborations/index.html.
2020-10-27 20:39:46,289 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Collaborations/index.html.
2020-10-27 20:39:46,290 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Collaborations/index.html.
2020-10-27 20:39:46,290 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Collaborations/index.html.
2020-10-27 20:39:46,290 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Collaborations/index.html.
2020-10-27 20:39:46,290 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Collaborations/index.html.
2020-10-27 20:39:46,290 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Collaborations/index.html.
2020-10-27 20:39:46,290 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Collaborations/index.html.
2020-10-27 20:39:46,291 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Collaborations/index.html.
2020-10-27 20:39:46,291 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Collaborations/index.html but was not found.
2020-10-27 20:39:46,291 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Collaborations/index.html.
2020-10-27 20:39:46,305 : INFO : iGEM_URL : ../assets/img/Collaborations--OhioState-Logo.jpg was changed to https://2020.igem.org/wiki/images/b/b8/T--BITSPilani-Goa_India--img--Collaborations--OhioState-Logo.jpg in Collaborations/index.html.
2020-10-27 20:39:46,305 : INFO : iGEM_URL : ../assets/img/Collaborations--Groningen.png was changed to https://2020.igem.org/wiki/images/9/9c/T--BITSPilani-Goa_India--img--Collaborations--Groningen.png in Collaborations/index.html.
2020-10-27 20:39:46,305 : INFO : iGEM_URL : ../assets/img/Collaborations--UNESP.jpeg was changed to https://2020.igem.org/wiki/images/1/1f/T--BITSPilani-Goa_India--img--Collaborations--UNESP.jpeg in Collaborations/index.html.
2020-10-27 20:39:46,306 : INFO : iGEM_URL : ../assets/img/Collaborations--AIIMBanner.png was changed to https://2020.igem.org/wiki/images/c/c3/T--BITSPilani-Goa_India--img--Collaborations--AIIMBanner.png in Collaborations/index.html.
2020-10-27 20:39:46,306 : INFO : iGEM_URL : ../assets/img/AIIM-EventImage.png was changed to https://2020.igem.org/wiki/images/a/a3/T--BITSPilani-Goa_India--img--AIIM-EventImage.png in Collaborations/index.html.
2020-10-27 20:39:46,306 : INFO : iGEM_URL : ../assets/img/Collaborations--Biosummit1.png was changed to https://2020.igem.org/wiki/images/a/a0/T--BITSPilani-Goa_India--img--Collaborations--Biosummit1.png in Collaborations/index.html.
2020-10-27 20:39:46,306 : INFO : iGEM_URL : ../assets/img/Collaborations--Biosummit2.png was changed to https://2020.igem.org/wiki/images/d/d1/T--BITSPilani-Goa_India--img--Collaborations--Biosummit2.png in Collaborations/index.html.
2020-10-27 20:39:46,306 : INFO : iGEM_URL : ../assets/img/Collaborations--Biosummit3.png was changed to https://2020.igem.org/wiki/images/d/d2/T--BITSPilani-Goa_India--img--Collaborations--Biosummit3.png in Collaborations/index.html.
2020-10-27 20:39:46,307 : INFO : iGEM_URL : ../assets/img/AIIM--Biosummit.png was changed to https://2020.igem.org/wiki/images/4/4c/T--BITSPilani-Goa_India--img--AIIM--Biosummit.png in Collaborations/index.html.
2020-10-27 20:39:46,307 : INFO : iGEM_URL : ../assets/img/Collaborations--Stockholm-Logo1.png was changed to https://2020.igem.org/wiki/images/9/93/T--BITSPilani-Goa_India--img--Collaborations--Stockholm-Logo1.png in Collaborations/index.html.
2020-10-27 20:39:46,307 : INFO : iGEM_URL : ../assets/img/Collaborations--ManipalLogo.svg was changed to https://2020.igem.org/wiki/images/7/77/T--BITSPilani-Goa_India--img--Collaborations--ManipalLogo.svg in Collaborations/index.html.
2020-10-27 20:39:46,307 : INFO : iGEM_URL : ../assets/img/Collaborations--Thessaly-Logo1.png was changed to https://2020.igem.org/wiki/images/0/06/T--BITSPilani-Goa_India--img--Collaborations--Thessaly-Logo1.png in Collaborations/index.html.
2020-10-27 20:39:46,307 : INFO : iGEM_URL : ../assets/img/Collaborations--UANL-Logo.png was changed to https://2020.igem.org/wiki/images/9/99/T--BITSPilani-Goa_India--img--Collaborations--UANL-Logo.png in Collaborations/index.html.
2020-10-27 20:39:46,308 : INFO : iGEM_URL : ../assets/img/Collaborations--IISER-Pune-Logo.png was changed to https://2020.igem.org/wiki/images/c/c2/T--BITSPilani-Goa_India--img--Collaborations--IISER-Pune-Logo.png in Collaborations/index.html.
2020-10-27 20:39:46,308 : INFO : iGEM_URL : ../assets/img/Collaborations--RochesterLogo.png was changed to https://2020.igem.org/wiki/images/3/35/T--BITSPilani-Goa_India--img--Collaborations--RochesterLogo.png in Collaborations/index.html.
2020-10-27 20:39:46,308 : INFO : iGEM_URL : ../assets/img/Collaborations--Rochester.png was changed to https://2020.igem.org/wiki/images/d/d7/T--BITSPilani-Goa_India--img--Collaborations--Rochester.png in Collaborations/index.html.
2020-10-27 20:39:46,308 : INFO : iGEM_URL : ../assets/img/Collaborations--Calgary-Logo.png was changed to https://2020.igem.org/wiki/images/7/78/T--BITSPilani-Goa_India--img--Collaborations--Calgary-Logo.png in Collaborations/index.html.
2020-10-27 20:39:46,308 : INFO : iGEM_URL : ../assets/img/Collaborations--Pittsburgh.png was changed to https://2020.igem.org/wiki/images/2/29/T--BITSPilani-Goa_India--img--Collaborations--Pittsburgh.png in Collaborations/index.html.
2020-10-27 20:39:46,308 : INFO : iGEM_URL : ../assets/img/Collaborations--SISKorea.png was changed to https://2020.igem.org/wiki/images/0/01/T--BITSPilani-Goa_India--img--Collaborations--SISKorea.png in Collaborations/index.html.
2020-10-27 20:39:46,309 : INFO : iGEM_URL : ../assets/img/Collaborations--Duesseldorf.png was changed to https://2020.igem.org/wiki/images/9/9d/T--BITSPilani-Goa_India--img--Collaborations--Duesseldorf.png in Collaborations/index.html.
2020-10-27 20:39:46,309 : INFO : iGEM_URL : ../assets/img/Collaborations--MSP.png was changed to https://2020.igem.org/wiki/images/6/6b/T--BITSPilani-Goa_India--img--Collaborations--MSP.png in Collaborations/index.html.
2020-10-27 20:39:46,330 : INFO : iGEM_URL : ../assets/img/Collaborations--header.svg was changed to https://2020.igem.org/wiki/images/2/27/T--BITSPilani-Goa_India--img--Collaborations--header.svg in Collaborations/index.html.
2020-10-27 20:39:47,720 : INFO : iGEM_upload_page : Uploaded to https://2020.igem.org/wiki/index.php?title=Team:BITSPilani-Goa_India/Collaborations&action=edit.
2020-10-27 20:39:47,759 : INFO : iGEM_URL : ../css/content.css was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/css/contentCSS?action=raw&ctype=text/css in Attributions/index.html.
2020-10-27 20:39:47,760 : INFO : iGEM_URL : ../content.bundle.js was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/content-bundleJS?action=raw&ctype=text/javascript in Attributions/index.html.
2020-10-27 20:39:47,762 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Attributions/index.html.
2020-10-27 20:39:47,762 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Attributions/index.html.
2020-10-27 20:39:47,762 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Attributions/index.html.
2020-10-27 20:39:47,762 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Attributions/index.html.
2020-10-27 20:39:47,763 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Attributions/index.html.
2020-10-27 20:39:47,763 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Attributions/index.html.
2020-10-27 20:39:47,763 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Attributions/index.html.
2020-10-27 20:39:47,763 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Attributions/index.html.
2020-10-27 20:39:47,763 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Attributions/index.html.
2020-10-27 20:39:47,763 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Attributions/index.html.
2020-10-27 20:39:47,764 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Attributions/index.html.
2020-10-27 20:39:47,764 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Attributions/index.html.
2020-10-27 20:39:47,764 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Attributions/index.html.
2020-10-27 20:39:47,764 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Attributions/index.html.
2020-10-27 20:39:47,764 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Attributions/index.html.
2020-10-27 20:39:47,765 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Attributions/index.html.
2020-10-27 20:39:47,765 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Attributions/index.html.
2020-10-27 20:39:47,765 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Attributions/index.html.
2020-10-27 20:39:47,765 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Attributions/index.html.
2020-10-27 20:39:47,765 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Attributions/index.html but was not found.
2020-10-27 20:39:47,765 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Attributions/index.html.
2020-10-27 20:39:47,766 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Attributions/index.html.
2020-10-27 20:39:47,766 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Attributions/index.html.
2020-10-27 20:39:47,766 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Attributions/index.html.
2020-10-27 20:39:47,766 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Attributions/index.html.
2020-10-27 20:39:47,766 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Attributions/index.html.
2020-10-27 20:39:47,766 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Attributions/index.html.
2020-10-27 20:39:47,767 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Attributions/index.html.
2020-10-27 20:39:47,767 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Attributions/index.html.
2020-10-27 20:39:47,767 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Attributions/index.html.
2020-10-27 20:39:47,767 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Attributions/index.html.
2020-10-27 20:39:47,767 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Attributions/index.html.
2020-10-27 20:39:47,768 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Attributions/index.html.
2020-10-27 20:39:47,768 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Attributions/index.html.
2020-10-27 20:39:47,768 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Attributions/index.html.
2020-10-27 20:39:47,768 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Attributions/index.html.
2020-10-27 20:39:47,768 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Attributions/index.html.
2020-10-27 20:39:47,768 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Attributions/index.html.
2020-10-27 20:39:47,769 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Attributions/index.html.
2020-10-27 20:39:47,769 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Attributions/index.html.
2020-10-27 20:39:47,769 : INFO : iGEM_URL : /Sample was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Sample in Attributions/index.html.
2020-10-27 20:39:47,769 : INFO : iGEM_URL : /Acknowledgements was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Acknowledgements in Attributions/index.html.
2020-10-27 20:39:47,769 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Attributions/index.html.
2020-10-27 20:39:47,769 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Attributions/index.html.
2020-10-27 20:39:47,770 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Attributions/index.html.
2020-10-27 20:39:47,770 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Attributions/index.html.
2020-10-27 20:39:47,770 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Attributions/index.html.
2020-10-27 20:39:47,770 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Attributions/index.html.
2020-10-27 20:39:47,770 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Attributions/index.html.
2020-10-27 20:39:47,770 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Attributions/index.html.
2020-10-27 20:39:47,771 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Attributions/index.html.
2020-10-27 20:39:47,771 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Attributions/index.html.
2020-10-27 20:39:47,771 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Attributions/index.html.
2020-10-27 20:39:47,771 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Attributions/index.html.
2020-10-27 20:39:47,771 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Attributions/index.html.
2020-10-27 20:39:47,771 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Attributions/index.html.
2020-10-27 20:39:47,772 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Attributions/index.html.
2020-10-27 20:39:47,772 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Attributions/index.html.
2020-10-27 20:39:47,772 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Attributions/index.html.
2020-10-27 20:39:47,772 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Attributions/index.html.
2020-10-27 20:39:47,772 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Attributions/index.html.
2020-10-27 20:39:47,772 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Attributions/index.html.
2020-10-27 20:39:47,773 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Attributions/index.html.
2020-10-27 20:39:47,773 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Attributions/index.html but was not found.
2020-10-27 20:39:47,774 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Attributions/index.html.
2020-10-27 20:39:47,807 : INFO : iGEM_URL : ../assets/img/Attributions--header.svg was changed to https://2020.igem.org/wiki/images/d/d9/T--BITSPilani-Goa_India--img--Attributions--header.svg in Attributions/index.html.
2020-10-27 20:39:47,812 : INFO : build_and_upload : Contents of Attributions/index.html have been uploaded previously. Skipping.
2020-10-27 20:39:47,856 : INFO : iGEM_URL : ../css/content.css was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/css/contentCSS?action=raw&ctype=text/css in Implementation/index.html.
2020-10-27 20:39:47,857 : INFO : iGEM_URL : ../content.bundle.js was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/content-bundleJS?action=raw&ctype=text/javascript in Implementation/index.html.
2020-10-27 20:39:47,859 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Implementation/index.html.
2020-10-27 20:39:47,859 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Implementation/index.html.
2020-10-27 20:39:47,859 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Implementation/index.html.
2020-10-27 20:39:47,859 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Implementation/index.html.
2020-10-27 20:39:47,860 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Implementation/index.html.
2020-10-27 20:39:47,860 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Implementation/index.html.
2020-10-27 20:39:47,860 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Implementation/index.html.
2020-10-27 20:39:47,860 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Implementation/index.html.
2020-10-27 20:39:47,860 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Implementation/index.html.
2020-10-27 20:39:47,860 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Implementation/index.html.
2020-10-27 20:39:47,861 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Implementation/index.html.
2020-10-27 20:39:47,861 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Implementation/index.html.
2020-10-27 20:39:47,861 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Implementation/index.html.
2020-10-27 20:39:47,861 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Implementation/index.html.
2020-10-27 20:39:47,861 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Implementation/index.html.
2020-10-27 20:39:47,862 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Implementation/index.html.
2020-10-27 20:39:47,862 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Implementation/index.html.
2020-10-27 20:39:47,862 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Implementation/index.html.
2020-10-27 20:39:47,862 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Implementation/index.html.
2020-10-27 20:39:47,862 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Implementation/index.html but was not found.
2020-10-27 20:39:47,862 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Implementation/index.html.
2020-10-27 20:39:47,863 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Implementation/index.html.
2020-10-27 20:39:47,863 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Implementation/index.html.
2020-10-27 20:39:47,863 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Implementation/index.html.
2020-10-27 20:39:47,863 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Implementation/index.html.
2020-10-27 20:39:47,863 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Implementation/index.html.
2020-10-27 20:39:47,863 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Implementation/index.html.
2020-10-27 20:39:47,864 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Implementation/index.html.
2020-10-27 20:39:47,864 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Implementation/index.html.
2020-10-27 20:39:47,864 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Implementation/index.html.
2020-10-27 20:39:47,864 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Implementation/index.html.
2020-10-27 20:39:47,864 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Implementation/index.html.
2020-10-27 20:39:47,864 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Implementation/index.html.
2020-10-27 20:39:47,865 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Implementation/index.html.
2020-10-27 20:39:47,865 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Implementation/index.html.
2020-10-27 20:39:47,865 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Implementation/index.html.
2020-10-27 20:39:47,865 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Implementation/index.html.
2020-10-27 20:39:47,865 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Implementation/index.html.
2020-10-27 20:39:47,865 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Implementation/index.html.
2020-10-27 20:39:47,866 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Implementation/index.html.
2020-10-27 20:39:47,866 : INFO : iGEM_URL : /Sample was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Sample in Implementation/index.html.
2020-10-27 20:39:47,866 : INFO : iGEM_URL : /Acknowledgements was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Acknowledgements in Implementation/index.html.
2020-10-27 20:39:47,866 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Implementation/index.html.
2020-10-27 20:39:47,866 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Implementation/index.html.
2020-10-27 20:39:47,866 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Implementation/index.html.
2020-10-27 20:39:47,867 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Implementation/index.html.
2020-10-27 20:39:47,867 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Implementation/index.html.
2020-10-27 20:39:47,867 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Implementation/index.html.
2020-10-27 20:39:47,867 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Implementation/index.html.
2020-10-27 20:39:47,867 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Implementation/index.html.
2020-10-27 20:39:47,868 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Implementation/index.html.
2020-10-27 20:39:47,868 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Implementation/index.html.
2020-10-27 20:39:47,868 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Implementation/index.html.
2020-10-27 20:39:47,868 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Implementation/index.html.
2020-10-27 20:39:47,868 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Implementation/index.html.
2020-10-27 20:39:47,868 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Implementation/index.html.
2020-10-27 20:39:47,869 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Implementation/index.html.
2020-10-27 20:39:47,869 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Implementation/index.html.
2020-10-27 20:39:47,869 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Implementation/index.html.
2020-10-27 20:39:47,869 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Implementation/index.html.
2020-10-27 20:39:47,869 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Implementation/index.html.
2020-10-27 20:39:47,869 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Implementation/index.html.
2020-10-27 20:39:47,870 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Implementation/index.html.
2020-10-27 20:39:47,870 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Implementation/index.html.
2020-10-27 20:39:47,870 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Implementation/index.html but was not found.
2020-10-27 20:39:47,871 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Implementation/index.html.
2020-10-27 20:39:47,885 : INFO : iGEM_URL : ../assets/img/Implementation--BFD.png was changed to https://2020.igem.org/wiki/images/f/f6/T--BITSPilani-Goa_India--img--Implementation--BFD.png in Implementation/index.html.
2020-10-27 20:39:47,885 : INFO : iGEM_URL : ../assets/img/Implementation--PFD.png was changed to https://2020.igem.org/wiki/images/7/78/T--BITSPilani-Goa_India--img--Implementation--PFD.png in Implementation/index.html.
2020-10-27 20:39:47,886 : INFO : iGEM_URL : ../assets/img/Implementation--SaxenaEtAl.png was changed to https://2020.igem.org/wiki/images/2/21/T--BITSPilani-Goa_India--img--Implementation--SaxenaEtAl.png in Implementation/index.html.
2020-10-27 20:39:47,886 : INFO : iGEM_URL : ../assets/img/Implementation--InveratseActivityPlot.png was changed to https://2020.igem.org/wiki/images/6/6b/T--BITSPilani-Goa_India--img--Implementation--InveratseActivityPlot.png in Implementation/index.html.
2020-10-27 20:39:47,907 : INFO : iGEM_URL : ../assets/img/Implementation--header.svg was changed to https://2020.igem.org/wiki/images/2/2a/T--BITSPilani-Goa_India--img--Implementation--header.svg in Implementation/index.html.
2020-10-27 20:39:47,913 : INFO : build_and_upload : Contents of Implementation/index.html have been uploaded previously. Skipping.
2020-10-27 20:39:47,952 : INFO : iGEM_URL : ../css/team.css was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/css/teamCSS?action=raw&ctype=text/css in Team/index.html.
2020-10-27 20:39:47,953 : INFO : iGEM_URL : ../team.bundle.js was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/team-bundleJS?action=raw&ctype=text/javascript in Team/index.html.
2020-10-27 20:39:47,954 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Team/index.html.
2020-10-27 20:39:47,955 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Team/index.html.
2020-10-27 20:39:47,955 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Team/index.html.
2020-10-27 20:39:47,955 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Team/index.html.
2020-10-27 20:39:47,955 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Team/index.html.
2020-10-27 20:39:47,955 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Team/index.html.
2020-10-27 20:39:47,955 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Team/index.html.
2020-10-27 20:39:47,956 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Team/index.html.
2020-10-27 20:39:47,956 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Team/index.html.
2020-10-27 20:39:47,956 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Team/index.html.
2020-10-27 20:39:47,956 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Team/index.html.
2020-10-27 20:39:47,956 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Team/index.html.
2020-10-27 20:39:47,956 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Team/index.html.
2020-10-27 20:39:47,957 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Team/index.html.
2020-10-27 20:39:47,957 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Team/index.html.
2020-10-27 20:39:47,957 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Team/index.html.
2020-10-27 20:39:47,957 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Team/index.html.
2020-10-27 20:39:47,957 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Team/index.html.
2020-10-27 20:39:47,958 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Team/index.html.
2020-10-27 20:39:47,958 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Team/index.html but was not found.
2020-10-27 20:39:47,958 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Team/index.html.
2020-10-27 20:39:47,958 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Team/index.html.
2020-10-27 20:39:47,958 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Team/index.html.
2020-10-27 20:39:47,958 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Team/index.html.
2020-10-27 20:39:47,959 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Team/index.html.
2020-10-27 20:39:47,959 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Team/index.html.
2020-10-27 20:39:47,959 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Team/index.html.
2020-10-27 20:39:47,959 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Team/index.html.
2020-10-27 20:39:47,959 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Team/index.html.
2020-10-27 20:39:47,959 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Team/index.html.
2020-10-27 20:39:47,960 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Team/index.html.
2020-10-27 20:39:47,960 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Team/index.html.
2020-10-27 20:39:47,960 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Team/index.html.
2020-10-27 20:39:47,960 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Team/index.html.
2020-10-27 20:39:47,960 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Team/index.html.
2020-10-27 20:39:47,960 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Team/index.html.
2020-10-27 20:39:47,961 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Team/index.html.
2020-10-27 20:39:47,961 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Team/index.html.
2020-10-27 20:39:47,961 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Team/index.html.
2020-10-27 20:39:47,961 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Team/index.html.
2020-10-27 20:39:47,961 : INFO : iGEM_URL : /Sample was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Sample in Team/index.html.
2020-10-27 20:39:47,961 : INFO : iGEM_URL : /Acknowledgements was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Acknowledgements in Team/index.html.
2020-10-27 20:39:47,962 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Team/index.html.
2020-10-27 20:39:47,962 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Team/index.html.
2020-10-27 20:39:47,962 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Team/index.html.
2020-10-27 20:39:47,962 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Team/index.html.
2020-10-27 20:39:47,962 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Team/index.html.
2020-10-27 20:39:47,962 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Team/index.html.
2020-10-27 20:39:47,963 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Team/index.html.
2020-10-27 20:39:47,963 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Team/index.html.
2020-10-27 20:39:47,963 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Team/index.html.
2020-10-27 20:39:47,963 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Team/index.html.
2020-10-27 20:39:47,963 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Team/index.html.
2020-10-27 20:39:47,963 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Team/index.html.
2020-10-27 20:39:47,964 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Team/index.html.
2020-10-27 20:39:47,964 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Team/index.html.
2020-10-27 20:39:47,964 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Team/index.html.
2020-10-27 20:39:47,964 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Team/index.html.
2020-10-27 20:39:47,964 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Team/index.html.
2020-10-27 20:39:47,964 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Team/index.html.
2020-10-27 20:39:47,965 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Team/index.html.
2020-10-27 20:39:47,965 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Team/index.html but was not found.
2020-10-27 20:39:47,965 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Team/index.html.
2020-10-27 20:39:47,976 : INFO : iGEM_URL : ../assets/img/Team--gp1.jpg was changed to https://2020.igem.org/wiki/images/f/ff/T--BITSPilani-Goa_India--img--Team--gp1.jpg in Team/index.html.
2020-10-27 20:39:47,998 : INFO : build_and_upload : Contents of Team/index.html have been uploaded previously. Skipping.
2020-10-27 20:39:48,028 : INFO : iGEM_URL : ../css/landing.css was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/css/landingCSS?action=raw&ctype=text/css in Experiments/index.html.
2020-10-27 20:39:48,029 : INFO : iGEM_URL : ../landing.bundle.js was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/landing-bundleJS?action=raw&ctype=text/javascript in Experiments/index.html.
2020-10-27 20:39:48,031 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Experiments/index.html.
2020-10-27 20:39:48,031 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Experiments/index.html.
2020-10-27 20:39:48,031 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Experiments/index.html.
2020-10-27 20:39:48,031 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Experiments/index.html.
2020-10-27 20:39:48,032 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Experiments/index.html.
2020-10-27 20:39:48,032 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Experiments/index.html.
2020-10-27 20:39:48,032 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Experiments/index.html.
2020-10-27 20:39:48,032 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Experiments/index.html.
2020-10-27 20:39:48,032 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Experiments/index.html.
2020-10-27 20:39:48,032 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Experiments/index.html.
2020-10-27 20:39:48,033 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Experiments/index.html.
2020-10-27 20:39:48,033 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Experiments/index.html.
2020-10-27 20:39:48,033 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Experiments/index.html.
2020-10-27 20:39:48,033 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Experiments/index.html.
2020-10-27 20:39:48,033 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Experiments/index.html.
2020-10-27 20:39:48,033 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Experiments/index.html.
2020-10-27 20:39:48,034 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Experiments/index.html.
2020-10-27 20:39:48,034 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Experiments/index.html.
2020-10-27 20:39:48,034 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Experiments/index.html.
2020-10-27 20:39:48,034 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Experiments/index.html but was not found.
2020-10-27 20:39:48,034 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Experiments/index.html.
2020-10-27 20:39:48,034 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Experiments/index.html.
2020-10-27 20:39:48,035 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Experiments/index.html.
2020-10-27 20:39:48,035 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Experiments/index.html.
2020-10-27 20:39:48,035 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Experiments/index.html.
2020-10-27 20:39:48,035 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Experiments/index.html.
2020-10-27 20:39:48,035 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Experiments/index.html.
2020-10-27 20:39:48,035 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Experiments/index.html.
2020-10-27 20:39:48,036 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Experiments/index.html.
2020-10-27 20:39:48,036 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Experiments/index.html.
2020-10-27 20:39:48,036 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Experiments/index.html.
2020-10-27 20:39:48,036 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Experiments/index.html.
2020-10-27 20:39:48,036 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Experiments/index.html.
2020-10-27 20:39:48,036 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Experiments/index.html.
2020-10-27 20:39:48,037 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Experiments/index.html.
2020-10-27 20:39:48,037 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Experiments/index.html.
2020-10-27 20:39:48,037 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Experiments/index.html.
2020-10-27 20:39:48,037 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Experiments/index.html.
2020-10-27 20:39:48,037 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Experiments/index.html.
2020-10-27 20:39:48,037 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Experiments/index.html.
2020-10-27 20:39:48,038 : INFO : iGEM_URL : /Sample was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Sample in Experiments/index.html.
2020-10-27 20:39:48,038 : INFO : iGEM_URL : /Acknowledgements was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Acknowledgements in Experiments/index.html.
2020-10-27 20:39:48,038 : INFO : iGEM_URL : /Experiments/pFruB-Cra_System was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments/pFruB-Cra_System in Experiments/index.html.
2020-10-27 20:39:48,038 : INFO : iGEM_URL : /Experiments/Kill_Switch was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments/Kill_Switch in Experiments/index.html.
2020-10-27 20:39:48,038 : INFO : iGEM_URL : /Experiments/Inoculant was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments/Inoculant in Experiments/index.html.
2020-10-27 20:39:48,039 : INFO : iGEM_URL : /Experiments/Other was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments/Other in Experiments/index.html.
2020-10-27 20:39:48,039 : INFO : iGEM_URL : /Experiments/Protocols was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments/Protocols in Experiments/index.html.
2020-10-27 20:39:48,039 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Experiments/index.html.
2020-10-27 20:39:48,039 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Experiments/index.html.
2020-10-27 20:39:48,039 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Experiments/index.html.
2020-10-27 20:39:48,039 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Experiments/index.html.
2020-10-27 20:39:48,040 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Experiments/index.html.
2020-10-27 20:39:48,040 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Experiments/index.html.
2020-10-27 20:39:48,040 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Experiments/index.html.
2020-10-27 20:39:48,040 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Experiments/index.html.
2020-10-27 20:39:48,040 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Experiments/index.html.
2020-10-27 20:39:48,040 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Experiments/index.html.
2020-10-27 20:39:48,041 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Experiments/index.html.
2020-10-27 20:39:48,041 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Experiments/index.html.
2020-10-27 20:39:48,041 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Experiments/index.html.
2020-10-27 20:39:48,041 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Experiments/index.html.
2020-10-27 20:39:48,041 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Experiments/index.html.
2020-10-27 20:39:48,041 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Experiments/index.html.
2020-10-27 20:39:48,041 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Experiments/index.html.
2020-10-27 20:39:48,042 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Experiments/index.html.
2020-10-27 20:39:48,042 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Experiments/index.html.
2020-10-27 20:39:48,042 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Experiments/index.html.
2020-10-27 20:39:48,042 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Experiments/index.html.
2020-10-27 20:39:48,042 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Experiments/index.html but was not found.
2020-10-27 20:39:48,042 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Experiments/index.html.
2020-10-27 20:39:48,052 : INFO : iGEM_URL : ../assets/img/Design--AI.gif was changed to https://2020.igem.org/wiki/images/d/db/T--BITSPilani-Goa_India--img--Design--AI.gif in Experiments/index.html.
2020-10-27 20:39:48,052 : INFO : iGEM_URL : ../assets/img/Landing--Kill_Switch.gif was changed to https://2020.igem.org/wiki/images/0/05/T--BITSPilani-Goa_India--img--Landing--Kill_Switch.gif in Experiments/index.html.
2020-10-27 20:39:48,052 : INFO : iGEM_URL : ../assets/img/Landing--Inoculant.jpg was changed to https://2020.igem.org/wiki/images/7/79/T--BITSPilani-Goa_India--img--Landing--Inoculant.jpg in Experiments/index.html.
2020-10-27 20:39:48,052 : INFO : iGEM_URL : ../assets/img/Landing--Auxotroph.png was changed to https://2020.igem.org/wiki/images/1/13/T--BITSPilani-Goa_India--img--Landing--Auxotroph.png in Experiments/index.html.
2020-10-27 20:39:48,053 : INFO : iGEM_URL : ../assets/img/Landing--Kill_Switch.jpeg was changed to https://2020.igem.org/wiki/images/d/d2/T--BITSPilani-Goa_India--img--Landing--Kill_Switch.jpeg in Experiments/index.html.
2020-10-27 20:39:48,067 : INFO : iGEM_URL : ../assets/img/Experiments--header.svg was changed to https://2020.igem.org/wiki/images/8/85/T--BITSPilani-Goa_India--img--Experiments--header.svg in Experiments/index.html.
2020-10-27 20:39:48,070 : INFO : build_and_upload : Contents of Experiments/index.html have been uploaded previously. Skipping.
2020-10-27 20:39:48,102 : INFO : iGEM_URL : ../../css/content.css was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/css/contentCSS?action=raw&ctype=text/css in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,103 : INFO : iGEM_URL : ../../content.bundle.js was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/content-bundleJS?action=raw&ctype=text/javascript in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,105 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,105 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,105 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,105 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,105 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,105 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,106 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,106 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,106 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,106 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,106 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,106 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,107 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,107 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,107 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,107 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,107 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,107 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,108 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,108 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Experiments/Inoculant/index.html but was not found.
2020-10-27 20:39:48,108 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,108 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,108 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,109 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,109 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,109 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,109 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,109 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,109 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,110 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,110 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,110 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,110 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,110 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,110 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,111 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,111 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,111 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,111 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,111 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,111 : INFO : iGEM_URL : /Sample was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Sample in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,112 : INFO : iGEM_URL : /Acknowledgements was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Acknowledgements in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,112 : INFO : iGEM_URL : ../../assets/docs/Experiments--Inoculant--Carboxymethyl_Cellulose_Characterization.pdf was changed to https://2020.igem.org/wiki/images/1/15/T--BITSPilani-Goa_India--docs--Experiments--Inoculant--Carboxymethyl_Cellulose_Characterization.pdf in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,112 : INFO : iGEM_URL : ../../assets/docs/Experiments--Inoculant--LB_Degradation.pdf was changed to https://2020.igem.org/wiki/images/0/09/T--BITSPilani-Goa_India--docs--Experiments--Inoculant--LB_Degradation.pdf in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,112 : INFO : iGEM_URL : ../../assets/docs/Experiments--Inoculant--Sorbic_Acid_Characterization.pdf was changed to https://2020.igem.org/wiki/images/5/52/T--BITSPilani-Goa_India--docs--Experiments--Inoculant--Sorbic_Acid_Characterization.pdf in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,112 : INFO : iGEM_URL : ../../assets/docs/Experiments--Inoculant--Sorbic_Acid_Potassium_Sorbate_Characterization.pdf was changed to https://2020.igem.org/wiki/images/d/dd/T--BITSPilani-Goa_India--docs--Experiments--Inoculant--Sorbic_Acid_Potassium_Sorbate_Characterization.pdf in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,113 : INFO : iGEM_URL : ../../assets/docs/Experiments--Inoculant--Sorbic_Acid_Potassium_Sorbate_Degradation.pdf was changed to https://2020.igem.org/wiki/images/1/12/T--BITSPilani-Goa_India--docs--Experiments--Inoculant--Sorbic_Acid_Potassium_Sorbate_Degradation.pdf in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,113 : INFO : iGEM_URL : ../../assets/docs/Experiments--Inoculant--Triton_X-100_Characterization.pdf was changed to https://2020.igem.org/wiki/images/2/21/T--BITSPilani-Goa_India--docs--Experiments--Inoculant--Triton_X-100_Characterization.pdf in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,113 : INFO : iGEM_URL : /Experiments/Kill_Switch was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments/Kill_Switch in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,113 : INFO : iGEM_URL : /Experiments/Protocols was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments/Protocols in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,113 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,113 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,114 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,114 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,114 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,114 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,114 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,114 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,115 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,115 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,115 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,115 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,115 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,115 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,116 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,116 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,116 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,116 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,116 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,116 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Experiments/Inoculant/index.html but was not found.
2020-10-27 20:39:48,117 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,136 : INFO : iGEM_URL : ../../assets/docs/Experiments--Inoculant--Carboxymethyl_Cellulose_Characterization.pdf was changed to https://2020.igem.org/wiki/images/1/15/T--BITSPilani-Goa_India--docs--Experiments--Inoculant--Carboxymethyl_Cellulose_Characterization.pdf in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,136 : INFO : iGEM_URL : ../../assets/docs/Experiments--Inoculant--LB_Degradation.pdf was changed to https://2020.igem.org/wiki/images/0/09/T--BITSPilani-Goa_India--docs--Experiments--Inoculant--LB_Degradation.pdf in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,136 : INFO : iGEM_URL : ../../assets/docs/Experiments--Inoculant--Sorbic_Acid_Characterization.pdf was changed to https://2020.igem.org/wiki/images/5/52/T--BITSPilani-Goa_India--docs--Experiments--Inoculant--Sorbic_Acid_Characterization.pdf in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,136 : INFO : iGEM_URL : ../../assets/docs/Experiments--Inoculant--Sorbic_Acid_Potassium_Sorbate_Characterization.pdf was changed to https://2020.igem.org/wiki/images/d/dd/T--BITSPilani-Goa_India--docs--Experiments--Inoculant--Sorbic_Acid_Potassium_Sorbate_Characterization.pdf in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,137 : INFO : iGEM_URL : ../../assets/docs/Experiments--Inoculant--Sorbic_Acid_Potassium_Sorbate_Degradation.pdf was changed to https://2020.igem.org/wiki/images/1/12/T--BITSPilani-Goa_India--docs--Experiments--Inoculant--Sorbic_Acid_Potassium_Sorbate_Degradation.pdf in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,137 : INFO : iGEM_URL : ../../assets/docs/Experiments--Inoculant--Triton_X-100_Characterization.pdf was changed to https://2020.igem.org/wiki/images/2/21/T--BITSPilani-Goa_India--docs--Experiments--Inoculant--Triton_X-100_Characterization.pdf in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,143 : INFO : iGEM_URL : ../../assets/img/Experiments--header.svg was changed to https://2020.igem.org/wiki/images/8/85/T--BITSPilani-Goa_India--img--Experiments--header.svg in Experiments/Inoculant/index.html.
2020-10-27 20:39:48,147 : INFO : build_and_upload : Contents of Experiments/Inoculant/index.html have been uploaded previously. Skipping.
2020-10-27 20:39:48,174 : INFO : iGEM_URL : ../../css/content.css was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/css/contentCSS?action=raw&ctype=text/css in Experiments/Other/index.html.
2020-10-27 20:39:48,175 : INFO : iGEM_URL : ../../content.bundle.js was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/content-bundleJS?action=raw&ctype=text/javascript in Experiments/Other/index.html.
2020-10-27 20:39:48,177 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Experiments/Other/index.html.
2020-10-27 20:39:48,177 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Experiments/Other/index.html.
2020-10-27 20:39:48,177 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Experiments/Other/index.html.
2020-10-27 20:39:48,177 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Experiments/Other/index.html.
2020-10-27 20:39:48,177 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Experiments/Other/index.html.
2020-10-27 20:39:48,178 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Experiments/Other/index.html.
2020-10-27 20:39:48,178 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Experiments/Other/index.html.
2020-10-27 20:39:48,178 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Experiments/Other/index.html.
2020-10-27 20:39:48,178 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Experiments/Other/index.html.
2020-10-27 20:39:48,178 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Experiments/Other/index.html.
2020-10-27 20:39:48,179 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Experiments/Other/index.html.
2020-10-27 20:39:48,179 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Experiments/Other/index.html.
2020-10-27 20:39:48,179 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Experiments/Other/index.html.
2020-10-27 20:39:48,179 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Experiments/Other/index.html.
2020-10-27 20:39:48,179 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Experiments/Other/index.html.
2020-10-27 20:39:48,179 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Experiments/Other/index.html.
2020-10-27 20:39:48,180 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Experiments/Other/index.html.
2020-10-27 20:39:48,180 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Experiments/Other/index.html.
2020-10-27 20:39:48,180 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Experiments/Other/index.html.
2020-10-27 20:39:48,180 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Experiments/Other/index.html but was not found.
2020-10-27 20:39:48,180 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Experiments/Other/index.html.
2020-10-27 20:39:48,180 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Experiments/Other/index.html.
2020-10-27 20:39:48,181 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Experiments/Other/index.html.
2020-10-27 20:39:48,181 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Experiments/Other/index.html.
2020-10-27 20:39:48,181 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Experiments/Other/index.html.
2020-10-27 20:39:48,181 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Experiments/Other/index.html.
2020-10-27 20:39:48,181 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Experiments/Other/index.html.
2020-10-27 20:39:48,181 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Experiments/Other/index.html.
2020-10-27 20:39:48,182 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Experiments/Other/index.html.
2020-10-27 20:39:48,182 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Experiments/Other/index.html.
2020-10-27 20:39:48,182 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Experiments/Other/index.html.
2020-10-27 20:39:48,182 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Experiments/Other/index.html.
2020-10-27 20:39:48,182 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Experiments/Other/index.html.
2020-10-27 20:39:48,182 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Experiments/Other/index.html.
2020-10-27 20:39:48,183 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Experiments/Other/index.html.
2020-10-27 20:39:48,183 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Experiments/Other/index.html.
2020-10-27 20:39:48,183 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Experiments/Other/index.html.
2020-10-27 20:39:48,183 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Experiments/Other/index.html.
2020-10-27 20:39:48,183 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Experiments/Other/index.html.
2020-10-27 20:39:48,183 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Experiments/Other/index.html.
2020-10-27 20:39:48,184 : INFO : iGEM_URL : /Sample was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Sample in Experiments/Other/index.html.
2020-10-27 20:39:48,184 : INFO : iGEM_URL : /Acknowledgements was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Acknowledgements in Experiments/Other/index.html.
2020-10-27 20:39:48,184 : INFO : iGEM_URL : ../../assets/docs/Experiments--Others--Growth_Rate.pdf was changed to https://2020.igem.org/wiki/images/a/a0/T--BITSPilani-Goa_India--docs--Experiments--Others--Growth_Rate.pdf in Experiments/Other/index.html.
2020-10-27 20:39:48,184 : INFO : iGEM_URL : ../../assets/docs/Experiments--Others--Sugarcane_Juice_HPLC.pdf was changed to https://2020.igem.org/wiki/images/7/7d/T--BITSPilani-Goa_India--docs--Experiments--Others--Sugarcane_Juice_HPLC.pdf in Experiments/Other/index.html.
2020-10-27 20:39:48,184 : INFO : iGEM_URL : /Experiments/Inoculant was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments/Inoculant in Experiments/Other/index.html.
2020-10-27 20:39:48,185 : INFO : iGEM_URL : /Experiments/Protocols was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments/Protocols in Experiments/Other/index.html.
2020-10-27 20:39:48,185 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Experiments/Other/index.html.
2020-10-27 20:39:48,185 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Experiments/Other/index.html.
2020-10-27 20:39:48,185 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Experiments/Other/index.html.
2020-10-27 20:39:48,185 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Experiments/Other/index.html.
2020-10-27 20:39:48,185 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Experiments/Other/index.html.
2020-10-27 20:39:48,185 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Experiments/Other/index.html.
2020-10-27 20:39:48,186 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Experiments/Other/index.html.
2020-10-27 20:39:48,186 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Experiments/Other/index.html.
2020-10-27 20:39:48,186 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Experiments/Other/index.html.
2020-10-27 20:39:48,186 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Experiments/Other/index.html.
2020-10-27 20:39:48,186 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Experiments/Other/index.html.
2020-10-27 20:39:48,186 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Experiments/Other/index.html.
2020-10-27 20:39:48,187 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Experiments/Other/index.html.
2020-10-27 20:39:48,187 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Experiments/Other/index.html.
2020-10-27 20:39:48,187 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Experiments/Other/index.html.
2020-10-27 20:39:48,187 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Experiments/Other/index.html.
2020-10-27 20:39:48,187 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Experiments/Other/index.html.
2020-10-27 20:39:48,187 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Experiments/Other/index.html.
2020-10-27 20:39:48,188 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Experiments/Other/index.html.
2020-10-27 20:39:48,188 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Experiments/Other/index.html but was not found.
2020-10-27 20:39:48,188 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Experiments/Other/index.html.
2020-10-27 20:39:48,205 : INFO : iGEM_URL : ../../assets/docs/Experiments--Others--Growth_Rate.pdf was changed to https://2020.igem.org/wiki/images/a/a0/T--BITSPilani-Goa_India--docs--Experiments--Others--Growth_Rate.pdf in Experiments/Other/index.html.
2020-10-27 20:39:48,205 : INFO : iGEM_URL : ../../assets/docs/Experiments--Others--Sugarcane_Juice_HPLC.pdf was changed to https://2020.igem.org/wiki/images/7/7d/T--BITSPilani-Goa_India--docs--Experiments--Others--Sugarcane_Juice_HPLC.pdf in Experiments/Other/index.html.
2020-10-27 20:39:48,210 : INFO : iGEM_URL : ../../assets/img/Experiments--header.svg was changed to https://2020.igem.org/wiki/images/8/85/T--BITSPilani-Goa_India--img--Experiments--header.svg in Experiments/Other/index.html.
2020-10-27 20:39:48,214 : INFO : build_and_upload : Contents of Experiments/Other/index.html have been uploaded previously. Skipping.
2020-10-27 20:39:48,246 : INFO : iGEM_URL : ../../css/content.css was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/css/contentCSS?action=raw&ctype=text/css in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,247 : INFO : iGEM_URL : ../../content.bundle.js was changed to https://2020.igem.org/Template:BITSPilani-Goa_India/content-bundleJS?action=raw&ctype=text/javascript in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,248 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,249 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,249 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,249 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,249 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,249 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,250 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,250 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,250 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,250 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,250 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,250 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,251 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,251 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,251 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,251 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,251 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,251 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,252 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,252 : WARNING : iGEM_URL : dist/https:/igem.org/2020_Judging_Form?id=3512/index.html is referenced in dist/Experiments/Kill_Switch/index.html but was not found.
2020-10-27 20:39:48,252 : INFO : iGEM_URL : /https://igem.org/2020_Judging_Form?id=3512 was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/https:/igem.org/2020_Judging_Form?id=3512 in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,252 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,252 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,252 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,253 : INFO : iGEM_URL : /Engineering was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Engineering in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,253 : INFO : iGEM_URL : /Safety was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Safety in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,253 : INFO : iGEM_URL : /Implementation was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Implementation in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,253 : INFO : iGEM_URL : /Human_Practices was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Human_Practices in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,253 : INFO : iGEM_URL : /Education was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Education in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,253 : INFO : iGEM_URL : /Parts was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Parts in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,254 : INFO : iGEM_URL : /Notebook was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Notebook in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,254 : INFO : iGEM_URL : /Experiments was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,254 : INFO : iGEM_URL : /Appendix was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Appendix in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,254 : INFO : iGEM_URL : /Team was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Team in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,254 : INFO : iGEM_URL : /Attributions was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Attributions in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,254 : INFO : iGEM_URL : /Collaborations was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Collaborations in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,255 : INFO : iGEM_URL : /Contribution was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Contribution in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,255 : INFO : iGEM_URL : /Software was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Software in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,255 : INFO : iGEM_URL : /Entrepreneurship was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Entrepreneurship in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,255 : INFO : iGEM_URL : /Judging was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Judging in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,255 : INFO : iGEM_URL : /Sample was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Sample in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,255 : INFO : iGEM_URL : /Acknowledgements was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Acknowledgements in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,256 : INFO : iGEM_URL : ../../assets/docs/Experiments--Killswitch--FNR_Characterisation.pdf was changed to https://2020.igem.org/wiki/images/7/78/T--BITSPilani-Goa_India--docs--Experiments--Killswitch--FNR_Characterisation.pdf in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,256 : INFO : iGEM_URL : ../../assets/docs/Experiments--Killswitch--pH_Dependency.pdf was changed to https://2020.igem.org/wiki/images/9/9f/T--BITSPilani-Goa_India--docs--Experiments--Killswitch--pH_Dependency.pdf in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,256 : INFO : iGEM_URL : ../../assets/docs/Experiments--Killswitch--Response_Time.pdf was changed to https://2020.igem.org/wiki/images/a/ab/T--BITSPilani-Goa_India--docs--Experiments--Killswitch--Response_Time.pdf in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,256 : INFO : iGEM_URL : ../../assets/docs/Experiments--Protocols--EMSA.pdf was changed to https://2020.igem.org/wiki/images/4/4c/T--BITSPilani-Goa_India--docs--Experiments--Protocols--EMSA.pdf in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,256 : INFO : iGEM_URL : ../../assets/docs/Experiments--Protocols--Site_Directed_Mutagenesis.pdf was changed to https://2020.igem.org/wiki/images/a/ae/T--BITSPilani-Goa_India--docs--Experiments--Protocols--Site_Directed_Mutagenesis.pdf in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,257 : INFO : iGEM_URL : /Experiments/pFruB-Cra_System was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments/pFruB-Cra_System in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,257 : INFO : iGEM_URL : /Experiments/Inoculant was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Experiments/Inoculant in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,257 : INFO : iGEM_URL : /Description was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Description in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,257 : INFO : iGEM_URL : /Design was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Design in Experiments/Kill_Switch/index.html.
2020-10-27 20:39:48,257 : INFO : iGEM_URL : /Model was changed to https://2020.igem.org/Team:BITSPilani-Goa_India/Model in Experiments/Kill_Switch/index.html.