-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.aux
2550 lines (2550 loc) · 339 KB
/
README.aux
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
\relax
\providecommand\hyper@newdestlabel[2]{}
\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument}
\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined
\global\let\oldcontentsline\contentsline
\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}}
\global\let\oldnewlabel\newlabel
\gdef\newlabel#1#2{\newlabelxx{#1}#2}
\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
\AtEndDocument{\ifx\hyper@anchor\@undefined
\let\contentsline\oldcontentsline
\let\newlabel\oldnewlabel
\fi}
\fi}
\global\let\hyper@last\relax
\gdef\HyperFirstAtBeginDocument#1{#1}
\providecommand*\HyPL@Entry[1]{}
\HyPL@Entry{0<</S/D>>}
\@writefile{toc}{\contentsline {section}{\numberline {1}Confessions of faith}{21}{section.1}\protected@file@percent }
\newlabel{sec:org561e2e1}{{1}{21}{Confessions of faith}{section.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.1}I'm non-denominational}{23}{subsection.1.1}\protected@file@percent }
\newlabel{sec:orgca3298c}{{1.1}{23}{I'm non-denominational}{subsection.1.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.2}1689 Baptist confession of faith}{24}{subsection.1.2}\protected@file@percent }
\newlabel{sec:org4f672ad}{{1.2}{24}{1689 Baptist confession of faith}{subsection.1.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {1.2.1}Chapter 1}{24}{subsubsection.1.2.1}\protected@file@percent }
\newlabel{sec:org5cfa697}{{1.2.1}{24}{Chapter 1}{subsubsection.1.2.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {1.2.2}Notes for Chapter 2, paragraph 1}{24}{subsubsection.1.2.2}\protected@file@percent }
\newlabel{sec:orgd272dae}{{1.2.2}{24}{Notes for Chapter 2, paragraph 1}{subsubsection.1.2.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {1.2.3}Notes for Chapter 9, paragraph 3}{25}{subsubsection.1.2.3}\protected@file@percent }
\newlabel{sec:org9114633}{{1.2.3}{25}{Notes for Chapter 9, paragraph 3}{subsubsection.1.2.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {1.3}Heidelberg Catechism}{26}{subsection.1.3}\protected@file@percent }
\newlabel{sec:org45aa3c6}{{1.3}{26}{Heidelberg Catechism}{subsection.1.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {2}My thoughts and bible references regarding theology}{27}{section.2}\protected@file@percent }
\newlabel{sec:orgb604425}{{2}{27}{My thoughts and bible references regarding theology}{section.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.1}Bible versions used in this document}{27}{subsection.2.1}\protected@file@percent }
\newlabel{sec:org8a74f0f}{{2.1}{27}{Bible versions used in this document}{subsection.2.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {3}Being born-again}{27}{section.3}\protected@file@percent }
\newlabel{sec:org8884342}{{3}{27}{Being born-again}{section.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.1}Being born-again of the Spirit}{52}{subsection.3.1}\protected@file@percent }
\newlabel{sec:orge8c813e}{{3.1}{52}{Being born-again of the Spirit}{subsection.3.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.1.1}Becoming born-again of the Spirit may be receiving the inheritance}{60}{subsubsection.3.1.1}\protected@file@percent }
\newlabel{sec:org322b3a5}{{3.1.1}{60}{Becoming born-again of the Spirit may be receiving the inheritance}{subsubsection.3.1.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.1.2}The living water, the Holy Spirit of promise is the seal of our inheritance, and received through faith in Jesus}{60}{subsubsection.3.1.2}\protected@file@percent }
\newlabel{sec:orga74899b}{{3.1.2}{60}{The living water, the Holy Spirit of promise is the seal of our inheritance, and received through faith in Jesus}{subsubsection.3.1.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.1.3}Jesus being glorified means we can receive the Holy Spirit through faith}{60}{subsubsection.3.1.3}\protected@file@percent }
\newlabel{sec:orgd32a176}{{3.1.3}{60}{Jesus being glorified means we can receive the Holy Spirit through faith}{subsubsection.3.1.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.1.4}When we are born of the Spirit, we receive a regenerated spirit-man. This is part of the inheritance, I think}{60}{subsubsection.3.1.4}\protected@file@percent }
\newlabel{sec:org1e7f973}{{3.1.4}{60}{When we are born of the Spirit, we receive a regenerated spirit-man. This is part of the inheritance, I think}{subsubsection.3.1.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.1.5}Any spiritual experience should be in the character of the Holy Spirit}{61}{subsubsection.3.1.5}\protected@file@percent }
\newlabel{sec:org223afbb}{{3.1.5}{61}{Any spiritual experience should be in the character of the Holy Spirit}{subsubsection.3.1.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.1.6}My testimony of being born-again of the Spirit}{61}{subsubsection.3.1.6}\protected@file@percent }
\newlabel{sec:orge63dbce}{{3.1.6}{61}{My testimony of being born-again of the Spirit}{subsubsection.3.1.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.2}Experiential heart belief through obedience}{65}{subsection.3.2}\protected@file@percent }
\newlabel{sec:org9caaf47}{{3.2}{65}{Experiential heart belief through obedience}{subsection.3.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3}Repentance from sin may come before believing in Jesus}{65}{subsection.3.3}\protected@file@percent }
\newlabel{sec:org8e0ed47}{{3.3}{65}{Repentance from sin may come before believing in Jesus}{subsection.3.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.4}Born of God}{65}{subsection.3.4}\protected@file@percent }
\newlabel{sec:org655c3b3}{{3.4}{65}{Born of God}{subsection.3.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.4.1}We put away the false gods, and only worship the One True God: Jehovah, and Jesus Christ who He sent}{66}{subsubsection.3.4.1}\protected@file@percent }
\newlabel{sec:org4e11dc3}{{3.4.1}{66}{We put away the false gods, and only worship the One True God: Jehovah, and Jesus Christ who He sent}{subsubsection.3.4.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.4.2}Peter initially protested, but then came to \relax $\@@underline {\hbox {trust}}\mathsurround \z@ $\relax Jesus and have a "share with Jesus"}{68}{subsubsection.3.4.2}\protected@file@percent }
\newlabel{sec:org4af559f}{{3.4.2}{68}{Peter initially protested, but then came to \underline {trust} Jesus and have a "share with Jesus"}{subsubsection.3.4.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.4.3}Jesus created disciples of Himself}{68}{subsubsection.3.4.3}\protected@file@percent }
\newlabel{sec:org3f94e4f}{{3.4.3}{68}{Jesus created disciples of Himself}{subsubsection.3.4.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.4.4}Everyone who is actively and actually believing that Jesus is the Christ has been born of God}{68}{subsubsection.3.4.4}\protected@file@percent }
\newlabel{sec:org1930cb6}{{3.4.4}{68}{Everyone who is actively and actually believing that Jesus is the Christ has been born of God}{subsubsection.3.4.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.4.5}Whoever loves with Christ's love has been born of God and knows God}{69}{subsubsection.3.4.5}\protected@file@percent }
\newlabel{sec:orgb2fb509}{{3.4.5}{69}{Whoever loves with Christ's love has been born of God and knows God}{subsubsection.3.4.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.5}A person who is really believing in Jesus will do the works of Jesus - they'll produce good works}{69}{subsection.3.5}\protected@file@percent }
\newlabel{sec:orga55b506}{{3.5}{69}{A person who is really believing in Jesus will do the works of Jesus - they'll produce good works}{subsection.3.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.5.1}Receiving the inheritance naturally comes after hearing the word of truth and believing in Jesus}{69}{subsubsection.3.5.1}\protected@file@percent }
\newlabel{sec:org0a471ca}{{3.5.1}{69}{Receiving the inheritance naturally comes after hearing the word of truth and believing in Jesus}{subsubsection.3.5.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.6}Further repentance from sin and to come to love in the way that Jesus did is an inevitable consequence of being born of God i.e. truly believing in Jesus}{69}{subsection.3.6}\protected@file@percent }
\newlabel{sec:org741e4b8}{{3.6}{69}{Further repentance from sin and to come to love in the way that Jesus did is an inevitable consequence of being born of God i.e. truly believing in Jesus}{subsection.3.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.7}Knowing God by obeying Jesus and loving with Christ's love implies you have at some stage been born of God}{70}{subsection.3.7}\protected@file@percent }
\newlabel{sec:org3840b62}{{3.7}{70}{Knowing God by obeying Jesus and loving with Christ's love implies you have at some stage been born of God}{subsection.3.7}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.8}Obedience lead to belief which leads to obedience (loving with Christ's love with the help of God's spirit) which leads to overcoming the world}{70}{subsection.3.8}\protected@file@percent }
\newlabel{sec:orgc235497}{{3.8}{70}{Obedience lead to belief which leads to obedience (loving with Christ's love with the help of God's spirit) which leads to overcoming the world}{subsection.3.8}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.9}We \relax $\@@underline {\hbox {overcome the world}}\mathsurround \z@ $\relax with a new spirit God has given us to wait and trust on Him and obey Him}{70}{subsection.3.9}\protected@file@percent }
\newlabel{sec:org88b0cb8}{{3.9}{70}{We \underline {overcome the world} with a new spirit God has given us to wait and trust on Him and obey Him}{subsection.3.9}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.9.1}Marriage should not become idolatry}{71}{subsubsection.3.9.1}\protected@file@percent }
\newlabel{sec:org73157a0}{{3.9.1}{71}{Marriage should not become idolatry}{subsubsection.3.9.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.10}The importance of loving one another}{72}{subsection.3.10}\protected@file@percent }
\newlabel{sec:orgc8ea68b}{{3.10}{72}{The importance of loving one another}{subsection.3.10}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.11}Receiving the Holy Spirit}{73}{subsection.3.11}\protected@file@percent }
\newlabel{sec:org2dba7d3}{{3.11}{73}{Receiving the Holy Spirit}{subsection.3.11}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.11.1}Water baptism as an appeal to God}{75}{subsubsection.3.11.1}\protected@file@percent }
\newlabel{sec:orgfb7ee87}{{3.11.1}{75}{Water baptism as an appeal to God}{subsubsection.3.11.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.11.2}We need are sealed with the Holy Spirit through accepting the truth of the good news of Jesus and God's Living Word works in us to save us}{75}{subsubsection.3.11.2}\protected@file@percent }
\newlabel{sec:orgd27bf9a}{{3.11.2}{75}{We need are sealed with the Holy Spirit through accepting the truth of the good news of Jesus and God's Living Word works in us to save us}{subsubsection.3.11.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.11.3}We need to be born-again and we want to be filled with and baptised by the Holy Spirit}{76}{subsubsection.3.11.3}\protected@file@percent }
\newlabel{sec:org45e6ae9}{{3.11.3}{76}{We need to be born-again and we want to be filled with and baptised by the Holy Spirit}{subsubsection.3.11.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.11.4}The Holy Spirit may teach us even before He is \emph {in} us, by helping us as He dwells \emph {with} us}{77}{subsubsection.3.11.4}\protected@file@percent }
\newlabel{sec:org1012a90}{{3.11.4}{77}{The Holy Spirit may teach us even before He is \emph {in} us, by helping us as He dwells \emph {with} us}{subsubsection.3.11.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.12}Our will should be for God's will to be done, and to will to do God's will}{77}{subsection.3.12}\protected@file@percent }
\newlabel{sec:orgc98db72}{{3.12}{77}{Our will should be for God's will to be done, and to will to do God's will}{subsection.3.12}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.12.1}Being filled with the Holy Spirit}{82}{subsubsection.3.12.1}\protected@file@percent }
\newlabel{sec:org20be4a9}{{3.12.1}{82}{Being filled with the Holy Spirit}{subsubsection.3.12.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.13}In God's mercy, we come to obedient faith and come into Christ Jesus}{83}{subsection.3.13}\protected@file@percent }
\newlabel{sec:org5834b25}{{3.13}{83}{In God's mercy, we come to obedient faith and come into Christ Jesus}{subsection.3.13}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.13.1}In Christ Jesus, the blood of Jesus cleanses us from all sin}{83}{subsubsection.3.13.1}\protected@file@percent }
\newlabel{sec:org65b9783}{{3.13.1}{83}{In Christ Jesus, the blood of Jesus cleanses us from all sin}{subsubsection.3.13.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.14}Obedience is absolutely within our ability}{84}{subsection.3.14}\protected@file@percent }
\newlabel{sec:orgeb17b14}{{3.14}{84}{Obedience is absolutely within our ability}{subsection.3.14}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.14.1}Observing Jesus, continuing to believe in Him and believe His words and abide in His word, we will live forever}{86}{subsubsection.3.14.1}\protected@file@percent }
\newlabel{sec:orgfdc1404}{{3.14.1}{86}{Observing Jesus, continuing to believe in Him and believe His words and abide in His word, we will live forever}{subsubsection.3.14.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.14.2}We are saved by grace through faith in Jesus Christ}{90}{subsubsection.3.14.2}\protected@file@percent }
\newlabel{sec:orgd79dfed}{{3.14.2}{90}{We are saved by grace through faith in Jesus Christ}{subsubsection.3.14.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.14.3}We become obedient to Jesus}{94}{subsubsection.3.14.3}\protected@file@percent }
\newlabel{sec:orgeaca8ea}{{3.14.3}{94}{We become obedient to Jesus}{subsubsection.3.14.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.14.4}There's some bonuses to suffering for Christ's sake and for endurance}{95}{subsubsection.3.14.4}\protected@file@percent }
\newlabel{sec:org95fae11}{{3.14.4}{95}{There's some bonuses to suffering for Christ's sake and for endurance}{subsubsection.3.14.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.14.5}Eternal life and salvation is a gift received through faith and obedience to God}{95}{subsubsection.3.14.5}\protected@file@percent }
\newlabel{sec:org622ea8b}{{3.14.5}{95}{Eternal life and salvation is a gift received through faith and obedience to God}{subsubsection.3.14.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.15}Treasuring anything else more than God is sin}{100}{subsection.3.15}\protected@file@percent }
\newlabel{sec:org0c3e9b5}{{3.15}{100}{Treasuring anything else more than God is sin}{subsection.3.15}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.15.1}Eschatology}{101}{subsubsection.3.15.1}\protected@file@percent }
\newlabel{sec:org1bdc385}{{3.15.1}{101}{Eschatology}{subsubsection.3.15.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.15.2}How we should act how we're instructed to act while awaiting the Lord's return}{101}{subsubsection.3.15.2}\protected@file@percent }
\newlabel{sec:orgb734fca}{{3.15.2}{101}{How we should act how we're instructed to act while awaiting the Lord's return}{subsubsection.3.15.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.15.3}As Christians, we've got to repent of evil deeds and keep Jesus' works - keep imitating Christ, even in holiness}{105}{subsubsection.3.15.3}\protected@file@percent }
\newlabel{sec:org5ca33c6}{{3.15.3}{105}{As Christians, we've got to repent of evil deeds and keep Jesus' works - keep imitating Christ, even in holiness}{subsubsection.3.15.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.15.4}We absolutely cling to Jesus as well}{106}{subsubsection.3.15.4}\protected@file@percent }
\newlabel{sec:orga1c5929}{{3.15.4}{106}{We absolutely cling to Jesus as well}{subsubsection.3.15.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.16}Disobedience towards God is sin. Treasuring anything else more than God is sin}{106}{subsection.3.16}\protected@file@percent }
\newlabel{sec:orga53203c}{{3.16}{106}{Disobedience towards God is sin. Treasuring anything else more than God is sin}{subsection.3.16}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.17}God makes us born-again, so we can love Him, obediently}{107}{subsection.3.17}\protected@file@percent }
\newlabel{sec:org640ac69}{{3.17}{107}{God makes us born-again, so we can love Him, obediently}{subsection.3.17}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.17.1}The Christian life is both gift and duty}{113}{subsubsection.3.17.1}\protected@file@percent }
\newlabel{sec:org3f5df41}{{3.17.1}{113}{The Christian life is both gift and duty}{subsubsection.3.17.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.17.2}Jesus' obedience}{114}{subsubsection.3.17.2}\protected@file@percent }
\newlabel{sec:orgef8563a}{{3.17.2}{114}{Jesus' obedience}{subsubsection.3.17.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.17.3}Our following His example}{114}{subsubsection.3.17.3}\protected@file@percent }
\newlabel{sec:orge8acfb1}{{3.17.3}{114}{Our following His example}{subsubsection.3.17.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.17.4}God working in us}{115}{subsubsection.3.17.4}\protected@file@percent }
\newlabel{sec:org797b354}{{3.17.4}{115}{God working in us}{subsubsection.3.17.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.17.5}God acts for those who wait for Him}{117}{subsubsection.3.17.5}\protected@file@percent }
\newlabel{sec:orgbed0bbf}{{3.17.5}{117}{God acts for those who wait for Him}{subsubsection.3.17.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.17.6}The free gift is God - God is the Gospel}{119}{subsubsection.3.17.6}\protected@file@percent }
\newlabel{sec:orga6ed0e8}{{3.17.6}{119}{The free gift is God - God is the Gospel}{subsubsection.3.17.6}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.17.7}God the justifier of the one who has faith in Jesus - the righteousness of God apart from the law is received by faith}{119}{subsubsection.3.17.7}\protected@file@percent }
\newlabel{sec:org22753ed}{{3.17.7}{119}{God the justifier of the one who has faith in Jesus - the righteousness of God apart from the law is received by faith}{subsubsection.3.17.7}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.17.8}The point of justification - we rejoice in the hope of the glory of God, and we are transformed}{119}{subsubsection.3.17.8}\protected@file@percent }
\newlabel{sec:org63f08c6}{{3.17.8}{119}{The point of justification - we rejoice in the hope of the glory of God, and we are transformed}{subsubsection.3.17.8}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.17.9}Why do we want to live righteously? To honour Christ}{120}{subsubsection.3.17.9}\protected@file@percent }
\newlabel{sec:org0bbb365}{{3.17.9}{120}{Why do we want to live righteously? To honour Christ}{subsubsection.3.17.9}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.17.10}Under the right conditions, I don't see a problem with 'working' for God}{120}{subsubsection.3.17.10}\protected@file@percent }
\newlabel{sec:orgabf9865}{{3.17.10}{120}{Under the right conditions, I don't see a problem with 'working' for God}{subsubsection.3.17.10}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.18}Eternal security for those who follow Jesus}{123}{subsection.3.18}\protected@file@percent }
\newlabel{sec:orgc97f3a8}{{3.18}{123}{Eternal security for those who follow Jesus}{subsection.3.18}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.19}Some indicators to know for sure you are saved}{124}{subsection.3.19}\protected@file@percent }
\newlabel{sec:org47b6173}{{3.19}{124}{Some indicators to know for sure you are saved}{subsection.3.19}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {3.19.1}By the Spirit Jesus has given us}{126}{subsubsection.3.19.1}\protected@file@percent }
\newlabel{sec:org8065481}{{3.19.1}{126}{By the Spirit Jesus has given us}{subsubsection.3.19.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.20}Indicators that we are \relax $\@@underline {\hbox {of the truth}}\mathsurround \z@ $\relax }{127}{subsection.3.20}\protected@file@percent }
\newlabel{sec:org7b66628}{{3.20}{127}{Indicators that we are \underline {of the truth}}{subsection.3.20}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4}Following Jesus}{127}{section.4}\protected@file@percent }
\newlabel{sec:org2824ceb}{{4}{127}{Following Jesus}{section.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.1}Being led by the Spirit is not license to sin}{128}{subsection.4.1}\protected@file@percent }
\newlabel{sec:orgc382814}{{4.1}{128}{Being led by the Spirit is not license to sin}{subsection.4.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.2}Walk by the Spirit = Obey Jesus = Led by the Spirit = Walk in the light as He is in the light}{128}{subsection.4.2}\protected@file@percent }
\newlabel{sec:org0309422}{{4.2}{128}{Walk by the Spirit = Obey Jesus = Led by the Spirit = Walk in the light as He is in the light}{subsection.4.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.2.1}God loved us first, and forgave us first}{129}{subsubsection.4.2.1}\protected@file@percent }
\newlabel{sec:org4975834}{{4.2.1}{129}{God loved us first, and forgave us first}{subsubsection.4.2.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.2.2}God's kindness is meant to lead us to repentance from sin}{129}{subsubsection.4.2.2}\protected@file@percent }
\newlabel{sec:orgb4a3ec8}{{4.2.2}{129}{God's kindness is meant to lead us to repentance from sin}{subsubsection.4.2.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.2.3}Subsequent behaviour - the Golden Rule and the Royal Law, faith working through love}{130}{subsubsection.4.2.3}\protected@file@percent }
\newlabel{sec:orge89a36e}{{4.2.3}{130}{Subsequent behaviour - the Golden Rule and the Royal Law, faith working through love}{subsubsection.4.2.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.2.4}God's name must be hallowed. We should not take it in vain}{136}{subsubsection.4.2.4}\protected@file@percent }
\newlabel{sec:org6dd33ee}{{4.2.4}{136}{God's name must be hallowed. We should not take it in vain}{subsubsection.4.2.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.2.5}Christ-like humility}{138}{subsubsection.4.2.5}\protected@file@percent }
\newlabel{sec:org9dc8292}{{4.2.5}{138}{Christ-like humility}{subsubsection.4.2.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.2.6}Anti-christ-like behaviour}{139}{subsubsection.4.2.6}\protected@file@percent }
\newlabel{sec:org00e6a08}{{4.2.6}{139}{Anti-christ-like behaviour}{subsubsection.4.2.6}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.2.7}We should welcome people who hear Jesus' words and want to learn how to follow Jesus, and we should give them Jesus' words}{142}{subsubsection.4.2.7}\protected@file@percent }
\newlabel{sec:org0e1b174}{{4.2.7}{142}{We should welcome people who hear Jesus' words and want to learn how to follow Jesus, and we should give them Jesus' words}{subsubsection.4.2.7}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.2.8}God definitely disciplines us even if we love Jesus - \emph {every} son he receives}{144}{subsubsection.4.2.8}\protected@file@percent }
\newlabel{sec:org2564b3b}{{4.2.8}{144}{God definitely disciplines us even if we love Jesus - \emph {every} son he receives}{subsubsection.4.2.8}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.2.9}Christians should live fulfilling the Royal Law}{145}{subsubsection.4.2.9}\protected@file@percent }
\newlabel{sec:org7b54644}{{4.2.9}{145}{Christians should live fulfilling the Royal Law}{subsubsection.4.2.9}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.2.10}Fulfilling Christ's law is the least we can endeavour to do as an appropriate response of love for Jesus, Jesus having fulfilled the entire law and prophets}{145}{subsubsection.4.2.10}\protected@file@percent }
\newlabel{sec:org4810273}{{4.2.10}{145}{Fulfilling Christ's law is the least we can endeavour to do as an appropriate response of love for Jesus, Jesus having fulfilled the entire law and prophets}{subsubsection.4.2.10}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.3}Following Jesus is the way of righteousness}{145}{subsection.4.3}\protected@file@percent }
\newlabel{sec:orgc5c466c}{{4.3}{145}{Following Jesus is the way of righteousness}{subsection.4.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {4.4}Obey the Truth, obey Jesus. Serve one another through love}{146}{subsection.4.4}\protected@file@percent }
\newlabel{sec:org7b226e4}{{4.4}{146}{Obey the Truth, obey Jesus. Serve one another through love}{subsection.4.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.4.1}You cannot serve God, and also be yoked to money}{146}{subsubsection.4.4.1}\protected@file@percent }
\newlabel{sec:org5d65ca5}{{4.4.1}{146}{You cannot serve God, and also be yoked to money}{subsubsection.4.4.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.4.2}Make friends with charity while money hasn't yet failed}{150}{subsubsection.4.4.2}\protected@file@percent }
\newlabel{sec:org1e9d207}{{4.4.2}{150}{Make friends with charity while money hasn't yet failed}{subsubsection.4.4.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.4.3}In this world God can see if we are to be trusted with true heavenly wealth by seeing how we used our money}{151}{subsubsection.4.4.3}\protected@file@percent }
\newlabel{sec:org71554cc}{{4.4.3}{151}{In this world God can see if we are to be trusted with true heavenly wealth by seeing how we used our money}{subsubsection.4.4.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.4.4}We must actually make following Jesus a reality to take hold of the eternal life to which we are called}{151}{subsubsection.4.4.4}\protected@file@percent }
\newlabel{sec:org13f78ee}{{4.4.4}{151}{We must actually make following Jesus a reality to take hold of the eternal life to which we are called}{subsubsection.4.4.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5}Great commission}{151}{section.5}\protected@file@percent }
\newlabel{sec:org1645fc3}{{5}{151}{Great commission}{section.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.1}Even the Old Testament makes a person wise for salvation through faith in Christ Jesus:}{152}{subsection.5.1}\protected@file@percent }
\newlabel{sec:orgc47ec3d}{{5.1}{152}{Even the Old Testament makes a person wise for salvation through faith in Christ Jesus:}{subsection.5.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.2}Jesus}{153}{subsection.5.2}\protected@file@percent }
\newlabel{sec:org99abce2}{{5.2}{153}{Jesus}{subsection.5.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.3}Belief}{153}{subsection.5.3}\protected@file@percent }
\newlabel{sec:orgd7f78df}{{5.3}{153}{Belief}{subsection.5.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.4}Fun acronyms}{158}{subsection.5.4}\protected@file@percent }
\newlabel{sec:org908289a}{{5.4}{158}{Fun acronyms}{subsection.5.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.4.1}A H.A.N.D.S. Approach to Showing Jesus is God}{159}{subsubsection.5.4.1}\protected@file@percent }
\newlabel{sec:org664b2a6}{{5.4.1}{159}{A H.A.N.D.S. Approach to Showing Jesus is God}{subsubsection.5.4.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.5}Our obedient faith should be penitent, and should be without partiality. We \emph {aim} for perfection, to be conformed to Christ's image}{162}{subsection.5.5}\protected@file@percent }
\newlabel{sec:org5d5a599}{{5.5}{162}{Our obedient faith should be penitent, and should be without partiality. We \emph {aim} for perfection, to be conformed to Christ's image}{subsection.5.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.5.1}Faith is not merely belief, but faith is walking as Abraham did - believing and obedient}{163}{subsubsection.5.5.1}\protected@file@percent }
\newlabel{sec:org1f0f779}{{5.5.1}{163}{Faith is not merely belief, but faith is walking as Abraham did - believing and obedient}{subsubsection.5.5.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.5.2}Joy and obedience - we want both of them at the same time}{168}{subsubsection.5.5.2}\protected@file@percent }
\newlabel{sec:org4705dba}{{5.5.2}{168}{Joy and obedience - we want both of them at the same time}{subsubsection.5.5.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.5.3}We are bought with the precious blood of Christ and we should be obedient to God}{169}{subsubsection.5.5.3}\protected@file@percent }
\newlabel{sec:orgac54f68}{{5.5.3}{169}{We are bought with the precious blood of Christ and we should be obedient to God}{subsubsection.5.5.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.5.4}Eternal salvation goes to those who obey Him}{170}{subsubsection.5.5.4}\protected@file@percent }
\newlabel{sec:org038a8eb}{{5.5.4}{170}{Eternal salvation goes to those who obey Him}{subsubsection.5.5.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.5.5}\relax $\@@underline {\hbox {Faith}}\mathsurround \z@ $\relax in Jesus Christ's name to be saved}{170}{subsubsection.5.5.5}\protected@file@percent }
\newlabel{sec:org07f93d4}{{5.5.5}{170}{\underline {Faith} in Jesus Christ's name to be saved}{subsubsection.5.5.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.6}By God's grace God has saved us and provided us with a means to be reconciled to Him through trusting faith in Him}{171}{subsection.5.6}\protected@file@percent }
\newlabel{sec:org614d327}{{5.6}{171}{By God's grace God has saved us and provided us with a means to be reconciled to Him through trusting faith in Him}{subsection.5.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.7}Receiving Jesus}{173}{subsection.5.7}\protected@file@percent }
\newlabel{sec:org881e6c3}{{5.7}{173}{Receiving Jesus}{subsection.5.7}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.7.1}Receiving Jesus may be as easy as receiving the one who He sends, or receiving a child in His name}{173}{subsubsection.5.7.1}\protected@file@percent }
\newlabel{sec:org21702d3}{{5.7.1}{173}{Receiving Jesus may be as easy as receiving the one who He sends, or receiving a child in His name}{subsubsection.5.7.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.7.2}Receive Jesus and His words, and then put to death the deeds of the body}{173}{subsubsection.5.7.2}\protected@file@percent }
\newlabel{sec:orgf464d6e}{{5.7.2}{173}{Receive Jesus and His words, and then put to death the deeds of the body}{subsubsection.5.7.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.7.3}God through His mercy saves us. We should respond well}{173}{subsubsection.5.7.3}\protected@file@percent }
\newlabel{sec:org93409d2}{{5.7.3}{173}{God through His mercy saves us. We should respond well}{subsubsection.5.7.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.7.4}Those who have a heart of faith towards Him (and anyone who He wills) may receive forgiveness of sins through his name}{173}{subsubsection.5.7.4}\protected@file@percent }
\newlabel{sec:org3eeec4e}{{5.7.4}{173}{Those who have a heart of faith towards Him (and anyone who He wills) may receive forgiveness of sins through his name}{subsubsection.5.7.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.8}I believe that a loving, trusting ( \relax $\@@underline {\hbox {believing}}\mathsurround \z@ $\relax and \relax $\@@underline {\hbox {obedient}}\mathsurround \z@ $\relax ) heart for Jesus Christ is essential for permanent abiding in Him}{180}{subsection.5.8}\protected@file@percent }
\newlabel{sec:org79a80d0}{{5.8}{180}{I believe that a loving, trusting ( \underline {believing} and \underline {obedient} ) heart for Jesus Christ is essential for permanent abiding in Him}{subsection.5.8}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.8.1}The Holy Spirit is the living water}{186}{subsubsection.5.8.1}\protected@file@percent }
\newlabel{sec:org91b473a}{{5.8.1}{186}{The Holy Spirit is the living water}{subsubsection.5.8.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.8.2}Trusting belief (\href {https://freely-given.org/OBD/ref/GrkWrd/ACTc18v27w61.htm}{through grace}) leads to continued obedience, which leads to knowledge of the Truth}{188}{subsubsection.5.8.2}\protected@file@percent }
\newlabel{sec:orgcd30983}{{5.8.2}{188}{Trusting belief (\href {https://freely-given.org/OBD/ref/GrkWrd/ACTc18v27w61.htm}{through grace}) leads to continued obedience, which leads to knowledge of the Truth}{subsubsection.5.8.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.8.3}As we come to Jesus, we are conformed to His image}{189}{subsubsection.5.8.3}\protected@file@percent }
\newlabel{sec:org69ea671}{{5.8.3}{189}{As we come to Jesus, we are conformed to His image}{subsubsection.5.8.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.8.4}Peter was quick to belief, and his belief led to obedience}{189}{subsubsection.5.8.4}\protected@file@percent }
\newlabel{sec:org1b4a517}{{5.8.4}{189}{Peter was quick to belief, and his belief led to obedience}{subsubsection.5.8.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.8.5}Thomas was following Jesus around for a long time and was slow to belief, but arrived}{189}{subsubsection.5.8.5}\protected@file@percent }
\newlabel{sec:orgc6e016f}{{5.8.5}{189}{Thomas was following Jesus around for a long time and was slow to belief, but arrived}{subsubsection.5.8.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.8.6}Believing Jesus}{190}{subsubsection.5.8.6}\protected@file@percent }
\newlabel{sec:org5b25df1}{{5.8.6}{190}{Believing Jesus}{subsubsection.5.8.6}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.8.7}Believing Jesus, we have \emph {the right} to become a child of God}{204}{subsubsection.5.8.7}\protected@file@percent }
\newlabel{sec:orgb6df9c1}{{5.8.7}{204}{Believing Jesus, we have \emph {the right} to become a child of God}{subsubsection.5.8.7}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.8.8}My understanding of repentance}{207}{subsubsection.5.8.8}\protected@file@percent }
\newlabel{sec:org5f45285}{{5.8.8}{207}{My understanding of repentance}{subsubsection.5.8.8}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.8.9}We must have a changed heart, which longs to serve the living God, to be a bondservant of Jesus. AMEN!!}{211}{subsubsection.5.8.9}\protected@file@percent }
\newlabel{sec:orgf99e849}{{5.8.9}{211}{We must have a changed heart, which longs to serve the living God, to be a bondservant of Jesus. AMEN!!}{subsubsection.5.8.9}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.8.10}Doing the will of God}{214}{subsubsection.5.8.10}\protected@file@percent }
\newlabel{sec:orga7fe7d2}{{5.8.10}{214}{Doing the will of God}{subsubsection.5.8.10}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.8.11}Work may be burned up, and the person who has a believing and obedient heart is still saved}{215}{subsubsection.5.8.11}\protected@file@percent }
\newlabel{sec:orge08fdc7}{{5.8.11}{215}{Work may be burned up, and the person who has a believing and obedient heart is still saved}{subsubsection.5.8.11}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.8.12}Forever abiding is believing and being a disciple, a servant}{216}{subsubsection.5.8.12}\protected@file@percent }
\newlabel{sec:orgcafeeea}{{5.8.12}{216}{Forever abiding is believing and being a disciple, a servant}{subsubsection.5.8.12}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.9}God opens the eyes to see the light of the gospel}{216}{subsection.5.9}\protected@file@percent }
\newlabel{sec:orgd02abe8}{{5.9}{216}{God opens the eyes to see the light of the gospel}{subsection.5.9}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.10}Gospel}{216}{subsection.5.10}\protected@file@percent }
\newlabel{sec:org17e193f}{{5.10}{216}{Gospel}{subsection.5.10}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.10.1}Living a godly life in Christ Jesus is part of the gospel}{223}{subsubsection.5.10.1}\protected@file@percent }
\newlabel{sec:org67fc588}{{5.10.1}{223}{Living a godly life in Christ Jesus is part of the gospel}{subsubsection.5.10.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.10.2}Faith is disqualified in people who disregard the teachings - they never arrive at the knowledge of the truth}{223}{subsubsection.5.10.2}\protected@file@percent }
\newlabel{sec:orga8c553b}{{5.10.2}{223}{Faith is disqualified in people who disregard the teachings - they never arrive at the knowledge of the truth}{subsubsection.5.10.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.11}Be a disciple of Jesus to be set free and abide forever}{225}{subsection.5.11}\protected@file@percent }
\newlabel{sec:orgdb71537}{{5.11}{225}{Be a disciple of Jesus to be set free and abide forever}{subsection.5.11}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.11.1}The high cost of following Christ}{226}{subsubsection.5.11.1}\protected@file@percent }
\newlabel{sec:orga8e123a}{{5.11.1}{226}{The high cost of following Christ}{subsubsection.5.11.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.11.2}Give our mind to Christ}{228}{subsubsection.5.11.2}\protected@file@percent }
\newlabel{sec:orga0a657c}{{5.11.2}{228}{Give our mind to Christ}{subsubsection.5.11.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.12}The free gift of salvation is to be set free from sin to be a slave of righteousness}{229}{subsection.5.12}\protected@file@percent }
\newlabel{sec:org5e69e0f}{{5.12}{229}{The free gift of salvation is to be set free from sin to be a slave of righteousness}{subsection.5.12}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.12.1}Receiving the Holy Spirit}{230}{subsubsection.5.12.1}\protected@file@percent }
\newlabel{sec:org9098932}{{5.12.1}{230}{Receiving the Holy Spirit}{subsubsection.5.12.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.13}The work of the Holy Spirit}{232}{subsection.5.13}\protected@file@percent }
\newlabel{sec:orge9bd835}{{5.13}{232}{The work of the Holy Spirit}{subsection.5.13}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.13.1}The Holy Spirit may teach us even before He is \emph {in} us, by helping us as He dwells \emph {with} us}{232}{subsubsection.5.13.1}\protected@file@percent }
\newlabel{sec:org6877ce9}{{5.13.1}{232}{The Holy Spirit may teach us even before He is \emph {in} us, by helping us as He dwells \emph {with} us}{subsubsection.5.13.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.13.2}Teaching us, leading us into the Truth}{232}{subsubsection.5.13.2}\protected@file@percent }
\newlabel{sec:org9e94918}{{5.13.2}{232}{Teaching us, leading us into the Truth}{subsubsection.5.13.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.13.3}The fruit of the Spirit}{232}{subsubsection.5.13.3}\protected@file@percent }
\newlabel{sec:orge43bd9f}{{5.13.3}{232}{The fruit of the Spirit}{subsubsection.5.13.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.14}Becoming a servant, humbling oneself and following Jesus is what we should do}{235}{subsection.5.14}\protected@file@percent }
\newlabel{sec:orgcf7147b}{{5.14}{235}{Becoming a servant, humbling oneself and following Jesus is what we should do}{subsection.5.14}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.15}I believe that I should try as hard as I can to enter via the narrow gate}{237}{subsection.5.15}\protected@file@percent }
\newlabel{sec:orgd65c5f3}{{5.15}{237}{I believe that I should try as hard as I can to enter via the narrow gate}{subsection.5.15}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.15.1}Narrow is the gate and hard is the way that leads to life}{237}{subsubsection.5.15.1}\protected@file@percent }
\newlabel{sec:orgc8e943d}{{5.15.1}{237}{Narrow is the gate and hard is the way that leads to life}{subsubsection.5.15.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.15.2}Wide gate}{238}{subsubsection.5.15.2}\protected@file@percent }
\newlabel{sec:org4af0c29}{{5.15.2}{238}{Wide gate}{subsubsection.5.15.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.15.3}Obedience to Jesus has everything to do with receiving Him, and receiving Salvation}{240}{subsubsection.5.15.3}\protected@file@percent }
\newlabel{sec:org6b8e04b}{{5.15.3}{240}{Obedience to Jesus has everything to do with receiving Him, and receiving Salvation}{subsubsection.5.15.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.15.4}Disobedience}{241}{subsubsection.5.15.4}\protected@file@percent }
\newlabel{sec:orge1484cf}{{5.15.4}{241}{Disobedience}{subsubsection.5.15.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.15.5}The way is easy that leads to destruction}{241}{subsubsection.5.15.5}\protected@file@percent }
\newlabel{sec:org22bc005}{{5.15.5}{241}{The way is easy that leads to destruction}{subsubsection.5.15.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.15.6}Narrow gate}{242}{subsubsection.5.15.6}\protected@file@percent }
\newlabel{sec:orgf269128}{{5.15.6}{242}{Narrow gate}{subsubsection.5.15.6}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.15.7}The narrow gate vitally requires submitting to God's righteousness. We need God's forgiveness and His justification that comes through faith}{242}{subsubsection.5.15.7}\protected@file@percent }
\newlabel{sec:orga4aec29}{{5.15.7}{242}{The narrow gate vitally requires submitting to God's righteousness. We need God's forgiveness and His justification that comes through faith}{subsubsection.5.15.7}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.15.8}We have to receive the Kingdom like a child. Don't resist Jesus or His teachings - follow Jesus}{243}{subsubsection.5.15.8}\protected@file@percent }
\newlabel{sec:org27380fe}{{5.15.8}{243}{We have to receive the Kingdom like a child. Don't resist Jesus or His teachings - follow Jesus}{subsubsection.5.15.8}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.15.9}We have to believe in and obey Jesus. We all fall short but we still must have faith in Jesus}{244}{subsubsection.5.15.9}\protected@file@percent }
\newlabel{sec:org7ac483a}{{5.15.9}{244}{We have to believe in and obey Jesus. We all fall short but we still must have faith in Jesus}{subsubsection.5.15.9}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.15.10}All judgement has been given to Jesus}{246}{subsubsection.5.15.10}\protected@file@percent }
\newlabel{sec:org439816b}{{5.15.10}{246}{All judgement has been given to Jesus}{subsubsection.5.15.10}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.15.11}The gospel has to be obeyed}{246}{subsubsection.5.15.11}\protected@file@percent }
\newlabel{sec:org95859d6}{{5.15.11}{246}{The gospel has to be obeyed}{subsubsection.5.15.11}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.15.12}God will be the judge of who has had faith in Jesus, and who has obeyed Him. I wouldn't take obedience lightly}{248}{subsubsection.5.15.12}\protected@file@percent }
\newlabel{sec:orge5ca6ad}{{5.15.12}{248}{God will be the judge of who has had faith in Jesus, and who has obeyed Him. I wouldn't take obedience lightly}{subsubsection.5.15.12}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.15.13}Jesus was extremely humble here. Likewise, we should be able to recognise that we need Him as our Lord looking over us}{248}{subsubsection.5.15.13}\protected@file@percent }
\newlabel{sec:org1b860ca}{{5.15.13}{248}{Jesus was extremely humble here. Likewise, we should be able to recognise that we need Him as our Lord looking over us}{subsubsection.5.15.13}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.15.14}Let us serve Jesus Christ in truth, and have confidence}{249}{subsubsection.5.15.14}\protected@file@percent }
\newlabel{sec:orgdff7f0f}{{5.15.14}{249}{Let us serve Jesus Christ in truth, and have confidence}{subsubsection.5.15.14}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.15.15}We must recognise that where our efforts to obey falls short, Jesus's blood covers us. But we must still have the heart to make Jesus our Lord and King, and be following Him}{249}{subsubsection.5.15.15}\protected@file@percent }
\newlabel{sec:orgdcad456}{{5.15.15}{249}{We must recognise that where our efforts to obey falls short, Jesus's blood covers us. But we must still have the heart to make Jesus our Lord and King, and be following Him}{subsubsection.5.15.15}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.15.16}Do not condemn others. Speak the truth and leave judgement to the Judge}{251}{subsubsection.5.15.16}\protected@file@percent }
\newlabel{sec:org20f09d8}{{5.15.16}{251}{Do not condemn others. Speak the truth and leave judgement to the Judge}{subsubsection.5.15.16}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.15.17}Jesus Christ \emph {is} the word of life, Jesus Christ \emph {is} the eternal life}{251}{subsubsection.5.15.17}\protected@file@percent }
\newlabel{sec:org3f3d118}{{5.15.17}{251}{Jesus Christ \emph {is} the word of life, Jesus Christ \emph {is} the eternal life}{subsubsection.5.15.17}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.15.18}Simply tell the truth from God. We must not reject Jesus}{252}{subsubsection.5.15.18}\protected@file@percent }
\newlabel{sec:orgfef4eeb}{{5.15.18}{252}{Simply tell the truth from God. We must not reject Jesus}{subsubsection.5.15.18}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.15.19}Jesus is Almighty God's Son and is sitting in Power next to His Father}{252}{subsubsection.5.15.19}\protected@file@percent }
\newlabel{sec:org71042f1}{{5.15.19}{252}{Jesus is Almighty God's Son and is sitting in Power next to His Father}{subsubsection.5.15.19}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.15.20}Faith and law-keeping as a Christian}{263}{subsubsection.5.15.20}\protected@file@percent }
\newlabel{sec:org0d9cf4d}{{5.15.20}{263}{Faith and law-keeping as a Christian}{subsubsection.5.15.20}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6}Jehovah is Almighty God, Creator of Heaven and Earth}{271}{section.6}\protected@file@percent }
\newlabel{sec:org6f18d10}{{6}{271}{Jehovah is Almighty God, Creator of Heaven and Earth}{section.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.1}Seven I AM statements in the Gospel of John}{281}{subsection.6.1}\protected@file@percent }
\newlabel{sec:org68b5c05}{{6.1}{281}{Seven I AM statements in the Gospel of John}{subsection.6.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.1.1}The Bread of Life}{281}{subsubsection.6.1.1}\protected@file@percent }
\newlabel{sec:org57843d3}{{6.1.1}{281}{The Bread of Life}{subsubsection.6.1.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.1.2}The Light of the World}{281}{subsubsection.6.1.2}\protected@file@percent }
\newlabel{sec:org48ab896}{{6.1.2}{281}{The Light of the World}{subsubsection.6.1.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.1.3}The Door}{282}{subsubsection.6.1.3}\protected@file@percent }
\newlabel{sec:org707cc61}{{6.1.3}{282}{The Door}{subsubsection.6.1.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.1.4}The Good Shepherd}{282}{subsubsection.6.1.4}\protected@file@percent }
\newlabel{sec:orgce2a1a7}{{6.1.4}{282}{The Good Shepherd}{subsubsection.6.1.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.1.5}The Resurrection and the Life}{282}{subsubsection.6.1.5}\protected@file@percent }
\newlabel{sec:org21c4682}{{6.1.5}{282}{The Resurrection and the Life}{subsubsection.6.1.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.1.6}The Way, the Truth and the Life}{282}{subsubsection.6.1.6}\protected@file@percent }
\newlabel{sec:orgedad60c}{{6.1.6}{282}{The Way, the Truth and the Life}{subsubsection.6.1.6}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.1.7}The True Vine}{282}{subsubsection.6.1.7}\protected@file@percent }
\newlabel{sec:orge2820c3}{{6.1.7}{282}{The True Vine}{subsubsection.6.1.7}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.2}Jesus}{282}{subsection.6.2}\protected@file@percent }
\newlabel{sec:org352d25b}{{6.2}{282}{Jesus}{subsection.6.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.1}Jesus has overcome the world}{282}{subsubsection.6.2.1}\protected@file@percent }
\newlabel{sec:orgd99bcea}{{6.2.1}{282}{Jesus has overcome the world}{subsubsection.6.2.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.2}Jesus is the Lamb of God who sits with God on God's throne}{283}{subsubsection.6.2.2}\protected@file@percent }
\newlabel{sec:orga004dd3}{{6.2.2}{283}{Jesus is the Lamb of God who sits with God on God's throne}{subsubsection.6.2.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.3}Follow Jesus for eternal life. Jesus is the Bread of Life}{283}{subsubsection.6.2.3}\protected@file@percent }
\newlabel{sec:org622568d}{{6.2.3}{283}{Follow Jesus for eternal life. Jesus is the Bread of Life}{subsubsection.6.2.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.4}Believe Jesus and allow His word to abide in you}{283}{subsubsection.6.2.4}\protected@file@percent }
\newlabel{sec:orgc6c53d5}{{6.2.4}{283}{Believe Jesus and allow His word to abide in you}{subsubsection.6.2.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.5}We are implored to love Jesus and follow Him}{284}{subsubsection.6.2.5}\protected@file@percent }
\newlabel{sec:orgbc9b6dd}{{6.2.5}{284}{We are implored to love Jesus and follow Him}{subsubsection.6.2.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.6}We must listen to Jesus}{284}{subsubsection.6.2.6}\protected@file@percent }
\newlabel{sec:orga2910ad}{{6.2.6}{284}{We must listen to Jesus}{subsubsection.6.2.6}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.7}We are implored to honour Jesus}{285}{subsubsection.6.2.7}\protected@file@percent }
\newlabel{sec:orgae0cb1d}{{6.2.7}{285}{We are implored to honour Jesus}{subsubsection.6.2.7}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.8}We are implored to keep Jesus' words}{285}{subsubsection.6.2.8}\protected@file@percent }
\newlabel{sec:org65da6d8}{{6.2.8}{285}{We are implored to keep Jesus' words}{subsubsection.6.2.8}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.9}We must receive Jesus. Jesus is God's Only-Begotten Son}{285}{subsubsection.6.2.9}\protected@file@percent }
\newlabel{sec:orgf115b85}{{6.2.9}{285}{We must receive Jesus. Jesus is God's Only-Begotten Son}{subsubsection.6.2.9}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.10}Even those who have faith in Jesus Christ's name may have the right to be born of God and become children of God}{285}{subsubsection.6.2.10}\protected@file@percent }
\newlabel{sec:org7643a53}{{6.2.10}{285}{Even those who have faith in Jesus Christ's name may have the right to be born of God and become children of God}{subsubsection.6.2.10}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.11}We must do the will of God, which is the food and drink which Jesus gives us}{286}{subsubsection.6.2.11}\protected@file@percent }
\newlabel{sec:orgb713098}{{6.2.11}{286}{We must do the will of God, which is the food and drink which Jesus gives us}{subsubsection.6.2.11}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.12}Having faith (living in accordance with the truth, and in relationship with God) is asked of us - faith continues}{287}{subsubsection.6.2.12}\protected@file@percent }
\newlabel{sec:org8f46694}{{6.2.12}{287}{Having faith (living in accordance with the truth, and in relationship with God) is asked of us - faith continues}{subsubsection.6.2.12}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.13}We must abide by his teaching}{288}{subsubsection.6.2.13}\protected@file@percent }
\newlabel{sec:org8e4a5a3}{{6.2.13}{288}{We must abide by his teaching}{subsubsection.6.2.13}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.14}We must live sowing to the Spirit}{288}{subsubsection.6.2.14}\protected@file@percent }
\newlabel{sec:org1117e42}{{6.2.14}{288}{We must live sowing to the Spirit}{subsubsection.6.2.14}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.15}We \emph {must} be servants of Christ}{289}{subsubsection.6.2.15}\protected@file@percent }
\newlabel{sec:org8bc3097}{{6.2.15}{289}{We \emph {must} be servants of Christ}{subsubsection.6.2.15}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.16}We must remain ultimately faithful to Jesus Christ, and never deny Him as our only Master and Lord}{289}{subsubsection.6.2.16}\protected@file@percent }
\newlabel{sec:orgb86132a}{{6.2.16}{289}{We must remain ultimately faithful to Jesus Christ, and never deny Him as our only Master and Lord}{subsubsection.6.2.16}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.17}We must endeavour to live faithfully to our Jesus Christ}{289}{subsubsection.6.2.17}\protected@file@percent }
\newlabel{sec:org4198d05}{{6.2.17}{289}{We must endeavour to live faithfully to our Jesus Christ}{subsubsection.6.2.17}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.18}Christian faith looks like this}{289}{subsubsection.6.2.18}\protected@file@percent }
\newlabel{sec:orgf776947}{{6.2.18}{289}{Christian faith looks like this}{subsubsection.6.2.18}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.19}We should clean ourselves with the aid of the Word and \emph {the Holy Spirit}}{293}{subsubsection.6.2.19}\protected@file@percent }
\newlabel{sec:org659c667}{{6.2.19}{293}{We should clean ourselves with the aid of the Word and \emph {the Holy Spirit}}{subsubsection.6.2.19}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.20}We \emph {must} clean ourselves up with God's help}{294}{subsubsection.6.2.20}\protected@file@percent }
\newlabel{sec:org51b7781}{{6.2.20}{294}{We \emph {must} clean ourselves up with God's help}{subsubsection.6.2.20}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.21}We must be wanting to be cleaned of sin}{294}{subsubsection.6.2.21}\protected@file@percent }
\newlabel{sec:org774d1a1}{{6.2.21}{294}{We must be wanting to be cleaned of sin}{subsubsection.6.2.21}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.22}We should put the ignorant to silence through doing good}{295}{subsubsection.6.2.22}\protected@file@percent }
\newlabel{sec:org1c0bb38}{{6.2.22}{295}{We should put the ignorant to silence through doing good}{subsubsection.6.2.22}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.23}The obedient children are the ones who are not conformed to the passions of our former ignorance}{296}{subsubsection.6.2.23}\protected@file@percent }
\newlabel{sec:org02bde89}{{6.2.23}{296}{The obedient children are the ones who are not conformed to the passions of our former ignorance}{subsubsection.6.2.23}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.24}The sons of disobedience are the ones who are conformed to sexual immorality, impurity, or covetousness, etc.}{296}{subsubsection.6.2.24}\protected@file@percent }
\newlabel{sec:org42d7edd}{{6.2.24}{296}{The sons of disobedience are the ones who are conformed to sexual immorality, impurity, or covetousness, etc}{subsubsection.6.2.24}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.25}If we trust in the name of the Son of God, Jesus Christ, we have eternal life}{296}{subsubsection.6.2.25}\protected@file@percent }
\newlabel{sec:org9cd4b1b}{{6.2.25}{296}{If we trust in the name of the Son of God, Jesus Christ, we have eternal life}{subsubsection.6.2.25}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.26}Get to know Jesus by believing Him and following His commandments}{297}{subsubsection.6.2.26}\protected@file@percent }
\newlabel{sec:org30400e2}{{6.2.26}{297}{Get to know Jesus by believing Him and following His commandments}{subsubsection.6.2.26}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.27}Atonement}{299}{subsubsection.6.2.27}\protected@file@percent }
\newlabel{sec:org312b20b}{{6.2.27}{299}{Atonement}{subsubsection.6.2.27}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.28}Everyone needs saving}{304}{subsubsection.6.2.28}\protected@file@percent }
\newlabel{sec:org23363bc}{{6.2.28}{304}{Everyone needs saving}{subsubsection.6.2.28}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.29}Righteous deeds}{306}{subsubsection.6.2.29}\protected@file@percent }
\newlabel{sec:org3e6053f}{{6.2.29}{306}{Righteous deeds}{subsubsection.6.2.29}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.30}Whoever makes an appeal to God, calls upon His name will be saved}{306}{subsubsection.6.2.30}\protected@file@percent }
\newlabel{sec:org0aebdbf}{{6.2.30}{306}{Whoever makes an appeal to God, calls upon His name will be saved}{subsubsection.6.2.30}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.2.31}Baptism is an appeal to God for a good conscience through the [death and] resurrection of Jesus Christ's, taking part in it}{308}{subsubsection.6.2.31}\protected@file@percent }
\newlabel{sec:org2d3d724}{{6.2.31}{308}{Baptism is an appeal to God for a good conscience through the [death and] resurrection of Jesus Christ's, taking part in it}{subsubsection.6.2.31}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.3}Obedience - A heart of obedience is the start of faith, and belief is the start of continued obedience}{309}{subsection.6.3}\protected@file@percent }
\newlabel{sec:org71e906a}{{6.3}{309}{Obedience - A heart of obedience is the start of faith, and belief is the start of continued obedience}{subsection.6.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.3.1}Continued revelation comes from having a heart of obedience towards God}{310}{subsubsection.6.3.1}\protected@file@percent }
\newlabel{sec:orgb92fb30}{{6.3.1}{310}{Continued revelation comes from having a heart of obedience towards God}{subsubsection.6.3.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.3.2}God's commanded is for everyone to come to the obedience of having faith in Him through Jesus Christ}{310}{subsubsection.6.3.2}\protected@file@percent }
\newlabel{sec:org84298e8}{{6.3.2}{310}{God's commanded is for everyone to come to the obedience of having faith in Him through Jesus Christ}{subsubsection.6.3.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.3.3}Fear of the Lord}{310}{subsubsection.6.3.3}\protected@file@percent }
\newlabel{sec:orged05e95}{{6.3.3}{310}{Fear of the Lord}{subsubsection.6.3.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.4}Repentance does involve turning from sin}{311}{subsection.6.4}\protected@file@percent }
\newlabel{sec:org2d879c8}{{6.4}{311}{Repentance does involve turning from sin}{subsection.6.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.4.1}Justification by having faith like Abraham in He who raised Jesus Christ from the dead}{311}{subsubsection.6.4.1}\protected@file@percent }
\newlabel{sec:orgc806415}{{6.4.1}{311}{Justification by having faith like Abraham in He who raised Jesus Christ from the dead}{subsubsection.6.4.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.5}The obedient children are the ones who are not conformed to the passions of our former ignorance}{314}{subsection.6.5}\protected@file@percent }
\newlabel{sec:org5a6e1aa}{{6.5}{314}{The obedient children are the ones who are not conformed to the passions of our former ignorance}{subsection.6.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.5.1}Jesus Christ has explained what the faith of Abraham looks like for someone who believes in Him}{314}{subsubsection.6.5.1}\protected@file@percent }
\newlabel{sec:org9cca4a6}{{6.5.1}{314}{Jesus Christ has explained what the faith of Abraham looks like for someone who believes in Him}{subsubsection.6.5.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.6}Get to know Jesus by following His commandments}{314}{subsection.6.6}\protected@file@percent }
\newlabel{sec:org8323b80}{{6.6}{314}{Get to know Jesus by following His commandments}{subsection.6.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.7}The sons of disobedience are the ones who are conformed to sexual immorality, impurity, or covetousness, etc.}{315}{subsection.6.7}\protected@file@percent }
\newlabel{sec:org15f9c77}{{6.7}{315}{The sons of disobedience are the ones who are conformed to sexual immorality, impurity, or covetousness, etc}{subsection.6.7}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.7.1}All sin is lawlessness}{315}{subsubsection.6.7.1}\protected@file@percent }
\newlabel{sec:org18dc170}{{6.7.1}{315}{All sin is lawlessness}{subsubsection.6.7.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {7}Try to clarify what \emph {\emph {sin}} looks like from Bible verses}{319}{section.7}\protected@file@percent }
\newlabel{sec:orgf2b9777}{{7}{319}{Try to clarify what \emph {\emph {sin}} looks like from Bible verses}{section.7}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.1}Iniquity and sin: In this case, sin is the verb, I think, and iniquity is the noun}{320}{subsection.7.1}\protected@file@percent }
\newlabel{sec:orgdd72999}{{7.1}{320}{Iniquity and sin: In this case, sin is the verb, I think, and iniquity is the noun}{subsection.7.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.2}God searches the heart and tests the mind}{320}{subsection.7.2}\protected@file@percent }
\newlabel{sec:org591936c}{{7.2}{320}{God searches the heart and tests the mind}{subsection.7.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.3}The law is laid down for the sinners}{320}{subsection.7.3}\protected@file@percent }
\newlabel{sec:orgce5d5e3}{{7.3}{320}{The law is laid down for the sinners}{subsection.7.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.4}Whoever transgresses the law is liable to judgement}{320}{subsection.7.4}\protected@file@percent }
\newlabel{sec:org7f44e3d}{{7.4}{320}{Whoever transgresses the law is liable to judgement}{subsection.7.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.5}Anger leads to the matter being settled in God's court}{321}{subsection.7.5}\protected@file@percent }
\newlabel{sec:org93b4a6f}{{7.5}{321}{Anger leads to the matter being settled in God's court}{subsection.7.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.6}Sin - what does it look like}{322}{subsection.7.6}\protected@file@percent }
\newlabel{sec:org9791e39}{{7.6}{322}{Sin - what does it look like}{subsection.7.6}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.1}Transgressing the 10 Commandments}{323}{subsubsection.7.6.1}\protected@file@percent }
\newlabel{sec:org165c5e3}{{7.6.1}{323}{Transgressing the 10 Commandments}{subsubsection.7.6.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.2}Having a will to do evil, rather than a will to do God's will}{330}{subsubsection.7.6.2}\protected@file@percent }
\newlabel{sec:org8a623b6}{{7.6.2}{330}{Having a will to do evil, rather than a will to do God's will}{subsubsection.7.6.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.3}All manner of unrighteousness}{330}{subsubsection.7.6.3}\protected@file@percent }
\newlabel{sec:orgb6f5ee6}{{7.6.3}{330}{All manner of unrighteousness}{subsubsection.7.6.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.4}Murder}{330}{subsubsection.7.6.4}\protected@file@percent }
\newlabel{sec:org8294aaa}{{7.6.4}{330}{Murder}{subsubsection.7.6.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.5}Theft}{330}{subsubsection.7.6.5}\protected@file@percent }
\newlabel{sec:org77ee27c}{{7.6.5}{330}{Theft}{subsubsection.7.6.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.6}Rejecting the word of the LORD}{330}{subsubsection.7.6.6}\protected@file@percent }
\newlabel{sec:orgd89cdfa}{{7.6.6}{330}{Rejecting the word of the LORD}{subsubsection.7.6.6}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.7}Presumption and going beyond the Scripture}{331}{subsubsection.7.6.7}\protected@file@percent }
\newlabel{sec:org0c7b4f9}{{7.6.7}{331}{Presumption and going beyond the Scripture}{subsubsection.7.6.7}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.8}Wandering / backsliding from God}{331}{subsubsection.7.6.8}\protected@file@percent }
\newlabel{sec:orgf1524a1}{{7.6.8}{331}{Wandering / backsliding from God}{subsubsection.7.6.8}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.9}Prophesying lies}{331}{subsubsection.7.6.9}\protected@file@percent }
\newlabel{sec:org6f5f645}{{7.6.9}{331}{Prophesying lies}{subsubsection.7.6.9}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.10}Ungodliness}{331}{subsubsection.7.6.10}\protected@file@percent }
\newlabel{sec:org7ec3f1c}{{7.6.10}{331}{Ungodliness}{subsubsection.7.6.10}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.11}Pride, debauchery, greed}{331}{subsubsection.7.6.11}\protected@file@percent }
\newlabel{sec:orga2e2770}{{7.6.11}{331}{Pride, debauchery, greed}{subsubsection.7.6.11}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.12}Pride in self and lack of humility towards God}{332}{subsubsection.7.6.12}\protected@file@percent }
\newlabel{sec:org9d594d9}{{7.6.12}{332}{Pride in self and lack of humility towards God}{subsubsection.7.6.12}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.13}Discouraging the righteous, encouraging the wicked, even to misguide them to harm}{333}{subsubsection.7.6.13}\protected@file@percent }
\newlabel{sec:org89091d4}{{7.6.13}{333}{Discouraging the righteous, encouraging the wicked, even to misguide them to harm}{subsubsection.7.6.13}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.14}Dishonesty}{334}{subsubsection.7.6.14}\protected@file@percent }
\newlabel{sec:org2afd3f1}{{7.6.14}{334}{Dishonesty}{subsubsection.7.6.14}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.15}Lies and adultery}{334}{subsubsection.7.6.15}\protected@file@percent }
\newlabel{sec:orgf3fc205}{{7.6.15}{334}{Lies and adultery}{subsubsection.7.6.15}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.16}Iniquity}{334}{subsubsection.7.6.16}\protected@file@percent }
\newlabel{sec:org6bb6ebb}{{7.6.16}{334}{Iniquity}{subsubsection.7.6.16}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.17}Profaning what is holy}{334}{subsubsection.7.6.17}\protected@file@percent }
\newlabel{sec:orgf4b99b1}{{7.6.17}{334}{Profaning what is holy}{subsubsection.7.6.17}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.18}Blasphemy}{334}{subsubsection.7.6.18}\protected@file@percent }
\newlabel{sec:org4aa69f9}{{7.6.18}{334}{Blasphemy}{subsubsection.7.6.18}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.19}Lawlessness is sin - unresponsive and disobedient to God}{334}{subsubsection.7.6.19}\protected@file@percent }
\newlabel{sec:org0c3551a}{{7.6.19}{334}{Lawlessness is sin - unresponsive and disobedient to God}{subsubsection.7.6.19}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.20}Rebellion against God is sin}{334}{subsubsection.7.6.20}\protected@file@percent }
\newlabel{sec:org47b6846}{{7.6.20}{334}{Rebellion against God is sin}{subsubsection.7.6.20}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.21}Not caring for the innocent}{335}{subsubsection.7.6.21}\protected@file@percent }
\newlabel{sec:orgc84fff1}{{7.6.21}{335}{Not caring for the innocent}{subsubsection.7.6.21}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.22}Doing evil deeds is sin}{335}{subsubsection.7.6.22}\protected@file@percent }
\newlabel{sec:org1ca52cb}{{7.6.22}{335}{Doing evil deeds is sin}{subsubsection.7.6.22}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.23}unjust gain}{335}{subsubsection.7.6.23}\protected@file@percent }
\newlabel{sec:org114086b}{{7.6.23}{335}{unjust gain}{subsubsection.7.6.23}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.24}dishonesty}{335}{subsubsection.7.6.24}\protected@file@percent }
\newlabel{sec:orgc930311}{{7.6.24}{335}{dishonesty}{subsubsection.7.6.24}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.25}idolatry}{335}{subsubsection.7.6.25}\protected@file@percent }
\newlabel{sec:org13ebaff}{{7.6.25}{335}{idolatry}{subsubsection.7.6.25}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.26}sexual immorality}{336}{subsubsection.7.6.26}\protected@file@percent }
\newlabel{sec:orge086a96}{{7.6.26}{336}{sexual immorality}{subsubsection.7.6.26}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.27}carnal, fleshly things, greed and self-indulgence}{336}{subsubsection.7.6.27}\protected@file@percent }
\newlabel{sec:orgc1efea4}{{7.6.27}{336}{carnal, fleshly things, greed and self-indulgence}{subsubsection.7.6.27}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.28}unnatural desire}{336}{subsubsection.7.6.28}\protected@file@percent }
\newlabel{sec:org74fcd48}{{7.6.28}{336}{unnatural desire}{subsubsection.7.6.28}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.29}Rape is very, very bad}{336}{subsubsection.7.6.29}\protected@file@percent }
\newlabel{sec:org75f4002}{{7.6.29}{336}{Rape is very, very bad}{subsubsection.7.6.29}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.30}Being habitually drunk is sinful}{337}{subsubsection.7.6.30}\protected@file@percent }
\newlabel{sec:orga08b612}{{7.6.30}{337}{Being habitually drunk is sinful}{subsubsection.7.6.30}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.31}Abortion}{337}{subsubsection.7.6.31}\protected@file@percent }
\newlabel{sec:orgcab7af2}{{7.6.31}{337}{Abortion}{subsubsection.7.6.31}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {7.6.32}More sins condemned by the early Church}{337}{subsubsection.7.6.32}\protected@file@percent }
\newlabel{sec:org0518923}{{7.6.32}{337}{More sins condemned by the early Church}{subsubsection.7.6.32}{}}
\@writefile{toc}{\contentsline {section}{\numberline {8}If the world is encouraging you, you're probably in falsehood or taking the wide road}{338}{section.8}\protected@file@percent }
\newlabel{sec:org32610b3}{{8}{338}{If the world is encouraging you, you're probably in falsehood or taking the wide road}{section.8}{}}
\@writefile{toc}{\contentsline {section}{\numberline {9}The times of ignorance are past}{338}{section.9}\protected@file@percent }
\newlabel{sec:org82bc7f9}{{9}{338}{The times of ignorance are past}{section.9}{}}
\@writefile{toc}{\contentsline {section}{\numberline {10}Common grace}{338}{section.10}\protected@file@percent }
\newlabel{sec:org7148f07}{{10}{338}{Common grace}{section.10}{}}
\@writefile{toc}{\contentsline {section}{\numberline {11}Justification - declared 'not guilty', if in Christ Jesus}{340}{section.11}\protected@file@percent }
\newlabel{sec:org14f2b80}{{11}{340}{Justification - declared 'not guilty', if in Christ Jesus}{section.11}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.1}We must \emph {live} by faith - live by obedience to God!}{340}{subsection.11.1}\protected@file@percent }
\newlabel{sec:orgb57a9dd}{{11.1}{340}{We must \emph {live} by faith - live by obedience to God!}{subsection.11.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.2}We must be found in Jesus}{341}{subsection.11.2}\protected@file@percent }
\newlabel{sec:org1aa9a8c}{{11.2}{341}{We must be found in Jesus}{subsection.11.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.3}The ones who are in Jesus have been called out of darkness and into His light}{341}{subsection.11.3}\protected@file@percent }
\newlabel{sec:orgd4a7b86}{{11.3}{341}{The ones who are in Jesus have been called out of darkness and into His light}{subsection.11.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.4}Sanctification (turning from sin and being cleaned) is a marker of those who are in Jesus}{341}{subsection.11.4}\protected@file@percent }
\newlabel{sec:org1b09544}{{11.4}{341}{Sanctification (turning from sin and being cleaned) is a marker of those who are in Jesus}{subsection.11.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.5}We are justified by faith in God who delivered up for our trespasses and \relax $\@@underline {\hbox {raised Jesus Christ from the dead for our justification}}\mathsurround \z@ $\relax }{342}{subsection.11.5}\protected@file@percent }
\newlabel{sec:orgf99b7ad}{{11.5}{342}{We are justified by faith in God who delivered up for our trespasses and \underline {raised Jesus Christ from the dead for our justification}}{subsection.11.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.6}Justified by our words}{344}{subsection.11.6}\protected@file@percent }
\newlabel{sec:org73c0ddf}{{11.6}{344}{Justified by our words}{subsection.11.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.7}Justified by grace}{344}{subsection.11.7}\protected@file@percent }
\newlabel{sec:orgb225afb}{{11.7}{344}{Justified by grace}{subsection.11.7}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.7.1}Justified by faith following Jesus}{344}{subsubsection.11.7.1}\protected@file@percent }
\newlabel{sec:org21dff4a}{{11.7.1}{344}{Justified by faith following Jesus}{subsubsection.11.7.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.7.2}When James mentions "justification by works", he actually is referring to justification by obedient faith (obedient faith is still faith)}{344}{subsubsection.11.7.2}\protected@file@percent }
\newlabel{sec:org3d5bf47}{{11.7.2}{344}{When James mentions "justification by works", he actually is referring to justification by obedient faith (obedient faith is still faith)}{subsubsection.11.7.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.7.3}Justified by the blood of Jesus, received through faith in Jesus Christ as Lord}{344}{subsubsection.11.7.3}\protected@file@percent }
\newlabel{sec:org838ffdf}{{11.7.3}{344}{Justified by the blood of Jesus, received through faith in Jesus Christ as Lord}{subsubsection.11.7.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.7.4}Believing the Word of Truth - sealed with the promised Holy Spirit}{347}{subsubsection.11.7.4}\protected@file@percent }
\newlabel{sec:org0b2fd0e}{{11.7.4}{347}{Believing the Word of Truth - sealed with the promised Holy Spirit}{subsubsection.11.7.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.8}Faith, Law, Works}{348}{subsection.11.8}\protected@file@percent }
\newlabel{sec:org12f9515}{{11.8}{348}{Faith, Law, Works}{subsection.11.8}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.8.1}Love is defined by Jesus}{349}{subsubsection.11.8.1}\protected@file@percent }
\newlabel{sec:org7a3fe19}{{11.8.1}{349}{Love is defined by Jesus}{subsubsection.11.8.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.8.2}Christians are not \relax $\@@underline {\hbox {under}}\mathsurround \z@ $\relax the Mosaic law because \emph {we are under grace as we are under Christ's law}, but we don't despise the Torah, nor annul it, nor teach others to annul it}{349}{subsubsection.11.8.2}\protected@file@percent }
\newlabel{sec:org2ed16e7}{{11.8.2}{349}{Christians are not \underline {under} the Mosaic law because \emph {we are under grace as we are under Christ's law}, but we don't despise the Torah, nor annul it, nor teach others to annul it}{subsubsection.11.8.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.8.3}Faith in Jesus Christ doesn't exclude obedience. Knowing Jesus is more than knowing about Jesus. About the Galatian error for those who try to use this passage in order to avoid obeying Jesus}{350}{subsubsection.11.8.3}\protected@file@percent }
\newlabel{sec:org7f847bc}{{11.8.3}{350}{Faith in Jesus Christ doesn't exclude obedience. Knowing Jesus is more than knowing about Jesus. About the Galatian error for those who try to use this passage in order to avoid obeying Jesus}{subsubsection.11.8.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.8.4}Didache}{353}{subsubsection.11.8.4}\protected@file@percent }
\newlabel{sec:orgb12b822}{{11.8.4}{353}{Didache}{subsubsection.11.8.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.8.5}Our point of reference}{353}{subsubsection.11.8.5}\protected@file@percent }
\newlabel{sec:org2f045f5}{{11.8.5}{353}{Our point of reference}{subsubsection.11.8.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.8.6}Purity of heart}{356}{subsubsection.11.8.6}\protected@file@percent }
\newlabel{sec:org03578b0}{{11.8.6}{356}{Purity of heart}{subsubsection.11.8.6}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.8.7}We should align our hearts and minds to God's precepts, not submit to worldly precepts which are fictions}{356}{subsubsection.11.8.7}\protected@file@percent }
\newlabel{sec:org12e4885}{{11.8.7}{356}{We should align our hearts and minds to God's precepts, not submit to worldly precepts which are fictions}{subsubsection.11.8.7}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.8.8}We must cleanse \relax $\@@underline {\hbox {ourself}}\mathsurround \z@ $\relax of defilement if we want God to use us more, and if we want to see with faith and hear God more clearly}{356}{subsubsection.11.8.8}\protected@file@percent }
\newlabel{sec:org153d412}{{11.8.8}{356}{We must cleanse \underline {ourself} of defilement if we want God to use us more, and if we want to see with faith and hear God more clearly}{subsubsection.11.8.8}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.8.9}Impurity lies the heart}{357}{subsubsection.11.8.9}\protected@file@percent }
\newlabel{sec:org7980462}{{11.8.9}{357}{Impurity lies the heart}{subsubsection.11.8.9}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.8.10}Purifying the heart}{358}{subsubsection.11.8.10}\protected@file@percent }
\newlabel{sec:orgecda067}{{11.8.10}{358}{Purifying the heart}{subsubsection.11.8.10}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.8.11}Being a slave to righteousness is possible without adhering to the Mosaic law, by being led by Jesus' Spirit}{358}{subsubsection.11.8.11}\protected@file@percent }
\newlabel{sec:org7c74a0f}{{11.8.11}{358}{Being a slave to righteousness is possible without adhering to the Mosaic law, by being led by Jesus' Spirit}{subsubsection.11.8.11}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.8.12}If a person is led by the Spirit then the Lord Jesus is in control of their life, which means that person obeys Jesus' commandments:}{359}{subsubsection.11.8.12}\protected@file@percent }
\newlabel{sec:orgc8f3f73}{{11.8.12}{359}{If a person is led by the Spirit then the Lord Jesus is in control of their life, which means that person obeys Jesus' commandments:}{subsubsection.11.8.12}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.8.13}We must have attention to Jesus Christ our Lord}{359}{subsubsection.11.8.13}\protected@file@percent }
\newlabel{sec:org5f4c041}{{11.8.13}{359}{We must have attention to Jesus Christ our Lord}{subsubsection.11.8.13}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.8.14}Make the tree good and the fruit good}{360}{subsubsection.11.8.14}\protected@file@percent }
\newlabel{sec:org8c74e2e}{{11.8.14}{360}{Make the tree good and the fruit good}{subsubsection.11.8.14}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.8.15}Judgement}{360}{subsubsection.11.8.15}\protected@file@percent }
\newlabel{sec:org46f0a67}{{11.8.15}{360}{Judgement}{subsubsection.11.8.15}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.8.16}Our Lord is the Son of Man, and we should be ready and on alert}{363}{subsubsection.11.8.16}\protected@file@percent }
\newlabel{sec:orgd813064}{{11.8.16}{363}{Our Lord is the Son of Man, and we should be ready and on alert}{subsubsection.11.8.16}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.8.17}I believe I was saved and born-again by seeking Jesus and calling on the name of the Lord}{364}{subsubsection.11.8.17}\protected@file@percent }
\newlabel{sec:org1a763ae}{{11.8.17}{364}{I believe I was saved and born-again by seeking Jesus and calling on the name of the Lord}{subsubsection.11.8.17}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {11.8.18}We should not rebel against the law - but we should obey the truth in truth}{364}{subsubsection.11.8.18}\protected@file@percent }
\newlabel{sec:orgf9cd681}{{11.8.18}{364}{We should not rebel against the law - but we should obey the truth in truth}{subsubsection.11.8.18}{}}
\@writefile{toc}{\contentsline {section}{\numberline {12}Faith requires obedience}{364}{section.12}\protected@file@percent }
\newlabel{sec:org603e830}{{12}{364}{Faith requires obedience}{section.12}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {12.1}The obedient children are the ones who are not conformed to the passions of our former ignorance}{365}{subsection.12.1}\protected@file@percent }
\newlabel{sec:orge8febff}{{12.1}{365}{The obedient children are the ones who are not conformed to the passions of our former ignorance}{subsection.12.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {12.2}The sons of disobedience are the ones who are conformed to sexual immorality, impurity, or covetousness, etc.}{365}{subsection.12.2}\protected@file@percent }
\newlabel{sec:org2e5ac25}{{12.2}{365}{The sons of disobedience are the ones who are conformed to sexual immorality, impurity, or covetousness, etc}{subsection.12.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {12.3}Get to know Jesus by following His commandments}{365}{subsection.12.3}\protected@file@percent }
\newlabel{sec:org4644162}{{12.3}{365}{Get to know Jesus by following His commandments}{subsection.12.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {13}True religion}{366}{section.13}\protected@file@percent }
\newlabel{sec:org55bb95d}{{13}{366}{True religion}{section.13}{}}
\@writefile{toc}{\contentsline {section}{\numberline {14}Repentance from sin}{368}{section.14}\protected@file@percent }
\newlabel{sec:org9b95140}{{14}{368}{Repentance from sin}{section.14}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {14.1}Parable of the prodigal son - God's joy over a sinner that repents from sin}{368}{subsection.14.1}\protected@file@percent }
\newlabel{sec:orgca85fb7}{{14.1}{368}{Parable of the prodigal son - God's joy over a sinner that repents from sin}{subsection.14.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {15}Obtain a faith of equal standing with the Apostles by the righteousness of our God and Savior Jesus Christ}{369}{section.15}\protected@file@percent }
\newlabel{sec:org5c6abf6}{{15}{369}{Obtain a faith of equal standing with the Apostles by the righteousness of our God and Savior Jesus Christ}{section.15}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {15.1}Knowing and being found in Christ Jesus is what it's all about}{370}{subsection.15.1}\protected@file@percent }
\newlabel{sec:orgc178e3b}{{15.1}{370}{Knowing and being found in Christ Jesus is what it's all about}{subsection.15.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {15.2}There is no salvation without repentance - we must turn away from sin}{371}{subsection.15.2}\protected@file@percent }
\newlabel{sec:org5eededf}{{15.2}{371}{There is no salvation without repentance - we must turn away from sin}{subsection.15.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {15.3}We must believe the truth, forsake sin, and live to righteousness}{372}{subsection.15.3}\protected@file@percent }
\newlabel{sec:orgf1db2e3}{{15.3}{372}{We must believe the truth, forsake sin, and live to righteousness}{subsection.15.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {15.3.1}Holiness}{373}{subsubsection.15.3.1}\protected@file@percent }
\newlabel{sec:org7178cd9}{{15.3.1}{373}{Holiness}{subsubsection.15.3.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {15.3.2}Personal 'holiness' / 'righteousness' (i.e. devotion to Christ)}{374}{subsubsection.15.3.2}\protected@file@percent }
\newlabel{sec:orgab45158}{{15.3.2}{374}{Personal 'holiness' / 'righteousness' (i.e. devotion to Christ)}{subsubsection.15.3.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {15.3.3}We approach Christ's very image}{375}{subsubsection.15.3.3}\protected@file@percent }
\newlabel{sec:orgab68816}{{15.3.3}{375}{We approach Christ's very image}{subsubsection.15.3.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {15.3.4}Repentance: Put off the old self}{376}{subsubsection.15.3.4}\protected@file@percent }
\newlabel{sec:org7a8113c}{{15.3.4}{376}{Repentance: Put off the old self}{subsubsection.15.3.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {15.3.5}Put on the new self: Christ-likeness}{376}{subsubsection.15.3.5}\protected@file@percent }
\newlabel{sec:org5d255ba}{{15.3.5}{376}{Put on the new self: Christ-likeness}{subsubsection.15.3.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {15.3.6}What must be believe, and what we must do: Walk in \emph {truth} and \emph {love} the way Jesus has commanded us}{376}{subsubsection.15.3.6}\protected@file@percent }
\newlabel{sec:org790bb16}{{15.3.6}{376}{What must be believe, and what we must do: Walk in \emph {truth} and \emph {love} the way Jesus has commanded us}{subsubsection.15.3.6}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {15.3.7}Come to the \relax $\@@underline {\hbox {knowledge}}\mathsurround \z@ $\relax of the truth}{377}{subsubsection.15.3.7}\protected@file@percent }
\newlabel{sec:org73153f6}{{15.3.7}{377}{Come to the \underline {knowledge} of the truth}{subsubsection.15.3.7}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {15.3.8}Identity in Christ}{379}{subsubsection.15.3.8}\protected@file@percent }
\newlabel{sec:org6f3201e}{{15.3.8}{379}{Identity in Christ}{subsubsection.15.3.8}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {15.3.9}Become what we are by identity - put to death the old leaven}{382}{subsubsection.15.3.9}\protected@file@percent }
\newlabel{sec:org39d23e2}{{15.3.9}{382}{Become what we are by identity - put to death the old leaven}{subsubsection.15.3.9}{}}
\@writefile{toc}{\contentsline {section}{\numberline {16}Sanctification}{385}{section.16}\protected@file@percent }
\newlabel{sec:orgc5c0d4f}{{16}{385}{Sanctification}{section.16}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.1}Allow myself to be corrected}{385}{subsection.16.1}\protected@file@percent }
\newlabel{sec:org87f2e8c}{{16.1}{385}{Allow myself to be corrected}{subsection.16.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {16.1.1}The Holy Spirit will teach you}{385}{subsubsection.16.1.1}\protected@file@percent }
\newlabel{sec:orgcdc53e6}{{16.1.1}{385}{The Holy Spirit will teach you}{subsubsection.16.1.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.2}Be corrected by the truth}{385}{subsection.16.2}\protected@file@percent }
\newlabel{sec:org3292b91}{{16.2}{385}{Be corrected by the truth}{subsection.16.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.3}Repent of evil deeds, feelings and thoughts}{386}{subsection.16.3}\protected@file@percent }
\newlabel{sec:org75f34e0}{{16.3}{386}{Repent of evil deeds, feelings and thoughts}{subsection.16.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.4}Renew our minds}{386}{subsection.16.4}\protected@file@percent }
\newlabel{sec:org8411384}{{16.4}{386}{Renew our minds}{subsection.16.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.5}Be qualified regarding the faith - renewed in mind, not opposing the truth}{387}{subsection.16.5}\protected@file@percent }
\newlabel{sec:org836e53b}{{16.5}{387}{Be qualified regarding the faith - renewed in mind, not opposing the truth}{subsection.16.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {16.5.1}Set our mind on heavenly things, not earthly things}{387}{subsubsection.16.5.1}\protected@file@percent }
\newlabel{sec:orga1d8797}{{16.5.1}{387}{Set our mind on heavenly things, not earthly things}{subsubsection.16.5.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.6}Put a stop to sin and practice personal righteousness}{387}{subsection.16.6}\protected@file@percent }
\newlabel{sec:org704f373}{{16.6}{387}{Put a stop to sin and practice personal righteousness}{subsection.16.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.7}Sanctification by the Spirit and faith / obedience}{388}{subsection.16.7}\protected@file@percent }
\newlabel{sec:org04dce34}{{16.7}{388}{Sanctification by the Spirit and faith / obedience}{subsection.16.7}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.8}God is the source of our life in Christ Jesus. Jesus is \relax $\@@underline {\hbox {the source of}}\mathsurround \z@ $\relax our wisdom and righteousness and sanctification and redemption}{390}{subsection.16.8}\protected@file@percent }
\newlabel{sec:org8bf83da}{{16.8}{390}{God is the source of our life in Christ Jesus. Jesus is \underline {the source of} our wisdom and righteousness and sanctification and redemption}{subsection.16.8}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {16.8.1}We only boast in Christ Jesus, since He is our wisdom, righteousness, sanctification and redemption}{390}{subsubsection.16.8.1}\protected@file@percent }
\newlabel{sec:orge465260}{{16.8.1}{390}{We only boast in Christ Jesus, since He is our wisdom, righteousness, sanctification and redemption}{subsubsection.16.8.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {16.8.2}Filled with the fruit of righteousness that comes through Jesus Christ, to the glory and praise of God}{391}{subsubsection.16.8.2}\protected@file@percent }
\newlabel{sec:org5262c2e}{{16.8.2}{391}{Filled with the fruit of righteousness that comes through Jesus Christ, to the glory and praise of God}{subsubsection.16.8.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {16.9}Sanctification is being cleaned from sin and brought into believing and practicing truth}{391}{subsection.16.9}\protected@file@percent }
\newlabel{sec:org687fb89}{{16.9}{391}{Sanctification is being cleaned from sin and brought into believing and practicing truth}{subsection.16.9}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {16.9.1}Corruption remains a problem even for the regenerated}{392}{subsubsection.16.9.1}\protected@file@percent }
\newlabel{sec:orgdde1b29}{{16.9.1}{392}{Corruption remains a problem even for the regenerated}{subsubsection.16.9.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {16.9.2}Bad desire - leads to death. We do not want to be enslaved to corruption}{393}{subsubsection.16.9.2}\protected@file@percent }
\newlabel{sec:orgbe8f57b}{{16.9.2}{393}{Bad desire - leads to death. We do not want to be enslaved to corruption}{subsubsection.16.9.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {16.9.3}Good desire - Love God and one's neighbour}{393}{subsubsection.16.9.3}\protected@file@percent }
\newlabel{sec:org987a3c6}{{16.9.3}{393}{Good desire - Love God and one's neighbour}{subsubsection.16.9.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {17}Clearing up justifying faith vs justifying works - It's faith in \emph {Jesus Himself} that matters. Also, it's God who justifies us, not we who justify ourselves. We have faith in God to justify us, as we place our faith in Him}{394}{section.17}\protected@file@percent }
\newlabel{sec:org33760b8}{{17}{394}{Clearing up justifying faith vs justifying works - It's faith in \emph {Jesus Himself} that matters. Also, it's God who justifies us, not we who justify ourselves. We have faith in God to justify us, as we place our faith in Him}{section.17}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.0.1}Salvation by obedience}{398}{subsubsection.17.0.1}\protected@file@percent }
\newlabel{sec:orgc7af0d4}{{17.0.1}{398}{Salvation by obedience}{subsubsection.17.0.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {17.1}Walking in trusting faith in Jesus}{413}{subsection.17.1}\protected@file@percent }
\newlabel{sec:orgf0fbf7f}{{17.1}{413}{Walking in trusting faith in Jesus}{subsection.17.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.1.1}To be "under the law" is to "rely" on your own perfect obedience to the law for justification, life and salvation}{415}{subsubsection.17.1.1}\protected@file@percent }
\newlabel{sec:org2e20694}{{17.1.1}{415}{To be "under the law" is to "rely" on your own perfect obedience to the law for justification, life and salvation}{subsubsection.17.1.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.1.2}I affirm we are free in Christ Jesus, enslaved to God, and have victory over death}{416}{subsubsection.17.1.2}\protected@file@percent }
\newlabel{sec:orga15590e}{{17.1.2}{416}{I affirm we are free in Christ Jesus, enslaved to God, and have victory over death}{subsubsection.17.1.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {17.2}God justifies even ungodly people who have faith in Jesus}{419}{subsection.17.2}\protected@file@percent }
\newlabel{sec:org489d8c4}{{17.2}{419}{God justifies even ungodly people who have faith in Jesus}{subsection.17.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {17.3}Obedient action including seeking God in faith (trusting God's words and seeking)}{422}{subsection.17.3}\protected@file@percent }
\newlabel{sec:org1f36ef6}{{17.3}{422}{Obedient action including seeking God in faith (trusting God's words and seeking)}{subsection.17.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {17.4}Obedience belongs in faith}{423}{subsection.17.4}\protected@file@percent }
\newlabel{sec:org811638a}{{17.4}{423}{Obedience belongs in faith}{subsection.17.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {17.5}The type of work that is good - works done in faith}{426}{subsection.17.5}\protected@file@percent }
\newlabel{sec:org2ecf271}{{17.5}{426}{The type of work that is good - works done in faith}{subsection.17.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.5.1}Since Jesus has made the way, we serve God with good works. We have received mercy. We should then be merciful:}{429}{subsubsection.17.5.1}\protected@file@percent }
\newlabel{sec:orgdf1d07c}{{17.5.1}{429}{Since Jesus has made the way, we serve God with good works. We have received mercy. We should then be merciful:}{subsubsection.17.5.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.5.2}Works must serve God, submitted to the righteousness that comes from God}{429}{subsubsection.17.5.2}\protected@file@percent }
\newlabel{sec:org1784988}{{17.5.2}{429}{Works must serve God, submitted to the righteousness that comes from God}{subsubsection.17.5.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {17.6}Dead works: The type of work that's bad}{430}{subsection.17.6}\protected@file@percent }
\newlabel{sec:org3e45eb6}{{17.6}{430}{Dead works: The type of work that's bad}{subsection.17.6}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.6.1}Works of the law are dead works. God always desired us to serve Him with mercy}{430}{subsubsection.17.6.1}\protected@file@percent }
\newlabel{sec:org16108a4}{{17.6.1}{430}{Works of the law are dead works. God always desired us to serve Him with mercy}{subsubsection.17.6.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {17.7}Working faith}{431}{subsection.17.7}\protected@file@percent }
\newlabel{sec:orgbdd2f82}{{17.7}{431}{Working faith}{subsection.17.7}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.7.1}Faith in Jesus Himself}{437}{subsubsection.17.7.1}\protected@file@percent }
\newlabel{sec:orge4dfe00}{{17.7.1}{437}{Faith in Jesus Himself}{subsubsection.17.7.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.7.2}Faith is faithful, humble, and enduring - it's active and enduring faithfulness to God in humility}{437}{subsubsection.17.7.2}\protected@file@percent }
\newlabel{sec:org8d049bd}{{17.7.2}{437}{Faith is faithful, humble, and enduring - it's active and enduring faithfulness to God in humility}{subsubsection.17.7.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.7.3}Jesus's Lordship is not merely His authority over us, but us yielding our lives to Jesus - us wanting to do His will, and us wanting to obey Him}{437}{subsubsection.17.7.3}\protected@file@percent }
\newlabel{sec:org63aa289}{{17.7.3}{437}{Jesus's Lordship is not merely His authority over us, but us yielding our lives to Jesus - us wanting to do His will, and us wanting to obey Him}{subsubsection.17.7.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.7.4}\href {https://www.gracechurch.org/about/distinctives/lordship-salvation}{Lordship salvation} and free grace - an apparent paradox}{438}{subsubsection.17.7.4}\protected@file@percent }
\newlabel{sec:orgfdcc6b9}{{17.7.4}{438}{\href {https://www.gracechurch.org/about/distinctives/lordship-salvation}{Lordship salvation} and free grace - an apparent paradox}{subsubsection.17.7.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.7.5}God desired to give assurance to the heirs of the promise}{446}{subsubsection.17.7.5}\protected@file@percent }
\newlabel{sec:org0274ee2}{{17.7.5}{446}{God desired to give assurance to the heirs of the promise}{subsubsection.17.7.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.7.6}Yield to God}{446}{subsubsection.17.7.6}\protected@file@percent }
\newlabel{sec:org60be46e}{{17.7.6}{446}{Yield to God}{subsubsection.17.7.6}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.7.7}Obey God and let Him save you}{448}{subsubsection.17.7.7}\protected@file@percent }
\newlabel{sec:org9cfe10c}{{17.7.7}{448}{Obey God and let Him save you}{subsubsection.17.7.7}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.7.8}The work of God is to trust in who He has sent, Jesus. God's work is God working, and us working in obedience to God}{448}{subsubsection.17.7.8}\protected@file@percent }
\newlabel{sec:orge0e29fb}{{17.7.8}{448}{The work of God is to trust in who He has sent, Jesus. God's work is God working, and us working in obedience to God}{subsubsection.17.7.8}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.7.9}Don't underestimate Jesus' saving power}{448}{subsubsection.17.7.9}\protected@file@percent }
\newlabel{sec:orgc5a5c4b}{{17.7.9}{448}{Don't underestimate Jesus' saving power}{subsubsection.17.7.9}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.7.10}Justification and redemption are a total gift}{449}{subsubsection.17.7.10}\protected@file@percent }
\newlabel{sec:orgacca6f5}{{17.7.10}{449}{Justification and redemption are a total gift}{subsubsection.17.7.10}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.7.11}Just believe/obey Jesus to receive more faith and revelation and salvation}{449}{subsubsection.17.7.11}\protected@file@percent }
\newlabel{sec:org916f1c3}{{17.7.11}{449}{Just believe/obey Jesus to receive more faith and revelation and salvation}{subsubsection.17.7.11}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {17.7.12}The obedience of faith}{452}{subsubsection.17.7.12}\protected@file@percent }
\newlabel{sec:orgfcfe153}{{17.7.12}{452}{The obedience of faith}{subsubsection.17.7.12}{}}
\@writefile{toc}{\contentsline {section}{\numberline {18}Faith in God}{453}{section.18}\protected@file@percent }
\newlabel{sec:org6e9ee3c}{{18}{453}{Faith in God}{section.18}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {18.1}Only with God are all things possible for one who believes. Our faith must be faith 'with God', and our faith should in accordance with His will}{454}{subsection.18.1}\protected@file@percent }
\newlabel{sec:org4e0ab8c}{{18.1}{454}{Only with God are all things possible for one who believes. Our faith must be faith 'with God', and our faith should in accordance with His will}{subsection.18.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {18.1.1}We should have faith for what is according to His will}{454}{subsubsection.18.1.1}\protected@file@percent }
\newlabel{sec:org44c1fe8}{{18.1.1}{454}{We should have faith for what is according to His will}{subsubsection.18.1.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {18.2}Faith should be built up on trusting the Word of God}{455}{subsection.18.2}\protected@file@percent }
\newlabel{sec:org6f86a13}{{18.2}{455}{Faith should be built up on trusting the Word of God}{subsection.18.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {18.3}We should have minds that, by testing, we can discern the will of God, and act in faith according to God's will as far as we can discern}{455}{subsection.18.3}\protected@file@percent }
\newlabel{sec:orgd3aa035}{{18.3}{455}{We should have minds that, by testing, we can discern the will of God, and act in faith according to God's will as far as we can discern}{subsection.18.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {18.4}Faith that has been built up in God's will produces miracles}{456}{subsection.18.4}\protected@file@percent }
\newlabel{sec:org8470e02}{{18.4}{456}{Faith that has been built up in God's will produces miracles}{subsection.18.4}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {18.5}This man trusted Jesus' word and acted on it - He had faith in Jesus}{456}{subsection.18.5}\protected@file@percent }
\newlabel{sec:org0c3d4c2}{{18.5}{456}{This man trusted Jesus' word and acted on it - He had faith in Jesus}{subsection.18.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {18.6}This man had faith to be made well. Paul the Apostle was also acting in faith}{456}{subsection.18.6}\protected@file@percent }
\newlabel{sec:org06d33d2}{{18.6}{456}{This man had faith to be made well. Paul the Apostle was also acting in faith}{subsection.18.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {18.7}Jesus, with compassion for the man, and faith in God, sternly commanded the unclean spirit to leave}{456}{subsection.18.7}\protected@file@percent }
\newlabel{sec:org61db5c4}{{18.7}{456}{Jesus, with compassion for the man, and faith in God, sternly commanded the unclean spirit to leave}{subsection.18.7}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {18.8}healing / deliverance ministries}{457}{subsection.18.8}\protected@file@percent }
\newlabel{sec:orgb600e62}{{18.8}{457}{healing / deliverance ministries}{subsection.18.8}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {18.8.1}I feel like we should have compassion when we are serving others, even in healing / deliverance ministries}{457}{subsubsection.18.8.1}\protected@file@percent }
\newlabel{sec:org14c6375}{{18.8.1}{457}{I feel like we should have compassion when we are serving others, even in healing / deliverance ministries}{subsubsection.18.8.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {18.9}Deliverance}{457}{subsection.18.9}\protected@file@percent }
\newlabel{sec:org2f71e1c}{{18.9}{457}{Deliverance}{subsection.18.9}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {18.9.1}A simple command should work, with faith}{457}{subsubsection.18.9.1}\protected@file@percent }
\newlabel{sec:orgbf28925}{{18.9.1}{457}{A simple command should work, with faith}{subsubsection.18.9.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {18.9.2}We can and should use Jesus' name to cast out demons - There is power in the name of Jesus}{458}{subsubsection.18.9.2}\protected@file@percent }
\newlabel{sec:org189bba9}{{18.9.2}{458}{We can and should use Jesus' name to cast out demons - There is power in the name of Jesus}{subsubsection.18.9.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {18.9.3}Christians can be afflicted by demons}{458}{subsubsection.18.9.3}\protected@file@percent }
\newlabel{sec:orgfbb07dc}{{18.9.3}{458}{Christians can be afflicted by demons}{subsubsection.18.9.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {18.9.4}Deliverance on oneself (according to Derek Prince)}{458}{subsubsection.18.9.4}\protected@file@percent }
\newlabel{sec:org833e230}{{18.9.4}{458}{Deliverance on oneself (according to Derek Prince)}{subsubsection.18.9.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {18.9.5}Using Jesus' name with faith}{459}{subsubsection.18.9.5}\protected@file@percent }
\newlabel{sec:org5994b86}{{18.9.5}{459}{Using Jesus' name with faith}{subsubsection.18.9.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {18.9.6}Why some people are not delivered (according to Derek Prince)}{459}{subsubsection.18.9.6}\protected@file@percent }
\newlabel{sec:org5ce247e}{{18.9.6}{459}{Why some people are not delivered (according to Derek Prince)}{subsubsection.18.9.6}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {18.9.7}How to keep your deliverance}{460}{subsubsection.18.9.7}\protected@file@percent }
\newlabel{sec:org51c7d13}{{18.9.7}{460}{How to keep your deliverance}{subsubsection.18.9.7}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {18.9.8}Prayer by Derek Prince}{460}{subsubsection.18.9.8}\protected@file@percent }
\newlabel{sec:org1b48958}{{18.9.8}{460}{Prayer by Derek Prince}{subsubsection.18.9.8}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {18.10}Deliverance/exorcism}{463}{subsection.18.10}\protected@file@percent }
\newlabel{sec:orgf294cdf}{{18.10}{463}{Deliverance/exorcism}{subsection.18.10}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {18.10.1}Good songs for getting rid of demons (speak the lyrics in your head or out loud, especially say them in your heart)}{463}{subsubsection.18.10.1}\protected@file@percent }
\newlabel{sec:org806ae63}{{18.10.1}{463}{Good songs for getting rid of demons (speak the lyrics in your head or out loud, especially say them in your heart)}{subsubsection.18.10.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {18.10.2}We can rebuke the devil with Jesus' authority}{464}{subsubsection.18.10.2}\protected@file@percent }
\newlabel{sec:orgb1c976e}{{18.10.2}{464}{We can rebuke the devil with Jesus' authority}{subsubsection.18.10.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {18.10.3}Demons are not rare}{465}{subsubsection.18.10.3}\protected@file@percent }
\newlabel{sec:orge3ef496}{{18.10.3}{465}{Demons are not rare}{subsubsection.18.10.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {18.10.4}Demons consider a persons' body their home}{465}{subsubsection.18.10.4}\protected@file@percent }
\newlabel{sec:org2bb12cb}{{18.10.4}{465}{Demons consider a persons' body their home}{subsubsection.18.10.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {18.10.5}Renounce the ungodliness}{465}{subsubsection.18.10.5}\protected@file@percent }
\newlabel{sec:org420f702}{{18.10.5}{465}{Renounce the ungodliness}{subsubsection.18.10.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {18.10.6}This demon came out within the hour}{465}{subsubsection.18.10.6}\protected@file@percent }
\newlabel{sec:orgc32a279}{{18.10.6}{465}{This demon came out within the hour}{subsubsection.18.10.6}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {18.10.7}This demon was resistant}{465}{subsubsection.18.10.7}\protected@file@percent }
\newlabel{sec:org10809d4}{{18.10.7}{465}{This demon was resistant}{subsubsection.18.10.7}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {18.10.8}All believers can cast out demons}{466}{subsubsection.18.10.8}\protected@file@percent }
\newlabel{sec:org7e59f1d}{{18.10.8}{466}{All believers can cast out demons}{subsubsection.18.10.8}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {18.10.9}We must be spiritually-minded, not earthly-minded}{466}{subsubsection.18.10.9}\protected@file@percent }
\newlabel{sec:org07f2040}{{18.10.9}{466}{We must be spiritually-minded, not earthly-minded}{subsubsection.18.10.9}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {18.10.10}Exorcism prayer by Derek Prince}{466}{subsubsection.18.10.10}\protected@file@percent }
\newlabel{sec:orgadc4bd5}{{18.10.10}{466}{Exorcism prayer by Derek Prince}{subsubsection.18.10.10}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {18.10.11}Prayer by Isaiah Saldivar}{468}{subsubsection.18.10.11}\protected@file@percent }
\newlabel{sec:orgb7afe34}{{18.10.11}{468}{Prayer by Isaiah Saldivar}{subsubsection.18.10.11}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {18.11}Faith requires obedience - i.e. acting in faith / living by faith}{468}{subsection.18.11}\protected@file@percent }
\newlabel{sec:orgb01403b}{{18.11}{468}{Faith requires obedience - i.e. acting in faith / living by faith}{subsection.18.11}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {18.11.1}Work/Love/Walking-By-Faith}{471}{subsubsection.18.11.1}\protected@file@percent }
\newlabel{sec:orgd5252d2}{{18.11.1}{471}{Work/Love/Walking-By-Faith}{subsubsection.18.11.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {18.11.2}Fear-of-God}{472}{subsubsection.18.11.2}\protected@file@percent }
\newlabel{sec:org20b9c07}{{18.11.2}{472}{Fear-of-God}{subsubsection.18.11.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {18.11.3}Faith vector illustration}{472}{subsubsection.18.11.3}\protected@file@percent }
\newlabel{sec:org9e9f4bb}{{18.11.3}{472}{Faith vector illustration}{subsubsection.18.11.3}{}}
\@writefile{toc}{\contentsline {section}{\numberline {19}Jesus has immortality and gives eternal life, but we must come to Him in obedience, and follow Him, to receive it}{478}{section.19}\protected@file@percent }
\newlabel{sec:orgebf2d0b}{{19}{478}{Jesus has immortality and gives eternal life, but we must come to Him in obedience, and follow Him, to receive it}{section.19}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {19.1}Do not doubt, and believe that you have received it, even acting in a way in which it is already received}{479}{subsection.19.1}\protected@file@percent }
\newlabel{sec:org9b47f87}{{19.1}{479}{Do not doubt, and believe that you have received it, even acting in a way in which it is already received}{subsection.19.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {19.2}We work as servants of God, and the foundation of our work must be Jesus Christ}{481}{subsection.19.2}\protected@file@percent }
\newlabel{sec:org0e9a556}{{19.2}{481}{We work as servants of God, and the foundation of our work must be Jesus Christ}{subsection.19.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {19.2.1}For Christ}{481}{subsubsection.19.2.1}\protected@file@percent }
\newlabel{sec:org152d610}{{19.2.1}{481}{For Christ}{subsubsection.19.2.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {19.3}Love}{481}{subsection.19.3}\protected@file@percent }
\newlabel{sec:orge47863a}{{19.3}{481}{Love}{subsection.19.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {19.3.1}Love is doing what Jesus has said for us to do. Love is following the commandments}{481}{subsubsection.19.3.1}\protected@file@percent }
\newlabel{sec:orgd7e5564}{{19.3.1}{481}{Love is doing what Jesus has said for us to do. Love is following the commandments}{subsubsection.19.3.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {19.3.2}Almsgiving is a great practice - God really loves a cheerful giver}{481}{subsubsection.19.3.2}\protected@file@percent }
\newlabel{sec:org5d10a16}{{19.3.2}{481}{Almsgiving is a great practice - God really loves a cheerful giver}{subsubsection.19.3.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {19.3.3}The person who loves their brother abides in light}{481}{subsubsection.19.3.3}\protected@file@percent }
\newlabel{sec:orgf1458eb}{{19.3.3}{481}{The person who loves their brother abides in light}{subsubsection.19.3.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {19.4}Justifying faith should result in going from it being impossible to obey God to possible}{482}{subsection.19.4}\protected@file@percent }
\newlabel{sec:org6c26216}{{19.4}{482}{Justifying faith should result in going from it being impossible to obey God to possible}{subsection.19.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {19.4.1}Faith submits to God's will}{482}{subsubsection.19.4.1}\protected@file@percent }
\newlabel{sec:org5d11e64}{{19.4.1}{482}{Faith submits to God's will}{subsubsection.19.4.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {19.4.2}The Mosaic law doesn't help people to keep the law. It doesn't save - it only condemns or justifies. Only grace through faith in God who raised Jesus from the dead saves}{482}{subsubsection.19.4.2}\protected@file@percent }
\newlabel{sec:orgd08ba39}{{19.4.2}{482}{The Mosaic law doesn't help people to keep the law. It doesn't save - it only condemns or justifies. Only grace through faith in God who raised Jesus from the dead saves}{subsubsection.19.4.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {19.4.3}With God, following the 10 commandments and to love God and our neighbour is possible}{486}{subsubsection.19.4.3}\protected@file@percent }
\newlabel{sec:org035530f}{{19.4.3}{486}{With God, following the 10 commandments and to love God and our neighbour is possible}{subsubsection.19.4.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {19.5}Justifying faith should result in going from disobedient to obedient}{488}{subsection.19.5}\protected@file@percent }
\newlabel{sec:org8f25fea}{{19.5}{488}{Justifying faith should result in going from disobedient to obedient}{subsection.19.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {19.6}Obedience is essential to justifying faith}{489}{subsection.19.6}\protected@file@percent }
\newlabel{sec:org88c13f3}{{19.6}{489}{Obedience is essential to justifying faith}{subsection.19.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {19.7}Jesus' odedience resulted in turning others to obedience}{491}{subsection.19.7}\protected@file@percent }
\newlabel{sec:org082f0fe}{{19.7}{491}{Jesus' odedience resulted in turning others to obedience}{subsection.19.7}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {19.7.1}Likewise, we are commanded to do the same}{491}{subsubsection.19.7.1}\protected@file@percent }
\newlabel{sec:org80df801}{{19.7.1}{491}{Likewise, we are commanded to do the same}{subsubsection.19.7.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {19.8}It is the mercy of God that we are turned from disobedience to obedience}{491}{subsection.19.8}\protected@file@percent }
\newlabel{sec:org026d8b1}{{19.8}{491}{It is the mercy of God that we are turned from disobedience to obedience}{subsection.19.8}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {19.8.1}As obedient children, we are to be conformed to holiness}{493}{subsubsection.19.8.1}\protected@file@percent }
\newlabel{sec:orgcb201ec}{{19.8.1}{493}{As obedient children, we are to be conformed to holiness}{subsubsection.19.8.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {19.8.2}Illegitimate children are left without discipline and are not sons}{493}{subsubsection.19.8.2}\protected@file@percent }
\newlabel{sec:orgeea81c5}{{19.8.2}{493}{Illegitimate children are left without discipline and are not sons}{subsubsection.19.8.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {19.9}The measure of \relax $\@@underline {\hbox {what we hear and take heed of}}\mathsurround \z@ $\relax and \relax $\@@underline {\hbox {how we hear and let take root in us}}\mathsurround \z@ $\relax will be measured to us}{493}{subsection.19.9}\protected@file@percent }
\newlabel{sec:org9b0b7d5}{{19.9}{493}{The measure of \underline {what we hear and take heed of} and \underline {how we hear and let take root in us} will be measured to us}{subsection.19.9}{}}
\@writefile{toc}{\contentsline {section}{\numberline {20}Spirit of Truth vs Spirit of Error}{493}{section.20}\protected@file@percent }
\newlabel{sec:org570332b}{{20}{493}{Spirit of Truth vs Spirit of Error}{section.20}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {20.1}Don't believe falsehood}{494}{subsection.20.1}\protected@file@percent }
\newlabel{sec:org1ea2e1c}{{20.1}{494}{Don't believe falsehood}{subsection.20.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {20.1.1}No lie is of the truth}{494}{subsubsection.20.1.1}\protected@file@percent }
\newlabel{sec:orgd8b09e6}{{20.1.1}{494}{No lie is of the truth}{subsubsection.20.1.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {20.1.2}Garden of Eden}{494}{subsubsection.20.1.2}\protected@file@percent }
\newlabel{sec:orgc5a7b7c}{{20.1.2}{494}{Garden of Eden}{subsubsection.20.1.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {20.2}Not all 'spirit' is true}{494}{subsection.20.2}\protected@file@percent }
\newlabel{sec:org5c6c123}{{20.2}{494}{Not all 'spirit' is true}{subsection.20.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {20.3}Spirit of Truth}{495}{subsection.20.3}\protected@file@percent }
\newlabel{sec:orgfe3fa52}{{20.3}{495}{Spirit of Truth}{subsection.20.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {20.3.1}Jesus is noticeably present with us as we believe and affirm and obey the Truth}{496}{subsubsection.20.3.1}\protected@file@percent }
\newlabel{sec:org0bbb3a8}{{20.3.1}{496}{Jesus is noticeably present with us as we believe and affirm and obey the Truth}{subsubsection.20.3.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {20.3.2}God is not a God of confusion but of peace}{496}{subsubsection.20.3.2}\protected@file@percent }
\newlabel{sec:org554b6b5}{{20.3.2}{496}{God is not a God of confusion but of peace}{subsubsection.20.3.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {20.3.3}We should listen to and obey Jesus' words and compare everything with the scripture}{496}{subsubsection.20.3.3}\protected@file@percent }
\newlabel{sec:org3f3d9c7}{{20.3.3}{496}{We should listen to and obey Jesus' words and compare everything with the scripture}{subsubsection.20.3.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {20.3.4}\texttt {sola scriptura} as the source of truth against false dreams and against lies}{496}{subsubsection.20.3.4}\protected@file@percent }
\newlabel{sec:orga02597f}{{20.3.4}{496}{\texttt {sola scriptura} as the source of truth against false dreams and against lies}{subsubsection.20.3.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {20.3.5}Do not associate with people who call themselves believers but are against sound doctrine}{497}{subsubsection.20.3.5}\protected@file@percent }
\newlabel{sec:orgd59fe1d}{{20.3.5}{497}{Do not associate with people who call themselves believers but are against sound doctrine}{subsubsection.20.3.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {20.3.6}The criminal conviction has made it more difficult to support myself and other people in need}{500}{subsubsection.20.3.6}\protected@file@percent }
\newlabel{sec:orgead52ea}{{20.3.6}{500}{The criminal conviction has made it more difficult to support myself and other people in need}{subsubsection.20.3.6}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {20.3.7}False adversaries and the real adversary}{513}{subsubsection.20.3.7}\protected@file@percent }
\newlabel{sec:orgc224af1}{{20.3.7}{513}{False adversaries and the real adversary}{subsubsection.20.3.7}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {20.3.8}Jesus is giving us perspective.}{514}{subsubsection.20.3.8}\protected@file@percent }
\newlabel{sec:org7df4a14}{{20.3.8}{514}{Jesus is giving us perspective}{subsubsection.20.3.8}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {20.3.9}Do God's will - follow Jesus in truth, and be obedient to God to combat falsehood}{515}{subsubsection.20.3.9}\protected@file@percent }
\newlabel{sec:org6b267be}{{20.3.9}{515}{Do God's will - follow Jesus in truth, and be obedient to God to combat falsehood}{subsubsection.20.3.9}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {20.3.10}Pay attention to promptings from the Holy Spirit}{515}{subsubsection.20.3.10}\protected@file@percent }
\newlabel{sec:org1c25bd7}{{20.3.10}{515}{Pay attention to promptings from the Holy Spirit}{subsubsection.20.3.10}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {20.4}Spirit of Error}{515}{subsection.20.4}\protected@file@percent }
\newlabel{sec:orgd1bde14}{{20.4}{515}{Spirit of Error}{subsection.20.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {20.4.1}Don't believe lies nor even listen to false dreams from false prophets and diviners}{516}{subsubsection.20.4.1}\protected@file@percent }
\newlabel{sec:orgba40d2b}{{20.4.1}{516}{Don't believe lies nor even listen to false dreams from false prophets and diviners}{subsubsection.20.4.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {20.4.2}Heretical apocryphal 'gospels'}{517}{subsubsection.20.4.2}\protected@file@percent }
\newlabel{sec:orgbac252b}{{20.4.2}{517}{Heretical apocryphal 'gospels'}{subsubsection.20.4.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {20.5}Renovating vs Innovating}{519}{subsection.20.5}\protected@file@percent }
\newlabel{sec:org6a3559c}{{20.5}{519}{Renovating vs Innovating}{subsection.20.5}{}}
\@writefile{toc}{\contentsline {section}{\numberline {21}laws}{521}{section.21}\protected@file@percent }
\newlabel{sec:org50bc149}{{21}{521}{laws}{section.21}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.1}The law of Christ}{523}{subsection.21.1}\protected@file@percent }
\newlabel{sec:org0a4a13b}{{21.1}{523}{The law of Christ}{subsection.21.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.2}Doing the law and doing faith in Jesus are compatible. And with faith in Jesus we still seek to do the law but our justification comes by our faith in Jesus not by law-keeping}{527}{subsection.21.2}\protected@file@percent }
\newlabel{sec:org13e7a50}{{21.2}{527}{Doing the law and doing faith in Jesus are compatible. And with faith in Jesus we still seek to do the law but our justification comes by our faith in Jesus not by law-keeping}{subsection.21.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.3}The law of the Spirit of life vs law of sin and death}{528}{subsection.21.3}\protected@file@percent }
\newlabel{sec:org2c6bdab}{{21.3}{528}{The law of the Spirit of life vs law of sin and death}{subsection.21.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {21.4}The Torah}{533}{subsection.21.4}\protected@file@percent }
\newlabel{sec:orgf3f7ec9}{{21.4}{533}{The Torah}{subsection.21.4}{}}
\@writefile{toc}{\contentsline {section}{\numberline {22}Whoever puts their faith in Jesus, puts their faith in God}{534}{section.22}\protected@file@percent }
\newlabel{sec:org87a20cf}{{22}{534}{Whoever puts their faith in Jesus, puts their faith in God}{section.22}{}}
\@writefile{toc}{\contentsline {section}{\numberline {23}As we hold our faith in Christ, living for Christ, we will not have to worry about perfect compliance to the law}{535}{section.23}\protected@file@percent }
\newlabel{sec:org3a855a3}{{23}{535}{As we hold our faith in Christ, living for Christ, we will not have to worry about perfect compliance to the law}{section.23}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {23.1}We should observe the law - but be a doer, and avoid judging others with the law}{537}{subsection.23.1}\protected@file@percent }
\newlabel{sec:org5d68540}{{23.1}{537}{We should observe the law - but be a doer, and avoid judging others with the law}{subsection.23.1}{}}
\@writefile{toc}{\contentsline {section}{\numberline {24}Mosaic Law, and progressing from having hope in Moses to having hope in Jesus}{538}{section.24}\protected@file@percent }
\newlabel{sec:org7efb426}{{24}{538}{Mosaic Law, and progressing from having hope in Moses to having hope in Jesus}{section.24}{}}
\@writefile{toc}{\contentsline {section}{\numberline {25}Commandments and faith}{541}{section.25}\protected@file@percent }
\newlabel{sec:org88c50a6}{{25}{541}{Commandments and faith}{section.25}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {25.0.1}Christians do not Judaize (Christians do not instruct Gentiles to conform to Judaism)}{543}{subsubsection.25.0.1}\protected@file@percent }
\newlabel{sec:orgd4152e9}{{25.0.1}{543}{Christians do not Judaize (Christians do not instruct Gentiles to conform to Judaism)}{subsubsection.25.0.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {25.0.2}Jesus' commandments don't contradict the rest of the commandments}{543}{subsubsection.25.0.2}\protected@file@percent }
\newlabel{sec:orge9f0afc}{{25.0.2}{543}{Jesus' commandments don't contradict the rest of the commandments}{subsubsection.25.0.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {25.0.3}However, we must submit to God's righteousness through faith in Jesus Christ - this is what saves}{545}{subsubsection.25.0.3}\protected@file@percent }
\newlabel{sec:org1ac13b0}{{25.0.3}{545}{However, we must submit to God's righteousness through faith in Jesus Christ - this is what saves}{subsubsection.25.0.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {25.0.4}Abraham's faith is a pattern for us}{546}{subsubsection.25.0.4}\protected@file@percent }
\newlabel{sec:org863023f}{{25.0.4}{546}{Abraham's faith is a pattern for us}{subsubsection.25.0.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {25.0.5}Love never ends. Jesus' words never end.}{547}{subsubsection.25.0.5}\protected@file@percent }
\newlabel{sec:orgf91ba05}{{25.0.5}{547}{Love never ends. Jesus' words never end}{subsubsection.25.0.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {25.0.6}The new heavens and new earth}{548}{subsubsection.25.0.6}\protected@file@percent }
\newlabel{sec:org98334da}{{25.0.6}{548}{The new heavens and new earth}{subsubsection.25.0.6}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {25.0.7}Being sanctified in the Truth}{549}{subsubsection.25.0.7}\protected@file@percent }
\newlabel{sec:org53df452}{{25.0.7}{549}{Being sanctified in the Truth}{subsubsection.25.0.7}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {25.0.8}A study on the pronunciation of \texttt {Yhvh}, the proper name of the God of Israel}{550}{subsubsection.25.0.8}\protected@file@percent }
\newlabel{sec:orgf659984}{{25.0.8}{550}{A study on the pronunciation of \texttt {Yhvh}, the proper name of the God of Israel}{subsubsection.25.0.8}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {25.0.9}The Mosaic law is not abolished but Jesus fulfilled it like a prophesy}{551}{subsubsection.25.0.9}\protected@file@percent }
\newlabel{sec:org839c14b}{{25.0.9}{551}{The Mosaic law is not abolished but Jesus fulfilled it like a prophesy}{subsubsection.25.0.9}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {25.0.10}A person must begin repenting of sin and have a faithful heart towards God to receive \emph {the Holy Spirit}}{552}{subsubsection.25.0.10}\protected@file@percent }
\newlabel{sec:org91488e2}{{25.0.10}{552}{A person must begin repenting of sin and have a faithful heart towards God to receive \emph {the Holy Spirit}}{subsubsection.25.0.10}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {25.0.11}I believe the 10 commandments are special, and Jesus calls us to follow them \emph {from the heart}}{552}{subsubsection.25.0.11}\protected@file@percent }
\newlabel{sec:org399e0f9}{{25.0.11}{552}{I believe the 10 commandments are special, and Jesus calls us to follow them \emph {from the heart}}{subsubsection.25.0.11}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {25.0.12}The Apostles also placed requirements on the Gentiles similar to the 10 commandments}{553}{subsubsection.25.0.12}\protected@file@percent }
\newlabel{sec:org593e975}{{25.0.12}{553}{The Apostles also placed requirements on the Gentiles similar to the 10 commandments}{subsubsection.25.0.12}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {25.0.13}Faith in Jesus justifies but Jesus helps us to follow the commandments}{553}{subsubsection.25.0.13}\protected@file@percent }
\newlabel{sec:org323c325}{{25.0.13}{553}{Faith in Jesus justifies but Jesus helps us to follow the commandments}{subsubsection.25.0.13}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {25.0.14}Grace from Jesus is essential. Faith in Jesus is essential, even for the one who pursues the law}{553}{subsubsection.25.0.14}\protected@file@percent }
\newlabel{sec:orgd85fd61}{{25.0.14}{553}{Grace from Jesus is essential. Faith in Jesus is essential, even for the one who pursues the law}{subsubsection.25.0.14}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {25.0.15}The doers of the law are justified. Jesus judges. No-one can be justified without faith}{553}{subsubsection.25.0.15}\protected@file@percent }
\newlabel{sec:orgf6a8608}{{25.0.15}{553}{The doers of the law are justified. Jesus judges. No-one can be justified without faith}{subsubsection.25.0.15}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {25.0.16}I still think there is hope for people who do what the law requires, and have not yet heard the gospel}{553}{subsubsection.25.0.16}\protected@file@percent }
\newlabel{sec:org23083b5}{{25.0.16}{553}{I still think there is hope for people who do what the law requires, and have not yet heard the gospel}{subsubsection.25.0.16}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {25.0.17}Faith in Jesus essential to even those who pursue the law, but the law is still pursued}{554}{subsubsection.25.0.17}\protected@file@percent }
\newlabel{sec:orgea458c3}{{25.0.17}{554}{Faith in Jesus essential to even those who pursue the law, but the law is still pursued}{subsubsection.25.0.17}{}}
\@writefile{toc}{\contentsline {section}{\numberline {26}The Old Testament makes a person wise for salvation through faith in Christ Jesus, and is profitable for training in righteousness:}{554}{section.26}\protected@file@percent }
\newlabel{sec:org2326e1e}{{26}{554}{The Old Testament makes a person wise for salvation through faith in Christ Jesus, and is profitable for training in righteousness:}{section.26}{}}
\@writefile{toc}{\contentsline {section}{\numberline {27}Jesus allowed himself to be baptised by John for the fulfillment of all righteousness}{555}{section.27}\protected@file@percent }
\newlabel{sec:orgaea0830}{{27}{555}{Jesus allowed himself to be baptised by John for the fulfillment of all righteousness}{section.27}{}}
\@writefile{toc}{\contentsline {section}{\numberline {28}Jesus fulfilled the law}{555}{section.28}\protected@file@percent }
\newlabel{sec:org8ef163e}{{28}{555}{Jesus fulfilled the law}{section.28}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {28.1}Don't be deceived: Keeping commandments isn't the same thing as placing oneself under the Mosaic law for justification. We're commanded to obey Jesus, and that matters}{556}{subsection.28.1}\protected@file@percent }
\newlabel{sec:orgf37a7d0}{{28.1}{556}{Don't be deceived: Keeping commandments isn't the same thing as placing oneself under the Mosaic law for justification. We're commanded to obey Jesus, and that matters}{subsection.28.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {28.2}Justified by faith alone - faith is obedient}{556}{subsection.28.2}\protected@file@percent }
\newlabel{sec:org4cc5979}{{28.2}{556}{Justified by faith alone - faith is obedient}{subsection.28.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {28.3}Friends of God obey God}{558}{subsection.28.3}\protected@file@percent }
\newlabel{sec:org471dc4f}{{28.3}{558}{Friends of God obey God}{subsection.28.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {28.3.1}The love of the truth involves sanctification}{558}{subsubsection.28.3.1}\protected@file@percent }
\newlabel{sec:orgf4bb1be}{{28.3.1}{558}{The love of the truth involves sanctification}{subsubsection.28.3.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {28.4}Dead faith is disobedient}{558}{subsection.28.4}\protected@file@percent }
\newlabel{sec:org78e9228}{{28.4}{558}{Dead faith is disobedient}{subsection.28.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {28.4.1}We were disobedient}{559}{subsubsection.28.4.1}\protected@file@percent }
\newlabel{sec:orgcca9088}{{28.4.1}{559}{We were disobedient}{subsubsection.28.4.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {28.4.2}We are brought to obedience}{559}{subsubsection.28.4.2}\protected@file@percent }
\newlabel{sec:org00fce92}{{28.4.2}{559}{We are brought to obedience}{subsubsection.28.4.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {28.4.3}The disobedient will receive the wrath of God}{559}{subsubsection.28.4.3}\protected@file@percent }
\newlabel{sec:orgf6ef7c9}{{28.4.3}{559}{The disobedient will receive the wrath of God}{subsubsection.28.4.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {28.5}Saving faith}{559}{subsection.28.5}\protected@file@percent }
\newlabel{sec:org5807811}{{28.5}{559}{Saving faith}{subsection.28.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {28.5.1}believing on Jesus}{560}{subsubsection.28.5.1}\protected@file@percent }
\newlabel{sec:orga591b6e}{{28.5.1}{560}{believing on Jesus}{subsubsection.28.5.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {28.5.2}by the grace of God alone - no works}{560}{subsubsection.28.5.2}\protected@file@percent }
\newlabel{sec:org380d625}{{28.5.2}{560}{by the grace of God alone - no works}{subsubsection.28.5.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {28.5.3}fear of God as a friend of God}{562}{subsubsection.28.5.3}\protected@file@percent }
\newlabel{sec:org3698c14}{{28.5.3}{562}{fear of God as a friend of God}{subsubsection.28.5.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {28.5.4}a life of faith}{563}{subsubsection.28.5.4}\protected@file@percent }
\newlabel{sec:orgc372dc7}{{28.5.4}{563}{a life of faith}{subsubsection.28.5.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {28.5.5}Saving faith / Works of faith / Faith with works}{564}{subsubsection.28.5.5}\protected@file@percent }
\newlabel{sec:orgebeca6e}{{28.5.5}{564}{Saving faith / Works of faith / Faith with works}{subsubsection.28.5.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {28.5.6}Salvation is through grace alone, but through sanctification by the Spirit and faith in the truth, which is cooperative}{565}{subsubsection.28.5.6}\protected@file@percent }
\newlabel{sec:orgb663a5a}{{28.5.6}{565}{Salvation is through grace alone, but through sanctification by the Spirit and faith in the truth, which is cooperative}{subsubsection.28.5.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {28.6}Working faith / faith with substance}{565}{subsection.28.6}\protected@file@percent }
\newlabel{sec:org54baca5}{{28.6}{565}{Working faith / faith with substance}{subsection.28.6}{}}
\@writefile{toc}{\contentsline {section}{\numberline {29}We must love God}{569}{section.29}\protected@file@percent }
\newlabel{sec:org90e8624}{{29}{569}{We must love God}{section.29}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {29.1}We must agape love God, we must agape people and we must not agape the things of the world}{570}{subsection.29.1}\protected@file@percent }
\newlabel{sec:org2d2e882}{{29.1}{570}{We must agape love God, we must agape people and we must not agape the things of the world}{subsection.29.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {29.2}We must love Jesus}{570}{subsection.29.2}\protected@file@percent }
\newlabel{sec:org7b52137}{{29.2}{570}{We must love Jesus}{subsection.29.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {29.3}What's the relationship between loving God and loving Jesus?}{571}{subsection.29.3}\protected@file@percent }
\newlabel{sec:org621b062}{{29.3}{571}{What's the relationship between loving God and loving Jesus?}{subsection.29.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {29.4}What is the nature of this love?}{571}{subsection.29.4}\protected@file@percent }
\newlabel{sec:org850995d}{{29.4}{571}{What is the nature of this love?}{subsection.29.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {29.4.1}It's affectionate and treasuring}{571}{subsubsection.29.4.1}\protected@file@percent }
\newlabel{sec:org584487e}{{29.4.1}{571}{It's affectionate and treasuring}{subsubsection.29.4.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {29.4.2}Heavenly treasure and the Pearl of Great Price}{571}{subsubsection.29.4.2}\protected@file@percent }
\newlabel{sec:org679e088}{{29.4.2}{571}{Heavenly treasure and the Pearl of Great Price}{subsubsection.29.4.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {29.4.3}We need to treasure Jesus, and from there we should keep Jesus' commandments. Jesus must be our number 1}{572}{subsubsection.29.4.3}\protected@file@percent }
\newlabel{sec:org3fdfc37}{{29.4.3}{572}{We need to treasure Jesus, and from there we should keep Jesus' commandments. Jesus must be our number 1}{subsubsection.29.4.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {29.4.4}The person who has Jesus' commandments and keeps them, loves Jesus}{572}{subsubsection.29.4.4}\protected@file@percent }
\newlabel{sec:orgba464b1}{{29.4.4}{572}{The person who has Jesus' commandments and keeps them, loves Jesus}{subsubsection.29.4.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {29.4.5}If we love Jesus, then we will keep Jesus' commandments}{573}{subsubsection.29.4.5}\protected@file@percent }
\newlabel{sec:org4d8e0ff}{{29.4.5}{573}{If we love Jesus, then we will keep Jesus' commandments}{subsubsection.29.4.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {29.5}How do we get to this place of treasuring Jesus?}{573}{subsection.29.5}\protected@file@percent }
\newlabel{sec:org995c1ad}{{29.5}{573}{How do we get to this place of treasuring Jesus?}{subsection.29.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {29.6}If we don't love Jesus, we wont have Jesus}{573}{subsection.29.6}\protected@file@percent }
\newlabel{sec:org90b1045}{{29.6}{573}{If we don't love Jesus, we wont have Jesus}{subsection.29.6}{}}
\@writefile{toc}{\contentsline {section}{\numberline {30}Kingdom of Servants}{573}{section.30}\protected@file@percent }
\newlabel{sec:orgf70d955}{{30}{573}{Kingdom of Servants}{section.30}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {30.1}Being washed and washing one another}{576}{subsection.30.1}\protected@file@percent }
\newlabel{sec:org5adee2d}{{30.1}{576}{Being washed and washing one another}{subsection.30.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {30.2}Entering into life / the Kingdom of Heaven}{577}{subsection.30.2}\protected@file@percent }
\newlabel{sec:orgaf4f7dd}{{30.2}{577}{Entering into life / the Kingdom of Heaven}{subsection.30.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {30.3}Guideline}{579}{subsection.30.3}\protected@file@percent }
\newlabel{sec:org48c693f}{{30.3}{579}{Guideline}{subsection.30.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {30.3.1}We practice personal righteousness AND we have obtained a faith of equal standing with the Apostles \relax $\@@underline {\hbox {by the righteousness of our God and Savior Jesus Christ}}\mathsurround \z@ $\relax }{582}{subsubsection.30.3.1}\protected@file@percent }
\newlabel{sec:org7599cb4}{{30.3.1}{582}{We practice personal righteousness AND we have obtained a faith of equal standing with the Apostles \underline {by the righteousness of our God and Savior Jesus Christ}}{subsubsection.30.3.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {30.3.2}Follow the commandments (get out of falsehood; forsake sin) and put your heart in Heaven}{583}{subsubsection.30.3.2}\protected@file@percent }
\newlabel{sec:org5dbd235}{{30.3.2}{583}{Follow the commandments (get out of falsehood; forsake sin) and put your heart in Heaven}{subsubsection.30.3.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {30.3.3}Then arriving at eternal life - follow Jesus}{584}{subsubsection.30.3.3}\protected@file@percent }
\newlabel{sec:orgf356884}{{30.3.3}{584}{Then arriving at eternal life - follow Jesus}{subsubsection.30.3.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {30.4}We are certainly supposed to keep the commandments - we're supposed to love God and our neighbour in truth}{584}{subsection.30.4}\protected@file@percent }
\newlabel{sec:org539894d}{{30.4}{584}{We are certainly supposed to keep the commandments - we're supposed to love God and our neighbour in truth}{subsection.30.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {30.4.1}Keeping the commandments is how to love and Christian's are called to keep God's commandments}{584}{subsubsection.30.4.1}\protected@file@percent }
\newlabel{sec:org67b05fb}{{30.4.1}{584}{Keeping the commandments is how to love and Christian's are called to keep God's commandments}{subsubsection.30.4.1}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {30.4.2}It matters that we are loving, going into eternity}{586}{subsubsection.30.4.2}\protected@file@percent }
\newlabel{sec:orgbd6f25e}{{30.4.2}{586}{It matters that we are loving, going into eternity}{subsubsection.30.4.2}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {30.4.3}We must submit to the righteousness from God through faith in Jesus}{586}{subsubsection.30.4.3}\protected@file@percent }
\newlabel{sec:org4a3ec8b}{{30.4.3}{586}{We must submit to the righteousness from God through faith in Jesus}{subsubsection.30.4.3}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {30.4.4}All things \emph {are} put under Jesus' feet whether we are compliant or understand it or not}{586}{subsubsection.30.4.4}\protected@file@percent }
\newlabel{sec:orgbdf5143}{{30.4.4}{586}{All things \emph {are} put under Jesus' feet whether we are compliant or understand it or not}{subsubsection.30.4.4}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {30.4.5}The Kingdom of Heaven - is a kingdom of servants}{588}{subsubsection.30.4.5}\protected@file@percent }
\newlabel{sec:org5cbc0b9}{{30.4.5}{588}{The Kingdom of Heaven - is a kingdom of servants}{subsubsection.30.4.5}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {30.4.6}you must be holy!}{588}{subsubsection.30.4.6}\protected@file@percent }
\newlabel{sec:org4a6463b}{{30.4.6}{588}{you must be holy!}{subsubsection.30.4.6}{}}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {30.4.7}you must be a servant!}{588}{subsubsection.30.4.7}\protected@file@percent }
\newlabel{sec:org0e4027c}{{30.4.7}{588}{you must be a servant!}{subsubsection.30.4.7}{}}