-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathexercises.json
9420 lines (9420 loc) · 387 KB
/
exercises.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
[
{
"id": 19,
"id_num": "0042",
"id_hex": "f45",
"name": "bench-press",
"title": "Bench Press",
"url": "http://db.everkinetic.com/exercise/bench-press",
"primer": "This is an exercise for the chest.",
"type": "compound",
"primary": "chest",
"secondary": [
"triceps"
],
"equipment": [
"bench",
"barbell"
],
"images": [
"http://img.everkinetic.com/?action=image&id=19&number=0&key=69cadbdd2&version=cf619212&size=960,960&download=large",
"http://img.everkinetic.com/?action=image&id=19&number=1&key=69cadbdd2&version=5c40b61d&size=960,960&download=large"
],
"img": [
"_images/web/bench-press-1.png",
"_images/web/bench-press-2.png"
],
"steps": [
"Lie on a flat bench with your feet flat on the floor, keep your back flat on the bench.",
"Grasp the bar a little wider than shoulder width apart.",
"Raise the barbell above your body and move it over the middle of your chest, this is your starting position.",
"Lower the bar down so it just touches your chest.",
"Raise the bar till your arms are fully extended and your elbows are locked.",
"Return to starting position."
]
},
{
"id": 27,
"id_num": "0020",
"id_hex": "f20",
"name": "tate-press",
"title": "Tate Press",
"url": "http://db.everkinetic.com/exercise/tate-press",
"primer": "This is an advanced triceps exercise which moves the muscle differently than other exercises.",
"type": "isolation",
"primary": "triceps",
"equipment": [
"dumbbell"
],
"images": [
"http://img.everkinetic.com/?action=image&id=27&number=0&key=69cadbdd2&version=d1a482c2&size=480,480&download=medium",
"http://img.everkinetic.com/?action=image&id=27&number=1&key=69cadbdd2&version=b401258e&size=480,480&download=medium"
],
"img": [
"_images/web/tate-press-1.png",
"_images/web/tate-press-2.png"
],
"steps": [
"Lay flat on a bench with your head at one end and your feet firmly planted on the floor.",
"Hold a dumbbell in each hand so your palms are faced towards your feet.",
"Drawing your abs in and keeping your back on the bench, raise the weights to the center of your chest.",
"Without moving elbows, slowly raise your arms up and out contracting your triceps."
]
},
{
"id": 33,
"id_num": "0001",
"id_hex": "f1",
"name": "static-neck-flexion-extension",
"title": "Static Neck Flexion and Extension",
"url": "http://db.everkinetic.com/exercise/static-neck-flexion-extension",
"primer": "An exercise to either build or warm-up front and back neck strength.",
"type": "isometric",
"primary": "neck extensors, neck flexors",
"equipment": [
"body"
],
"images": [
"http://img.everkinetic.com/?action=image&id=33&number=0&key=69cadbdd2&version=61e6bb3a&size=960,960&download=large",
"http://img.everkinetic.com/?action=image&id=33&number=1&key=69cadbdd2&version=35ba3f21&size=960,960&download=large"
],
"img": [
"_images/web/static-neck-flexion-extension-1.png",
"_images/web/static-neck-flexion-extension-2.png"
],
"steps": [
"An exercise to either build or warm-up front and back neck muscles.",
"Stand or sit with your head in neutral position.",
"Place both of your hands on your forehead.",
"Press your head against your hands and contract your neck muscles.",
"Keep your head from moving forward. Hold for at least 30 seconds.",
"Repeat with hands on the back of your head, pressing against them."
]
},
{
"id": 36,
"id_num": "0002",
"id_hex": "f2",
"name": "static-neck-side-flexion",
"title": "Static Neck Side Flexion",
"url": "http://db.everkinetic.com/exercise/static-neck-side-flexion",
"primer": "An exercise either build or warm up neck side flexors.",
"type": "isometric",
"primary": "neck side flexors",
"equipment": [
"body"
],
"images": [
"http://img.everkinetic.com/?action=image&id=36&number=0&key=69cadbdd2&version=47d24699&size=960,960&download=large",
"http://img.everkinetic.com/?action=image&id=36&number=1&key=69cadbdd2&version=09445cfd&size=960,960&download=large"
],
"img": [
"_images/web/static-neck-side-flexion-1.png",
"_images/web/static-neck-side-flexion-2.png"
],
"steps": [
"Stand or sit with your head in neutral position.",
"Place your left hand against the left side of your head, above your ear.",
"Push your head against your hand, without moving your head.",
"Repeat with your right hand, right side of your head."
],
"tips": [
"Make sure you maintain your chin at a 90 degree angle to your neck"
]
},
{
"id": 39,
"id_num": "0003",
"id_hex": "f3",
"name": "seated-shoulder-press-machine",
"title": "Seated Shoulder Press Machine",
"url": "http://db.everkinetic.com/exercise/seated-shoulder-press-machine",
"primer": "This is an exercise for the shoulder strengthening.",
"type": "isolation",
"primary": "shoulders",
"secondary": [
"triceps"
],
"equipment": [
"machine"
],
"images": [
"http://img.everkinetic.com/?action=image&id=39&number=0&key=69cadbdd2&version=62ec0e54&size=960,960&download=large",
"http://img.everkinetic.com/?action=image&id=39&number=1&key=69cadbdd2&version=4cf9f256&size=960,960&download=large"
],
"img": [
"_images/web/seated-shoulder-press-machine-1.png",
"_images/web/seated-shoulder-press-machine-2.png"
],
"steps": [
"Sit upright with your back supported by the chair and draw your abs in.",
"Place your hands on the bars and with smooth even motions press upward extending your arms, but not locking them.",
"At the top pause then with controlled motion lower the bars to your starting position."
],
"tips": [
"Ensure that the seat and bar have been adjusted for optimal posture."
]
},
{
"id": 42,
"id_num": "0004",
"id_hex": "f4",
"name": "seated-military-press",
"title": "Seated Military Press",
"url": "http://db.everkinetic.com/exercise/seated-military-press",
"primer": "An exercise for the shoulder and triceps strengthening.",
"type": "isolation",
"primary": "shoulders",
"secondary": [
"triceps"
],
"equipment": [
"barbell",
"bench"
],
"images": [
"http://img.everkinetic.com/?action=image&id=42&number=0&key=69cadbdd2&version=cb370555&size=960,960&download=large",
"http://img.everkinetic.com/?action=image&id=42&number=1&key=69cadbdd2&version=12732321&size=960,960&download=large"
],
"img": [
"_images/web/seated-military-press-1.png",
"_images/web/seated-military-press-2.png"
],
"steps": [
"Sit on the bench with your toes pointing straight out, back straight and abs drawn in.",
"Grip the bar with your palms facing outwards and your hands shoulder width apart",
"With bar in front of your head, press upwards extending your arms but not locking them.",
"Pause at the top and then in a controlled movement lower the bar to the starting position."
],
"tips": [
"Ensure your hips, knees and ankles are at 90 degree positions to ensure optimal posture.",
"This exercise can also be performed with the bar in the starting position behind your head."
]
},
{
"id": 46,
"id_num": "0005",
"id_hex": "f5",
"name": "shoulder-shrugs",
"title": "Shoulder Shrugs",
"url": "http://db.everkinetic.com/exercise/shoulder-shrugs",
"primer": "An exercise for trapezius strengthening.",
"type": "isolation",
"primary": "trapezius",
"equipment": [
"dumbbell"
],
"images": [
"http://img.everkinetic.com/?action=image&id=46&number=0&key=69cadbdd2&version=9929c909&size=960,960&download=large",
"http://img.everkinetic.com/?action=image&id=46&number=1&key=69cadbdd2&version=2d2d7b9a&size=960,960&download=large"
],
"img": [
"_images/web/shoulder-shrugs-1.png",
"_images/web/shoulder-shrugs-2.png"
],
"steps": [
"Stand with your feet shoulder width apart and a slight bend in your knees.",
"Hold a dumbbell in each hand and with your arms at your sides.",
"Lower your shoulders as much as possible.",
"With your arms straight raise both shoulders up towards your ears.",
"Hold the upright positions for a moment and then lower in a controlled motion."
],
"tips": [
"Do not do this exercise if you are experiencing any shoulder or neck pain."
]
},
{
"id": 50,
"id_num": "0006",
"id_hex": "f6",
"name": "arnold-press",
"title": "Arnold Press",
"url": "http://db.everkinetic.com/exercise/arnold-press",
"primer": "An exercise for shoulder and triceps strengthening.",
"type": "isolation",
"primary": "shoulders",
"secondary": [
"triceps"
],
"equipment": [
"dumbbells"
],
"images": [
"http://img.everkinetic.com/?action=image&id=50&number=0&key=69cadbdd2&version=ac246b9e&size=960,960&download=large",
"http://img.everkinetic.com/?action=image&id=50&number=1&key=69cadbdd2&version=68a62bda&size=960,960&download=large"
],
"img": [
"_images/web/arnold-press-1.png",
"_images/web/arnold-press-2.png"
],
"steps": [
"Sit on a flat bench, feet point forward with your abs drawn in.",
"Grasp a dumbbell in each hand with your palm facing towards your body",
"Bend your elbows to 90 degrees and raise both your arms to the starting point in line with your shoulders.",
"With a steady controlled motion raise your arms up while straightening your elbows while rotating your forearms so that your palms now face away from your body.",
"Bring the dumbbells closer together but do not fully extend your elbows.",
"With a controlled motion lower the dumbbells to the starting position at your shoulders."
],
"tips": [
"Start with a lower dumbbell weight in order to perfect the technique.",
"Do not perform this exercise if you have shoulder pain."
]
},
{
"id": 53,
"id_num": "0007",
"id_hex": "f7",
"name": "front-barbell-raises",
"title": "Front Barbell Raises",
"url": "http://db.everkinetic.com/exercise/front-barbell-raises",
"primer": "An exercise for shoulder, chest and forearm strengthening.",
"type": "isolation",
"primary": "shoulders",
"secondary": [
"chest",
"forerm"
],
"equipment": [
"barbell"
],
"images": [
"http://img.everkinetic.com/?action=image&id=53&number=0&key=69cadbdd2&version=d168a0f4&size=960,960&download=large",
"http://img.everkinetic.com/?action=image&id=53&number=1&key=69cadbdd2&version=1b7f9eee&size=960,960&download=large"
],
"img": [
"_images/web/front-barbell-raises-1.png",
"_images/web/front-barbell-raises-2.png"
],
"steps": [
"Grasp a barbell with an overhand grip(palms of hands face downwards) .",
"Stand up-right with your feet shoulder width apart, knees slightly bent and your abs drawn in.",
"With your arms straight, raise the barbell in a controlled motion to shoulder level.",
"Hold for a moment and then lower the barbell in at the same motion."
],
"tips": [
"Maintain a good upright posture when performing this exercise, do not sway or arch your back.",
"Do not perform this exercise if you have shoulder pain."
]
},
{
"id": 56,
"id_num": "0008",
"id_hex": "f8",
"name": "front-cable-raises",
"title": "Front Cable Raises",
"url": "http://db.everkinetic.com/exercise/front-cable-raises",
"primer": "An exercise for shoulders, chest and forearm strengthening.",
"type": "isolation",
"primary": "shoulders",
"secondary": [
"chest",
"forearm"
],
"equipment": [
"cable machine"
],
"images": [
"http://img.everkinetic.com/?action=image&id=56&number=0&key=69cadbdd2&version=634b9077&size=960,960&download=large",
"http://img.everkinetic.com/?action=image&id=56&number=1&key=69cadbdd2&version=5cfd5a2f&size=960,960&download=large"
],
"img": [
"_images/web/front-cable-raises-1.png",
"_images/web/front-cable-raises-2.png"
],
"steps": [
"Place the pulley on the setting just above the floor.",
"Stand with your feet shoulder width apart, your abs drawn in and your knees slightly bent.",
"Starting at waist height, take the pulley in your left hand, palm facing the floor with otherwise known as an overhand grip, and raise your straight arm up towards your left shoulder.",
"At shoulder height pause for a moment.",
"With a controlled movement resist the weight and slowly lower your arm back to starting position at your waist.",
"Repeat the exercise with your right arm."
],
"tips": [
"Maintain a good posture at all times during this exercise ensuring not swaying or arching at your back.",
"Do not perform this exercise if you have shoulder pain."
]
},
{
"id": 59,
"id_num": "0009",
"id_hex": "f9",
"name": "cable-shoulder-shrugs",
"title": "Cable Shoulder Shrugs",
"url": "http://db.everkinetic.com/exercise/cable-shoulder-shrugs",
"primer": "An exercise for trapezius strengthening.",
"type": "isolation",
"primary": "trapezius",
"secondary": [
"shoulders"
],
"equipment": [
"cable machine"
],
"images": [
"http://img.everkinetic.com/?action=image&id=59&number=0&key=69cadbdd2&version=c1e8fc64&size=960,960&download=large",
"http://img.everkinetic.com/?action=image&id=59&number=1&key=69cadbdd2&version=cd0fc21d&size=960,960&download=large"
],
"img": [
"_images/web/cable-shoulder-shrugs-1.png",
"_images/web/cable-shoulder-shrugs-2.png"
],
"steps": [
"Attach a pulley to the lowest setting on cable machine.",
"Stand with your feet shoulder width apart, your abs drawn and your back straight.",
"Start with the pulley at waist height.",
"Grasp the pulley and shrug your shoulders up while keeping your arms extended.",
"Hold this position for a moment then with a controlled motion return to the starting position of the pulley to waist height."
],
"tips": [
"Bend your knees slightly when standing."
]
},
{
"id": 62,
"id_num": "0010",
"id_hex": "f10",
"name": "front-raises",
"title": "Front Raises",
"url": "http://db.everkinetic.com/exercise/front-raises",
"primer": "This is an exercise for shoulder, chest and forearm strengthening.",
"type": "isolation",
"primary": "shoulders",
"secondary": [
"forearm",
"chest"
],
"equipment": [
"dumbbell"
],
"images": [
"http://img.everkinetic.com/?action=image&id=62&number=0&key=69cadbdd2&version=ac5562cd&size=960,960&download=large",
"http://img.everkinetic.com/?action=image&id=62&number=1&key=69cadbdd2&version=7c5a3f6d&size=960,960&download=large"
],
"img": [
"_images/web/front-raises-1.png",
"_images/web/front-raises-2.png"
],
"steps": [
"Stand with your feet shoulder width apart, abs drawn in and knees slightly bent.",
"Grasp a dumbbell in each hand, with your palm facing down.",
"Start with the dumbbell at waist height.",
"Raise your left arm, keeping your elbow slightly bent and your arm straight, to in line with your shoulder.",
"Pause for a moment and with a controlled motion lower your arm to back to the starting position at your waist.",
"Repeat with your right arm."
],
"tips": [
"Do not perform this exercise if you have any shoulder, elbow or wrist pain."
]
},
{
"id": 65,
"id_num": "0011",
"id_hex": "f11",
"name": "barbell-shoulder-press",
"title": "Seated Barbell Shoulder Press",
"url": "http://db.everkinetic.com/exercise/barbell-shoulder-press",
"primer": "This is an exercise for shoulder, chest and triceps strengthening.",
"type": "isolation",
"primary": "shoulders",
"secondary": [
"triceps",
"chest"
],
"equipment": [
"barbell"
],
"images": [
"http://img.everkinetic.com/?action=image&id=65&number=0&key=69cadbdd2&version=3f7ad06f&size=960,960&download=large",
"http://img.everkinetic.com/?action=image&id=65&number=1&key=69cadbdd2&version=660f4bbe&size=960,960&download=large"
],
"img": [
"_images/web/barbell-shoulder-press-1.png",
"_images/web/barbell-shoulder-press-2.png"
],
"steps": [
"Sitting on a bench with a barbell rack, grasp the barbell with a grip 3 to 4 inches wider than your shoulders.",
"Lift the bar off the rack and lower it to just at the height of your shoulders.",
"While maintaining good posture, straighten your arms and raise the bar up above your head.",
"Pause for a moment and then in a controlled movement lower the bar to the starting position."
],
"tips": [
"Do not perform this exercise if you have shoulder, elbow or wrist pain."
]
},
{
"id": 69,
"id_num": "0012",
"id_hex": "f12",
"name": "dumbbell-shoulder-press",
"title": "Dumbbell Shoulder Press",
"url": "http://db.everkinetic.com/exercise/dumbbell-shoulder-press",
"primer": "An exercise for shoulder, chest and triceps strengthening.",
"type": "isolation",
"primary": "shoulders",
"secondary": [
"triceps",
"chest"
],
"equipment": [
"dumbbell"
],
"images": [
"http://img.everkinetic.com/?action=image&id=69&number=0&key=69cadbdd2&version=abe3e5c1&size=960,960&download=large",
"http://img.everkinetic.com/?action=image&id=69&number=1&key=69cadbdd2&version=68dbb67e&size=960,960&download=large"
],
"img": [
"_images/web/dumbbell-shoulder-press-1.png",
"_images/web/dumbbell-shoulder-press-2.png"
],
"steps": [
"Sitting on a bench, with your abs drawn in grasp a dumbbell in each hand, with your palms facing forward.",
"Begin with your arms at the height of your shoulders.",
"Extend your arms and raise the dumbbells up above your head.",
"At the top of the movement, bring your arms closer together.",
"Pause for a moment and then in a controlled movement lower the dumbbells to the starting position.",
"Repeat"
]
},
{
"id": 72,
"id_num": "0013",
"id_hex": "f13",
"name": "smith-machine-upright-row",
"title": "Smith Machine Upright Row",
"url": "http://db.everkinetic.com/exercise/smith-machine-upright-row",
"primer": "This is an exercise for shoulder and biceps strengthening.",
"type": "isolation",
"primary": "shoulders",
"secondary": [
"biceps",
"upper back"
],
"equipment": [
"smith machine"
],
"images": [
"http://img.everkinetic.com/?action=image&id=72&number=0&key=69cadbdd2&version=35bd08bc&size=960,960&download=large",
"http://img.everkinetic.com/?action=image&id=72&number=1&key=69cadbdd2&version=afceac40&size=960,960&download=large"
],
"img": [
"_images/web/smith-machine-upright-row-1.png",
"_images/web/smith-machine-upright-row-2.png"
],
"steps": [
"Stand with your feet shoulder width apart and your abs drawn in.",
"Place the bar on the Smith Machine in the position where your arms are fully extended in front of you.",
"Place your hands shoulder width apart and raise the bar up towards your chin with a controlled motion.",
"Pause at the top for a moment and rotate your shoulder blades together.",
"Lower the bar to the starting position."
],
"tips": [
"Ensure you do not arch your back when pulling the bar up towards your chin."
]
},
{
"id": 75,
"id_num": "0014",
"id_hex": "f14",
"name": "upright-barbell-rows",
"title": "Upright Barbell Rows",
"url": "http://db.everkinetic.com/exercise/upright-barbell-rows",
"primer": "This is an exercise for shoulder, biceps and upper back strengthening.",
"type": "isolation",
"primary": "shoulders",
"secondary": [
"biceps",
"upper back"
],
"equipment": [
"barbell"
],
"images": [
"http://img.everkinetic.com/?action=image&id=75&number=0&key=69cadbdd2&version=0a33ff55&size=960,960&download=large",
"http://img.everkinetic.com/?action=image&id=75&number=1&key=69cadbdd2&version=d43de315&size=960,960&download=large"
],
"img": [
"_images/web/upright-barbell-rows-1.png",
"_images/web/upright-barbell-rows-2.png"
],
"steps": [
"Stand with your feet shoulder width apart, your abs drawn in and back straight.",
"Place the bar on rack in the position where your arms are fully extended in front of you with your elbows slightly bent.",
"Place your hands shoulder width apart and raise the bar up towards your chin with a controlled motion.",
"Pause at the top for a moment and rotate your shoulder blades together.",
"Lower the bar to the starting position.",
"Repeat"
],
"tips": [
"Do not arch your back when raising the barbell towards your chin."
]
},
{
"id": 79,
"id_num": "0015",
"id_hex": "f15",
"name": "upright-cable-row",
"title": "Upright Cable Row",
"url": "http://db.everkinetic.com/exercise/upright-cable-row",
"primer": "This is an exercise for shoulder, biceps and upper back strengthening.",
"type": "isolation",
"primary": "shoulders",
"secondary": [
"upper back",
"biceps"
],
"equipment": [
"cable machine"
],
"images": [
"http://img.everkinetic.com/?action=image&id=79&number=0&key=69cadbdd2&version=ea3d6fe7&size=960,960&download=large",
"http://img.everkinetic.com/?action=image&id=79&number=1&key=69cadbdd2&version=dfd8128b&size=960,960&download=large"
],
"img": [
"_images/web/upright-cable-row-1.png",
"_images/web/upright-cable-row-2.png"
],
"steps": [
"Attach a straight bar to the pulley on the floor.",
"Stand with your feet shoulder width apart, your abs drawn in and your back straight.",
"Grasp the bar with an overhand grasp (your palms facing downwards) and pull it up towards your waist, this is the starting position.",
"Raise the bar up to in line with your shoulders.",
"Pause at the top and rotate your shoulder blades together.",
"Lower the bar in a controlled motion to the starting position."
],
"tips": [
"Do not arch your back when raising the bar to your shoulders."
]
},
{
"id": 83,
"id_num": "0016",
"id_hex": "f16",
"name": "dumbbell-upright-rows",
"title": "Dumbbell Upright Rows",
"url": "http://db.everkinetic.com/exercise/dumbbell-upright-rows",
"primer": "This is an exercise for shoulder, biceps and upper back strengthening.",
"type": "isolation",
"primary": "shoulders",
"secondary": [
"biceps",
"upper back"
],
"equipment": [
"dumbbells"
],
"images": [
"http://img.everkinetic.com/?action=image&id=83&number=0&key=69cadbdd2&version=58426e8b&size=960,960&download=large",
"http://img.everkinetic.com/?action=image&id=83&number=1&key=69cadbdd2&version=64c4da08&size=960,960&download=large"
],
"img": [
"_images/web/dumbbell-upright-rows-1.png",
"_images/web/dumbbell-upright-rows-2.png"
],
"steps": [
"Grasp a dumbbell in each hand with an overhand grip (palms facing downwards) and hold them in front of your thighs.",
"Stand with your feet shoulder width apart, your abs drawn in and your back straight.",
"Starting with the dumbbells at your thighs, slowly raise them up towards your shoulders by bending your elbows.",
"Pause at the top and rotate your shoulder blades together.",
"Lower the dumbbells in a controlled motion to your thighs.",
"Repeat"
],
"tips": [
"Do not arch your back when raising the dumbbells towards your shoulders.",
"Ensure the dumbbells are held close to your body throughout the exercise.",
"Do not perform this exercise if you have wrist, shoulder or elbow pain."
]
},
{
"id": 87,
"id_num": "0017",
"id_hex": "f17",
"name": "bent-over-lateral-cable-raises",
"title": "Bent-over Lateral Cable Raises",
"url": "http://db.everkinetic.com/exercise/bent-over-lateral-cable-raises",
"primer": "This is an exercise for shoulder, trapezius and middle back strengthening.",
"type": "isolation",
"primary": "shoulders",
"secondary": [
"trapezius",
"middle back"
],
"equipment": [
"cable machine"
],
"images": [
"http://img.everkinetic.com/?action=image&id=87&number=0&key=69cadbdd2&version=619187e9&size=960,960&download=large",
"http://img.everkinetic.com/?action=image&id=87&number=1&key=69cadbdd2&version=71a6b325&size=960,960&download=large"
],
"img": [
"_images/web/bent-over-lateral-cable-raises-1.png",
"_images/web/bent-over-lateral-cable-raises-2.png"
],
"steps": [
"Grasp the handle of the low pulley with your right hand.",
"Bend forward from the waist; your upper body should be nearly parallel with the floor. Bend your knees slightly and place your left hand on your left thigh. Let your right arm hang from your shoulder in front of you with your elbow slightly bent. This is your starting position.",
"Lift your right arm, keeping your elbow slightly bent.",
"Keep moving your arm until it is parallel to the floor, in line with your right ear.",
"Slowly bring the weight back down to the starting position.",
"Perform exercise on left arm and then repeat."
],
"tips": [
"Start with a lower weight in order to perfect the technique.",
"Ensure your back remains straight throughout this exercise in order to prevent injury."
]
},
{
"id": 90,
"id_num": "0018",
"id_hex": "f18",
"name": "lateral-dumbbell-raises",
"title": "Lateral Dumbbell Raises",
"url": "http://db.everkinetic.com/exercise/lateral-dumbbell-raises",
"primer": "This is an exercise for lateral deltoid, shoulder and forearm strengthening.",
"type": "isolation",
"primary": "lateral deltoid",
"secondary": [
"forearm",
"shoulders"
],
"equipment": [
"dumbbells"
],
"images": [
"http://img.everkinetic.com/?action=image&id=90&number=0&key=69cadbdd2&version=996307ee&size=960,960&download=large",
"http://img.everkinetic.com/?action=image&id=90&number=1&key=69cadbdd2&version=0e28652b&size=960,960&download=large"
],
"img": [
"_images/web/lateral-dumbbell-raises-1.png",
"_images/web/lateral-dumbbell-raises-2.png"
],
"steps": [
"Grasp a dumbbell in each hand, palms facing inward towards your body and the dumbbells at your sides.",
"Standing with your feet shoulder with apart, draw your abs in and bend your knees slightly.",
"While keeping your torso still, raise the your arms up to the sides keeping your arms straight with a slight bend in the elbows.",
"Raise your arms up until in line with your shoulders, your palms should face the floor.",
"Hold the position for a moment then in a controlled movement lower your arms to the starting position.",
"Repeat"
],
"tips": [
"Maintain a good upright posture ensuring no arching in the back in order to prevent injuries."
]
},
{
"id": 93,
"id_num": "0019",
"id_hex": "f19",
"name": "ball-wall-circles",
"title": "Ball Wall Circles",
"url": "http://db.everkinetic.com/exercise/ball-wall-circles",
"primer": "This is an exercise to strengthen and stretch the rotator cuff muscles or shoulder muscles.",
"type": "compound",
"primary": "shoulders",
"secondary": [
"biceps",
"triceps"
],
"equipment": [
"swiss ball"
],
"images": [
"http://img.everkinetic.com/?action=image&id=93&number=0&key=69cadbdd2&version=0330e5a1&size=960,960&download=large",
"http://img.everkinetic.com/?action=image&id=93&number=1&key=69cadbdd2&version=1541c4c8&size=960,960&download=large"
],
"img": [
"_images/web/ball-wall-circles-1.png",
"_images/web/ball-wall-circles-2.png"
],
"steps": [
"Stand upright with your feet shoulder width apart.",
"Place a Swiss ball at chest height against a wall and with your left hand, roll the ball in small circles against the wall.",
"Keep your arm fully extended with a slight bend in the elbow.",
"Reverse the direction of the circles.",
"Switch arms."
],
"tips": [
"Maintain a good upright posture throughout this exercise.",
"Ensure the swiss ball is inflated enough to allow for smooth rhythmical circles."
]
},
{
"id": 96,
"id_num": "0020",
"id_hex": "f20",
"name": "back-flys-exercise-band",
"title": "Back Fly's with Exercise Band",
"url": "http://db.everkinetic.com/exercise/back-flys-exercise-band",
"primer": "This is an exercise for shoulder, middle back and triceps strengthening.",
"type": "isolation",
"primary": "shoulders",
"secondary": [
"triceps",
"middle back"
],
"equipment": [
"exercise band"
],
"images": [
"http://img.everkinetic.com/?action=image&id=96&number=0&key=69cadbdd2&version=7b073df3&size=960,960&download=large",
"http://img.everkinetic.com/?action=image&id=96&number=1&key=69cadbdd2&version=320ed35e&size=960,960&download=large"
],
"img": [
"_images/web/back-flys-exercise-band-1.png",
"_images/web/back-flys-exercise-band-2.png"
],
"steps": [
"Place an exercise band around a post or machine at mid chest height.",
"Stand with your feet shoulder width apart, abs drawn in and knees slightly bent.",
"Stand back from the post so there is tension in the band, grasping the band with your arms extended in front of you and a slight bend in your elbows; this is your starting position.",
"Bring your arms back in a controlled motion till they are parallel at your sides and in line with your shoulders.",
"Slowly return your arms to the starting position in front of your chest.",
"Repeat."
],
"tips": [
"Maintain a good upright posture at all times during this exercise ensuring you do not arch your back."
]
},
{
"id": 99,
"id_num": "0021",
"id_hex": "f299",
"name": "flat-bench-leg-raises",
"title": "Flat Bench Leg Raises",
"url": "http://db.everkinetic.com/exercise/flat-bench-leg-raises",
"primer": "This is an exercise for lower abdominal strengthening.",
"type": "isolation",
"primary": "lower abdominals",
"equipment": [
"body"
],
"images": [
"http://img.everkinetic.com/?action=image&id=99&number=0&key=69cadbdd2&version=73b7f481&size=960,960&download=large",
"http://img.everkinetic.com/?action=image&id=99&number=1&key=69cadbdd2&version=8be67f23&size=960,960&download=large"
],
"img": [
"_images/web/flat-bench-leg-raises-1.png",
"_images/web/flat-bench-leg-raises-2.png"
],
"steps": [
"Lie on a flat bench with your hands under your hips supporting your back.",
"Your legs should be unsupported by the bench from below your knees.",
"With your feet together and your toes flexed upwards, raise your straight legs up a few cm off the bench; both of your legs should have no contact with the bench. This is your starting position.",
"Keep your legs straight with a slight bend in the knees and raise your legs to just before 90 degrees with your hips.",
"Pause at the top and lower your legs in slow controlled manner back to the starting position.",
"Repeat."
],
"tips": [
"If you are pregnant you should contact your doctor prior to doing this exercise.",
"Ensure your back stays in contact with the bench at all times during this exercise."
]
},
{
"id": 106,
"id_num": "0022",
"id_hex": "f22",
"name": "smith-machine-rear-deltoid-row",
"title": "Smith Machine Rear Deltoid Row",
"url": "http://db.everkinetic.com/exercise/smith-machine-rear-deltoid-row",
"primer": "",
"type": "isolation",
"primary": "rear deltoid",
"secondary": [
"back",
"biceps",
"shoulders"
],
"equipment": [
"smith machine"
],
"images": [
"http://img.everkinetic.com/?action=image&id=106&number=0&key=69cadbdd2&version=fc329a5b&size=960,960&download=large",
"http://img.everkinetic.com/?action=image&id=106&number=1&key=69cadbdd2&version=5b1f76c9&size=960,960&download=large"
],
"img": [
"_images/web/smith-machine-rear-deltoid-row-1.png",
"_images/web/smith-machine-rear-deltoid-row-2.png"
],
"steps": [
"This is an exercise for rear deltoid,shoulder, biceps and back strengthening.",
" Set the bar to the lowest setting.",
"Place your feet shoulder width apart with a slight bend in the knees.",
"Bend at the waist while keeping your back straight and chest parallel to the floor.",
"Grasp the bar slightly wider than your shoulders with an overhand grasp and your arms straight with a slight bend in the elbows.",
"Raise the bar with a controlled motion to the lower part of your chest by bending and elevating your elbows.",
"Hold for a moment and then lower to the starting position.",
"Repeat."
],
"tips": [
"Ensure you back is straight and that you maintain a good posture throughout this exercise."
]
},
{
"id": 109,
"id_num": "0023",
"id_hex": "f23",
"name": "lying-rear-lateral-raise",
"title": "Lying Rear Lateral Raise",
"url": "http://db.everkinetic.com/exercise/lying-rear-lateral-raise",
"primer": "This is an exercise for shoulder strengthening.",
"type": "isolation",
"primary": "shoulders",
"equipment": [
"flat bench",
"dumbbells"
],
"images": [
"http://img.everkinetic.com/?action=image&id=109&number=0&key=69cadbdd2&version=047053b8&size=960,960&download=large",
"http://img.everkinetic.com/?action=image&id=109&number=1&key=69cadbdd2&version=5875772d&size=960,960&download=large"
],
"img": [
"_images/web/lying-rear-lateral-raise-1.png",
"_images/web/lying-rear-lateral-raise-2.png"
],
"steps": [
"Place the dumbbells at he head of the bench.",
"Lie facedown on a raised bench; raised enough for your arms to move freely beneath the bench.",
"Place your toes on the floor in order to stabilise yourself.",
"Grasp the dumbbells and with a 30 degree bend in your elbows, this is the starting position.",
"Raise your arms to shoulder height, maintaining a controlled motion.",
"Return to starting position and repeat."
]
},
{
"id": 112,
"id_num": "0024",
"id_hex": "f24",
"name": "rear-deltoid-row-dumbbell",
"title": "Rear Deltoid Row Dumbbell",
"url": "http://db.everkinetic.com/exercise/rear-deltoid-row-dumbbell",
"primer": "This is an exercise for deltoid, biceps and trapezius strengthening.",
"type": "isolation",
"primary": "posterior deltoid",
"secondary": [
"lateral deltoid",
"biceps",
"trapezius"
],
"equipment": [
"dumbbell"
],
"images": [
"http://img.everkinetic.com/?action=image&id=112&number=0&key=69cadbdd2&version=93b1d5c4&size=960,960&download=large",
"http://img.everkinetic.com/?action=image&id=112&number=1&key=69cadbdd2&version=8ed34100&size=960,960&download=large"
],
"img": [
"_images/web/rear-deltoid-row-dumbbell-1.png",
"_images/web/rear-deltoid-row-dumbbell-2.png"
],
"steps": [
"Place your right foot on the floor, rest your left knee and hand on a flat bench.",
"Lean forward so your body’s weight is supported by your left arm and knee.",
"Keeping your back flat, reach down and pick up the dumbbell with your right hand.",
"Raise your right arm as close to your chest as possible; while bending and bringing your elbow back as far as you can.",
"Pause at the top for a moment and then lower the dumbbell in a controlled manner to the starting position.",
"Switch arms by doing the opposite positioning.",
"Repeat."
],
"tips": [
"maintain a good posture at all times throughout the exercise."
]
},
{
"id": 115,
"id_num": "0025",
"id_hex": "f25",
"name": "seated-cable-rows",
"title": "Seated Cable Rows",
"url": "http://db.everkinetic.com/exercise/seated-cable-rows",
"primer": "This is an exercise for middle back, biceps and lower back strengthening.",
"type": "compound",
"primary": "middle back",
"secondary": [
"biceps",
"lower back"
],
"equipment": [
"cable machine"
],
"images": [
"http://img.everkinetic.com/?action=image&id=115&number=0&key=69cadbdd2&version=e4ea251b&size=960,960&download=large",
"http://img.everkinetic.com/?action=image&id=115&number=1&key=69cadbdd2&version=ad101940&size=960,960&download=large"
],
"img": [
"_images/web/seated-cable-rows-1.png",
"_images/web/seated-cable-rows-2.png"
],
"steps": [
"Sit at a low pulley machine with your feet resting against the footrests and your knees slightly bent.",
"With your abs drawn in and your back straight lean forward slightly to grasp the pulleys with an overhand grip (palms face downwards).",
"Slowly bring the pulleys back towards your abs while sitting upright, keep your elbows in close to your chest.",
"Pause for a moment then return slowly return the pulleys to the starting position.",
"Repeat."
],
"tips": [
"Ensure that your back is straight at all times and do not lock your knees when rowing back."
]
},
{
"id": 119,
"id_num": "0026",
"id_hex": "f26",
"name": "reverse-grips-bent-over-barbell-rows",
"title": "Reverse Grips Bent Over Barbell Rows",
"url": "http://db.everkinetic.com/exercise/reverse-grips-bent-over-barbell-rows",
"primer": "This is an exercise for middle back and biceps strengthening.",
"type": "isolation",
"primary": "middle back",
"secondary": [
"biceps"
],
"equipment": [
"barbell"
],
"images": [
"http://img.everkinetic.com/?action=image&id=119&number=0&key=69cadbdd2&version=9dd6b3e6&size=960,960&download=large",
"http://img.everkinetic.com/?action=image&id=119&number=1&key=69cadbdd2&version=3301cad4&size=960,960&download=large"
],
"img": [
"_images/web/reverse-grips-bent-over-barbell-rows-1.png",
"_images/web/reverse-grips-bent-over-barbell-rows-2.png"
],
"steps": [
"Bend over a barbell at slight angle with your knees bent and your back straight.",
"Grasp the bar with a reverse grip (palms facing up) and slowly pull the barbell to your abs, keeping your elbows close to your sides.",
"Pause for a moment at the top.",
"Return the barbell to the starting position.",
"Repeat."
],
"tips": [
"Ensure that the weight of the barbell is evenly distributed through both hands."
]
},
{
"id": 122,
"id_num": "0027",
"id_hex": "f300",
"name": "stationary-abdominal-draw-in",
"title": "Stationary Abdominal Draw In",
"url": "http://db.everkinetic.com/exercise/stationary-abdominal-draw-in",
"primer": "This is an exercise for abdominal and core strengthening which are vital in supporting the spine.",
"type": "isometric",
"primary": "abdominals",