-
Notifications
You must be signed in to change notification settings - Fork 5
/
westminster_larger_catechism.json
6796 lines (6796 loc) · 314 KB
/
westminster_larger_catechism.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
{
"Metadata": {
"Title": "Westminster Larger Catechism",
"AlternativeTitles": ["The Larger Catechism Agreed upon by the Assembly of Divines at Westminster"],
"Year": "1647",
"Authors": [
"Westminster Assembly"
],
"Location": "London, England",
"OriginalLanguage": "English",
"OriginStory": "The Assembly was commissioned to write a guide for catechizing.",
"SourceUrl": "https://archive.org/details/humbleadviceofas200west/page/108/mode/2up",
"SourceAttribution": "Public Domain",
"CreedFormat": "Catechism"
},
"Data": [
{
"Number": 1,
"Question": "What is the chief and highest end of man?",
"Answer": "Man's chief and highest end is to glorify God, and fully to enjoy him forever.",
"AnswerWithProofs": "Man's chief and highest end is to glorify God,[1] and fully to enjoy him forever.[2]",
"Proofs": [
{
"Id": 1,
"References": ["Rom.11.36", "1Cor.10.31"]
},
{
"Id": 2,
"References": ["Ps.73.24-Ps.73.28"]
}
]
},
{
"Number": 2,
"Question": "How doth it appear that there is a God?",
"Answer": "The very light of nature in man, and the works of God, declare plainly that there is a God; but his word and Spirit only do sufficiently and effectually reveal him unto men for their salvation.",
"AnswerWithProofs": "The very light of nature in man, and the works of God, declare plainly that there is a God;[1] but his word and Spirit only do sufficiently and effectually reveal him unto men for their salvation.[2]",
"Proofs": [
{
"Id": 1,
"References": ["Rom.1.19-Rom.1.20", "Ps.19.1-Ps.19.3", "Acts.17.28"]
},
{
"Id": 2,
"References": ["1Cor.2.9-1Cor.2.10", "2Tim.3.15-2Tim.3.17", "Isa.59.21"]
}
]
},
{
"Number": 3,
"Question": "What is the word of God?",
"Answer": "The holy scriptures of the Old and New Testaments are the word of God, the only rule of faith and obedience.",
"AnswerWithProofs": "The holy scriptures of the Old and New Testaments are the word of God,[1] the only rule of faith and obedience.[2]",
"Proofs": [
{
"Id": 1,
"References": ["2Tim.3.16", "2Pet.1.19-2Pet.1.21"]
},
{
"Id": 2,
"References": ["Eph.2.20", "Rev.22.18-Rev.22.19", "Isa.8.20", "Luke.16.29,Luke.16.31", "Gal.1.8-Gal.1.9", "2Tim.3.15-2Tim.3.16"]
}
]
},
{
"Number": 4,
"Question": "How doth it appear that the scriptures are the word of God?",
"Answer": "The scriptures manifest themselves to be the word of God, by their majesty and purity; by the consent of all the parts, and the scope of the whole, which is to give all glory to God; by their light and power to convince and convert sinners, to comfort and build up believers unto salvation: but the Spirit of God bearing witness by and with the scriptures in the heart of man, is alone able fully to persuade it that they are the very word of God.",
"AnswerWithProofs": "The scriptures manifest themselves to be the word of God, by their majesty [1] and purity;[2] by the consent of all the parts,[3] and the scope of the whole, which is to give all glory to God;[4] by their light and power to convince and convert sinners, to comfort and build up believers unto salvation:[5] but the Spirit of God bearing witness by and with the scriptures in the heart of man, is alone able fully to persuade it that they are the very word of God.[6]",
"Proofs": [
{
"Id": 1,
"References": ["Hos.8.12", "1Cor.2.6-1Cor.2.7,1Cor.2.13", "Ps.119.18,Ps.119.129"]
},
{
"Id": 2,
"References": ["Ps.12.6", "Ps.119.140"]
},
{
"Id": 3,
"References": ["Acts.10.43", "Acts.26.22"]
},
{
"Id": 4,
"References": ["Rom.3.19,Rom.3.27"]
},
{
"Id": 5,
"References": ["Acts.23.28", "Heb.4.12", "Jas.1.18", "Ps.19.7-Ps.19.9", "Rom.15.4", "Acts.20.32"]
},
{
"Id": 6,
"References": ["John.16.13-John.16.14", "John.20.31", "1John.2.20,1John.2.27"]
}
]
},
{
"Number": 5,
"Question": "What do the scriptures principally teach?",
"Answer": "The scriptures principally teach, what man is to believe concerning God, and what duty God requires of man.",
"AnswerWithProofs": "The scriptures principally teach, what man is to believe concerning God, and what duty God requires of man.[1]",
"Proofs": [
{
"Id": 1,
"References": ["2Tim.1.13"]
}
]
},
{
"Number": 6,
"Question": "What do the scriptures make known of God?",
"Answer": "The scriptures make known what God is, the persons in the Godhead, his decrees, and the execution of his decrees.",
"AnswerWithProofs": "The scriptures make known what God is,[1] the persons in the Godhead,[2] his decrees,[3] and the execution of his decrees.[4]",
"Proofs": [
{
"Id": 1,
"References": ["Heb.11.6"]
},
{
"Id": 2,
"References": ["1John.5.7"]
},
{
"Id": 3,
"References": ["Acts.15.14-Acts.15.15,Acts.15.18"]
},
{
"Id": 4,
"References": ["Acts.4.27-Acts.4.28"]
}
]
},
{
"Number": 7,
"Question": "What is God?",
"Answer": "God is a Spirit, in and of himself infinite in being, glory, blessedness, and perfection; all-sufficient, eternal, unchangeable, incomprehensible, everywhere present, almighty, knowing all things, most wise, most holy, most just, most merciful and gracious, long-suffering, and abundant in goodness and truth.",
"AnswerWithProofs": "God is a Spirit,[1] in and of himself infinite in being,[2] glory,[3] blessedness,[4] and perfection;[5] all-sufficient,[6] eternal,[7] unchangeable,[8] incomprehensible,[9] everywhere present,[10] almighty,[11] knowing all things,[12] most wise,[13] most holy,[14] most just,[15] most merciful and gracious, long-suffering, and abundant in goodness and truth.[16]",
"Proofs": [
{
"Id": 1,
"References": ["John.4.24"]
},
{
"Id": 2,
"References": ["Exod.3.14", "Job.11.7-Job.11.9"]
},
{
"Id": 3,
"References": ["Acts.7.2"]
},
{
"Id": 4,
"References": ["1Tim.6.1"]
},
{
"Id": 5,
"References": ["Matt.5.48"]
},
{
"Id": 6,
"References": ["Gen.17.1"]
},
{
"Id": 7,
"References": ["Ps.90.2"]
},
{
"Id": 8,
"References": ["Mal.3.6", "Jas.1.17"]
},
{
"Id": 9,
"References": ["1Kgs.8.27"]
},
{
"Id": 10,
"References": ["Ps.139.1-Ps.139.13"]
},
{
"Id": 11,
"References": ["Rev.4.8"]
},
{
"Id": 12,
"References": ["Heb.4.13", "Ps.147.5"]
},
{
"Id": 13,
"References": ["Rom.16.27"]
},
{
"Id": 14,
"References": ["Isa.6.3", "Rev.15.4"]
},
{
"Id": 15,
"References": ["Deut.32.4"]
},
{
"Id": 16,
"References": ["Exod.34.6"]
}
]
},
{
"Number": 8,
"Question": "Are there more Gods than one?",
"Answer": "There is but one only, the living and true God.",
"AnswerWithProofs": "There is but one only, the living and true God.[1]",
"Proofs": [
{
"Id": 1,
"References": ["Deut.6.4", "1Cor.8.4,1Cor.8.6", "Jer.10.10"]
}
]
},
{
"Number": 9,
"Question": "How many persons are there in the Godhead?",
"Answer": "There be three persons in the Godhead, the Father, the Son, and the Holy Ghost; and these three are one true, eternal God, the same in substance, equal in power and glory; although distinguished by their personal properties.",
"AnswerWithProofs": "There be three persons in the Godhead, the Father, the Son, and the Holy Ghost; and these three are one true, eternal God, the same in substance, equal in power and glory; although distinguished by their personal properties.[1]",
"Proofs": [
{
"Id": 1,
"References": ["1John.5.7", "Matt.3.16-Matt.3.17", "Matt.28.19", "2Cor.13.14", "John.10.30"]
}
]
},
{
"Number": 10,
"Question": "What are the personal properties of the three persons in the Godhead?",
"Answer": "It is proper to the Father to beget the Son, and to the Son to be begotten of the Father, and to the Holy Ghost to proceed from the Father and the Son from all eternity.",
"AnswerWithProofs": "It is proper to the Father to beget the Son,[1] and to the Son to be begotten of the Father,[2] and to the Holy Ghost to proceed from the Father and the Son from all eternity.[3]",
"Proofs": [
{
"Id": 1,
"References": ["Heb.1.5-Heb.1.6,Heb.1.8"]
},
{
"Id": 2,
"References": ["John.1.14,John.1.18"]
},
{
"Id": 3,
"References": ["John.15.26", "Gal.4.6"]
}
]
},
{
"Number": 11,
"Question": "How doth it appear that the Son and the Holy Ghost are God equal with the Father?",
"Answer": "The scriptures manifest that the Son and the Holy Ghost are God equal with the Father, ascribing unto them such names, attributes, works, and worship, as are proper to God only.",
"AnswerWithProofs": "The scriptures manifest that the Son and the Holy Ghost are God equal with the Father, ascribing unto them such names,[1] attributes,[2] works,[3] and worship,[4] as are proper to God only.",
"Proofs": [
{
"Id": 1,
"References": ["Isa.6.3,Isa.6.5,Isa.6.8", "John.12.41", "Acts.5.3-Acts.5.4", "Acts.28.25", "1John.5.20"]
},
{
"Id": 2,
"References": ["John.1.1", "John.2.24-John.2.25", "Isa.9.6", "1Cor.2.10-1Cor.2.11"]
},
{
"Id": 3,
"References": ["Col.1.16", "Gen.1.2"]
},
{
"Id": 4,
"References": ["Matt.28.19", "2Cor.13.14"]
}
]
},
{
"Number": 12,
"Question": "What are the decrees of God?",
"Answer": "God's decrees are the wise, free, and holy acts of the counsel of his will, whereby, from all eternity, he hath, for his own glory, unchangeably foreordained: Whatsoever comes to pass in time, especially concerning angels and men.",
"AnswerWithProofs": "God's decrees are the wise, free, and holy acts of the counsel of his will,[1] whereby, from all eternity, he hath, for his own glory, unchangeably foreordained: Whatsoever comes to pass in time,[2] especially concerning angels and men.",
"Proofs": [
{
"Id": 1,
"References": ["Eph.1.11", "Rom.9.14-Rom.9.15,Rom.9.18", "Rom.11.33"]
},
{
"Id": 2,
"References": ["Eph.1.4,Eph.1.11", "Rom.9.22-Rom.9.23", "Ps.33.11"]
}
]
},
{
"Number": 13,
"Question": "What hath God especially decreed concerning angels and men?",
"Answer": "God, by an eternal and immutable decree, out of his mere love, for the praise of his glorious grace, to be manifested in due time, hath elected some angels to glory; and in Christ hath chosen some men to eternal life, and the means thereof: and also, according to his sovereign power, and the unsearchable counsel of his own will (whereby he extendeth or withholdeth favor as he pleases), hath passed by and foreordained the rest to dishonor and wrath, to be for their sin inflicted, to the praise of the glory of his justice.",
"AnswerWithProofs": "God, by an eternal and immutable decree, out of his mere love, for the praise of his glorious grace, to be manifested in due time, hath elected some angels to glory;[1] and in Christ hath chosen some men to eternal life, and the means thereof:[2] and also, according to his sovereign power, and the unsearchable counsel of his own will (whereby he extendeth or withholdeth favor as he pleases), hath passed by and foreordained the rest to dishonor and wrath, to be for their sin inflicted, to the praise of the glory of his justice.[3]",
"Proofs": [
{
"Id": 1,
"References": ["1Tim.5.21"]
},
{
"Id": 2,
"References": ["Eph.1.4-Eph.1.6", "2Thess.2.13-2Thess.2.14"]
},
{
"Id": 3,
"References": ["Rom.9.17-Rom.9.18,Rom.9.21-Rom.9.22", "Matt.11.25-Matt.11.26", "2Tim.2.20", "Jude.1.4", "1Pet.2.8"]
}
]
},
{
"Number": 14,
"Question": "How doth God execute his decrees?",
"Answer": "God executeth his decrees in the works of creation and providence, according to his infallible foreknowledge, and the free and immutable counsel of his own will.",
"AnswerWithProofs": "God executeth his decrees in the works of creation and providence, according to his infallible foreknowledge, and the free and immutable counsel of his own will.[1]",
"Proofs": [
{
"Id": 1,
"References": ["Eph.1.11"]
}
]
},
{
"Number": 15,
"Question": "What is the work of creation?",
"Answer": "The work of creation is that wherein God did in the beginning, by the word of his power, make of nothing the world, and all things therein, for himself, within the space of six days, and all very good.",
"AnswerWithProofs": "The work of creation is that wherein God did in the beginning, by the word of his power, make of nothing the world, and all things therein, for himself, within the space of six days, and all very good.[1]",
"Proofs": [
{
"Id": 1,
"References": ["Gen.1", "Heb.11.8", "Prov.16.4"]
}
]
},
{
"Number": 16,
"Question": "How did God create angels?",
"Answer": "God created all the angels spirits, immortal, holy, excelling in knowledge, mighty in power, to execute his commandments, and to praise his name, yet subject to change.",
"AnswerWithProofs": "God created all the angels[1] spirits,[2] immortal,[3] holy,[4] excelling in knowledge,[5] mighty in power,[6] to execute his commandments, and to praise his name,[7] yet subject to change.[8]",
"Proofs": [
{
"Id": 1,
"References": ["Col.1.16"]
},
{
"Id": 2,
"References": ["Ps.104.4"]
},
{
"Id": 3,
"References": ["Matt.22.30"]
},
{
"Id": 4,
"References": ["Matt.25.31"]
},
{
"Id": 5,
"References": ["2Sam.14.17", "Matt.24.36"]
},
{
"Id": 6,
"References": ["2Thess.1.7"]
},
{
"Id": 7,
"References": ["Ps.103.20-Ps.103.21"]
},
{
"Id": 8,
"References": ["2Pet.2.4"]
}
]
},
{
"Number": 17,
"Question": "How did God create man?",
"Answer": "After God had made all other creatures, he created man male and female; formed the body of the man of the dust of the ground, and the woman of the rib of the man, endued them with living, reasonable, and immortal souls; made them after his own image, in knowledge, righteousness,and holiness; having the law of God written in their hearts, and power to fulfil it, and dominion over the creatures; yet subject to fall.",
"AnswerWithProofs": "After God had made all other creatures, he created man male and female;[1] formed the body of the man of the dust of the ground,[2] and the woman of the rib of the man,[3] endued them with living, reasonable, and immortal souls;[4] made them after his own image,[5] in knowledge,[6] righteousness,and holiness;[7] having the law of God written in their hearts,[8] and power to fulfil it,[9] and dominion over the creatures;[10] yet subject to fall.[11]",
"Proofs": [
{
"Id": 1,
"References": ["Gen.1.27"]
},
{
"Id": 2,
"References": ["Gen.2.7"]
},
{
"Id": 3,
"References": ["Gen.2.22"]
},
{
"Id": 4,
"References": ["Gen.2.7", "Job.35.11", "Eccl.12.7", "Matt.10.28", "Luke.23.43"]
},
{
"Id": 5,
"References": ["Gen.1.27"]
},
{
"Id": 6,
"References": ["Col.3.10"]
},
{
"Id": 7,
"References": ["Eph.4.24"]
},
{
"Id": 8,
"References": ["Rom.2.14-Rom.2.15"]
},
{
"Id": 9,
"References": ["Eccl.7.29"]
},
{
"Id": 10,
"References": ["Gen.1.28"]
},
{
"Id": 11,
"References": ["Gen.3.6", "Eccl.7.29"]
}
]
},
{
"Number": 18,
"Question": "What are God's works of providence?",
"Answer": "God's works of providence are his most holy, wise, and powerful preserving and governing all his creatures; ordering them, and all their actions, to his own glory.",
"AnswerWithProofs": "God's works of providence are his most holy,[1] wise,[2] and powerful preserving [3] and governing [4] all his creatures; ordering them, and all their actions,[5] to his own glory.[6]",
"Proofs": [
{
"Id": 1,
"References": ["Ps.145.17"]
},
{
"Id": 2,
"References": ["Ps.104.24", "Isa.28.29"]
},
{
"Id": 3,
"References": ["Heb.1.8"]
},
{
"Id": 4,
"References": ["Ps.103.19"]
},
{
"Id": 5,
"References": ["Matt.10.29-Matt.10.31", "Gen.45.7"]
},
{
"Id": 6,
"References": ["Rom.11.36", "Isa.43.14"]
}
]
},
{
"Number": 19,
"Question": "What is God's providence towards the angels?",
"Answer": "God by his providence permitted some of the angels, wilfully and irrecoverably, to fall into sin and damnation, limiting and ordering that, and all their sins, to his own glory; and established the rest in holiness and happiness; employing them all, at his pleasure, in the administrations of his power, mercy, and justice.",
"AnswerWithProofs": "God by his providence permitted some of the angels, wilfully and irrecoverably, to fall into sin and damnation,[1] limiting and ordering that, and all their sins, to his own glory;[2] and established the rest in holiness and happiness;[3] employing them all,[4] at his pleasure, in the administrations of his power, mercy, and justice.[5]",
"Proofs": [
{
"Id": 1,
"References": ["Jude.1.6", "2Pet.2.4", "Heb.2.16", "John.8.44"]
},
{
"Id": 2,
"References": ["Job.1.12", "Matt.8.31"]
},
{
"Id": 3,
"References": ["1Tim.5.21", "Mark.8.38", "Heb.12.22"]
},
{
"Id": 4,
"References": ["Ps.104.4"]
},
{
"Id": 5,
"References": ["2Kgs.19.35", "Heb.1.14"]
}
]
},
{
"Number": 20,
"Question": "What was the providence of God toward man in the estate in which he was created?",
"Answer": "The providence of God toward man in the estate in which he was created, was the placing him in paradise, appointing him to dress it, giving him liberty to eat of the fruit of the earth; putting the creatures under his dominion, and ordaining marriage for his help; affording him communion with himself; instituting the sabbath; entering into a covenant of life with him, upon condition of personal, perfect, and perpetual obedience, of which the tree of life was a pledge; and forbidding to eat of the tree of the knowledge of good and evil, upon the pain of death.",
"AnswerWithProofs": "The providence of God toward man in the estate in which he was created, was the placing him in paradise, appointing him to dress it, giving him liberty to eat of the fruit of the earth;[1] putting the creatures under his dominion,[2] and ordaining marriage for his help;[3] affording him communion with himself;[4] instituting the sabbath;[5] entering into a covenant of life with him, upon condition of personal, perfect, and perpetual obedience,[6] of which the tree of life was a pledge;[7] and forbidding to eat of the tree of the knowledge of good and evil, upon the pain of death.[8]",
"Proofs": [
{
"Id": 1,
"References": ["Gen.2.8,Gen.2.15-Gen.2.16"]
},
{
"Id": 2,
"References": ["Gen.1.28"]
},
{
"Id": 3,
"References": ["Gen.2.18"]
},
{
"Id": 4,
"References": ["Gen.1.26-Gen.1.29", "Gen.3.8"]
},
{
"Id": 5,
"References": ["Gen.2.3"]
},
{
"Id": 6,
"References": ["Gal.3.12", "Rom.10.5"]
},
{
"Id": 7,
"References": ["Gen.2.9"]
},
{
"Id": 8,
"References": ["Gen.2.17"]
}
]
},
{
"Number": 21,
"Question": "Did man continue in that estate wherein God at first created him?",
"Answer": "Our first parents being left to the freedom of their own will, through the temptation of Satan, transgressed the commandment of God in eating the forbidden fruit; and thereby fell from the estate of innocency wherein they were created.",
"AnswerWithProofs": "Our first parents being left to the freedom of their own will, through the temptation of Satan, transgressed the commandment of God in eating the forbidden fruit; and thereby fell from the estate of innocency wherein they were created.[1]",
"Proofs": [
{
"Id": 1,
"References": ["Gen.3.6-Gen.3.8,Gen.3.13", "Eccl.7.29", "2Cor.11.3"]
}
]
},
{
"Number": 22,
"Question": "Did all mankind fall in that first transgression ?",
"Answer": "The covenant being made with Adam as a public person, not for himself only, but for his posterity, all mankind descending from him by ordinary generation, sinned in him, and fell with him in that first transgression.",
"AnswerWithProofs": "The covenant being made with Adam as a public person, not for himself only, but for his posterity, all mankind descending from him by ordinary generation,[1] sinned in him, and fell with him in that first transgression.[2]",
"Proofs": [
{
"Id": 1,
"References": ["Acts.17.26"]
},
{
"Id": 2,
"References": ["Gen.2.16-Gen.2.17", "Rom.5.12-Rom.5.20", "1Cor.15.21-1Cor.15.22"]
}
]
},
{
"Number": 23,
"Question": "Into what estate did the fall bring mankind?",
"Answer": "The fall brought mankind into an estate of sin and misery.",
"AnswerWithProofs": "The fall brought mankind into an estate of sin and misery.[1]",
"Proofs": [
{
"Id": 1,
"References": ["Rom.3.23", "Rom.5.12"]
}
]
},
{
"Number": 24,
"Question": "What is sin?",
"Answer": "Sin is any want of conformity unto, or transgression of, any law of God, given as a rule to the reasonable creature.",
"AnswerWithProofs": "Sin is any want of conformity unto, or transgression of, any law of God, given as a rule to the reasonable creature.[1]",
"Proofs": [
{
"Id": 1,
"References": ["1John.3.4", "Gal.3.10,Gal.3.12"]
}
]
},
{
"Number": 25,
"Question": "Wherein consists the sinfulness of that estate whereinto man fell?",
"Answer": "The sinfulness of that estate whereinto man fell, consisteth in the guilt of Adam's first sin, the want of that righteousness wherein he was created, and the corruption of his nature, whereby he is utterly indisposed, disabled, and made opposite unto all that is spiritually good, and wholly inclined to all evil, and that continually; which is commonly called Original Sin, and from which do proceed all actual transgressions.",
"AnswerWithProofs": "The sinfulness of that estate whereinto man fell, consisteth in the guilt of Adam's first sin,[1] the want of that righteousness wherein he was created, and the corruption of his nature, whereby he is utterly indisposed, disabled, and made opposite unto all that is spiritually good, and wholly inclined to all evil, and that continually;[2] which is commonly called Original Sin, and from which do proceed all actual transgressions.[3]",
"Proofs": [
{
"Id": 1,
"References": ["Rom.5.12,Rom.5.19"]
},
{
"Id": 2,
"References": ["Rom.3.10-Rom.3.19", "Rom.5.6", "Rom.8.7-Rom.8.8", "Eph.2.1-Eph.2.3", "Gen.6.5"]
},
{
"Id": 3,
"References": ["Jas.1.14-Jas.1.15", "Matt.15.19"]
}
]
},
{
"Number": 26,
"Question": "How is original sin conveyed from our first parents unto their posterity?",
"Answer": "Original sin is conveyed from our first parents unto their posterity by natural generation, so as all that proceed from them in that way are conceived and born in sin.",
"AnswerWithProofs": "Original sin is conveyed from our first parents unto their posterity by natural generation, so as all that proceed from them in that way are conceived and born in sin.[1]",
"Proofs": [
{
"Id": 1,
"References": ["Ps.51.5", "Job.14.4", "Job.15.14", "John.3.6"]
}
]
},
{
"Number": 27,
"Question": "What misery did the fall bring upon mankind?",
"Answer": "The fall brought upon mankind the loss of communion with God, his displeasure and curse; so as we are by nature children of wrath, bond slaves to Satan, and justly liable to all punishments in this world, and that which is to come.",
"AnswerWithProofs": "The fall brought upon mankind the loss of communion with God,[1] his displeasure and curse; so as we are by nature children of wrath,[2] bond slaves to Satan,[3] and justly liable to all punishments in this world, and that which is to come.[4]",
"Proofs": [
{
"Id": 1,
"References": ["Gen.3.8,Gen.3.10,Gen.3.24"]
},
{
"Id": 2,
"References": ["Eph.2.2-Eph.2.3"]
},
{
"Id": 3,
"References": ["2Tim.2.26"]
},
{
"Id": 4,
"References": ["Gen.2.17", "Lam.3.39", "Rom.6.23", "Matt.25.41,Matt.25.46,Jude.1.7"]
}
]
},
{
"Number": 28,
"Question": "What are the punishments of sin in this world?",
"Answer": "The punishments of sin in this world are either inward, as blindness of mind, a reprobate sense, strong delusions, hardness of heart, horror of conscience, and vile affections; or outward, as the curse of God upon the creatures for our sakes, and all other evils that befall us in our bodies, names, estates, relations, and employments; together with death itself.",
"AnswerWithProofs": "The punishments of sin in this world are either inward, as blindness of mind,[1] a reprobate sense,[2] strong delusions,[3] hardness of heart,[4] horror of conscience,[5] and vile affections;[6] or outward, as the curse of God upon the creatures for our sakes,[7] and all other evils that befall us in our bodies, names, estates, relations, and employments;[8] together with death itself.[9]",
"Proofs": [
{
"Id": 1,
"References": ["Eph.4.18"]
},
{
"Id": 2,
"References": ["Rom.1.28"]
},
{
"Id": 3,
"References": ["2Thess.2.11"]
},
{
"Id": 4,
"References": ["Rom.2.5"]
},
{
"Id": 5,
"References": ["Isa.33.14", "Gen.4.13", "Matt.27.4"]
},
{
"Id": 6,
"References": ["Rom.1.26"]
},
{
"Id": 7,
"References": ["Gen.3.17"]
},
{
"Id": 8,
"References": ["Deut.28.15-Deut.28.18"]
},
{
"Id": 9,
"References": ["Rom.6.21,Rom.6.23"]
}
]
},
{
"Number": 29,
"Question": "What are the punishments of sin in the world to come?",
"Answer": "The punishments of sin in the world to come, are everlasting separation from the comfortable presence of God, and most grievous torments in soul and body, without intermission, in hell fire forever.",
"AnswerWithProofs": "The punishments of sin in the world to come, are everlasting separation from the comfortable presence of God, and most grievous torments in soul and body, without intermission, in hell fire forever.[1]",
"Proofs": [
{
"Id": 1,
"References": ["2Thess.1.9", "Mark.9.43-Mark.9.44,Mark.9.46,Mark.9.48", "Luke.16.24"]
}
]
},
{
"Number": 30,
"Question": "Doth God leave all mankind to perish in the estate of sin and misery?",
"Answer": "God doth not leave all men to perish in the estate of sin and misery, into which they fell by the breach of the first covenant, commonly called the Covenant of Works; but of his mere love and mercy delivereth his elect out of it, and bringeth them into an estate of salvation by the second covenant, commonly called the Covenant of Grace.",
"AnswerWithProofs": "God doth not leave all men to perish in the estate of sin and misery,[1] into which they fell by the breach of the first covenant, commonly called the Covenant of Works;[2] but of his mere love and mercy delivereth his elect out of it, and bringeth them into an estate of salvation by the second covenant, commonly called the Covenant of Grace.[3]",
"Proofs": [
{
"Id": 1,
"References": ["1Thess.5.9"]
},
{
"Id": 2,
"References": ["Gal.3.10,Gal.3.12"]
},
{
"Id": 3,
"References": ["Titus.3.4-Titus.3.7", "Gal.3.21", "Rom.3.20-Rom.3.22"]
}
]
},
{
"Number": 31,
"Question": "With whom was the covenant of grace made?",
"Answer": "The covenant of grace was made with Christ as the second Adam, and in him with all the elect as his seed.",
"AnswerWithProofs": "The covenant of grace was made with Christ as the second Adam, and in him with all the elect as his seed.[1]",
"Proofs": [
{
"Id": 1,
"References": ["Gal.3.16", "Rom.5.15-Rom.5.21", "Isa.53.10-Isa.53.11"]
}
]
},
{
"Number": 32,
"Question": "How is the grace of God manifested in the second covenant?",
"Answer": "The grace of God is manifested in the second covenant, in that he freely provideth and offereth to sinners a Mediator, and life and salvation by him; and requiring faith as the condition to interest them in him, promiseth and giveth his Holy Spirit to all his elect, to work in them that faith, with all other saving graces; and to enable them unto all holy obedience, as the evidence of the truth of their faith and thankfulness to God, and as the way which he hath appointed them to salvation.",
"AnswerWithProofs": "The grace of God is manifested in the second covenant, in that he freely provideth and offereth to sinners a Mediator,[1] and life and salvation by him;[2] and requiring faith as the condition to interest them in him, promiseth and giveth his Holy Spirit [3] to all his elect, to work in them that faith,[4] with all other saving graces;[5] and to enable them unto all holy obedience,[5] as the evidence of the truth of their faith [6] and thankfulness to God,[7] and as the way which he hath appointed them to salvation.[8]",
"Proofs": [
{
"Id": 1,
"References": ["Gen.3.15", "Isa.42.6", "John.6.27"]
},
{
"Id": 2,
"References": ["1John.5.11-1John.5.12"]
},
{
"Id": 3,
"References": ["John.1.12", "John.3.16"]
},
{
"Id": 4,
"References": ["Prov.1.23"]
},
{
"Id": 5,
"References": ["2Cor.4.13"]
},
{
"Id": 6,
"References": ["Gal.5.22-Gal.5.23"]
},
{
"Id": 7,
"References": ["Ezek.36.27"]
},
{
"Id": 8,
"References": ["Jas.2.18,Jas.2.22"]
}
]
},
{
"Number": 33,
"Question": "Was the covenant of grace always administered after one and the same manner?",
"Answer": "The covenant of grace was not always administered after the same manner, but the administrations of it under the Old Testament were different from those under the New.",
"AnswerWithProofs": "The covenant of grace was not always administered after the same manner, but the administrations of it under the Old Testament were different from those under the New.[1]",
"Proofs": [
{
"Id": 1,
"References": ["2Cor.3.6-2Cor.3.9"]
}
]
},
{
"Number": 34,
"Question": "How was the covenant of grace administered under the Old Testament?",
"Answer": "The covenant of grace was administered under the Old Testament, by promises, prophecies, sacrifices, circumcision, the passover, and other types and ordinances, which did all foresignify Christ then to come, and were for that time sufficient to build up the elect in faith in the promised Messiah, by whom they then had full remission of sin, and eternal salvation.",
"AnswerWithProofs": "The covenant of grace was administered under the Old Testament, by promises,[1] prophecies, [2] sacrifices,[3] circumcision,[4] the passover,[5] and other types and ordinances, which did all foresignify Christ then to come, and were for that time sufficient to build up the elect in faith in the promised Messiah,[6] by whom they then had full remission of sin, and eternal salvation.[7]",
"Proofs": [
{
"Id": 1,
"References": ["Rom.15.8"]
},
{
"Id": 2,
"References": ["Acts.3.20,Acts.3.24"]
},
{
"Id": 3,
"References": ["Heb.10.1"]
},
{
"Id": 4,
"References": ["Rom.4.11"]
},
{
"Id": 5,
"References": ["1Cor.5.7"]
},
{
"Id": 6,
"References": ["Heb.8-Heb.10", "Heb.11.13"]
},
{
"Id": 7,
"References": ["Gal.3.7-Gal.3.9,Gal.3.14"]
}
]
},
{
"Number": 35,
"Question": "How is the covenant of grace administered under the New Testament?",
"Answer": "Under the New Testament, when Christ the substance was exhibited, the same covenant of grace was and still is to be administered in the preaching of the word, and the administration of the sacraments of Baptism and the Lord's Supper; in which grace and salvation are held forth in more fulness, evidence, and efficacy, to all nations.",
"AnswerWithProofs": "Under the New Testament, when Christ the substance was exhibited, the same covenant of grace was and still is to be administered in the preaching of the word,[1] and the administration of the sacraments of Baptism [2] and the Lord's Supper;[3] in which grace and salvation are held forth in more fulness, evidence, and efficacy, to all nations.[4]",
"Proofs": [
{
"Id": 1,
"References": ["Mark.16.15"]
},
{
"Id": 2,
"References": ["Matt.28.19-Matt.28.20"]
},
{
"Id": 3,
"References": ["1Cor.11.23-1Cor.11.25"]
},
{
"Id": 4,
"References": ["2Cor.3.6-2Cor.3.9", "Heb.8.6,Heb.8.10-Heb.8.11", "Matt.28.19"]
}
]
},
{
"Number": 36,
"Question": "Who is the Mediator of the covenant of grace?",
"Answer": "The only Mediator of the covenant of grace is the Lord Jesus Christ, who, being the eternal Son of God, of one substance and equal with the Father, in the fulness of time became man, and so was and continues to be God and man, in two entire distinct natures, and one person, forever.",
"AnswerWithProofs": "The only Mediator of the covenant of grace is the Lord Jesus Christ,[1] who, being the eternal Son of God, of one substance and equal with the Father,[2] in the fulness of time became man,[3] and so was and continues to be God and man, in two entire distinct natures, and one person, forever.[4]",
"Proofs": [
{
"Id": 1,
"References": ["1Tim.2.5"]
},
{
"Id": 2,
"References": ["John.1.1,John.1.14", "John.10.30", "Phil.2.6"]
},
{
"Id": 3,
"References": ["Gal.4.4"]
},
{
"Id": 4,
"References": ["Luke.1.35", "Rom.9.5", "Col.2.9", "Heb.7.24-Heb.7.25"]
}
]
},
{
"Number": 37,
"Question": "How did Christ, being the Son of God, become man?",
"Answer": "Christ the Son of God became man, by taking to himself a true body, and a reasonable soul, being conceived by the power of the Holy Ghost in the womb of the virgin Mary, of her substance, and born of her, yet without sin.",
"AnswerWithProofs": "Christ the Son of God became man, by taking to himself a true body, and a reasonable soul,[1] being conceived by the power of the Holy Ghost in the womb of the virgin Mary, of her substance, and born of her,[2] yet without sin.[3]",
"Proofs": [
{
"Id": 1,
"References": ["John.1.14", "Matt.26.38"]
},
{
"Id": 2,
"References": ["Luke.1.27,Luke.1.31,Luke.1.35,Luke.1.42", "Gal.4.4"]
},
{
"Id": 3,
"References": ["Heb.4.15", "Heb.7.26"]
}
]
},
{
"Number": 38,
"Question": "Why was it requisite that the Mediator should be God?",
"Answer": "It was requisite that the Mediator should be God, that he might sustain and keep the human nature from sinking under the infinite wrath of God, and the power of death; give worth and efficacy to his sufferings, obedience, and intercession; and to satisfy God's justice, procure his favor, purchase a peculiar people, give his Spirit to them, conquer all their enemies, and bring them to everlasting salvation.",
"AnswerWithProofs": "It was requisite that the Mediator should be God, that he might sustain and keep the human nature from sinking under the infinite wrath of God, and the power of death;[1] give worth and efficacy to his sufferings, obedience, and intercession;[2] and to satisfy God's justice,[3] procure his favor,[4] purchase a peculiar people,[5] give his Spirit to them,[6] conquer all their enemies,[7] and bring them to everlasting salvation.[8]",
"Proofs": [
{
"Id": 1,
"References": ["Acts.2.24-Acts.2.25", "Rom.1.4", "Rom.4.25", "Heb.9.14"]
},
{
"Id": 2,
"References": ["Acts.20.28", "Heb.7.25-Heb.7.28", "Heb.9.14"]
},
{
"Id": 3,
"References": ["Rom.3.24-Rom.3.26"]
},
{
"Id": 4,
"References": ["Eph.1.6", "Matt.3.17"]
},
{
"Id": 5,
"References": ["Titus.2.13-Titus.2.14"]
},
{
"Id": 6,
"References": ["Gal.4.6"]
},
{
"Id": 7,
"References": ["Luke.1.68-Luke.1.69,Luke.1.71,Luke.1.74"]
},
{
"Id": 8,
"References": ["Heb.5.8-Heb.5.9", "Heb.9.11-Heb.9.15"]
}
]
},
{
"Number": 39,
"Question": "Why was it requisite that the Mediator should be man?",
"Answer": "It was requisite that the Mediator should be man, that he might advance our nature, perform obedience to the law, suffer and make intercession for us in our nature, have a fellow feeling of our infirmities; that we might receive the adoption of sons, and have comfort and access with boldness unto the throne of grace.",
"AnswerWithProofs": "It was requisite that the Mediator should be man, that he might advance our nature,[1] perform obedience to the law,[2] suffer and make intercession for us in our nature,[3] have a fellow feeling of our infirmities;[4] that we might receive the adoption of sons,[5] and have comfort and access with boldness unto the throne of grace.[6]",
"Proofs": [
{
"Id": 1,
"References": ["Heb.2.16"]
},
{
"Id": 2,
"References": ["Gal.4.4"]
},
{
"Id": 3,
"References": ["Heb.2.14", "Heb.7.24-Heb.7.25"]
},
{
"Id": 4,
"References": ["Heb.4.15"]
},
{
"Id": 5,
"References": ["Gal.4.5"]
},
{
"Id": 6,
"References": ["Heb.4.16"]
}
]
},
{
"Number": 40,
"Question": "Why was it requisite that the Mediator should be God and man in one person ?",
"Answer": "It was requisite that the Mediator, who was to reconcile God and man, should himself be both God and man, and this in one person, that the proper works of each nature might be accepted of God for us, and relied on by us, as the works of the whole person.",
"AnswerWithProofs": "It was requisite that the Mediator, who was to reconcile God and man, should himself be both God and man, and this in one person, that the proper works of each nature might be accepted of God for us, and relied on by us,[1] as the works of the whole person.[2]",
"Proofs": [
{
"Id": 1,
"References": ["Matt.1.21,Matt.1.23", "Matt.3.17", "Heb.9.14"]
},
{
"Id": 2,
"References": ["1Pet.2.6"]
}
]
},
{
"Number": 41,
"Question": "Why was our Mediator called Jesus?",
"Answer": "Our Mediator was called Jesus, because he saveth his people from their sins.",
"AnswerWithProofs": "Our Mediator was called Jesus, because he saveth his people from their sins.[1]",
"Proofs": [
{
"Id": 1,
"References": ["Matt.1.21"]
}
]
},
{
"Number": 42,
"Question": "Why was our Mediator called Christ?",
"Answer": "Our Mediator was called Christ, because he was anointed with the Holy Ghost above measure; and so set apart, and fully furnished with all authority and ability, to execute the offices of prophet, priest, and king of his church, in the estate both of his humiliation and exaltation.",
"AnswerWithProofs": "Our Mediator was called Christ, because he was anointed with the Holy Ghost above measure;[1] and so set apart, and fully furnished with all authority and ability,[2] to execute the offices of prophet,[3] priest,[4] and king of his church,[5] in the estate both of his humiliation and exaltation.",
"Proofs": [
{
"Id": 1,
"References": ["John.3.34", "Ps.45.7"]
},
{
"Id": 2,
"References": ["John.6.27", "Matt.28.18-Matt.28.20"]
},
{
"Id": 3,
"References": ["Acts.3.21-Acts.3.22", "Luke.4.18,Luke.4.21"]
},
{
"Id": 4,
"References": ["Heb.4.14-Heb.4.15", "Heb.5.5-Heb.5.7"]
},
{
"Id": 5,