-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexercise-list.json
18254 lines (18254 loc) · 901 KB
/
exercise-list.json
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
{
"exercises": [
{
"name": "3/4 Sit-Up",
"force": "pull",
"level": "beginner",
"mechanic": "compound",
"equipment": "body only",
"primaryMuscles": [
"abdominals"
],
"secondaryMuscles": [],
"instructions": [
"Lie down on the floor and secure your feet. Your legs should be bent at the knees.",
"Place your hands behind or to the side of your head. You will begin with your back on the ground. This will be your starting position.",
"Flex your hips and spine to raise your torso toward your knees.",
"At the top of the contraction your torso should be perpendicular to the ground. Reverse the motion, going only ¾ of the way down.",
"Repeat for the recommended amount of repetitions."
],
"category": "strength"
},
{
"name": "90/90 Hamstring",
"force": "push",
"level": "beginner",
"mechanic": null,
"equipment": "body only",
"primaryMuscles": [
"hamstrings"
],
"secondaryMuscles": [
"calves"
],
"instructions": [
"Lie on your back, with one leg extended straight out.",
"With the other leg, bend the hip and knee to 90 degrees. You may brace your leg with your hands if necessary. This will be your starting position.",
"Extend your leg straight into the air, pausing briefly at the top. Return the leg to the starting position.",
"Repeat for 10-20 repetitions, and then switch to the other leg."
],
"category": "stretching"
},
{
"name": "Ab Crunch Machine",
"force": "pull",
"level": "intermediate",
"mechanic": "isolation",
"equipment": "machine",
"primaryMuscles": [
"abdominals"
],
"secondaryMuscles": [],
"instructions": [
"Select a light resistance and sit down on the ab machine placing your feet under the pads provided and grabbing the top handles. Your arms should be bent at a 90 degree angle as you rest the triceps on the pads provided. This will be your starting position.",
"At the same time, begin to lift the legs up as you crunch your upper torso. Breathe out as you perform this movement. Tip: Be sure to use a slow and controlled motion. Concentrate on using your abs to move the weight while relaxing your legs and feet.",
"After a second pause, slowly return to the starting position as you breathe in.",
"Repeat the movement for the prescribed amount of repetitions."
],
"category": "strength"
},
{
"name": "Ab Roller",
"force": "pull",
"level": "intermediate",
"mechanic": "compound",
"equipment": "other",
"primaryMuscles": [
"abdominals"
],
"secondaryMuscles": [
"shoulders"
],
"instructions": [
"Hold the Ab Roller with both hands and kneel on the floor.",
"Now place the ab roller on the floor in front of you so that you are on all your hands and knees (as in a kneeling push up position). This will be your starting position.",
"Slowly roll the ab roller straight forward, stretching your body into a straight position. Tip: Go down as far as you can without touching the floor with your body. Breathe in during this portion of the movement.",
"After a pause at the stretched position, start pulling yourself back to the starting position as you breathe out. Tip: Go slowly and keep your abs tight at all times."
],
"category": "strength"
},
{
"name": "Adductor",
"force": "static",
"level": "intermediate",
"mechanic": "isolation",
"equipment": "foam roll",
"primaryMuscles": [
"adductors"
],
"secondaryMuscles": [],
"instructions": [
"Lie face down with one leg on a foam roll.",
"Rotate the leg so that the foam roll contacts against your inner thigh. Shift as much weight onto the foam roll as can be tolerated.",
"While trying to relax the muscles if the inner thigh, roll over the foam between your hip and knee, holding points of tension for 10-30 seconds. Repeat with the other leg."
],
"category": "stretching"
},
{
"name": "Adductor/Groin",
"force": "static",
"level": "intermediate",
"mechanic": null,
"equipment": null,
"primaryMuscles": [
"adductors"
],
"secondaryMuscles": [],
"instructions": [
"Lie on your back with your feet raised towards the ceiling.",
"Have your partner hold your feet or ankles. Abduct your legs as far as you can. This will be your starting position.",
"Attempt to squeeze your legs together for 10 or more seconds, while your partner prevents you from doing so.",
"Now, relax the muscles in your legs as your partner pushes your feet apart, stretching as far as is comfortable for you. Be sure to let your partner know when the stretch is adequate to prevent overstretching or injury."
],
"category": "stretching"
},
{
"name": "Advanced Kettlebell Windmill",
"force": "push",
"level": "intermediate",
"mechanic": "isolation",
"equipment": "kettlebells",
"primaryMuscles": [
"abdominals"
],
"secondaryMuscles": [
"glutes",
"hamstrings",
"shoulders"
],
"instructions": [
"Clean and press a kettlebell overhead with one arm.",
"Keeping the kettlebell locked out at all times, push your butt out in the direction of the locked out kettlebell. Keep the non-working arm behind your back and turn your feet out at a forty-five degree angle from the arm with the kettlebell.",
"Lower yourself as far as possible.",
"Pause for a second and reverse the motion back to the starting position."
],
"category": "strength"
},
{
"name": "Air Bike",
"force": "pull",
"level": "beginner",
"mechanic": "compound",
"equipment": "body only",
"primaryMuscles": [
"abdominals"
],
"secondaryMuscles": [],
"instructions": [
"Lie flat on the floor with your lower back pressed to the ground. For this exercise, you will need to put your hands beside your head. Be careful however to not strain with the neck as you perform it. Now lift your shoulders into the crunch position.",
"Bring knees up to where they are perpendicular to the floor, with your lower legs parallel to the floor. This will be your starting position.",
"Now simultaneously, slowly go through a cycle pedal motion kicking forward with the right leg and bringing in the knee of the left leg. Bring your right elbow close to your left knee by crunching to the side, as you breathe out.",
"Go back to the initial position as you breathe in.",
"Crunch to the opposite side as you cycle your legs and bring closer your left elbow to your right knee and exhale.",
"Continue alternating in this manner until all of the recommended repetitions for each side have been completed."
],
"category": "strength"
},
{
"name": "All Fours Quad Stretch",
"force": "static",
"level": "intermediate",
"mechanic": null,
"equipment": "body only",
"primaryMuscles": [
"quadriceps"
],
"secondaryMuscles": [
"quadriceps"
],
"instructions": [
"Start off on your hands and knees, then lift your leg off the floor and hold the foot with your hand.",
"Use your hand to hold the foot or ankle, keeping the knee fully flexed, stretching the quadriceps and hip flexors.",
"Focus on extending your hips, thrusting them towards the floor. Hold for 10-20 seconds and then switch sides."
],
"category": "stretching"
},
{
"name": "Alternate Hammer Curl",
"force": "pull",
"level": "beginner",
"mechanic": "isolation",
"equipment": "dumbbell",
"primaryMuscles": [
"biceps"
],
"secondaryMuscles": [
"forearms"
],
"instructions": [
"Stand up with your torso upright and a dumbbell in each hand being held at arms length. The elbows should be close to the torso.",
"The palms of the hands should be facing your torso. This will be your starting position.",
"While holding the upper arm stationary, curl the right weight forward while contracting the biceps as you breathe out. Continue the movement until your biceps is fully contracted and the dumbbells are at shoulder level. Hold the contracted position for a second as you squeeze the biceps. Tip: Only the forearms should move.",
"Slowly begin to bring the dumbbells back to starting position as your breathe in.",
"Repeat the movement with the left hand. This equals one repetition.",
"Continue alternating in this manner for the recommended amount of repetitions."
],
"category": "strength"
},
{
"name": "Alternate Heel Touchers",
"force": "pull",
"level": "beginner",
"mechanic": "isolation",
"equipment": "body only",
"primaryMuscles": [
"abdominals"
],
"secondaryMuscles": [],
"instructions": [
"Lie on the floor with the knees bent and the feet on the floor around 18-24 inches apart. Your arms should be extended by your side. This will be your starting position.",
"Crunch over your torso forward and up about 3-4 inches to the right side and touch your right heel as you hold the contraction for a second. Exhale while performing this movement.",
"Now go back slowly to the starting position as you inhale.",
"Now crunch over your torso forward and up around 3-4 inches to the left side and touch your left heel as you hold the contraction for a second. Exhale while performing this movement and then go back to the starting position as you inhale. Now that both heels have been touched, that is considered 1 repetition.",
"Continue alternating sides in this manner until all prescribed repetitions are done."
],
"category": "strength"
},
{
"name": "Alternate Incline Dumbbell Curl",
"force": "pull",
"level": "beginner",
"mechanic": "isolation",
"equipment": "dumbbell",
"primaryMuscles": [
"biceps"
],
"secondaryMuscles": [
"forearms"
],
"instructions": [
"Sit down on an incline bench with a dumbbell in each hand being held at arms length. Tip: Keep the elbows close to the torso.This will be your starting position.",
"While holding the upper arm stationary, curl the right weight forward while contracting the biceps as you breathe out. As you do so, rotate the hand so that the palm is facing up. Continue the movement until your biceps is fully contracted and the dumbbells are at shoulder level. Hold the contracted position for a second as you squeeze the biceps. Tip: Only the forearms should move.",
"Slowly begin to bring the dumbbell back to starting position as your breathe in.",
"Repeat the movement with the left hand. This equals one repetition.",
"Continue alternating in this manner for the recommended amount of repetitions."
],
"category": "strength"
},
{
"name": "Alternate Leg Diagonal Bound",
"force": "push",
"level": "beginner",
"mechanic": "compound",
"equipment": null,
"primaryMuscles": [
"quadriceps"
],
"secondaryMuscles": [
"abductors",
"adductors",
"calves",
"glutes",
"hamstrings"
],
"instructions": [
"Assume a comfortable stance with one foot slightly in front of the other.",
"Begin by pushing off with the front leg, driving the opposite knee forward and as high as possible before landing. Attempt to cover as much distance to each side with each bound.",
"It may help to use a line on the ground to guage distance from side to side.",
"Repeat the sequence with the other leg."
],
"category": "plyometrics"
},
{
"name": "Alternating Cable Shoulder Press",
"force": "push",
"level": "beginner",
"mechanic": "compound",
"equipment": "cable",
"primaryMuscles": [
"shoulders"
],
"secondaryMuscles": [
"triceps"
],
"instructions": [
"Move the cables to the bottom of the tower and select an appropriate weight.",
"Grasp the cables and hold them at shoulder height, palms facing forward. This will be your starting position.",
"Keeping your head and chest up, extend through the elbow to press one side directly over head.",
"After pausing at the top, return to the starting position and repeat on the opposite side."
],
"category": "strength"
},
{
"name": "Alternating Deltoid Raise",
"force": "push",
"level": "beginner",
"mechanic": "isolation",
"equipment": "dumbbell",
"primaryMuscles": [
"shoulders"
],
"secondaryMuscles": [],
"instructions": [
"In a standing position, hold a pair of dumbbells at your side.",
"Keeping your elbows slightly bent, raise the weights directly in front of you to shoulder height, avoiding any swinging or cheating.",
"Return the weights to your side.",
"On the next repetition, raise the weights laterally, raising them out to your side to about shoulder height.",
"Return the weights to the starting position and continue alternating to the front and side."
],
"category": "strength"
},
{
"name": "Alternating Floor Press",
"force": "push",
"level": "beginner",
"mechanic": "compound",
"equipment": "kettlebells",
"primaryMuscles": [
"chest"
],
"secondaryMuscles": [
"abdominals",
"shoulders",
"triceps"
],
"instructions": [
"Lie on the floor with two kettlebells next to your shoulders.",
"Position one in place on your chest and then the other, gripping the kettlebells on the handle with the palms facing forward.",
"Extend both arms, so that the kettlebells are being held above your chest. Lower one kettlebell, bringing it to your chest and turn the wrist in the direction of the locked out kettlebell.",
"Raise the kettlebell and repeat on the opposite side."
],
"category": "strength"
},
{
"name": "Alternating Hang Clean",
"force": "pull",
"level": "intermediate",
"mechanic": "compound",
"equipment": "kettlebells",
"primaryMuscles": [
"hamstrings"
],
"secondaryMuscles": [
"biceps",
"calves",
"forearms",
"glutes",
"lower back",
"traps"
],
"instructions": [
"Place two kettlebells between your feet. To get in the starting position, push your butt back and look straight ahead.",
"Clean one kettlebell to your shoulder and hold on to the other kettlebell in a hanging position. Clean the kettlebell to your shoulder by extending through the legs and hips as you pull the kettlebell towards your shoulders. Rotate your wrist as you do so.",
"Lower the cleaned kettlebell to a hanging position and clean the alternate kettlebell. Repeat."
],
"category": "strength"
},
{
"name": "Alternating Kettlebell Press",
"force": "push",
"level": "intermediate",
"mechanic": "compound",
"equipment": "kettlebells",
"primaryMuscles": [
"shoulders"
],
"secondaryMuscles": [
"triceps"
],
"instructions": [
"Clean two kettlebells to your shoulders. Clean the kettlebells to your shoulders by extending through the legs and hips as you pull the kettlebells towards your shoulders. Rotate your wrists as you do so.",
"Press one directly overhead by extending through the elbow, turning it so the palm faces forward while holding the other kettlebell stationary .",
"Lower the pressed kettlebell to the starting position and immediately press with your other arm."
],
"category": "strength"
},
{
"name": "Alternating Kettlebell Row",
"force": "pull",
"level": "intermediate",
"mechanic": "isolation",
"equipment": "kettlebells",
"primaryMuscles": [
"middle back"
],
"secondaryMuscles": [
"biceps",
"lats"
],
"instructions": [
"Place two kettlebells in front of your feet. Bend your knees slightly and push your butt out as much as possible. As you bend over to get into the starting position grab both kettlebells by the handles.",
"Pull one kettlebell off of the floor while holding on to the other kettlebell. Retract the shoulder blade of the working side, as you flex the elbow, drawing the kettlebell towards your stomach or rib cage.",
"Lower the kettlebell in the working arm and repeat with your other arm."
],
"category": "strength"
},
{
"name": "Alternating Renegade Row",
"force": "pull",
"level": "expert",
"mechanic": "compound",
"equipment": "kettlebells",
"primaryMuscles": [
"middle back"
],
"secondaryMuscles": [
"abdominals",
"biceps",
"chest",
"lats",
"triceps"
],
"instructions": [
"Place two kettlebells on the floor about shoulder width apart. Position yourself on your toes and your hands as though you were doing a pushup, with the body straight and extended. Use the handles of the kettlebells to support your upper body. You may need to position your feet wide for support.",
"Push one kettlebell into the floor and row the other kettlebell, retracting the shoulder blade of the working side as you flex the elbow, pulling it to your side.",
"Then lower the kettlebell to the floor and begin the kettlebell in the opposite hand. Repeat for several reps."
],
"category": "strength"
},
{
"name": "Ankle Circles",
"force": "pull",
"level": "beginner",
"mechanic": "isolation",
"equipment": null,
"primaryMuscles": [
"calves"
],
"secondaryMuscles": [],
"instructions": [
"Use a sturdy object like a squat rack to hold yourself.",
"Lift the right leg in the air (just around 2 inches from the floor) and perform a circular motion with the big toe. Pretend that you are drawing a big circle with it. Tip: One circle equals 1 repetition. Breathe normally as you perform the movement.",
"When you are done with the right foot, then repeat with the left leg."
],
"category": "stretching"
},
{
"name": "Ankle On The Knee",
"force": "static",
"level": "beginner",
"mechanic": null,
"equipment": null,
"primaryMuscles": [
"glutes"
],
"secondaryMuscles": [],
"instructions": [
"From a lying position, bend your knees and keep your feet on the floor.",
"Place your ankle of one foot on your opposite knee.",
"Grasp the thigh or knee of the bottom leg and pull both of your legs into the chest. Relax your neck and shoulders. Hold for 10-20 seconds and then switch sides."
],
"category": "stretching"
},
{
"name": "Anterior Tibialis-SMR",
"force": "static",
"level": "intermediate",
"mechanic": null,
"equipment": "other",
"primaryMuscles": [
"calves"
],
"secondaryMuscles": [],
"instructions": [
"Begin seated on the ground with your legs bent and your feet on the floor.",
"Using a Muscle Roller or a rolling pin, apply pressure to the muscles on the outside of your shins. Work from just below the knee to above the ankle, pausing at points of tension for 10-30 seconds. Repeat on the other leg."
],
"category": "stretching"
},
{
"name": "Anti-Gravity Press",
"force": "push",
"level": "beginner",
"mechanic": "compound",
"equipment": "barbell",
"primaryMuscles": [
"shoulders"
],
"secondaryMuscles": [
"middle back",
"traps",
"triceps"
],
"instructions": [
"Place a bar on the ground behind the head of an incline bench.",
"Lay on the bench face down. With a pronated grip, pick the barbell up from the floor. Flex the elbows, performing a reverse curl to bring the bar near your chest. This will be your starting position.",
"To begin, press the barbell out in front of your head by extending your elbows. Keep your arms parallel to the ground throughout the movement.",
"Return to the starting position and repeat to complete the set."
],
"category": "strength"
},
{
"name": "Arm Circles",
"force": "push",
"level": "beginner",
"mechanic": "isolation",
"equipment": null,
"primaryMuscles": [
"shoulders"
],
"secondaryMuscles": [
"traps"
],
"instructions": [
"Stand up and extend your arms straight out by the sides. The arms should be parallel to the floor and perpendicular (90-degree angle) to your torso. This will be your starting position.",
"Slowly start to make circles of about 1 foot in diameter with each outstretched arm. Breathe normally as you perform the movement.",
"Continue the circular motion of the outstretched arms for about ten seconds. Then reverse the movement, going the opposite direction."
],
"category": "stretching"
},
{
"name": "Arnold Dumbbell Press",
"force": "push",
"level": "intermediate",
"mechanic": "compound",
"equipment": "dumbbell",
"primaryMuscles": [
"shoulders"
],
"secondaryMuscles": [
"triceps"
],
"instructions": [
"Sit on an exercise bench with back support and hold two dumbbells in front of you at about upper chest level with your palms facing your body and your elbows bent. Tip: Your arms should be next to your torso. The starting position should look like the contracted portion of a dumbbell curl.",
"Now to perform the movement, raise the dumbbells as you rotate the palms of your hands until they are facing forward.",
"Continue lifting the dumbbells until your arms are extended above you in straight arm position. Breathe out as you perform this portion of the movement.",
"After a second pause at the top, begin to lower the dumbbells to the original position by rotating the palms of your hands towards you. Tip: The left arm will be rotated in a counter clockwise manner while the right one will be rotated clockwise. Breathe in as you perform this portion of the movement.",
"Repeat for the recommended amount of repetitions."
],
"category": "strength"
},
{
"name": "Around The Worlds",
"force": "push",
"level": "intermediate",
"mechanic": "compound",
"equipment": "dumbbell",
"primaryMuscles": [
"chest"
],
"secondaryMuscles": [
"shoulders"
],
"instructions": [
"Lay down on a flat bench holding a dumbbell in each hand with the palms of the hands facing towards the ceiling. Tip: Your arms should be parallel to the floor and next to your thighs. To avoid injury, make sure that you keep your elbows slightly bent. This will be your starting position.",
"Now move the dumbbells by creating a semi-circle as you displace them from the initial position to over the head. All of the movement should happen with the arms parallel to the floor at all times. Breathe in as you perform this portion of the movement.",
"Reverse the movement to return the weight to the starting position as you exhale."
],
"category": "strength"
},
{
"name": "Atlas Stones",
"force": "pull",
"level": "expert",
"mechanic": "compound",
"equipment": "other",
"primaryMuscles": [
"lower back"
],
"secondaryMuscles": [
"abdominals",
"adductors",
"biceps",
"calves",
"forearms",
"glutes",
"hamstrings",
"middle back",
"quadriceps",
"traps"
],
"instructions": [
"Begin with the atlas stone between your feet. Bend at the hips to wrap your arms vertically around the Atlas Stone, attempting to get your fingers underneath the stone. Many stones will have a small flat portion on the bottom, which will make the stone easier to hold.",
"Pulling the stone into your torso, drive through the back half of your feet to pull the stone from the ground.",
"As the stone passes the knees, lap it by sitting backward, pulling the stone on top of your thighs.",
"Sit low, getting the stone high onto your chest as you change your grip to reach over the stone. Stand, driving through with your hips. Close distance to the loading platform, and lean back, extending the hips to get the stone as high as possible."
],
"category": "strongman"
},
{
"name": "Atlas Stone Trainer",
"force": "pull",
"level": "intermediate",
"mechanic": "compound",
"equipment": "other",
"primaryMuscles": [
"lower back"
],
"secondaryMuscles": [
"biceps",
"forearms",
"glutes",
"hamstrings",
"quadriceps"
],
"instructions": [
"This trainer is effective for developing Atlas Stone strength for those who don't have access to stones, and are typically made from bar ends or heavy pipe.",
"Begin by loading the desired weight onto the bar. Straddle the weight, wrapping your arms around the implement, bending at the hips.",
"Begin by pulling the weight up past the knees, extending through the hips. As the weight clears the knees, it can be lapped by resting it on your thighs and sitting back, hugging it tightly to your chest.",
"Finish the movement by extending through your hips and knees to raise the weight as high as possible. The weight can be returned to the lap or to the ground for successive repetitions."
],
"category": "strongman"
},
{
"name": "Axle Deadlift",
"force": "pull",
"level": "intermediate",
"mechanic": "compound",
"equipment": "other",
"primaryMuscles": [
"lower back"
],
"secondaryMuscles": [
"forearms",
"glutes",
"hamstrings",
"middle back",
"quadriceps",
"traps"
],
"instructions": [
"Approach the bar so that it is centered over your feet. You feet should be about hip width apart. Bend at the hip to grip the bar at shoulder width, allowing your shoulder blades to protract. Typically, you would use an over/under grip.",
"With your feet and your grip set, take a big breath and then lower your hips and flex the knees until your shins contact the bar. Look forward with your head, keep your chest up and your back arched, and begin driving through the heels to move the weight upward.",
"After the bar passes the knees, aggressively pull the bar back, pulling your shoulder blades together as you drive your hips forward into the bar.",
"Lower the bar by bending at the hips and guiding it to the floor."
],
"category": "strongman"
},
{
"name": "Backward Drag",
"force": "pull",
"level": "beginner",
"mechanic": "compound",
"equipment": "other",
"primaryMuscles": [
"quadriceps"
],
"secondaryMuscles": [
"calves",
"forearms",
"glutes",
"hamstrings",
"lower back"
],
"instructions": [
"Load a sled with the desired weight, attaching a rope or straps to the sled that you can hold onto.",
"Begin the exercise by moving backwards for a given distance. Leaning back, extend through the legs for short steps to move as quickly as possible."
],
"category": "strongman"
},
{
"name": "Backward Medicine Ball Throw",
"force": "push",
"level": "beginner",
"mechanic": "compound",
"equipment": "medicine ball",
"primaryMuscles": [
"shoulders"
],
"secondaryMuscles": [],
"instructions": [
"This exercise is best done with a partner. If you lack a partner, the ball can be thrown and retrieved or thrown against a wall.",
"Begin standing a few meters in front of your partner, both facing the same direction. Begin holding the ball between your legs.",
"Squat down and then forcefully reverse direction, coming to full extension and you toss the ball over your head to your partner.",
"Your partner can then roll the ball back to you. Repeat for the desired number of repetitions."
],
"category": "plyometrics"
},
{
"name": "Back Flyes - With Bands",
"force": "pull",
"level": "beginner",
"mechanic": "compound",
"equipment": "bands",
"primaryMuscles": [
"shoulders"
],
"secondaryMuscles": [
"middle back",
"triceps"
],
"instructions": [
"Run a band around a stationary post like that of a squat rack.",
"Grab the band by the handles and stand back so that the tension in the band rises.",
"Extend and lift the arms straight in front of you. Tip: Your arms should be straight and parallel to the floor while perpendicular to your torso. Your feet should be firmly planted on the floor spread at shoulder width. This will be your starting position.",
"As you exhale, move your arms to the sides and back. Keep your arms extended and parallel to the floor. Continue the movement until the arms are extended to your sides.",
"After a pause, go back to the original position as you inhale.",
"Repeat for the recommended amount of repetitions."
],
"category": "strength"
},
{
"name": "Balance Board",
"force": null,
"level": "beginner",
"mechanic": "compound",
"equipment": "other",
"primaryMuscles": [
"calves"
],
"secondaryMuscles": [
"hamstrings",
"quadriceps"
],
"instructions": [
"Place a balance board in front of you.",
"Stand up on it and try to balance yourself.",
"Hold the balance for as long as desired."
],
"category": "strength"
},
{
"name": "Ball Leg Curl",
"force": "pull",
"level": "beginner",
"mechanic": "isolation",
"equipment": "exercise ball",
"primaryMuscles": [
"hamstrings"
],
"secondaryMuscles": [
"calves",
"glutes"
],
"instructions": [
"Begin on the floor laying on your back with your feet on top of the ball.",
"Position the ball so that when your legs are extended your ankles are on top of the ball. This will be your starting position.",
"Raise your hips off of the ground, keeping your weight on the shoulder blades and your feet.",
"Flex the knees, pulling the ball as close to you as you can, contracting the hamstrings.",
"After a brief pause, return to the starting position."
],
"category": "strength"
},
{
"name": "Band Assisted Pull-Up",
"force": null,
"level": "beginner",
"mechanic": "compound",
"equipment": "other",
"primaryMuscles": [
"lats"
],
"secondaryMuscles": [
"abdominals",
"forearms",
"middle back"
],
"instructions": [
"Choke the band around the center of the pullup bar. You can use different bands to provide varying levels of assistance.",
"Pull the end of the band down, and place one bent knee into the loop, ensuring it won't slip out. Take a medium to wide grip on the bar. This will be your starting position.",
"Pull yourself upward by contracting the lats as you flex the elbow. The elbow should be driven to your side. Pull to the front, attempting to get your chin over the bar. Avoid swinging or jerking movements.",
"After a brief pause, return to the starting position."
],
"category": "strength"
},
{
"name": "Band Good Morning",
"force": "pull",
"level": "beginner",
"mechanic": "compound",
"equipment": "bands",
"primaryMuscles": [
"hamstrings"
],
"secondaryMuscles": [
"glutes",
"lower back"
],
"instructions": [
"Using a 41 inch band, stand on one end, spreading your feet a small amount. Bend at the hips to loop the end of the band behind your neck. This will be your starting position.",
"Keeping your legs straight, extend through the hips to come to a near vertical position.",
"Ensure that you do not round your back as you go down back to the starting position."
],
"category": "powerlifting"
},
{
"name": "Band Good Morning (Pull Through)",
"force": "pull",
"level": "beginner",
"mechanic": "compound",
"equipment": "bands",
"primaryMuscles": [
"hamstrings"
],
"secondaryMuscles": [
"glutes",
"lower back"
],
"instructions": [
"Loop the band around a post. Standing a little ways away, loop the opposite end around the neck. Your hands can help hold the band in position.",
"Begin by bending at the hips, getting your butt back as far as possible. Keep your back flat and bend forward to about 90 degrees. Your knees should be only slightly bent.",
"Return to the starting position be driving through with the hips to come back to a standing position."
],
"category": "powerlifting"
},
{
"name": "Band Hip Adductions",
"force": "pull",
"level": "beginner",
"mechanic": "isolation",
"equipment": "bands",
"primaryMuscles": [
"adductors"
],
"secondaryMuscles": [],
"instructions": [
"Anchor a band around a solid post or other object.",
"Stand with your left side to the post, and put your right foot through the band, getting it around the ankle.",
"Stand up straight and hold onto the post if needed. This will be your starting position.",
"Keeping the knee straight, raise your right legs out to the side as far as you can.",
"Return to the starting position and repeat for the desired rep count.",
"Switch sides."
],
"category": "strength"
},
{
"name": "Band Pull Apart",
"force": "pull",
"level": "beginner",
"mechanic": "isolation",
"equipment": "bands",
"primaryMuscles": [
"shoulders"
],
"secondaryMuscles": [
"middle back",
"traps"
],
"instructions": [
"Begin with your arms extended straight out in front of you, holding the band with both hands.",
"Initiate the movement by performing a reverse fly motion, moving your hands out laterally to your sides.",
"Keep your elbows extended as you perform the movement, bringing the band to your chest. Ensure that you keep your shoulders back during the exercise.",
"Pause as you complete the movement, returning to the starting position under control."
],
"category": "strength"
},
{
"name": "Band Skull Crusher",
"force": "push",
"level": "beginner",
"mechanic": "isolation",
"equipment": "bands",
"primaryMuscles": [
"triceps"
],
"secondaryMuscles": [],
"instructions": [
"Secure a band to the base of a rack or the bench. Lay on the bench so that the band is lined up with your head.",
"Take hold of the band, raising your elbows so that the upper arm is perpendicular to the floor. With the elbow flexed, the band should be above your head. This will be your starting position.",
"Extend through the elbow to straighten your arm, keeping your upper arm in place. Pause at the top of the motion, and return to the starting position."
],
"category": "strength"
},
{
"name": "Barbell Ab Rollout",
"force": "pull",
"level": "intermediate",
"mechanic": "compound",
"equipment": "barbell",
"primaryMuscles": [
"abdominals"
],
"secondaryMuscles": [
"lower back",
"shoulders"
],
"instructions": [
"For this exercise you will need to get into a pushup position, but instead of having your hands of the floor, you will be grabbing on to an Olympic barbell (loaded with 5-10 lbs on each side) instead. This will be your starting position.",
"While keeping a slight arch on your back, lift your hips and roll the barbell towards your feet as you exhale. Tip: As you perform the movement, your glutes should be coming up, you should be keeping the abs tight and should maintain your back posture at all times. Also your arms should be staying perpendicular to the floor throughout the movement. If you don't, you will work out your shoulders and back more than the abs.",
"After a second contraction at the top, start to roll the barbell back forward to the starting position slowly as you inhale.",
"Repeat for the recommended amount of repetitions."
],
"category": "strength"
},
{
"name": "Barbell Ab Rollout - On Knees",
"force": "pull",
"level": "expert",
"mechanic": "compound",
"equipment": "barbell",
"primaryMuscles": [
"abdominals"
],
"secondaryMuscles": [
"lower back",
"shoulders"
],
"instructions": [
"Hold an Olympic barbell loaded with 5-10lbs on each side and kneel on the floor.",
"Now place the barbell on the floor in front of you so that you are on all your hands and knees (as in a kneeling push up position). This will be your starting position.",
"Slowly roll the barbell straight forward, stretching your body into a straight position. Tip: Go down as far as you can without touching the floor with your body. Breathe in during this portion of the movement.",
"After a second pause at the stretched position, start pulling yourself back to the starting position as you breathe out. Tip: Go slowly and keep your abs tight at all times."
],
"category": "strength"
},
{
"name": "Barbell Bench Press - Medium Grip",
"force": "push",
"level": "beginner",
"mechanic": "compound",
"equipment": "barbell",
"primaryMuscles": [
"chest"
],
"secondaryMuscles": [
"shoulders",
"triceps"
],
"instructions": [
"Lie back on a flat bench. Using a medium width grip (a grip that creates a 90-degree angle in the middle of the movement between the forearms and the upper arms), lift the bar from the rack and hold it straight over you with your arms locked. This will be your starting position.",
"From the starting position, breathe in and begin coming down slowly until the bar touches your middle chest.",
"After a brief pause, push the bar back to the starting position as you breathe out. Focus on pushing the bar using your chest muscles. Lock your arms and squeeze your chest in the contracted position at the top of the motion, hold for a second and then start coming down slowly again. Tip: Ideally, lowering the weight should take about twice as long as raising it.",
"Repeat the movement for the prescribed amount of repetitions.",
"When you are done, place the bar back in the rack."
],
"category": "strength"
},
{
"name": "Barbell Curl",
"force": "pull",
"level": "beginner",
"mechanic": "isolation",
"equipment": "barbell",
"primaryMuscles": [
"biceps"
],
"secondaryMuscles": [
"forearms"
],
"instructions": [
"Stand up with your torso upright while holding a barbell at a shoulder-width grip. The palm of your hands should be facing forward and the elbows should be close to the torso. This will be your starting position.",
"While holding the upper arms stationary, curl the weights forward while contracting the biceps as you breathe out. Tip: Only the forearms should move.",
"Continue the movement until your biceps are fully contracted and the bar is at shoulder level. Hold the contracted position for a second and squeeze the biceps hard.",
"Slowly begin to bring the bar back to starting position as your breathe in.",
"Repeat for the recommended amount of repetitions."
],
"category": "strength"
},
{
"name": "Barbell Curls Lying Against An Incline",
"force": "pull",
"level": "beginner",
"mechanic": "isolation",
"equipment": "barbell",
"primaryMuscles": [
"biceps"
],
"secondaryMuscles": [],
"instructions": [
"Lie against an incline bench, with your arms holding a barbell and hanging down in a horizontal line. This will be your starting position.",
"While keeping the upper arms stationary, curl the weight up as high as you can while squeezing the biceps. Breathe out as you perform this portion of the movement. Tip: Only the forearms should move. Do not swing the arms.",
"After a second contraction, slowly go back to the starting position as you inhale. Tip: Make sure that you go all of the way down.",
"Repeat for the recommended amount of repetitions."
],
"category": "strength"
},
{
"name": "Barbell Deadlift",
"force": "pull",
"level": "intermediate",
"mechanic": "compound",
"equipment": "barbell",
"primaryMuscles": [
"lower back"
],
"secondaryMuscles": [
"calves",
"forearms",
"glutes",
"hamstrings",
"lats",
"middle back",
"quadriceps",
"traps"
],
"instructions": [
"Stand in front of a loaded barbell.",
"While keeping the back as straight as possible, bend your knees, bend forward and grasp the bar using a medium (shoulder width) overhand grip. This will be the starting position of the exercise. Tip: If it is difficult to hold on to the bar with this grip, alternate your grip or use wrist straps.",
"While holding the bar, start the lift by pushing with your legs while simultaneously getting your torso to the upright position as you breathe out. In the upright position, stick your chest out and contract the back by bringing the shoulder blades back. Think of how the soldiers in the military look when they are in standing in attention.",
"Go back to the starting position by bending at the knees while simultaneously leaning the torso forward at the waist while keeping the back straight. When the weights on the bar touch the floor you are back at the starting position and ready to perform another repetition.",
"Perform the amount of repetitions prescribed in the program."
],
"category": "strength"
},
{
"name": "Barbell Full Squat",
"force": "push",
"level": "intermediate",
"mechanic": "compound",
"equipment": "barbell",
"primaryMuscles": [
"quadriceps"
],
"secondaryMuscles": [
"calves",
"glutes",
"hamstrings",
"lower back"
],
"instructions": [
"This exercise is best performed inside a squat rack for safety purposes. To begin, first set the bar on a rack just above shoulder level. Once the correct height is chosen and the bar is loaded, step under the bar and place the back of your shoulders (slightly below the neck) across it.",
"Hold on to the bar using both arms at each side and lift it off the rack by first pushing with your legs and at the same time straightening your torso.",
"Step away from the rack and position your legs using a shoulder-width medium stance with the toes slightly pointed out. Keep your head up at all times and maintain a straight back. This will be your starting position.",
"Begin to slowly lower the bar by bending the knees and sitting back with your hips as you maintain a straight posture with the head up. Continue down until your hamstrings are on your calves. Inhale as you perform this portion of the movement.",
"Begin to raise the bar as you exhale by pushing the floor with the heel or middle of your foot as you straighten the legs and extend the hips to go back to the starting position.",
"Repeat for the recommended amount of repetitions."
],
"category": "strength"
},
{
"name": "Barbell Glute Bridge",