-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNode data.json
More file actions
3018 lines (3017 loc) · 129 KB
/
Node data.json
File metadata and controls
3018 lines (3017 loc) · 129 KB
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
{
"nodes"
"@noNamespaceSchemaLocation": "Nodes.xsd",
"@generated": "2009-09-09T11:08:27",
"Nodes": [
{
"Node": "1D01",
"DisplayName": "I Definition 1",
"ShortText": "Definition: Cause of Itself",
"InDegree": "0",
"OutDegree": "3"
},
{
"Node": "1D02",
"DisplayName": "I Definition 2",
"ShortText": "Definition: Finite in its kind",
"InDegree": "0",
"OutDegree": "2"
},
{
"Node": "1D03",
"DisplayName": "I Definition 3",
"ShortText": "Definition: Substance",
"InDegree": "0",
"OutDegree": "10"
},
{
"Node": "1D04",
"DisplayName": "I Definition 4",
"ShortText": "Definition: Attribute",
"InDegree": "0",
"OutDegree": "6"
},
{
"Node": "1D05",
"DisplayName": "I Definition 5",
"ShortText": "Definition: Mode",
"InDegree": "0",
"OutDegree": "10"
},
{
"Node": "1D06",
"DisplayName": "I Definition 6",
"ShortText": "Definition: God",
"InDegree": "0",
"OutDegree": "11"
},
{
"Node": "1D07",
"DisplayName": "I Definition 7",
"ShortText": "Definition: Free",
"InDegree": "0",
"OutDegree": "3"
},
{
"Node": "1D08",
"DisplayName": "I Definition 8",
"ShortText": "Definition: Eternity",
"InDegree": "0",
"OutDegree": "5"
},
{
"Node": "1A01",
"DisplayName": "I Axiom 1",
"ShortText": "Axiom: In itself or in another",
"InDegree": "0",
"OutDegree": "8"
},
{
"Node": "1A02",
"DisplayName": "I Axiom 2",
"ShortText": "Axiom: Not conceived through another, through itself",
"InDegree": "0",
"OutDegree": "0"
},
{
"Node": "1A03",
"DisplayName": "I Axiom 3",
"ShortText": "Axiom: Effect from cause",
"InDegree": "0",
"OutDegree": "2"
},
{
"Node": "1A04",
"DisplayName": "I Axiom 4",
"ShortText": "Axiom: Knowledge of effect from knowledge of cause",
"InDegree": "0",
"OutDegree": "9"
},
{
"Node": "1A05",
"DisplayName": "I Axiom 5",
"ShortText": "Axiom: Nothing in common, no knowledge in common",
"InDegree": "0",
"OutDegree": "1"
},
{
"Node": "1A06",
"DisplayName": "I Axiom 6",
"ShortText": "Axiom: True idea agrees with ideato",
"InDegree": "0",
"OutDegree": "6"
},
{
"Node": "1A07",
"DisplayName": "I Axiom 7",
"ShortText": "Axiom: If conceived not existing, then essence not requires existence",
"InDegree": "0",
"OutDegree": "1"
},
{
"Node": "1P01",
"DisplayName": "I Proposition 1",
"ShortText": "Substance prior to modifications",
"InDegree": "2",
"OutDegree": "1"
},
{
"Node": "1P02",
"DisplayName": "I Proposition 2",
"ShortText": "Substances with different attributes have nothing in common",
"InDegree": "1",
"OutDegree": "3"
},
{
"Node": "1P03",
"DisplayName": "I Proposition 3",
"ShortText": "Two things with nothing in common are not cause of each other",
"InDegree": "2",
"OutDegree": "1"
},
{
"Node": "1P04",
"DisplayName": "I Proposition 4",
"ShortText": "Two distinct things must have a difference of attribute or of mode",
"InDegree": "4",
"OutDegree": "1"
},
{
"Node": "1P05",
"DisplayName": "I Proposition 5",
"ShortText": "Not two substances with same nature or attribute",
"InDegree": "4",
"OutDegree": "5"
},
{
"Node": "1P06",
"DisplayName": "I Proposition 6",
"ShortText": "One substance cannot produce another",
"InDegree": "5",
"OutDegree": "3"
},
{
"Node": "1P07",
"DisplayName": "I Proposition 7",
"ShortText": "Nature of a substance is to exist.",
"InDegree": "2",
"OutDegree": "7"
},
{
"Node": "1P08",
"DisplayName": "I Proposition 8",
"ShortText": "Every substance is necessarily infinite",
"InDegree": "3",
"OutDegree": "1"
},
{
"Node": "1P09",
"DisplayName": "I Proposition 9",
"ShortText": "The more reality, the more attributes",
"InDegree": "1",
"OutDegree": "0"
},
{
"Node": "1P10",
"DisplayName": "I Proposition 10",
"ShortText": "Each attribute of a substance, conceived through itself",
"InDegree": "2",
"OutDegree": "4"
},
{
"Node": "1P12",
"DisplayName": "I Proposition 12",
"ShortText": "No attribute of substance implies substance is divisible",
"InDegree": "7",
"OutDegree": "0"
},
{
"Node": "1P13",
"DisplayName": "I Proposition 13",
"ShortText": "Substance absolutely infinite is indivisible",
"InDegree": "2",
"OutDegree": "0"
},
{
"Node": "1P14",
"DisplayName": "I Proposition 14",
"ShortText": "Besides God, no substance can be nor be conceived",
"InDegree": "3",
"OutDegree": "4"
},
{
"Node": "1P15",
"DisplayName": "I Proposition 15",
"ShortText": "Whatever is, is in God",
"InDegree": "4",
"OutDegree": "17"
},
{
"Node": "1P16",
"DisplayName": "I Proposition 16",
"ShortText": "Everything conceived by infinite intellect follows from God's nature",
"InDegree": "1",
"OutDegree": "14"
},
{
"Node": "1P17",
"DisplayName": "I Proposition 17",
"ShortText": "God acts from the laws of his own nature and is not compelled",
"InDegree": "2",
"OutDegree": "2"
},
{
"Node": "1P17C02",
"DisplayName": "I Proposition 17 Corollary 2",
"ShortText": "God alone is a free cause",
"InDegree": "6",
"OutDegree": "1"
},
{
"Node": "1P18",
"DisplayName": "I Proposition 18",
"ShortText": "God is the immanent cause of all things",
"InDegree": "4",
"OutDegree": "0"
},
{
"Node": "1P19",
"DisplayName": "I Proposition 19",
"ShortText": "God is eternal; all His attributes are eternal",
"InDegree": "5",
"OutDegree": "2"
},
{
"Node": "1P20",
"DisplayName": "I Proposition 20",
"ShortText": "The existence and essence or God are one and the same",
"InDegree": "3",
"OutDegree": "2"
},
{
"Node": "1P20C02",
"DisplayName": "I Proposition 20 Corollary 2",
"ShortText": "God is immutable",
"InDegree": "1",
"OutDegree": "2"
},
{
"Node": "1P21",
"DisplayName": "I Proposition 21",
"ShortText": "What follows from God's nature is infinite and exists forever",
"InDegree": "3",
"OutDegree": "6"
},
{
"Node": "1P22",
"DisplayName": "I Proposition 22",
"ShortText": "What follows from an attribute as modified, exists forever and is infinite",
"InDegree": "1",
"OutDegree": "2"
},
{
"Node": "1P23",
"DisplayName": "I Proposition 23",
"ShortText": "Every mode which exists infinitely follows from an attribute or an infinite mode",
"InDegree": "5",
"OutDegree": "1"
},
{
"Node": "1P24",
"DisplayName": "I Proposition 24",
"ShortText": "The essence of things produced by God does not involve existence",
"InDegree": "1",
"OutDegree": "1"
},
{
"Node": "1P25",
"DisplayName": "I Proposition 25",
"ShortText": "God is the efficient cause of the existence and essence of things",
"InDegree": "2",
"OutDegree": "3"
},
{
"Node": "1P25C01",
"DisplayName": "I Proposition 25 Corollary",
"ShortText": "Individual things are modifications or modes of God's attributes",
"InDegree": "3",
"OutDegree": "9"
},
{
"Node": "1P26",
"DisplayName": "I Proposition 26",
"ShortText": "God and only God can determine a thing to action",
"InDegree": "2",
"OutDegree": "2"
},
{
"Node": "1P27",
"DisplayName": "I Proposition 27",
"ShortText": "A thing determined to an action by God cannot become indeterminate",
"InDegree": "1",
"OutDegree": "1"
},
{
"Node": "1P28",
"DisplayName": "I Proposition 28",
"ShortText": "Finite things determined to actions by other finite things",
"InDegree": "8",
"OutDegree": "7"
},
{
"Node": "1P29",
"DisplayName": "I Proposition 29",
"ShortText": "In Nature is nothing contingent",
"InDegree": "6",
"OutDegree": "6"
},
{
"Node": "1D09",
"DisplayName": "I Proposition 29 Definition",
"ShortText": "Natura naturans/Natura naturata",
"InDegree": "0",
"OutDegree": "0"
},
{
"Node": "1P30",
"DisplayName": "I Proposition 30",
"ShortText": "Actual intellect comprehends attributes of God",
"InDegree": "3",
"OutDegree": "1"
},
{
"Node": "1P31",
"DisplayName": "I Proposition 31",
"ShortText": "The actual intellect must be referred to natura naturata",
"InDegree": "4",
"OutDegree": "0"
},
{
"Node": "1P32",
"DisplayName": "I Proposition 32",
"ShortText": "The will cannnot be a free cause",
"InDegree": "3",
"OutDegree": "2"
},
{
"Node": "1P32C02",
"DisplayName": "I Proposition 32 Corollary 2",
"ShortText": "Will and intellect related as motion and rest",
"InDegree": "2",
"OutDegree": "0"
},
{
"Node": "1P33",
"DisplayName": "I Proposition 33",
"ShortText": "Things are produced by God in the only possible order.",
"InDegree": "4",
"OutDegree": "2"
},
{
"Node": "1P34",
"DisplayName": "I Proposition 34",
"ShortText": "The power of God is His essence itself",
"InDegree": "3",
"OutDegree": "4"
},
{
"Node": "1P35",
"DisplayName": "I Proposition 35",
"ShortText": "Whatever we conceive to be in God's power necessarily exists",
"InDegree": "1",
"OutDegree": "1"
},
{
"Node": "1P36",
"DisplayName": "I Proposition 36",
"ShortText": "Nothing exists from whose nature an effect does not follow",
"InDegree": "3",
"OutDegree": "2"
},
{
"Node": "1P06C01",
"DisplayName": "I Proposition 6 Corollary 1",
"ShortText": "There is nothing by which substance can be produced",
"InDegree": "4",
"OutDegree": "1"
},
{
"Node": "1P14C01",
"DisplayName": "I Proposition 14 Corollary 1",
"ShortText": "No substance is divisible",
"InDegree": "2",
"OutDegree": "5"
},
{
"Node": "1P14C02",
"DisplayName": "I Proposition 14 Corollary 2",
"ShortText": "Thinking things and extended things are attributes or modifications of God",
"InDegree": "2",
"OutDegree": "0"
},
{
"Node": "1P16C01",
"DisplayName": "I Proposition 16 Corollary 1",
"ShortText": "God is cause of himself, not through anything contingent",
"InDegree": "1",
"OutDegree": "2"
},
{
"Node": "1P17C01",
"DisplayName": "I Proposition 17 Corollary 1",
"ShortText": "God acts only through the perfection of His nature",
"InDegree": "1",
"OutDegree": "0"
},
{
"Node": "1P20C01",
"DisplayName": "I Proposition 20 Corollary 1",
"ShortText": "The existence of God is an eternal truth",
"InDegree": "1",
"OutDegree": "0"
},
{
"Node": "1P24C01",
"DisplayName": "I Proposition 24 Corollary 1",
"ShortText": "God the cause of continued existence of things",
"InDegree": "2",
"OutDegree": "2"
},
{
"Node": "1P32C01",
"DisplayName": "I Proposition 32 Corollary 1",
"ShortText": "God does not act from freedom of will",
"InDegree": "1",
"OutDegree": "0"
},
{
"Node": "2D01",
"DisplayName": "II Definition 1",
"ShortText": "Definition 'Body'",
"InDegree": "0",
"OutDegree": "1"
},
{
"Node": "2D02",
"DisplayName": "II Definition 2",
"ShortText": "Definition of 'Essence'",
"InDegree": "0",
"OutDegree": "3"
},
{
"Node": "2D03",
"DisplayName": "II Definition 3",
"ShortText": "Definition of 'Idea'",
"InDegree": "0",
"OutDegree": "0"
},
{
"Node": "2D04",
"DisplayName": "II Definition 4",
"ShortText": "Definition of 'Adequate Idea'",
"InDegree": "0",
"OutDegree": "2"
},
{
"Node": "2D05",
"DisplayName": "II Definition 5",
"ShortText": "Definition of 'Duration'",
"InDegree": "0",
"OutDegree": "0"
},
{
"Node": "2D06",
"DisplayName": "II Definition 6",
"ShortText": "Definition of 'Reality' and 'Perfection'",
"InDegree": "0",
"OutDegree": "2"
},
{
"Node": "2D07",
"DisplayName": "II Definition 7",
"ShortText": "Definition of 'Individual Things'",
"InDegree": "0",
"OutDegree": "0"
},
{
"Node": "2A01",
"DisplayName": "II Axion 1",
"ShortText": "Essence of man does not involve existence",
"InDegree": "0",
"OutDegree": "2"
},
{
"Node": "2A02",
"DisplayName": "II Axion 2",
"ShortText": "Man thinks",
"InDegree": "0",
"OutDegree": "1"
},
{
"Node": "2A03",
"DisplayName": "II Axion 3",
"ShortText": "Modes of thought such as love, desire, or the emotions do not exists unless an idea of what is loved or desired also exists, but not conversely",
"InDegree": "0",
"OutDegree": "2"
},
{
"Node": "2A04",
"DisplayName": "II Axion 4",
"ShortText": "We perceive that a certain body is affected in many ways",
"InDegree": "0",
"OutDegree": "1"
},
{
"Node": "2A05",
"DisplayName": "II Axion 5",
"ShortText": "No individual things are felt except bodies and modes of thought",
"InDegree": "0",
"OutDegree": "1"
},
{
"Node": "2P01",
"DisplayName": "II Proposition 1",
"ShortText": "Thought is an attribute of God; or God is a thinking thing",
"InDegree": "3",
"OutDegree": "2"
},
{
"Node": "2P02",
"DisplayName": "II Proposition 2",
"ShortText": "Extension is an attribute of God; or God is an extended thing",
"InDegree": "3",
"OutDegree": "0"
},
{
"Node": "2P03",
"DisplayName": "II Proposition 3",
"ShortText": "In god exists the idea of his essence and of all things that follow from it.",
"InDegree": "4",
"OutDegree": "6"
},
{
"Node": "2P04",
"DisplayName": "II Proposition 4",
"ShortText": "The idea of God can be one only",
"InDegree": "2",
"OutDegree": "0"
},
{
"Node": "2P05",
"DisplayName": "II Proposition 5",
"ShortText": "Formal being of ideas recognizes God as cause only qua thinking being.",
"InDegree": "4",
"OutDegree": "0"
},
{
"Node": "2P06",
"DisplayName": "II Proposition 6",
"ShortText": "Modes of an attribute have God as cause only under that attribute",
"InDegree": "2",
"OutDegree": "7"
},
{
"Node": "2P07",
"DisplayName": "II Proposition 7",
"ShortText": "The order and connection of ideas is the same as the order and connection of things.",
"InDegree": "1",
"OutDegree": "14"
},
{
"Node": "2P07C01",
"DisplayName": "II Proposition 7 Corollary 1",
"ShortText": "God's power of thinking is equal to his power of acting",
"InDegree": "1",
"OutDegree": "5"
},
{
"Node": "2P08",
"DisplayName": "II Proposition 8",
"ShortText": "The ideas of non-existent things are comprehended in the infinite idea of God",
"InDegree": "1",
"OutDegree": "1"
},
{
"Node": "2P08C01",
"DisplayName": "II Proposition 8 Corollary 1",
"ShortText": "Individual things do not exist unless in God's attributes",
"InDegree": "1",
"OutDegree": "6"
},
{
"Node": "2P09",
"DisplayName": "II Proposition 9",
"ShortText": "Individual thing has god for a cause only as affected by another thing",
"InDegree": "4",
"OutDegree": "7"
},
{
"Node": "2P09C01",
"DisplayName": "II Proposition 9 Corollary 1",
"ShortText": "A knowledge of everything in an individual object exists in God so far as he possesses the idea of the object",
"InDegree": "1",
"OutDegree": "3"
},
{
"Node": "2P10",
"DisplayName": "II Proposition 10",
"ShortText": "The being of substance does not pertain to the essence of man",
"InDegree": "3",
"OutDegree": "1"
},
{
"Node": "2P10C01",
"DisplayName": "II Proposition 10 Corollary 1",
"ShortText": "Essence of man consists of modifications of God's attributes",
"InDegree": "3",
"OutDegree": "2"
},
{
"Node": "2P11",
"DisplayName": "II Proposition 11",
"ShortText": "The actual being of the human mind is the idea of an individual thing actually existing",
"InDegree": "7",
"OutDegree": "11"
},
{
"Node": "2P11C01",
"DisplayName": "II Proposition 11 Corollary 1",
"ShortText": "Human mind is a part of the infinite intellect of God",
"InDegree": "1",
"OutDegree": "15"
},
{
"Node": "2P12",
"DisplayName": "II Proposition 12",
"ShortText": "Whatever happens in the object of the human mind is perceived by the mind",
"InDegree": "4",
"OutDegree": "9"
},
{
"Node": "2P13",
"DisplayName": "II Proposition 13",
"ShortText": "The object of the idea constituting the human mind is a body",
"InDegree": "6",
"OutDegree": "14"
},
{
"Node": "2P13C01",
"DisplayName": "II Proposition 13 Corollary 1",
"ShortText": "Man is composed of mind and body, and the body exists as we perceive it",
"InDegree": "1",
"OutDegree": "0"
},
{
"Node": "2O01",
"DisplayName": "II Postulate 1",
"ShortText": "Human body composed of a number of individual, composite parts",
"InDegree": "0",
"OutDegree": "2"
},
{
"Node": "2O02",
"DisplayName": "II Postulate 2",
"ShortText": "Some body parts are fluid, some soft, some hard",
"InDegree": "0",
"OutDegree": "0"
},
{
"Node": "2O03",
"DisplayName": "II Postulate 3",
"ShortText": "The parts of the body are affected by external bodies",
"InDegree": "0",
"OutDegree": "4"
},
{
"Node": "2O04",
"DisplayName": "II Postulate 4",
"ShortText": "The human body needs for its preservation many other bodies",
"InDegree": "0",
"OutDegree": "2"
},
{
"Node": "2O05",
"DisplayName": "II Postulate 5",
"ShortText": "A fluid part imprints upon a soft part",
"InDegree": "0",
"OutDegree": "1"
},
{
"Node": "2O06",
"DisplayName": "II Postulate 6",
"ShortText": "The body can move and arrange external bodies",
"InDegree": "0",
"OutDegree": "2"
},
{
"Node": "2P14",
"DisplayName": "II Proposition 14",
"ShortText": "The human mind is adapted to the perception of many things",
"InDegree": "3",
"OutDegree": "2"
},
{
"Node": "2P15",
"DisplayName": "II Proposition 15",
"ShortText": "The idea which constitutes the formal being of the human mind is composed of many ideas",
"InDegree": "4",
"OutDegree": "1"
},
{
"Node": "2P16",
"DisplayName": "II Proposition 16",
"ShortText": "The idea of every way in which human body is affected involves the nature of the body and external body",
"InDegree": "2",
"OutDegree": "13"
},
{
"Node": "2P16C01",
"DisplayName": "II Proposition 16 Corollary 1",
"ShortText": "The human mind perceives the nature of many bodies and of its own body",
"InDegree": "1",
"OutDegree": "2"
},
{
"Node": "2P16C02",
"DisplayName": "II Proposition 16 Corollary 2",
"ShortText": "The ideas we have of external bodies indicate the constitution of our own body",
"InDegree": "1",
"OutDegree": "5"
},
{
"Node": "2P17",
"DisplayName": "II Proposition 17",
"ShortText": "The mind will regard as present and existing whatever affects its body",
"InDegree": "3",
"OutDegree": "17"
},
{
"Node": "2P17C01",
"DisplayName": "II Proposition 17 Corollary 1",
"ShortText": "The mind can contemplate external things when they are no longer present",
"InDegree": "4",
"OutDegree": "4"
},
{
"Node": "2P18",
"DisplayName": "II Proposition 18",
"ShortText": "When the mind is affected by two bodies, imagining one causes remembering the other",
"InDegree": "1",
"OutDegree": "7"
},
{
"Node": "2P19",
"DisplayName": "II Proposition 19",
"ShortText": "The human mind does not know the human body itself except through ideas of the body's modifications",
"InDegree": "8",
"OutDegree": "5"
},
{
"Node": "2P20",
"DisplayName": "II Proposition 20",
"ShortText": "There exists in God the idea of the human mind, related to Him as is the idea of the human body",
"InDegree": "5",
"OutDegree": "3"
},
{
"Node": "2P21",
"DisplayName": "II Proposition 21",
"ShortText": "God's idea of the mind is united to the mind in the same way as the mind is united to the body",
"InDegree": "2",
"OutDegree": "3"
},
{
"Node": "2P22",
"DisplayName": "II Proposition 22",
"ShortText": "The human mind perceives both the modifications of the body and also the ideas of those modifications",
"InDegree": "4",
"OutDegree": "3"
},
{
"Node": "2P23",
"DisplayName": "II Proposition 23",
"ShortText": "The mind does not know itself except insofar as it perceives the ideas of modifications of the body",
"InDegree": "6",
"OutDegree": "5"
},
{
"Node": "2P24",
"DisplayName": "II Proposition 24",
"ShortText": "The human mind does not involve an adequate knowledge of the parts of the body",
"InDegree": "8",
"OutDegree": "2"
},
{
"Node": "2P25",
"DisplayName": "II Proposition 25",
"ShortText": "The idea of each modification of the body does not involve an adequate knowledge of an external body",
"InDegree": "3",
"OutDegree": "4"
},
{
"Node": "2P26",
"DisplayName": "II Proposition 26",
"ShortText": "The human mind perceives no external body as existing except through ideas of modifications of its body",
"InDegree": "4",
"OutDegree": "4"
},
{
"Node": "2P26C01",
"DisplayName": "II Proposition 26 Corollary 1",
"ShortText": "Insofar as the human mind imagines an external body, insofar it has not an adequate knowledge of it.",
"InDegree": "1",
"OutDegree": "0"
},
{
"Node": "2P27",
"DisplayName": "II Proposition 27",
"ShortText": "The idea of any modification of the body does not inolve an adequate knowledge of the human body itself",
"InDegree": "2",
"OutDegree": "3"
},
{
"Node": "2P28",
"DisplayName": "II Proposition 28",
"ShortText": "The ideas of the modifications of the human body, in the human mind, are not clear and distinct",
"InDegree": "4",
"OutDegree": "2"
},
{
"Node": "2P29",
"DisplayName": "II Proposition 29",
"ShortText": "The idea of the idea of a modification of the body does not inolve an adequate knowledge of the mind",
"InDegree": "3",
"OutDegree": "2"
},
{
"Node": "2P29C01",
"DisplayName": "II Proposition 29 Corollary 1",
"ShortText": "The mind, when it perceives things in the order of Nature, has no adequate knowledge",
"InDegree": "7",
"OutDegree": "1"
},
{
"Node": "2P30",
"DisplayName": "II Proposition 30",
"ShortText": "We can have only an inadequate knowledge of the duration of our body",
"InDegree": "5",
"OutDegree": "0"
},
{
"Node": "2P31",
"DisplayName": "II Proposition 31",
"ShortText": "We can have only an inadequate knowledge of the duration of external things",
"InDegree": "1",
"OutDegree": "1"
},
{
"Node": "2P32",
"DisplayName": "II Proposition 32",
"ShortText": "All ideas, insofar as they are related to God, are true",
"InDegree": "2",
"OutDegree": "5"
},
{
"Node": "2P33",
"DisplayName": "II Proposition 33",
"ShortText": "In ideas, there is nothing positive on account of which they are called false",
"InDegree": "2",
"OutDegree": "2"
},
{
"Node": "2P34",
"DisplayName": "II Proposition 34",
"ShortText": "Every idea in us which is absolute, that is to say adequate and perfect, is true",
"InDegree": "2",
"OutDegree": "2"
},
{
"Node": "2P35",
"DisplayName": "II Proposition 35",
"ShortText": "Falsity consists in the privation of knowledge involved in mutilated and confused ideas",
"InDegree": "1",
"OutDegree": "3"
},
{
"Node": "2P36",
"DisplayName": "II Propositon 36",
"ShortText": "Inadequate and confused ideas follow by the same necessity as adequate ideas",
"InDegree": "6",
"OutDegree": "0"
},
{
"Node": "2P37",
"DisplayName": "II Proposition 37",
"ShortText": "What is common to everything and equally in part and whole forms the essence of no individual thing",
"InDegree": "1",
"OutDegree": "1"
},
{
"Node": "2P38",
"DisplayName": "II Proposition 38",
"ShortText": "What is equally in part and whole can only be adequately conceived",
"InDegree": "7",
"OutDegree": "6"
},
{
"Node": "2P38C01",
"DisplayName": "II Proposition 38 Corollary 1",
"ShortText": "Some ideas are common to all men, and must be clearly and distinctly perceived by all",
"InDegree": "1",
"OutDegree": "0"
},
{
"Node": "2P39",
"DisplayName": "II Proposition 39",
"ShortText": "The mind will have an adequate idea of what is common and proper to the human body",
"InDegree": "4",
"OutDegree": "1"
},
{
"Node": "2P39C01",
"DisplayName": "II Proposition 39 Corollary 1",
"ShortText": "The more things the body has in common with other bodies, the more the mind will be adapted to perceive",
"InDegree": "1",
"OutDegree": "0"
},
{
"Node": "2P40",
"DisplayName": "II Proposition 40",
"ShortText": "The consequences of adequate ideas are adequate",
"InDegree": "1",
"OutDegree": "13"
},
{
"Node": "2D08",
"DisplayName": "II Definition 8",
"ShortText": "Definition of Knowledge from vague experience (2P40Note2)",
"InDegree": "0",
"OutDegree": "0"
},
{
"Node": "2D09",
"DisplayName": "II Definition 9",
"ShortText": "Definition of Knowledge of the first kind (2P40Note2)",
"InDegree": "0",
"OutDegree": "0"
},
{
"Node": "2D10",
"DisplayName": "II Definition 10",
"ShortText": "Definition of Reason, or knowledge of the second kind(2P40Note2)",
"InDegree": "0",
"OutDegree": "0"
},
{
"Node": "2D11",
"DisplayName": "II Definition 11",
"ShortText": "Definition of Intuitive Science or knowledge of the third kind (2P40Note2)",
"InDegree": "0",
"OutDegree": "0"
},
{
"Node": "2P41",
"DisplayName": "II Proposition 41",
"ShortText": "Knowledge of the first kind is the cause of falsity; others, true",
"InDegree": "2",
"OutDegree": "5"
},
{
"Node": "2P42",
"DisplayName": "II Proposition 42",
"ShortText": "Knowledge of the second kind teach us to distinguish true from false",
"InDegree": "1",
"OutDegree": "0"
},
{
"Node": "2P43",
"DisplayName": "II Proposition 43",
"ShortText": "Whoever has a true idea knows that he has a true idea and cannot doubt the truth of the thing",
"InDegree": "3",
"OutDegree": "6"
},
{
"Node": "2P44",
"DisplayName": "II Proposition 44",
"ShortText": "It is not the nature of reason to consider things as contingent, but as necessary",
"InDegree": "3",
"OutDegree": "3"
},