-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
2106 lines (1693 loc) · 113 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="description" content="Maffick 2015 : Fièsta de Cómico. Maffick is an annual Cultural Festival of Maulana Azad National Institute of Technology, Bhopal MP." />
<meta name="author" content="Maffick Web Developer Team" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Maffick 2015 :: Fièsta de Cómico</title>
<link rel="icon" type="image/png" href="img/manitlogo.png" />
<!------------ Stylesheets -------------->
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/fonts.css"/>
<link rel="stylesheet" type="text/css" href="css/transition.css" />
<link rel="stylesheet" type="text/css" href="css/events.css"/>
<link rel="stylesheet" type="text/css" href="css/accordion.css"/>
<link rel="stylesheet" type="text/css" href="css/registration.css"/>
<link rel="stylesheet" type="text/css" href="css/pronites.css"/>
<link rel="stylesheet" type="text/css" href="css/sponsors.css"/>
<link rel="stylesheet" type="text/css" href="css/contact.css"/>
<link rel="stylesheet" type="text/css" href="css/preloader.css"/>
<!--<link rel="stylesheet" type="text/css" href="css/slider.css" />-->
<!--<link rel="stylesheet" href="css/puppets.css" type="text/css" />-->
<!---------------- Scripts ------------------>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="js/jquery-1.11.2.min.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8" src="js/anim.js">
</script>
<script type="text/javascript" charset="utf-8" src="js/accordion.js">
</script>
</head>
<body>
<!--
---------------------------------------------------------------------
---|@@@\--/@@@|-----/@@\-----||@@@--||@@@------||@@@\---||--//-------
---|----\/----|----/----\----||-----||-----@@--||---@---||-//--------
---|-|\----/|-|---/--==--\---||@@---||@@-------||-------||//---------
---|-|-\__/-|-|--|--/@@\--|--||-----||-----||--||---@---||\\---------
---|_|------|_|--|_/----\_|--||-----||-----||--||@@@/---||-\\--------
---------------------------------------------------------------------
-------------------------------------------Jaiwardhan-& Abhishek--B)-
-->
<!-- Preloader -->
<div id="preloader">
<div id="status"> </div>
</div>
<section class="container">
<article id="home" class="panel">
<img class="cloud1" src="img/clouds/cloud1.png" />
<img class="cloud2" src="img/clouds/cloud2.png" />
<img class="cloud3" src="img/clouds/cloud3.png" />
<a href="http://www.manit.ac.in" target="_blank"><img class="manitlogo selectDisable" src="img/manitlogo.png" /></a>
<!--<div id="banner">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#events">Events</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>-->
<p> .</p>
<div id="homeBanner">
<div id="holderMain">
<div id="overflow-wrapper">
<a href="#"><img id="intro" class ="holder" src="img/maffick.png" /></a>
<a href="#"><div id="aboutus" class ="holder">
<div id="aboutus_inner">
<p class="heading">MAFFICK 2015 'FIESTA DE COMICO'</p><br>
<p class="about-desc">'Maffick' has always been one of the biggest cultural fests of central India. Students from all over the nation come and participate in the plethora of socia-cultural events and activities each year. From electrifying cultural events to professionally organized workshops for developing talents, to sparkling 'Pronites', studded with the jewels of our entertainment industry, we organize events from all genres and walks of culture. With Maffick 2015, 'Fiesta de Comico' we promise a 4 day long cultural extravaganza, with an explosion of talent, challenging competitions and exciting prizes, an experience to cherish for our visitors and participants alike!</p>
</div></div></a>
<a href="gallery.html" target="_blank"><div id="gallery" class ="holder">
<div id="gallery-preview">
<ul>
<li><img src="img/gallery/thumbs/1.jpg" /></li>
<li><img src="img/gallery/thumbs/2.jpg" /></li>
<li><img src="img/gallery/thumbs/3.jpg" /></li>
<li><img src="img/gallery/thumbs/5.jpg" /></li>
<li><img src="img/gallery/thumbs/6.jpg" /></li>
<li><img src="img/gallery/thumbs/7.jpg" /></li>
<li><img src="img/gallery/thumbs/8.jpg" /></li>
<li><img src="img/gallery/thumbs/14.jpg" /></li>
<li><img src="img/gallery/thumbs/13.jpg" /></li>
<li><img src="img/gallery/thumbs/10.jpg" /></li>
<li><img src="img/gallery/thumbs/11.jpg" /></li>
<li><img src="img/gallery/thumbs/9.jpg" /></li>
<li><img src="img/gallery/thumbs/12.jpg" /></li>
<li><img src="img/gallery/thumbs/15.jpg" /></li>
</ul>
<!--<div id="gallery-overlay">
<p>View Gallery</p>
</div>-->
</div>
</div></a>
<a href="#"><div id="teaser" class="holder"><iframe width="100%" height="100%" src="https://www.youtube.com/embed/OF06QA32DYk?autoplay=0&showinfo=0&controls=0&rel=0" frameborder="0" allowfullscreen ></iframe></div>
</div>
</div>
<div id="hometabs">
<a href="#intro"><img class="tab" src="img/tab1.png" /></a>
<a href="#aboutus"><img class="tab" src="img/tab2.png" /></a>
<a href="#gallery"><img class="tab" src="img/tab3.png" /></a></a>
<a href="#teaser"><img class="tab" src="img/tab4.png" /></a>
</div>
</div>
<!--<div class="maffickBanner">
<img src="img/maffick.png" style="z-index:5" />
</div>-->
</article>
<!-- --------- EVENTS ------------- -->
<article id="events" class="panel">
<div id="eventlist">
<!--<img src="img/comingsoon/hangon.png" />-->
<div id="eventlist_music" class="eventpanel">
<div class="accordion">
<div class="accordion-section">
<a class="accordion-section-title" href="#accordion-10">SWARAANGAN</a>
<div id="accordion-10" class="accordion-section-content">
<div class="event-description">
<p>Singing is a tranquil river of emotions which emanates from a singer's soul and ends up resting in the hearts of listeners. As spoken by the maestro Rabindranath Tagore himself, "God respects me when I work ; but God loves me when I sing". Music is a powerful instrument to convey one's emotions whether they be violent or calm, passionate or apathetic, un-yearning or abjuring. For some it is a matter of sheer devotion, for some it is a pilgrimage and for some it is an unparalleled way of expression. Everyone has it somewhere deep inside the heart to perform live on a stage in front of a roaring audience! So wake up and grab the chance to rock the stage with your exhilarating performances. Come and indulge yourself in the world of music because the story of life is quicker than the wink of an eye. We welcome all those for whom singing is not only a passion but their first love, the secret of their energy. We invite those who find music to be like finding their souls and those who love to see audiences enjoying with them. If you have that fire within you, come to this garden of musical notes - "SWARAANGAN".</p><br>
<p><strong>Rounds:</strong></p><br><br>
<p>Kindly Register on the link (Compulsory):</p><br>
<a href="https://docs.google.com/forms/d/1gZHLlyNWPpVrOVdkTPm7l9EuUMGeR4EXmo_oijS7vak/viewform?usp=send_form" target="_blank">https://docs.google.com/forms/d/1gZHLlyNWPpVrOVdkTPm7l9EuUMGeR4EXmo_oijS7vak/viewform?usp=send_form</a><br><br>
<p><strong>Eliminations:</strong>
Participants can perform on any song of their choice.<br>
No accompanists allowed but the singer can use one musical instrument while singing. Judges reserve the right to stop a participant’s performance at any time.<br>
<b>Time Limits</b> 1-2 Minutes</p><br><br>
<p><strong>Finals: </strong>
The finals would be a Karaoke round.<br>
<b>Time Limit :</b> 3-4 minutes (including setup and clearance time)</p><br><br>
<p><strong>General Rules:</strong>
1. Participants are not allowed any accompanists during the elimination rounds.<br>2. Pure Classical tracks are not allowed, however a classical refrain is allowed.<br>3. The decision of the judges shall be final and binding.
</p><br><br>
<p><strong>Venue and Timing:</strong><br>
<strong>Eliminations - </strong> Students Activity Centre(SAC) at 10 a.m. on 11/03/2015
<br><br>
<strong>Finals - </strong> Main Stage at 3 p.m. on 11/03/2015<br><br>
<p><strong>Event Coordinators:</strong>
Deepjyoti Das - 9589239692 <br>
Rajnandini Singh Thakur - 9575427438
</p><br><br><br><br><br><br><br><br><br><br>
</div>
</div><!--end .accordion-section-content-->
</div><!--end .accordion-section-->
<div class="accordion-section">
<a class="accordion-section-title" href="#accordion-11">ANAHAD</a>
<div id="accordion-11" class="accordion-section-content event-description">
<p>Anahad is a soft rock competitive event targeted at semi-professional musicians. The competition hails to find the best creative compositional and reproduction skills irrespective of any language.</p><br/>
<p><br/>
The event is divided into two categories -<br/><br/>
<strong>1 . Prelims :</strong> <i>Bands have to reproduce their favourite number (cover) in their own style.</i><br/><br/>
<strong>Rules -</strong>
Kindly register on the link (COMPULSORY):<br>
<a href="https://docs.google.com/forms/d/12t4gqV5QKLdUyGbjgjqmobg7UzMaIrAuOGd9HT3sfDw/viewform" target="_blank">https://docs.google.com/forms/d/12t4gqV5QKLdUyGbjgjqmobg7UzMaIrAuOGd9HT3sfDw/viewform</a><br><br>
1. Maximum of 10 members and minimum of 4 members including a vocalist.<br/>
2. Time limit : 12 minutes (including setup, sound-check and performance)<br/>
3. Use of pre-recorded music loops is prohibited. Though use of samples and effects is allowed.<br/>
4. A rendition shall be any film/album song released by a music label.<br>
5. Drum set and Keyboard shall be provided.<br>
6. Maximum of 4 Mics and 3 DI shall be provided.<br/>
7. Selection of teams will be the sole discretion of MANIT-Bhopal.<br/><br/>
</p>
<p>
<strong>2. FINALS :</strong>
Five winners will be asked to perform an Original Composition of their choice.<br><br>
<strong>Rules - </strong>1. Maximum of 10 members and minimum of 4 members including a vocalist.<br>
2. Separate sound check of 20 minutes shall be provided.<br>
3. Time limit : 20 minutes of on-stage performance time including setup.<br>
4. The finalists are requested to provide an essence of their original composition during the final performance.<br>
5. 5% of extra marks will be deducted on every extra minute.<br>
6. Sound will be cut after 25mins.<br>
7. Use of pre-recorded music loops is prohibited. Though use of samples and effects is allowed.<br>
8. Maximum of 6 Mics and 4 DI shall be provided.<br>
9. The final decision regarding any matter lies in the hands of judges and organisers.<br>
</p><br><br>
<p><strong>Prizes:</strong>
Prizes worth “1,00,000/-” to be won<br/>
*Winner gets a production deal worth 50,000/- at one of the finest studio in india.<br>
1ST runner up gets a music video production deal worth 15,000/- at one of the studios in bhopal.<br><br>
</p>
<p>
<strong>Contact</strong><br>
Gaurav- 8305478524<br>
</p><br><br><br><br><br><br><br><br><br><br>
</div>
</div>
</div><!--end .accordion-->
</div>
<div id="eventlist_dance" class="eventpanel">
<div class="accordion">
<div class="accordion-section">
<a class="accordion-section-title" href="#accordion-20">Band Baja Barat</a>
<div id="accordion-20" class="accordion-section-content event-description">
<p>
If you are the king of the console, the life of the party, if the deck is your comfort zone, and the thumping crowd is your only desire, if your beats give the crowd chills and bounces across thousands to get them going, then this is the space for you to keep going. To chill your empowering sophistication, we give you the chance to loosen your freedom with the most happening event of your life – BAND BAJA BARAT: <i>for life demands a break.</i><br><br>
Band Baja Barat is a freestyle dance event/competition which is inspired by the dances of the Indian wedding ceremonies. It will be an amalgamation of DJ music, Dhol beats, carefree dance and full Dhamaka.
</p><br><br>
<p><strong>Rules: </strong> The competition will be mainly of two rounds : preliminary and final.<br><br>
<strong>Round 1 :</strong>
1) A team of minimum 8 and maximum 12 members can participate.<br>2) Time limit for the performance will be 3 minutes only.<br>3) Judgement will be based on the creative use of space, energy and enthusiasm, use of props and innovation in the dance style.<br><br>
<strong>Round 2 :</strong>
The teams qualified from the round 1 can only participate in the final round.<br>Team of min 8 and max 12 members.<br>Time limit : 5 minutes.<br>Judgement will be based on the creative use of space, energy and enthusiasm, use of props and innovation in the dance style.
</p><br><br>
<p><strong>PRIZE MONEY :</strong>
<b>Total 30000/- INR to be won!</b>
</p><br>
<p><strong>Event Coordinator: </strong>
Anshul Raikwar 09039436572<br>
Ankit Patidar 09617775074<br>
</p><br>
<br><br><br><br><br><br><br><br><br><br>
</div>
</div>
<div class="accordion-section">
<a class="accordion-section-title" href="#accordion-21">Body Rock</a>
<div id="accordion-21" class="accordion-section-content event-description">
<p>For some dance is an art of expressing themselves with a blend of music and moves. For some it is just another thing to show off. Whatever it maybe, but this time stage is yours, spotlight will follow you till the end. Just balance the grace and equanimity to enthral the audience with your mesmerizing performance. So float free into the melodious music and guide them through the voyage of your beautiful story. Let them witness the leap you take to reach a level where no one can reach because it’s time for your hard work to pay off. BECAUSE IT’S TO MAKE YOUR MOVE!
</p><br><br>
<p><strong>Rules:</strong>
Kindly register on the link before reporting at the events desk:<br>
<a href="https://docs.google.com/forms/d/1dcp4T2ybaKaNN-6GmfNB2bn207uG48IMLuGV9MFwLi8/viewform?usp=send_form" target="_blank">https://docs.google.com/forms/d/1dcp4T2ybaKaNN-6GmfNB2bn207uG48IMLuGV9MFwLi8/viewform?usp=send_form</a><br><br>
<strong>Round 1(Prelims)</strong>1. It’s a solo dance competition.<br>2. participants need to prepare a dance to perform in this round.<br>3. Time limit: 90 to 120 seconds.<br>4. All styles are allowed.<br>
</p><br>
<p><strong>Round 2(Finale)</strong>
<strong>Part I (Impromptu)</strong>1. Shortlisted participants will be given any two songs on the spot for this round<br>2. Time limit 60 seconds.<br>3. All styles are allowed.<br><br>
<strong>Part II (Prop Round)</strong>1. Participants would be provided with 5 genres out of which they have to select any two.<br>2. Minimum of 1 minute of prop usage is compulsory.<br>3. The prop will be of participants’ choice.<br>4. Time limit 3 to 3:30 minutes.<br>
</p><br>
<p><strong>Venue: </strong>SAC (Prelims), EEOAT (Finale)</p><br><br>
<p><strong>Coordinators:</strong>
ATUL WASKALE - 8349917123<br>
PRAGNYA PARIMITA - 9479626443
</p><br><br><br><br><br><br><br><br><br><br>
</div>
</div>
<div class="accordion-section">
<a class="accordion-section-title" href="#accordion-22">Dance Fiesta</a>
<div id="accordion-22" class="accordion-section-content event-description">
<p>The only way to make sense out of change is to plunge into it, move with it, and join the dance the dance can reveal everything mysterious that is hidden in music. The dance is a poem of which each movement is a word, it is poetry with arms and legs the reason that you dance is to make the audience feel like they're dancing.</p><br><br>
<p><strong>RULES :</strong>
Please register on the link before reporting at the events desk:<br>
<a href="https://docs.google.com/forms/d/1kWmzAbKhK1plpLg6itFbJsbFenw2W1yVyXRw-D7-Gn0/viewform?usp=send_form" target="_blank">https://docs.google.com/forms/d/1kWmzAbKhK1plpLg6itFbJsbFenw2W1yVyXRw-D7-Gn0/viewform?usp=send_form</a><br><br>
1. Each team may have 2-10 members<br>2. choice of song is open for participants<br> 3. Props have to brought by the team themselves but the organizers hold the discretion of allowing it one the stage.<br>4. Any kind of fluid, flame is not allowed on the stage
</p><br>
<p><strong>ROUND 1 :</strong>
1. This is an elimination round<br>2. Teams need to perform a dance sequence without any theme<br>3. Time limit is 4-5 minutes<br>4. Teams may incorporate any styles from classical, hiphop, contemporay, bollywood, freestyle, breakdance, krumping etc.<br>
</p>
<p><strong>ROUND 2 :</strong>
1. This is final round<br>2. Time limit for this round is 8-10 minutes<br>3. Selected teams must have to show at least three dance styles<br>4. Teams should perform an extended version of the dance sequence performed in the eliminations<br>
</p><br>
<p><strong>CO-ORDINATORS:</strong>
MANISH YADAV- 8982242820<br>ROSHITA RAI - 7566966047<br>
</p><br><br><br><br><br><br><br><br><br><br>
</div>
</div>
<div class="accordion-section">
<a class="accordion-section-title" href="#accordion-23">War Street</a>
<div id="accordion-23" class="accordion-section-content event-description">
<p>Streets in a way resemble the world- You need to fight for what you want. They say that defeat is just an illusion. Make it real for your rivals. So if you want to earn a place on the floor, battle it out. Take it to the streets. Let the adrenaline rush break the chords holding you to this earth and let rage do the moves. Become the quintessence of your talent and get the front row seat in everyone’s hearts. Street Dancing is not about what you’ve got, it’s what you make of what you’ve got.</p><br><br>
<p>
Street dance, formally known as vernacular dance, refers to dance styles—regardless of country of origin—that evolved outside of dance studios in any available open space such as streets, dance parties, block parties, parks, school yards, raves, and nightclubs. It mainly consists of faceoff between the contenders. This will be a group dance competition.
</p><br><br>
<p><strong>RULES AND REGULATIONS</strong>
Kindly Register on the link:<br>
<a href="https://docs.google.com/forms/d/1JT6iYII2b6bV4XfwLrcpNkedyDhoKcCP66fxx72CTh8/viewform" target="_blank">https://docs.google.com/forms/d/1JT6iYII2b6bV4XfwLrcpNkedyDhoKcCP66fxx72CTh8/viewform</a><br><br>
The crew must have a minimum of 6 members and a maximum of 10 members<br>
</p><br>
<p><strong>Round 1:</strong>
The crew has to give a performance individually without any battle.<br>The performance can be of your choice.<br>The Time limit of the performance must be 4 to 4:30 minutes.<br>The dance forms used in the performance should be Street Dancing styles only.<br>
</p><br>
<p><strong>Round 2:</strong>
The selected crews will have to battle with each other in this round.<br>Time limit for each battle will be 10 minutes.<br>There will be 10 fixed songs for the battle that will be played randomly.<br>The teams will battle out each other and will be marked according to it individually.<br>
</p><br>
<p><strong>Round 2:</strong>
The Top two Scorers from the second round will battle in the finale.
</p><br><br>
<p><strong>Coordinators:</strong>Sandeep Singh - 9755612289<br>Atul Waskale - 8349917123<br><br>
</p><br><br><br><br><br><br><br><br><br><br>
</div>
</div>
</div><!-- End Accordion -->
</div>
<div id="eventlist_drama" class="eventpanel">
<div class="accordion">
<div class="accordion-section">
<a class="accordion-section-title" href="#accordion-30">Nukkad Natak: Dekh Tamasha Dekh</a>
<div id="accordion-30" class="accordion-section-content event-description">
<p>'The secret of change is to focus all your energy not on fighting the old, but on building the new'-Socrates<br>Are you fed up of this turmoil? Do you want to raise your voice against this mayhem? Do you wish for a change? Then this is where you belong. Hit the streets. Act, dance, sing, shout and make the people listen to you. What for?<br>“DEKH TAMASHA DEKH” gives you the platform to enlighten the people about the problems plaguing our society and bring about realization in the youth.<br>
The anarchy, the corruption, the social stigmas and countless malpractices polluting our society makes you want to scream out in frustration.<br>
BE THE CHANGE YOU WANT TO SEE.<br>
</p><br>
<p><strong>Team size:</strong> 8-25(including CAs and music accompanists)
</p><br><br>
<p><strong>Eliminations:</strong>
All participating teams must mail a short synopsis (50-100 words) of their scripts to <a href="mailto:maffick15events@gmail.com" target="_blank">maffick15events@gmail.com</a>
<br>The teams must also register on the link:<br>
<a href="https://docs.google.com/forms/d/1SuzwsIsYLgi7x-QWxpoQUvN-Z8GfrpYgZ89CwuqXRKA/edit" target="_blank">https://docs.google.com/forms/d/1SuzwsIsYLgi7x-QWxpoQUvN-Z8GfrpYgZ89CwuqXRKA/edit</a><br><br>
<p><strong>Finals:</strong>
Teams must perform the version of the same street play which they have submitted as a synopsis.<br>
<b>Time limit: </b> 15-20 mins (empty stage to empty stage)<br>
</p><br>
<p><strong>Judging Criteria:</strong>
Acting, Voice (sync, modulation, diction), screenplay, script, crowd interaction and overall impact.
</p><br><br>
<p><strong>General Rules</strong>
1. The team size represents the number of people registered as a team. Only these shall be allowed to perform the street play.<br>2. Minimum of 6 actors to be included in the team.<br>3. Music accompanists are included in the team number stated above.<br>4. Teams are expected to perform at the open air venue, on a circular stage with an audience on all sides.<br>5. Any kind of fluid, live animals, flame, heavy object or any material which has possibility of damaging the stage is not allowed.<br>6. Teams will be heavily penalised if they exceed the time limit.<br>7. Plays can be based on any theme but since perfomances are being held at public venues, any content directed against a certain political group or religious community is strictly prohibited.<br>8. Obscenity (at the discretion of judges) of any kind is not allowed and may lead to disqualification.<br>9. The decision of the judges will be final and binding.<br>
</p><br>
<p><strong>Coordinators</strong>RAJESH PAL<br>+91 9424337936<br>
</p><br><br><br><br><br><br><br><br><br><br>
</div>
</div>
<div class="accordion-section">
<a class="accordion-section-title" href="#accordion-31">Director's Cut</a>
<div id="accordion-31" class="accordion-section-content event-description">
<p>Criticizing the direction of the latest Bollywood masala flick or calling a song to be completely, unnecessary in the scheme of things, finding faults in movies have always been our favorite pastime. It’s now your time to wield the camera, shoot a short film and show the world what you are made up of. However, there is catch !! <br>
All you have is to exhibit your magic behind the camera and make up a film that will leave the audience asking for more.<br>
</p><br>
<p>
<strong>Who can Enter ?</strong>
Students who are registered in any program in an educational institute of India and have a valid Identity card can participate in the event.<br><br>
<strong>How to Enter ?</strong>
PROCEDURE TO SUBMIT YOUR MOVIES..<br>
Kindly Register on the link: <br>
<a href="https://docs.google.com/forms/d/11nBwLjDrYNwfD_d_KEPm5A64SDGY-B81esros6iSbvg/viewform?usp=send_form" target="_blank">https://docs.google.com/forms/d/11nBwLjDrYNwfD_d_KEPm5A64SDGY-B81esros6iSbvg/viewform?usp=send_form</a><br><br>
1. The Movie must be submitted at the desk of "MOVIE MAKING COMPETITION" on 11/03/2015 between 10 a.m. - 3 p.m.<br>
2. After the mentioned time no submissions would be entertained.<br>
3. Please bring your College ID and MAFFICK Registration slip (which you would get after getting registered for MAFFICK).<br><br>
<strong>Rules for Competition</strong>
1. Each team can consist of a maximum of 5-6 members.<br>
2. Only one entry per team is allowed.<br>
3. Participants must bring their own cameras and actors for the competition.<br>
4. Time limit: 8-12 min. max.<br>
5. No external help like internet is allowed during the event.<br><br>
<strong>General Rules: </strong>
1. The movie should be in either in Hindi or English or both. No other languages will be allowed.<br>
2. Please make sure you send in entries sufficiently before the deadline.<br>
3. You may use any video camera you deem suitable for shooting the movie. However, we strongly discourage low-resolution cameras, including webcams and mobile-phone cameras.<br>
4. Once the top movies are shortlisted, the concerned participants would be asked to submit the scanned copies of their identity cards.<br>
5. Obscenity (at the discretion of the judges) of any kind is not allowed and will lead to immediate disqualification.<br>
6. Time Limit should be followed. Participants will be heavily penalized by judges in case of exceeding the time limit.<br>
7. The decision of the judges will be final and binding.<br>
</p><br>
<p><strong>Contact</strong>
+91 9827282534
</p><br><br><br><br><br><br><br><br><br><br>
</div>
</div>
</div> <!--- Accordion Ends -->
</div>
<div id="eventlist_informals" class="eventpanel">
<div class="accordion">
<div class="accordion-section">
<a class="accordion-section-title" href="#accordion-40">Panache '15 : Ramp Walk / Fashion Show</a>
<div id="accordion-40" class="accordion-section-content event-description">
<p>Creative young minds, stylish Models, Spotlight, Ticket to Stardom. Yes, this is PANACHE! It is a Fashion Competition on a College level. PANACHE is one of the flagship events of MAFFICK – Annual Cultural Festival of MANIT.<br>
Building on a long legacy of bringing out the best budding Designers in the College with outfits donned by the most elegant of Models, PANACHE continued in its endeavor to bring hidden talent to the fore with attractive Prizes this year as well.<br>
</p><br>
<p><strong>Rounds: </strong>There are 2 rounds in this year's Edition of PANACHE.<br>
<strong>1st Round</strong>
This is a Round which will get even the introverts speaking out through their Designs. With the moods dripping off their Designs, they will use their creativity to make the Audience 'feel' the same way as they did.<br><br>
<strong>2nd Round</strong>
The second round is an open one but with a catch. Teams have to explore the Comic Con Theme, couple them up with their creativity on the Ramp.<br><br>
The Models' walk spoke a thousand words too as they carried the creations with grace, and set up a show that redefined expression. In short in this round let the heart rule the mind.
</p><br><br>
<p><strong>COMIC-CON (Theme)</strong>
It is a defined by comics and popular arts convention. It is related to comics, movies, television, art, anime, horror, toys, collectible card games, video games, web comics, fantasy novels and sci-fi pop culture. The Participants need to submit their Fashion Designs based on anything related to Comic-Con. The designs will consist of Clothing/Outfits/Costumes And Accessories. The Participants will walk on the Ramp wearing the same Outfits designed by them during the initial level. The Designs should be made keeping in mind the theme and tags associated with it. Using Creativity and Innovation, you can either create your own Characters and Designs or modify and transform the appearance and Costumes of existing characters. And, you can add accessories and other stuff as per your need to give it a perfect finish.<br><br>
<strong>Round 1 (Designing Competition)</strong>
Last Date for Sending the Designs – To be announced on the Facebook Page<br>
Email ID - panache.maffick15@gmail.com<br><br>
<strong>Round 2 (Ramp Walk)</strong>
Date – 12/02/2015 (Proposed Date, 2nd Day of Maffick)<br>
Timings – 2-5 PM (Proposed Timings)<br>
Venue – SAC Auditorium<br>
</p><br>
<p><strong>Rules and Regulations</strong>
<strong>Round 1 (Designing Competition)</strong>
Make a Power Point Presentation having Sketches or Pictures of your Design and a brief Description of it. Send it to panache.maffick15@gmail.com<br><br>
<strong>Round 2 (Ramp Walk)</strong>
* A Team can have 8 - 12 Members. (Including Participants, Choreographer and Coordinator).<br>
* Time limit for every team would be 10 minutes (Including both Setup and Performance).<br>* Negative Marking for exceeding Time limit.<br>
* Theme is Comic Con.<br>
* Teams should carry their Sound Tracks in C.D or Pen Drive.<br>
* Vulgarity is strongly prohibited. Any form of Obscenity will lead to Debarring the Team from the Contest.<br>
* Use of Cigarettes, Alcohol and any unfair means is strongly prohibited.<br>
* Teams will be judged on Costumes, Theme, Walking Stance and Attitude.<br>
* Decision of the Judges will be final and binding.<br>
</p><br>
<p><strong>Prizes: </strong>
To be announced on the Facebook Page.<br><br>
For Further Details regarding the Event, Theme, Description, Rules and Regulations, FAQ's, Dates and other important updates, Kindle Like our Page<br>
<a href="https://www.facebook.com/PANACHE15">https://www.facebook.com/PANACHE15</a>
<br>
</p><br>
<p><strong>Contact: </strong>
Akanksha Sharma - +917805028002<br>
Shabbir Qaizar - +919752664476<br>
Atishay Lahri - +919584814561<br>
Supriya Tiwari - +918103096093<br>
Nandita Singh - +918718860360<br>
Adnan Beg - +918989014960<br>
</p><br><br><br><br><br><br><br><br><br><br>
</div>
</div>
<div class="accordion-section">
<a class="accordion-section-title" href="#accordion-41">Mr. and Ms. Maffick</a>
<div id="accordion-41" class="accordion-section-content event-description">
<p>
Style, they say, is a way to say who you are without having to speak. In fact, life is a fashion show and the world is its runway. Fashion is interwoven into the very social fabric of our societal culture. So much so that today no speck of human life remains untouched with fashion.<br>
It is your sartorial signature that casts your ‘first impression’ and perhaps an impression that lasts long.<br>
MANIT, an institute of national importance that is, has aced all domains, and fashion is no exception. The annual cultural fest of MANIT, Maffick, brings you an opportunity to amalgamate your talent, your spontaneity, your confidence, your sartorial taste and your attitude with your fashion sense, and bring the amalgam to the ramp of “Mr and Miss Maffick”. <br>
</p><br>
<p>
<strong>Kindly register via link (Compulsory):</strong><br>
<a href="https://docs.google.com/forms/d/1yRwEVwLDTDMkmc8vF-Aok3oljJ5zqhtbUHcBNkalp78/viewform?c=0&w=1" target="_blank">https://docs.google.com/forms/d/1yRwEVwLDTDMkmc8vF-Aok3oljJ5zqhtbUHcBNkalp78/viewform?c=0&w=1</a><br><br>
The event will be bifurcated into three rounds, a round a day.<br><br>
<strong>Round 1</strong>
We’ll distribute hand-outs with certain questions, situations and the like, which the contestants will have to fill up. Following this will be a PI which encompasses an informal interview along with the test of one’s confidence and flamboyance.<br>
A total of 24 contestants, who pass the lithmus test of PI, will move ahead to round .<br><br>
<strong>Round 2</strong>
This round will test the contestants on their innate talent and audacity, which means that the contestants can choose to impress the judges by show of their talent or by completing a dare hurled by the judge.<br>
The lucky 16 who make it to the third and the final round.<br><br>
<strong>Round 3</strong>
The shortlisted will don the attire as per the theme allotted (from the four themes which will be told after the second round) and will walk the ramp and will be judged on costumes, theme, walking stance and attitude.<br>
Of these 16, 12 will move to the second half of final round wherein the contestants will have to face a questionnaire from eminent judges. The questionnaire in the finalround will be enjudged on the four parameters i.e. content, fluency , spontaineity and confidence.<br>
</p><br>
<p><strong>RULES AND GUIDELINES:</strong>
<strong>ROUND 1:</strong>
1). Please ensure that your name, phone number and registration numbers are clearly mentioned in the form.<br>
2). Fill out the complete form. Leaving questions blank won't work in your favour.<br>
3). After filling the form, be ready for a small informal interview/interaction for further shortlisting.<br>
4). If you do make it to the short list i.e. after the PI ,we will get in touch with you the day itself.<br>
5). Use of any unparliamentary language is strongly prohibited. Any form of obscenity will lead to debarring the team from the contest<br>
6).The selection whether a contestant chooses to do a dare or show a talent will be done while filling the hand-out and cannot be changed later. <br><br>
<strong>ROUND 2:</strong>
1).The contestants will have to choose the dare from a maximum of two dares, if they are opting for dare.<br>
2).The talent act has to be performed within a time frame of two minutes.<br>
3).For the talent showing, you have to tell us the talent beforehand so that the necessary arrangements can be made.<br>
4).Use of materials like candles,matches,cigrattes,alcohol and any hazardous materials on stage is prohibited.<br><br>
<strong>ROUND 3:</strong>
1) No costumes will be provided by us. Contestants will have to bring their own costumes.<br>
2) Carry your tote-bag and cosmetic case with the necessary items you will need. Make additions as experience teaches.<br>
3) Arrive backstage at least 30 minutes before the show. Go alone and do not have your family or friends meet you or come backstage after the show.<br>
4) Inability to don the theme will result in negative marking.<br>
5) Emphasis will be given to clothing,walking style and originality.<br>
6) Contestants cannot get personal with any other contestant/judges/hosts.<br>
7) Be considerate of others. Remain as quiet as possible backstage. Do not gossip or discuss the show or circumstances that arise during the show. Discuss the experiences of the show afterward.<br>
8) The marking of answers to questionnaire will be based on four parameters: content, fluency, confidence and spontenity.<br>
9) The decision of judges will be final and binding. Any altercation with the judges will lead to disqualification.<br>
</p><br>
<p><strong>EVENT COORDINATORS</strong>
Eshana Jain (8989005048)<br>
Gunjan Singh (305368486)<br>
Pratik Ranjan. (08236852038)<br>
</p><br><br><br><br><br><br><br><br><br><br><br>
</div>
</div>
<div class="accordion-section">
<a class="accordion-section-title" href="#accordion-42">MAFFICK RIDERS 4.0</a>
<div id="accordion-42" class="accordion-section-content event-description">
<p>This time Maffick 2K15 features RIDERS 4.0 which will take the participant through a thrilling roller coaster ride. Basically it will test the testament of their mental and physical state. The events will help the participant to overcome their fear. The ambience of the event will be tough and dirty, pushing the contestants out of their comfort zones. The Game will consist of 5 rounds plus a GD session and Personal Interview. The Rounds will take place in different parts of the college. Strict safety measures will be issued where ever necessary. Elimination will be done on both performance and audience votes.
</p><br><br>
<p><strong>Rules and Regulations:</strong>
1. Registration will be done Individually (Online Registration will be necessary)<br>
2. The Competition will take place in Pair. (1 Boy and 1 Girl)<br>
</p><br>
<p><strong>Prizes:-</strong>
Total 30000/- INR TO BE WON
</p><br><br>
<p><strong>Coordinators:-</strong>
Rajesh Kumar - 09827724287<br>
Ravi Mittal - 07725875429<br>
</p><br><br><br><br><br><br><br><br><br><br>
</div>
</div>
</div> <!--- Accordian Ends ---->
</div>
<div id="eventlist_other" class="eventpanel">
<!--<img src="img/comingsoon/hangon.png" />-->
<div id="funevents" >
<div class="accordion">
<div class="accordion-section">
<a class="accordion-section-title" href="#accordion-50">Maffick Moments- The Photo Contest!!</a>
<div id="accordion-50" class="accordion-section-content event-description">
<p>
The participating teams will be asked to click some photos (selfies,event photos,randoms) during the fest and also capture a video seizing some memories of the fest. The teams with the best photos and video will be amongst the winners.<br>
Keep your Kodak handy and be catchy for the super awesome and indelible moments that MAFFICK'15- Fiesta de' Comico has in house for you. When it is about capturing the moments, there must be no rules. Just speak your heart through the capturing art. Any kind of camera would do.Share happiness. <br><br>
<strong>Rules:</strong>
1. The photos and video must be relevant and captured on the dates of the fest.<br>
2. The photos should not invoke any explicit content.<br>
3. The length of the video must not exceed the time limit of 4 minutes.<br>
4. A team can submit maximum 5 photos.<br>
5. Immense editing of the photos is not allowed.<br><br>
<strong>Event Co-ordinators</strong>
1. Aditya Gautam (8989686039)<br>
2. Saurabh Murjani (8989684152)<br>
3. Amit Parihar<br>
<br><br><br><br><br><br><br>
</p>
</div>
</div>
<div class="accordion-section">
<a class="accordion-section-title" href="#accordion-51">MAFFICRICK</a>
<div id="accordion-51" class="accordion-section-content event-description">
<p>
<strong>Description and Rules:</strong>
1) It will be played with plastic ball and wooden bat knockout tournament with 4 players in each team.<br>
2) It will be 4 overs match.<br>
3) There will be one tip one hand out.<br>
4) If ball goes direct out of the boundary walls, it will be out.<br>
5) There will be extra runs for hitting certain spots (posters) on the walls.<br><br>
<strong>Co-Ordinators</strong>
Ankit Chouksey 9407036266<br>
Lilesh Jinger 7692932945<br>
Sanjay Singh 7828360144<br>
<br><br><br><br><br><br><br>
</p>
</div>
</div>
<div class="accordion-section">
<a class="accordion-section-title" href="#accordion-52">MIND MAZE</a>
<div id="accordion-52" class="accordion-section-content event-description">
<p>
Taking risks is a part and parcel of our lives but when combined with knowledge and a little bit of luck, you never know what awaits you at the next question.<br>
<strong>Rounds:</strong>
<strong>Round 1-</strong>
Questions are from Puzzle, Jumble Words, Problem Statement, Formula and Equations. This round test word power, speed and accuracy. Top teams according to their performance in 1st round will qualify for next round.<br><br>
<strong>Round 2-</strong>
This will be archery round. Each Team will be given 30 min chances to bang the balloons using arrows and bow. Balloons are kept (stick) on a dangling base. Participants need to solve puzzles hidden behind the balloons. Next chance will be allowed only when previous answer should be right.<br><br>
<strong>ROUND 3-</strong>
Each team will be given crosswords, which they have to solve in minimum time span. Crossword belongs to any type.<br><br>
<strong>Rules:</strong>
All participants have to abide by the rules of the event which are as mentioned below:<br>
1. Each team can have maximum 2 members.<br>
2. All the rounds will be time based, surprise task/challenge.<br>
3. Those who will perform the task or clear the challenge in given time in preliminary round will qualify for the next round. <br>
4. The participant who performs the task first or clears the challenge first will be declared as the winner of the finale.<br>
5. Participants are not allowed to use internet from any source while competition is ongoing.<br>
6. Anybody found wavering away from any of the above mentioned rules will be immediately disqualified. <br><br>
<strong>Co-Ordinators</strong>
RAKESH KUMAR -9098587029<br>
DESH DEEPAK - 8989875076<br>
<br><br><br><br><br><br><br>
</p>
</div>
</div>
<div class="accordion-section">
<a class="accordion-section-title" href="#accordion-53">CARICATURAS</a>
<div id="accordion-53" class="accordion-section-content event-description">
<p>
Brace yourselves!!!! This MAFFICK 15 we bring you a chance to re-live your childhood once more with us. Caricaturas gives you a chance to peep once again into that innocent phase of our lives where there were no worries and you had a great time with your comic and cartoon characters.<br>
So, recall all the comics that you’ve read and the cartoons you’ve watched and get ready to build a comic story of your own.<br><br>
<strong>ROUND DETAILS:</strong>
1. In the first round we’ll show the participants certain comic and cartoon characters and they’ll have to guess its name.<br>
2. In the second round the participants will draw an imaginary comic character of their own based on a certain theme which we’ll give them. Top teams will reach the next round.<br>
3. The final round will be a story writing round where the participants will write a comic story of their own based on the other team’s character which they made in the second round.<br><br>
<strong>RULES:</strong>
1. In the first round we’ll show you some cartoon and comic characters and you need to guess their names.<br>
2. Second round will test your imagination and creativity wherein you’ll sketch a comic character of your own based on a certain theme.<br>
3. The final round will check your creativity, imagination and writing ability where you’ll write a story of your own based on the character of some other team.<br>
4. Participation will be in a team of two.<br>
5. There will be three winning teams i.e.in all 6 winners.<br>
6. During any of the rounds, participants are not allowed to talk with other participants.<br><br>
<strong>Co-Ordinators</strong>
SHIVANI GOUR - 8989119618<br>
ANJANA SHRISTI – 9752357319<br>
<br><br><br><br><br><br><br>
</p>
</div>
</div>
<div class="accordion-section">
<a class="accordion-section-title" href="#accordion-54">BINGOLINGO</a>
<div id="accordion-54" class="accordion-section-content event-description">
<p>
<strong>Holly Bolly Tambola</strong>
Everyone has played tambola/bingo with the numbers but here we will play it with the bollywood stuffs which will include movies clippings, t.v. series stuffs , persons in lamlite and will have ample of funn!!!!.<br>
In tambola usually we have to cut a number and complete a row (i.e. Cut a numbers of one row) or houseful(means to cut all the numbers present in ticket). Here the basic rules of tambola are same the zing is that instead of numbers we use some bollywood stuff.<br><br>
<strong>Details:</strong>
1. We show a clip to the participants of a film or a song then they will have to guess the hero. <br>
2. Sometimes we just play the music and participants are supposed to guess the name of movie.<br>
3. We just give the name of hero or actress and they are supposed to find out his/her first movie or vice versa (for eg: Om Shanti Om for Deepika) .<br>
4. We show them a picture ( a famous clip) of a movie then they guess that movie and cut its name from the ticket.<br>
5. Logo of famous Hollywood stuff (for Eg shield of Captain America, logo of Batman, Superman)<br>
6. Some clips of famous Hollywood series and movies are also included like (Sherlock, Iron Man, FRIENDS, Harry Potter, Dark Knight, Avengers, Despicable me etc.)<br><br>
<strong>Event Rules:</strong>
As there are 90 symbols in Game and each ticket has 15 symbols. So, 6 tickets have 15*6 90 symbols. In all these 6 tickets, each symbol from 1-90 occurs in one ticket only. Therefore, when a CUE is called, it will be present in one and only one ticket.<br><br>
1. There are 3 rows and 9 columns in every Tambola Ticket.<br>
2. Every ticket has exactly 15 symbols.<br>
3. There will be at least 1 symbol in every column.<br>
4. A Ticket cannot have same symbol more than once.<br>
5. The players selection will be based on first come first basis.<br><br>
<strong>Coordinators:</strong>
Shivangi Vidyarthi -9630020433<br>
Priyal Gupta-9479540280<br>
Pragya Tripathi-7354250665<br>
<br><br><br><br><br><br><br>
</p>
</div>
</div>
<div class="accordion-section">
<a class="accordion-section-title" href="#accordion-55">SUDOKUMANIA</a>
<div id="accordion-55" class="accordion-section-content event-description">
<p>
Sudoko amateurs and professionals here’s a chance for all of you to show us how good you are. We have prize money at stack but it’s not gonna be a normal sudoko game.An action packed sudoko adventure. Battle to become the sudoku master.<br><br>
Do I need to explain what sudoko is????<br>
You all know about it must have definitely seen it
somewhere????<br>
Even if you haven’t we are giving you a chance to be a part of it….<br><br>
<strong>Rounds:</strong>
<b>1st Round</b>Game of 6*6<br>
Top participants move to the next round.<br>
<br>
<b>2nd Round</b>Game of 9*9<br>
op participants will then go up against each other in a sudoku battle but with some alterations it won’t be normal finale. <br><br>
<strong>Rules:</strong>
THE NORMAL SUDOKO RULES WOULD BE FOLLOWED FOR THE FIRST TWO ROUNDS WITH PREFERENCE GIVEN TO<br>
1. CORRECT SOLUTION <br>
2. TIME COMPLETION <br>
3. MISTAKES MADE: The rules for physical task would be described right at the venue before commencement of the task<br><br>
<strong>Scoring</strong>
First two rounds scoring would be done on correct time completion then time taken and if there are mistakes then no. of errors would be taken to account.<br><br>
<strong>Coordinators:</strong>
Akshay Dugar (8989013205)<br>
Nitesh Neet Raj<br>
Prashant Shah<br>
<br><br><br><br><br><br><br>
</p>
</div>
</div>
<div class="accordion-section">
<a class="accordion-section-title" href="#accordion-56">RACK WARS 2.0</a>
<div id="accordion-56" class="accordion-section-content event-description">
<p>
Hola people!!! Buck up and get ready to experience the biggest extravaganza of your lives. This year with MAFFICK15 we bring to you the most venturesome and exciting journey….RACK WARS 2.0. Get ready to experience the inner thrill and fight the inner you. <br>
So, excited to know what's in store for you??<br>
Here are the various challenges you'll encounter during your adventurous venture. A true combatant is not only physically strong but is the one who masters all aspects of life. This time we deem you on various lines including mental ability, problem solving skills and of course the most vital your physical strength.<br>
Firstly, all the combatants will find their way to the hidden treasure with the clues given to them. This will be followed by a mental round to check your aptitude to enter into the next round. The finals will be a real challenging round where you’ll perform various forby physical tasks. Be ready to experience the chills and have a heart throbbing experience this MAFFICK with RACK WARS 2.0.<br>
Gear up yourselves ... exciting prizes are waiting for you....<br><br>
<strong>ROUND DETAILS:</strong>
1. First round is a treasure hunt round where the participants will given certain clues at each intermediate point(place) with the help of which they’ll reach the final destination. Selected teams will go into the next round.<br>
2. Second round is a mental round which will check the participants’ aptitude.<br>
3. Third round is a physical task round which will test the participants’ physical strength and will have adventurous tasks such as rope climbing, archery,tug of wars etc.<br><br>
<strong>RULES:</strong>
1. The first round is a treasure hunt wherein you’ll be given clues to reach your final destination.<br>
2. Second round will test your aptitude and logical reasoning ability.<br>
3. The final round will test your physical strength based on various physical tasks which you’ll need to perform.<br>
4. During any of the rounds, participants are not allowed to talk with other participants.<br><br>
<strong>Coordinator:</strong>
ABHINAV TIWARI - 8878587898<br>
PRIYESH PATEL – 8236918884<br>
SHIVANI GOUR<br>
<br><br><br><br><br><br><br>
</p>
</div>
</div>
<div class="accordion-section">
<a class="accordion-section-title" href="#accordion-57">KARAOKE</a>
<div id="accordion-57" class="accordion-section-content event-description">
<p>
"Life, he realize, was much like a song. In the beginning there is mystery, in the end there is confirmation, but it's in the middle where all the emotion resides to make the whole thing worthwhile."<br>
MAFFICK 2015 presents “KARAOKE”, a singing cum fun event that bestows students from the college to showcase their singing propensity and expertise. Students are given an opportunity to beguile the judges with their distinct mesmerizing voices. The event is organised by students of MAULANA AZAD NATIONAL INSTITUTE OF TECHNOLOGY, BHOPAL.<br><br>
<strong>ROUNDS:</strong>
1. BLOSSOM THY SOUL: Participants will be asked to choose a specific genre. Karaoke music will be played based on the selected genre and accordingly he/she should identify the karaoke and sing the respective song.<br>
2. WRAP ‘DEM WORDS: Participants will be given a specific set of words and plain music. As the name suggests the students will have to tune their words to the music.<br>
3. SITUATIONAL SINGING: A situation will be provided to the students and they will have to hum the song that first strikes their mind.<br>
4. SING IN THE FAST LANE: A series of karaoke music will be played simultaneously and the participant will have to recognize the music and sing accordingly. <br><br>
<strong>RULES:</strong>
1. The registration for the event will be done on the spot.<br>
2. The students must bring their identity cards.<br>
3. The students will participate solely.<br>
4. In each round the participant will have to follow a strict time boundation.<br>
5. Decision done by the judges will be final and any action of breach done by the participant regarding the results may result in disqualification of the same.<br><br>
<strong>COORDINATORS:</strong>
Aditya Gautam -08989686039<br>
Yamini Singh<br>
Megha Jain<br>
Monika Singh<br>
<br><br><br><br><br><br><br>
</p>
</div>
</div>
<div class="accordion-section">
<a class="accordion-section-title" href="#accordion-58">MOOD COMICO</a>
<div id="accordion-58" class="accordion-section-content event-description">
<p>
Are you a batman or superman fan ? Do you spend your holidays watching Game of thrones or Sherlock ? Do you possess the collections of Naruto or Dragon Ball Z ? Are you addicted to computer games ? Have you watched all the Pirates of the Carribean movies or read a lot of Harry Potter ? Are you an expert on Marvel or DC ? <br>
Well, If you are, then you’re lucky. You’re more likely to score a home run in the event. But if you aren’t, why not take a shot ? Who knows, maybe you remember a few pokemons ?<br>
Maffick brings you the ultimate quizzing event on cartoons, comics, tv shows, movies etc – the first of its kind ! Exciting cash prizes on line. <br>
Our goal is to develop the quizzing scene in our college, and make people explore the kid inside them. Since our event is simple that’s why we think it can be organized in a good way. <br><br>
<strong>RULES:</strong>
1. A team will consist of 2 member (You can make cross college teams)<br>
2. First round will be a written elimination round. It’ll consist of a number of questions on the topics mentioned in the description. <br>
3. Top three teams from this round can directly go to the finals.<br>
4. The next top ten teams will get into the second round. <br>
5. The second round will be an audio-visual fun round.<br>
6. The top three of this round will go to the finals and will be joined by the top three teams of the first round.<br>
7. The third and final round will be a proper quiz round contested among the top six teams.<br>
8. There will be prizes for the teams coming first, second and third.<br>
9. Simultaneously with the final round, an audience round will also take place, and they’ll be given a special prize.<br><br>
<strong>Event Co-ordinators :</strong>
Julian Steeve Tirkey – 7024999720<br>
Mohit Muley - 8878383674<br>
Aian Mehrishi - 8269924428<br>
Nidhi Ahuja<br>
<br><br><br><br><br><br><br>
</p>
</div>
</div>
<div class="accordion-section">
<a class="accordion-section-title" href="#accordion-59">PING PONG & RINGA RINGA</a>
<div id="accordion-59" class="accordion-section-content event-description">
<p>
<center>PING PONG</center><br>
<strong>ROUNDS:</strong>
<b>Round 1:</b><br>
1. Time limit will be 2 mins.<br>
2. Participates have to reply the correct answer while going to destination. if the ball falls then participate will be disqualified.<br><br>
<b>Round 2:</b><br>
1. Time limit 2 mins.participates should be burned the candle and then take a ship water and chugs the candle.<br>
2. if participates candle chugs off then she/he cannot drink water.<br>
3. person who drinks the more water in 2 mins.she/he selected .if she/he drinks water without burning candle he/she disqualified.<br><br>
<b>Round 3:</b><br>
1. Time limit will be 1 min.<br>
2. Participates should be well pronounced and fluently what sentenced they have to given without mumbled otherwise they will be disqualified.<br><br>
<strong>Tie breaker round:</strong>
Last two participate who are selected they will be walked in balancing glass on head.<br><br>
</p>
<p><center><strong>RINGA RINGA</strong></center>
<strong>ROUNDS:</strong>
<b>Round1:</b><br>
1. participants cannot use their hands.<br>
2.time limit is 1mins.ballon should not burst while going to destination.<br>
3.if ballon falls the participants will be disqualified.<br>
<i>No of selecting pairs:</i>4 pairs.<br><br>
<b>Round 2:</b><br>
1. Paring will be done with the help of chit.the selected pairs have to move together <br>
2. If any of them lose their balance they will be disqualified.<br>
<i>No of selecting pairs :</i>2 pairs<br><br>
<strong>Coordinators :</strong>
DEBASINA BHATTACHARYA: 8889095353<br>
SHAKSHITA KUSHWAHA.<br>
<br><br><br><br><br><br><br>
</p>
</div>
</div>
<div class="accordion-section">
<a class="accordion-section-title" href="#accordion-5a">MAFFICK CASTLE</a>
<div id="accordion-5a" class="accordion-section-content event-description">
<p>
<strong>ROUND 1: Avenger’s zone </strong>
To examine your physical & mental strength. We will organize fun event in which brick and balloon will be used to complete a race.<br>
Top teams will qualify for round 2<br><br>
<strong>ROUND 2: Endeavour Zone</strong>
<b>(A) Joint Kick: </b><br>
This is a coordination task in which we will place five define positions from which two player kick football to goalpost. In this game we will tie one leg of each player together. All five positions have different point based upon distance & direction from goal post. It may be 5 points, 10 points & 20 points. These points will be count for ENDEAVOUR.<br><br>
<b>(B)Frozen Free Fall: </b><br>
It is a physical task in which the participant has to put a cup on the head carrying water tiedaround the face and participant has to transfer the water from their cup to the cup of other participant’s head.<br><br>
-- The participant can hold the other participant while pouring water.<br>
-- The cup should be tied around properly.<br>
<i>(These points will be counted for ENDEAVOUR ZONE)</i><br><br>
<b>(C) Human Dice:</b><br>
It is a task in which we take decision on the spot. In this task one participant throw a dice and he/she will be compelled to move the steps (number on dice) to opponent participant. The participant, who will reach ending point, will be eliminated from game. <br>
<i>(These points will be counted for ENDEAVOUR ZONE)</i><br><br>
<b>(D) Blind Asphalt:</b><br>
It is puzzle in which one participant control the car from behind the puzzle and another participant will give directions to move car in the puzzle.<br><br>
--After all complete ENDEAVOUR ZONE, the points of all four tasks is counted and according to these four tasks 1st, 2nd & 3rd will be selected.<br><br>
<strong>Event coordinators:-</strong>
Prakriti tiwari (87805028025) <br>
Yashwant Singh Parihar (+917389377967)<br>
Sooraj Singh Chauhan ( 7692057474)<br>
Ankita Singh Chouhan<br>
<br><br><br><br><br><br><br>
</p>
</div>
</div>