-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.json
1420 lines (1420 loc) · 129 KB
/
test.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"volume": {
"title": "Sapiens: A Brief History of Humankind",
"authors": [
"Harari, Yuval Noah"
]
},
"highlights": [
{
"color": "yellow",
"content": "About 70,000 years ago, organisms belonging to the species Homo sapiens started to form even more elaborate\n structures called cultures.",
"location": "3",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "Three important revolutions shaped the course of history: the Cognitive Revolution kick- started history\n about 70,000 years ago. The Agricultural Revolution sped it up about 12,000 years ago. The Scientific\n Revolution, which got under way only 500 years ago, may well end history and start something completely\n different.",
"location": "3",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "The most important thing to know about prehistoric humans is that they were insignificant animals with no\n more impact on their environment than gorillas, fireflies or jellyfish.",
"location": "4",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "Animals are said to belong to the same species if they tend to mate with each other, giving birth to fertile\n offspring.",
"location": "4",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "Species that evolved from a common ancestor are bunched together under the heading ‘genus’",
"location": "4",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "That evolution should select for larger brains may seem to us like, well, a no- brainer. We are so enamoured\n of our high intelligence that we assume that when it comes to cerebral power, more must be better.",
"location": "9",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "The fact is that a jumbo brain is a jumbo drain on the body. It’s not easy to carry around, especially when\n encased inside a massive skull. It’s even harder to fuel. In Homo sapiens, the brain accounts for about 2– 3\n per cent of total body weight, but it consumes 25 per cent of the body’s energy when the body is at rest. By\n comparison, the brains of other apes require only 8 per cent of rest- time energy.",
"location": "9",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "Today our big brains pay off nicely, because we can produce cars and guns that enable us to move much faster\n than chimps, and shoot them from a safe distance instead of wrestling.",
"location": "9",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "But cars and guns are a recent phenomenon. For more than 2 million years, human neural networks kept growing\n and growing, but apart from some flint knives and pointed sticks, humans had precious little to show for it.\n What then drove forward the evolution of the massive human brain during those 2 million years? Frankly, we\n don’t know.",
"location": "9",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "Another singular human trait is that we walk upright on two legs.",
"location": "9",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "Humankind paid for its lofty vision and industrious hands with backaches and stiff necks.",
"location": "1",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "Women who gave birth earlier, when the infant’s brain and head were still relatively small and supple, fared\n better and lived to have more children. Natural selection consequently favoured earlier births. And, indeed,\n compared to other animals, humans are born prematurely, when many of their vital systems are still\n underdeveloped. A colt can trot shortly after birth; a kitten leaves its mother to forage on its own when it\n is just a few weeks old. Human babies are helpless, dependent for many years on their elders for sustenance,\n protection and education.",
"location": "1",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "neighbours. It takes a tribe to raise a human. Evolution thus favoured those capable of forming strong\n social ties. In addition, since humans are born underdeveloped, they can be educated and socialised to a far\n greater extent than any other animal. Most mammals emerge from the womb like glazed earthenware emerging\n from a kiln– any attempt at remoulding will only scratch or break them. Humans emerge from the womb like\n molten glass from a furnace. They can be spun, stretched and shaped with a surprising degree of freedom.\n This is why today we can educate our children to become Christian or Buddhist, capitalist or socialist,\n warlike or peace- loving.",
"location": "1",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "Genus Homo’s position in the food chain was, until quite recently, solidly in the middle. For millions of\n years, humans hunted smaller creatures and gathered what they could, all the while being hunted by larger\n predators. It was only 400,000 years ago that several species of man began to hunt large game on a regular\n basis, and only in the last 100,000 years– with the rise of Homo sapiens– that man jumped to the top of the\n food chain.",
"location": "1",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "Other animals at the top of the pyramid, such as lions and sharks, evolved into that position very\n gradually, over millions of years. This enabled the ecosystem to develop checks and balances that prevent\n lions and sharks from wreaking too much havoc.",
"location": "1",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "In contrast, humankind ascended to the top so quickly that the ecosystem was not given time to adjust.\n Moreover, humans themselves failed to adjust. Most top predators of the planet are majestic creatures.\n Millions of years of dominion have filled them with self- confidence. Sapiens by contrast is more like a\n banana- republic dictator. Having so recently been one of the underdogs of the savannah, we are full of\n fears and anxieties over our position, which makes us doubly cruel and dangerous. Many historical\n calamities, from deadly wars to ecological catastrophes, have resulted from this over- hasty jump.",
"location": "1",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "A significant step on the way to the top was the domestication of fire.",
"location": "1",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "Humans now had a dependable source of light and warmth, and a deadly weapon against prowling lions. Not long\n afterwards, humans may even have started deliberately to torch their neighbourhoods. A carefully managed\n fire could turn impassable barren thickets into prime grasslands teeming with game. In addition, once the\n fire died down, Stone Age entrepreneurs could walk through the smoking remains and harvest charcoaled\n animals, nuts and tubers.",
"location": "1",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "the best thing fire did was cook. Foods that humans cannot digest in their natural forms– such as wheat,\n rice and potatoes– became staples of our diet thanks to cooking. Fire not only changed food’s chemistry, it\n changed its biology as well. Cooking killed germs and parasites that infested food. Humans also had a far\n easier time chewing and digesting old favourites such as fruits, nuts, insects and carrion if they were\n cooked. Whereas chimpanzees spend five hours a day chewing raw food, a single hour suffices for people\n eating cooked food.",
"location": "1",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "The advent of cooking enabled humans to eat more kinds of food, to devote less time to eating, and to make\n do with smaller teeth and shorter intestines.",
"location": "1",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "Most importantly, the power of fire was not limited by the form, structure or strength of the human body. A\n single woman with a flint or fire stick could burn down an entire forest in a matter of hours. The\n domestication of fire was a sign of things to come.",
"location": "1",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "We don’t know exactly where and when animals that can be classified as Homo sapiens first evolved from some\n earlier type of humans, but most scientists agree that by 150,000 years ago, East Africa was populated by\n Sapiens that looked just like us.",
"location": "1",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "Scientists also agree that about 70,000 years ago, Sapiens from East Africa spread into the Arabian\n peninsula, and from there they quickly overran the entire Eurasian landmass. When Homo sapiens landed in\n Arabia, most of Eurasia was already settled by other humans. What happened to them? There are two\n conflicting theories.",
"location": "1",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "According to the Interbreeding Theory, when Sapiens spread into Neanderthal lands, Sapiens bred with\n Neanderthals until the two populations merged. If this is the case, then today’s Eurasians are not pure\n Sapiens. They are a mixture of Sapiens and Neanderthals. Similarly, when Sapiens reached East Asia, they\n interbred with the local Erectus, so the Chinese and Koreans are a mixture of Sapiens and Erectus.",
"location": "1",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "The opposing view, called the ‘Replacement Theory’ tells a very different story– one of incompatibility,\n revulsion, and perhaps even genocide. According to this theory, Sapiens and other humans had different\n anatomies, and most likely different mating habits and even body odours. They would have had little sexual\n interest in one another. And even if a Neanderthal Romeo and a Sapiens Juliet fell in love, they could not\n produce fertile children, because the genetic gulf separating the two populations was already unbridgeable.\n The two populations remained completely distinct, and when the Neanderthals died out, or were killed off,\n their genes died with them. According to this view, Sapiens replaced all the previous human populations\n without merging with them. If that is the case, the lineages of all contemporary humans can be traced back,\n exclusively, to East Africa, 70,000 years ago. We are all ‘pure Sapiens’.",
"location": "1",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "A lot hinges on this debate. From an evolutionary perspective, 70,000 years is a relatively short interval.\n If the Replacement Theory is correct, all living humans have roughly the same genetic baggage, and racial\n distinctions among them are negligible. But if the Interbreeding Theory is right, there might well be\n genetic differences between Africans, Europeans and Asians that go back hundreds of thousands of years. This\n is political dynamite, which could provide material for explosive racial theories.",
"location": "1",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "It turned out that 1– 4 per cent of the unique human DNA of modern populations in the Middle East and Europe\n is Neanderthal DNA. That’s not a huge amount, but it’s significant.",
"location": "1",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "If these results are valid– and it’s important to keep in mind that further research is under way and may\n either reinforce or modify these conclusions– the Interbreeders got at least some things right. But that\n doesn’t mean that the Replacement Theory is completely wrong.",
"location": "1",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "Clearly, they were not completely different species like horses and donkeys. On the other hand, they were\n not just different populations of the same species, like bulldogs and spaniels. Biological reality is not\n black and white. There are also important grey areas.",
"location": "1",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "why did they vanish? One possibility is that Homo sapiens drove them to extinction. Imagine a Sapiens band\n reaching a Balkan valley where Neanderthals had lived for hundreds of thousands of years. The newcomers\n began to hunt the deer and gather the nuts and berries that were the Neanderthals’ traditional staples.\n Sapiens were more proficient hunters and gatherers– thanks to better technology and superior social skills–\n so they multiplied and spread. The less resourceful Neanderthals found it increasingly difficult to feed\n themselves. Their population dwindled and they slowly died out, except perhaps for one or two members who\n joined their Sapiens neighbours.",
"location": "1",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "Another possibility is that competition for resources flared up into violence and genocide. Tolerance is not\n a Sapiens trademark. In modern times, a small difference in skin colour, dialect or religion has been enough\n to prompt one group of Sapiens to set about exterminating another group. Would ancient Sapiens have been\n more tolerant towards an entirely different human species? It may well be that when Sapiens encountered\n Neanderthals, the result was the first and most significant ethnic- cleansing campaign in history.",
"location": "1",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "Whether Sapiens are to blame or not, no sooner had they arrived at a new location than the native population\n became extinct.",
"location": "1",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "Sapiens can produce many more distinct sounds than green monkeys, but whales and elephants have equally\n impressive abilities. A parrot can say anything Albert Einstein could say, as well as mimicking the sounds\n of phones ringing, doors slamming and sirens wailing. Whatever advantage Einstein had over a parrot, it\n wasn’t vocal.",
"location": "2",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "The most common answer is that our language is amazingly supple. We can connect a limited number of sounds\n and signs to produce an infinite number of sentences, each with a distinct meaning. We can thereby ingest,\n store and communicate a prodigious amount of information about the surrounding world.",
"location": "2",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "When two males are contesting the alpha position, they usually do so by forming extensive coalitions of\n supporters,",
"location": "2",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "The alpha male usually wins his position not because he is physically stronger, but because he leads a large\n and stable coalition. These coalitions play a central part not only during overt struggles for the alpha\n position, but in almost all day- to- day activities. Members of a coalition spend more time together, share\n food, and help one another in times of trouble.",
"location": "2",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "the maximum ‘natural’ size of a group bonded by gossip is about 150 individuals. Most people can neither\n intimately know, nor gossip effectively about, more than 150 human beings. Even today, a critical threshold\n in human organisations falls somewhere around this magic number. Below this threshold, communities,\n businesses, social networks and military units can maintain themselves based mainly on intimate acquaintance\n and rumour- mongering. There is no need for formal ranks, titles and law books to keep order.",
"location": "2",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "But once the threshold of 150 individuals is crossed, things can no longer work that way. You cannot run a\n division with thousands of soldiers the same way you run a platoon. Successful family businesses usually\n face a crisis when they grow larger and hire more personnel. If they cannot reinvent themselves, they go\n bust.",
"location": "2",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "blue",
"content": "How did Homo sapiens manage to cross this critical threshold, eventually founding cities comprising tens of\n thousands of inhabitants and empires ruling hundreds of millions? The secret was probably the appearance of\n fiction. Large numbers of strangers can cooperate successfully by believing in common myths. Any large-\n scale human cooperation– whether a modern state, a medieval church, an ancient city or an archaic tribe– is\n rooted in common myths that exist only in people’s collective imagination.",
"location": "2",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "Yet none of these things exists outside the stories that people invent and tell one another. There are no\n gods in the universe, no nations, no money, no human rights, no laws and no justice outside the common\n imagination of human beings.",
"location": "2",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "blue",
"content": "What we fail to appreciate is that our modern institutions function on exactly the same basis. Take for\n example the world of business corporations. Modern businesspeople and lawyers are, in fact, powerful\n sorcerers.",
"location": "2",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "orange",
"content": "In what sense can we say that Peugeot SA (the company’s official name) exists? There are many Peugeot\n vehicles, but these are obviously not the company. Even if every Peugeot in the world were simultaneously\n junked and sold for scrap metal, Peugeot SA would not disappear. It would continue to manufacture new cars\n and issue its annual report. The company owns factories, machinery and showrooms, and employs mechanics,\n accountants and secretaries, but all these together do not comprise Peugeot. A disaster might kill every\n single one of Peugeot’s employees, and go on to destroy all of its assembly lines and executive offices.\n Even then, the company could borrow money, hire new employees, build new factories and buy new machinery.\n Peugeot has managers and shareholders, but neither do they constitute the company. All the managers could be\n dismissed and all its shares sold, but the company itself would remain intact.",
"location": "2",
"chapter": "Part One: The Cognitive Revolution",
"notes": [
{
"color": "",
"content": "Modern example of myths created to add order and structure to society.",
"location": "2",
"chapter": "Part One: The Cognitive Revolution"
}
]
},
{
"color": "blue",
"content": "Peugeot is a figment of our collective imagination. Lawyers call this a ‘legal fiction’. It can’t be pointed\n at; it is not a physical object. But it exists as a legal entity. Just like you or me, it is bound by the\n laws of the countries in which it operates. It can open a bank account and own property. It pays taxes, and\n it can be sued and even prosecuted separately from any of the people who own or work for it.",
"location": "2",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "pink",
"content": "Peugeot belongs to a particular genre of legal fictions called ‘limited liability companies’. The idea\n behind such companies is among humanity’s most ingenious inventions. Homo sapiens lived for untold millennia\n without them.",
"location": "2",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "During most of recorded history property could be owned only by flesh- and- blood humans, the kind that\n stood on two legs and had big brains. If in thirteenth- century France Jean set up a wagon- manufacturing\n workshop, he himself was the business. If a wagon he’d made broke down a week after purchase, the\n disgruntled buyer would have sued Jean personally. If Jean had borrowed 1,000 gold coins to set up his\n workshop and the business failed, he would have had to repay the loan by selling his private property– his\n house, his cow, his land. He might even have had to sell his children into servitude. If he couldn’t cover\n the debt, he could be thrown in prison by the state or enslaved by his creditors. He was fully liable,\n without limit, for all obligations incurred by his workshop. If you had lived back then, you would probably\n have thought twice before you opened an enterprise of your own. And indeed this legal situation discouraged\n entrepreneurship. People were afraid to start new businesses and take economic risks. It hardly seemed worth\n taking the chance that their families could end up utterly destitute.",
"location": "2",
"chapter": "Part One: The Cognitive Revolution",
"notes": [
{
"color": "",
"content": "How businesses worked before",
"location": "3",
"chapter": "Part One: The Cognitive Revolution"
}
]
},
{
"color": "blue",
"content": "This is why people began collectively to imagine the existence of limited liability companies. Such\n companies were legally independent of the people who set them up, or invested money in them, or managed\n them. Over the last few centuries such companies have become the main players in the economic arena, and we\n have grown so used to them that we forget they exist only in our imagination. In the US, the technical term\n for a limited liability company is a ‘corporation’, which is ironic, because the term derives from ‘corpus’\n (‘ body’ in Latin)– the one thing these corporations lack. Despite their having no real bodies, the American\n legal system treats corporations as legal persons, as if they were flesh- and- blood human beings.",
"location": "3",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "If the company borrowed millions of francs and then went bust, Armand Peugeot did not owe its creditors a\n single franc. The loan, after all, had been given to Peugeot, the company, not to Armand Peugeot, the Homo\n sapiens.",
"location": "3",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "pink",
"content": "Armand Peugeot died in 1915. Peugeot, the company, is still alive and well. How exactly did Armand Peugeot,\n the man, create Peugeot, the company? In much the same way that priests and sorcerers have created gods and\n demons throughout history, and in which thousands of French curés were still creating Christ’s body every\n Sunday in the parish churches. It all revolved around telling stories, and convincing people to believe\n them.",
"location": "3",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "pink",
"content": "In the case of Peugeot SA the crucial story was the French legal code, as written by the French parliament.\n According to the French legislators, if a certified lawyer followed all the proper liturgy and rituals,\n wrote all the required spells and oaths on a wonderfully decorated piece of paper, and affixed his ornate\n signature to the bottom of the document, then hocus pocus– a new company was incorporated. When in 1896\n Armand Peugeot wanted to create his company, he paid a lawyer to go through all these sacred procedures.\n Once the lawyer had performed all the right rituals and pronounced all the necessary spells and oaths,\n millions of upright French citizens behaved as if the Peugeot company really existed. Telling effective\n stories is not easy. The difficulty lies not in telling the story, but in convincing everyone else to\n believe it. Much of history revolves around this question: how does one convince millions of people to\n believe particular stories about gods, or nations, or limited liability companies? Yet when it succeeds, it\n gives Sapiens immense power, because it enables millions of strangers to cooperate and work towards common\n goals. Just try to imagine how difficult it would have been to create states, or churches, or legal systems\n if we could speak only about things that really exist, such as rivers, trees and lions.",
"location": "3",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "The kinds of things that people create through this network of stories are known in academic circles as\n ‘fictions’, ‘social constructs’ or ‘imagined realities’.",
"location": "3",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "blue",
"content": "An imagined reality is not a lie. I lie when I say that there is a lion near the river when I know perfectly\n well that there is no lion there. There is nothing special about lies. Green monkeys and chimpanzees can\n lie. A green monkey, for example, has been observed calling ‘Careful! A lion!’ when there was no lion\n around.",
"location": "3",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "orange",
"content": "Unlike lying, an imagined reality is something that everyone believes in, and as long as this communal\n belief persists, the imagined reality exerts force in the world. The sculptor from the Stadel Cave may\n sincerely have believed in the existence of the lion- man guardian spirit. Some sorcerers are charlatans,\n but most sincerely believe in the existence of gods and demons. Most millionaires sincerely believe in the\n existence of money and limited liability companies. Most human- rights activists sincerely believe in the\n existence of human rights. No one was lying when, in 2011, the UN demanded that the Libyan government\n respect the human rights of its citizens, even though the UN, Libya and human rights are all figments of our\n fertile imaginations.",
"location": "3",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "pink",
"content": "Ever since the Cognitive Revolution, Sapiens have thus been living in a dual reality. On the one hand, the\n objective reality of rivers, trees and lions; and on the other hand, the imagined reality of gods, nations\n and corporations. As time went by, the imagined reality became ever more powerful, so that today the very\n survival of rivers, trees and lions depends on the grace of imagined entities such as the United States and\n Google.",
"location": "3",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "orange",
"content": "The ability to create an imagined reality out of words enabled large numbers of strangers to cooperate\n effectively. But it also did something more. Since large- scale human cooperation is based on myths, the way\n people cooperate can be altered by changing the myths– by telling different stories.",
"location": "3",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "blue",
"content": "The behaviour of other social animals is determined to a large extent by their genes. DNA is not an\n autocrat. Animal behaviour is also influenced by environmental factors and individual quirks. Nevertheless,\n in a given environment, animals of the same species will tend to behave in a similar way. Significant\n changes in social behaviour cannot occur, in general, without genetic mutations.",
"location": "3",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "For example, common chimpanzees have a genetic tendency to live in hierarchical groups headed by an alpha\n male. Members of a closely related chimpanzee species, bonobos, usually live in more egalitarian groups\n dominated by female alliances. Female common chimpanzees cannot take lessons from their bonobo relatives and\n stage a feminist revolution. Male chimps cannot gather in a constitutional assembly to abolish the office of\n alpha male and declare that from here on out all chimps are to be treated as equals. Such dramatic changes\n in behaviour would occur only if something changed in the chimpanzees’ DNA.",
"location": "3",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "species. As long as Homo erectus did not undergo further genetic alterations, its stone tools remained\n roughly the same– for close to 2 million years!",
"location": "3",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "blue",
"content": "In contrast, ever since the Cognitive Revolution, Sapiens have been able to change their behaviour quickly,\n transmitting new behaviours to future generations without any need of genetic or environmental change.",
"location": "3",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "In other words, while the behaviour patterns of archaic humans remained fixed for tens of thousands of\n years, Sapiens could transform their social structures, the nature of their interpersonal relations, their\n economic activities and a host of other behaviours within a decade or two.",
"location": "3",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "The global trade network of today is based on our trust in such fictional entities as the dollar, the\n Federal Reserve Bank, and the totemic trademarks of corporations. When two strangers in a tribal society\n want to trade, they will often establish trust by appealing to a common god, mythical ancestor or totem\n animal.",
"location": "3",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "The immense diversity of imagined realities that Sapiens invented, and the resulting diversity of behaviour\n patterns, are the main components of what we call ‘cultures’. Once cultures appeared, they never ceased to\n change and develop, and these unstoppable alterations are what we call ‘history’.",
"location": "3",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "The Cognitive Revolution is accordingly the point when history declared its independence from biology. Until\n the Cognitive Revolution, the doings of all human species belonged to the realm of biology, or, if you so\n prefer, prehistory",
"location": "3",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "The real difference between us and chimpanzees is the mythical glue that binds together large numbers of\n individuals, families and groups. This glue has made us the masters of creation.",
"location": "3",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "the ability to make and use tools. Yet tool- making is of little consequence unless it is coupled with the\n ability to cooperate with many others.",
"location": "3",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "For nearly the entire history of our species, Sapiens lived as foragers. The past 200 years, during which\n ever increasing numbers of Sapiens have obtained their daily bread as urban labourers and office workers,\n and the preceding 10,000 years, during which most Sapiens lived as farmers and herders, are the blink of an\n eye compared to the tens of thousands of years during which our ancestors hunted and gathered.",
"location": "4",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "The instinct to gorge on high- calorie food was hard- wired into our genes.",
"location": "4",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "There was just one exception to this general rule: the dog. The dog was the first animal domesticated by\n Homo sapiens, and this occurred before the Agricultural Revolution. Experts disagree about the exact date,\n but we have incontrovertible evidence of domesticated dogs from about 15,000 years ago. They may have joined\n the human pack thousands of years earlier.",
"location": "4",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "The average person lived many months without seeing or hearing a human from outside of her own band,",
"location": "4",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "In other words, the average forager had wider, deeper and more varied knowledge of her immediate\n surroundings than most of her modern descendants. Today, most people in industrial societies don’t need to\n know much about the natural world in order to survive.",
"location": "4",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "pink",
"content": "The human collective knows far more today than did the ancient bands. But at the individual level, ancient\n foragers were the most knowledgeable and skilful people in history.",
"location": "4",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "blue",
"content": "There is some evidence that the size of the average Sapiens brain has actually decreased since the age of\n foraging. 5 Survival in that era required superb mental abilities from everyone. When agriculture and\n industry came along people could increasingly rely on the skills of others for survival, and new ‘niches for\n imbeciles’ were opened up. You could survive and pass your unremarkable genes to the next generation by\n working as a water carrier or an assembly- line worker.",
"location": "4",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "Varied and constant use of their bodies made them as fit as marathon runners. They had physical dexterity\n that people today are unable to achieve even after years of practising yoga or t’ai chi.",
"location": "4",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "The hunter- gatherer way of life differed significantly from region to region and from season to season, but\n on the whole foragers seem to have enjoyed a more comfortable and rewarding lifestyle than most of the\n peasants, shepherds, labourers and office clerks who followed in their footsteps.",
"location": "4",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "blue",
"content": "While people in today’s affluent societies work an average of forty to forty- five hours a week, and people\n in the developing world work sixty and even eighty hours a week, hunter- gatherers living today in the most\n inhospitable of habitats– such as the Kalahari Desert– work on average for just thirty- five to forty- five\n hours a week.",
"location": "5",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "blue",
"content": "Evidence from fossilised skeletons indicates that ancient foragers were less likely to suffer from\n starvation or malnutrition, and were generally taller and healthier than their peasant descendants. Average\n life expectancy was apparently just thirty to forty years, but this was due largely to the high incidence of\n child mortality. Children who made it through the perilous first years had a good chance of reaching the age\n of sixty, and some even made it to their eighties. Among modern foragers, forty- five- year- old women can\n expect to live another twenty years, and about 5– 8 per cent of the population is over sixty. 6",
"location": "5",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "The typical peasant in traditional China ate rice for breakfast, rice for lunch and rice for dinner. If she\n was lucky, she could expect to eat the same on the following day. By contrast, ancient foragers regularly\n ate dozens of different foodstuffs. The peasant’s ancient ancestor, the forager, may have eaten berries and\n mushrooms for breakfast; fruits, snails and turtle for lunch; and rabbit steak with wild onions for dinner.\n Tomorrow’s menu might have been completely different. This variety ensured that the ancient foragers\n received all the necessary nutrients.",
"location": "5",
"chapter": "Part One: The Cognitive Revolution"
},
{
"color": "yellow",
"content": "Sapiens too continued to live by gathering wild plants and hunting wild animals. Why do anything else when\n your lifestyle feeds you amply and supports a rich world of social structures, religious beliefs and\n political dynamics? All this changed about 10,000 years ago, when Sapiens began to devote almost all their\n time and effort to manipulating the lives of a few animal and plant species. From sunrise to sunset humans\n sowed seeds, watered plants, plucked weeds from the ground and led sheep to prime pastures. This work, they\n thought, would provide them with more fruit, grain and meat. It was a revolution in the way humans lived–\n the Agricultural Revolution.",
"location": "7",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "yellow",
"content": "by 3500 BC the main wave of domestication was over. Even today, with all our advanced technologies, more\n than 90 per cent of the calories that feed humanity come from the handful of plants that our ancestors\n domesticated between 9500 and 3500 BC– wheat, rice, maize (called ‘corn’ in the US), potatoes, millet and\n barley. No noteworthy plant or animal has been domesticated in the last 2,000 years. If our minds are those\n of hunter- gatherers, our cuisine is that of ancient farmers.",
"location": "7",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "yellow",
"content": "The Agricultural Revolution certainly enlarged the sum total of food at the disposal of humankind, but the\n extra food did not translate into a better diet or more leisure. Rather, it translated into population\n explosions and pampered elites. The average farmer worked harder than the average forager, and got a worse\n diet in return. The Agricultural Revolution was history’s biggest fraud.",
"location": "7",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "yellow",
"content": "This is the essence of the Agricultural Revolution: the ability to keep more people alive under worse\n conditions.",
"location": "8",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "yellow",
"content": "The pursuit of an easier life resulted in much hardship, and not for the last time. It happens to us today.\n How many young college graduates have taken demanding jobs in high- powered firms, vowing that they will\n work hard to earn money that will enable them to retire and pursue their real interests when they are\n thirty- five? But by the time they reach that age, they have large mortgages, children to school, houses in\n the suburbs that necessitate at least two cars per family, and a sense that life is not worth living without\n really good wine and expensive holidays abroad. What are they supposed to do, go back to digging up roots?\n No, they double their efforts and keep slaving away.",
"location": "8",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "blue",
"content": "This discrepancy between evolutionary success and individual suffering is perhaps the most important lesson\n we can draw from the Agricultural Revolution. When we study the narrative of plants such as wheat and maize,\n maybe the purely evolutionary perspective makes sense. Yet in the case of animals such as cattle, sheep and\n Sapiens, each with a complex world of sensations and emotions, we have to consider how evolutionary success\n translates into individual experience. In the following chapters we will see time and again how a dramatic\n increase in the collective power and ostensible success of our species went hand in hand with much\n individual suffering.",
"location": "9",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "yellow",
"content": "THE AGRICULTURAL REVOLUTION is one of the most controversial events in history. Some partisans proclaim that\n it set humankind on the road to prosperity and progress. Others insist that it led to perdition. This was\n the turning point, they say, where Sapiens cast off its intimate symbiosis with nature and sprinted towards\n greed and alienation. Whichever direction the road led, there was no going back. Farming enabled populations\n to increase so radically and rapidly that no complex agricultural society could ever again sustain itself if\n it returned to hunting and gathering.",
"location": "9",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "yellow",
"content": "History is something that very few people have been doing while everyone else was ploughing fields and\n carrying water buckets.",
"location": "1",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "blue",
"content": "It is easy for us to accept that the division of people into ‘superiors’ and ‘commoners’ is a figment of the\n imagination. Yet the idea that all humans are equal is also a myth. In what sense do all humans equal one\n another? Is there any objective reality, outside the human imagination, in which we are truly equal? Are all\n humans equal to one another biologically? Let us try to translate the most famous line of the American\n Declaration of Independence into biological terms:",
"location": "1",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "blue",
"content": "However, an imagined order cannot be sustained by violence alone. It requires some true believers as well.",
"location": "1",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "pink",
"content": "How do you cause people to believe in an imagined order such as Christianity, democracy or capitalism?\n First, you never admit that the order is imagined. You always insist that the order sustaining society is an\n objective reality created by the great gods or by the laws of nature. People are unequal, not because\n Hammurabi said so, but because Enlil and Marduk decreed it. People are equal, not because Thomas Jefferson\n said so, but because God created them that way. Free markets are the best economic system, not because Adam\n Smith said so, but because these are the immutable laws of nature.",
"location": "1",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "yellow",
"content": "You also educate people thoroughly. From the moment they are born, you constantly remind them of the\n principles of the imagined order, which are incorporated into anything and everything. They are incorporated\n into fairy tales, dramas, paintings, songs, etiquette, political propaganda, architecture, recipes and\n fashions. For example, today people believe in equality, so it’s fashionable for rich kids to wear jeans,\n which were originally working- class attire.",
"location": "1",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "blue",
"content": "Three main factors prevent people from realising that the order organising their lives exists only in their\n imagination:",
"location": "1",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "yellow",
"content": "The imagined order is embedded in the material world. Though the imagined order exists only in our minds, it\n can be woven into the material reality around us, and even set in stone. Most Westerners today believe in\n individualism. They believe that every human is an individual, whose worth does not depend on what other\n people think of him or her. Each of us has within ourselves a brilliant ray of light that gives value and\n meaning to our lives. In modern Western schools teachers and parents tell children that if their classmates\n make fun of them, they should ignore it. Only they themselves, not others, know their true worth.",
"location": "1",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "yellow",
"content": "The imagined order shapes our desires. Most people do not wish to accept that the order governing their\n lives is imaginary, but in fact every person is born into a pre- existing imagined order, and his or her\n desires are shaped from birth by its dominant myths. Our personal desires thereby become the imagined\n order’s most important defences.",
"location": "1",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "blue",
"content": "Friends giving advice often tell each other, ‘Follow your heart.’ But the heart is a double agent that\n usually takes its instructions from the dominant myths of the day, and the very recommendation to ‘follow\n your heart’ was implanted in our minds by a combination of nineteenth- century Romantic myths and twentieth-\n century consumerist myths.",
"location": "1",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "yellow",
"content": "Even what people take to be their most personal desires are usually programmed by the imagined order. Let’s\n consider, for example, the popular desire to take a holiday abroad. There is nothing natural or obvious\n about this. A chimpanzee alpha male would never think of using his power in order to go on holiday into the\n territory of a neighbouring chimpanzee band.",
"location": "1",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "yellow",
"content": "People today spend a great deal of money on holidays abroad because they are true believers in the myths of\n romantic consumerism. Romanticism tells us that in order to make the most of our human potential we must\n have as many different experiences as we can. We must open ourselves to a wide spectrum of emotions;",
"location": "1",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "blue",
"content": "Romanticism, which encourages variety, meshes perfectly with consumerism. Their marriage has given birth to\n the infinite ‘market of experiences’, on which the modern tourism industry is founded.",
"location": "1",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "yellow",
"content": "c. The imagined order is inter- subjective. Even if by some superhuman effort I succeed in freeing my\n personal desires from the grip of the imagined order, I am just one person. In order to change the imagined\n order I must convince millions of strangers to cooperate with me. For the imagined order is not a subjective\n order existing in my own imagination– it is rather an inter- subjective order, existing in the shared\n imagination of thousands and millions of people.",
"location": "1",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "orange",
"content": "In order to understand this, we need to understand the difference between ‘objective’, ‘subjective’, and\n ‘inter- subjective’.",
"location": "1",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "blue",
"content": "An objective phenomenon exists independently of human consciousness and human beliefs. Radioactivity, for\n example, is not a myth. Radioactive emissions occurred long before people discovered them, and they are\n dangerous even when people do not believe in them.",
"location": "1",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "blue",
"content": "The subjective is something that exists depending on the consciousness and beliefs of a single individual.\n It disappears or changes if that particular individual changes his or her beliefs.",
"location": "1",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "blue",
"content": "The inter- subjective is something that exists within the communication network linking the subjective\n consciousness of many individuals. If a single individual changes his or her beliefs, or even dies, it is of\n little importance. However, if most individuals in the network die or change their beliefs, the inter-\n subjective phenomenon will mutate or disappear.",
"location": "1",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "blue",
"content": "Many of history’s most important drivers are inter- subjective: law, money, gods, nations.",
"location": "1",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "pink",
"content": "A change of such magnitude can be accomplished only with the help of a complex organisation, such as a\n political party, an ideological movement, or a religious cult. However, in order to establish such complex\n organisations, it’s necessary to convince many strangers to cooperate with one another. And this will happen\n only if these strangers believe in some shared myths. It follows that in order to change an existing\n imagined order, we must first believe in an alternative imagined order.",
"location": "1",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "yellow",
"content": "In order to dismantle Peugeot, for example, we need to imagine something more powerful, such as the French\n legal system. In order to dismantle the French legal system we need to imagine something even more powerful,\n such as the French state. And if we would like to dismantle that too, we will have to imagine something yet\n more powerful.",
"location": "1",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "yellow",
"content": "It is telling that the first recorded name in history belongs to an accountant, rather than a prophet, a\n poet or a great conqueror.",
"location": "1",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "yellow",
"content": "The most important impact of script on human history is precisely this: it has gradually changed the way\n humans think and view the world. Free association and holistic thought have given way to\n compartmentalisation and bureaucracy.",
"location": "1",
"chapter": "Part Two: The Agricultural Revolution"
},
{
"color": "yellow",
"content": "If tensions, conflicts and irresolvable dilemmas are the spice of every culture, a human being who belongs\n to any particular culture must hold contradictory beliefs and be riven by incompatible values. It’s such an\n essential feature of any culture that it even has a name: cognitive dissonance. Cognitive dissonance is\n often considered a failure of the human psyche. In fact, it is a vital asset. Had people been unable to hold\n contradictory beliefs and values, it would probably have been impossible to establish and maintain any human\n culture.",
"location": "1",
"chapter": "Part Three: The Unification of Humankind"
},
{
"color": "yellow",
"content": "In a barter economy, every day the shoemaker and the apple grower will have to learn anew the relative\n prices of dozens of commodities. If one hundred different commodities are traded in the market, then buyers\n and sellers will have to know 4,950 different exchange rates. And if 1,000 different commodities are traded,\n buyers and sellers must juggle 499,500 different exchange rates! 5 How do you figure it out?",
"location": "1",
"chapter": "Part Three: The Unification of Humankind"
},
{
"color": "yellow",
"content": "Money is not coins and banknotes. Money is anything that people are willing to use in order to represent\n systematically the value of other things for the purpose of exchanging goods and services. Money enables\n people to compare quickly and easily the value of different commodities (such as apples, shoes and\n divorces), to easily exchange one thing for another, and to store wealth conveniently.",
"location": "1",
"chapter": "Part Three: The Unification of Humankind"
},
{
"color": "yellow",
"content": "Money is thus a universal medium of exchange that enables people to convert almost everything into almost\n anything else.",
"location": "1",
"chapter": "Part Three: The Unification of Humankind"
},
{
"color": "yellow",
"content": "Money is accordingly a system of mutual trust, and not just any system of mutual trust: money is the most\n universal and most efficient system of mutual trust ever devised.",
"location": "1",
"chapter": "Part Three: The Unification of Humankind"
},
{
"color": "yellow",
"content": "That’s why counterfeiting money has always been considered a much more serious crime than other acts of\n deception. Counterfeiting is not just cheating– it’s a breach of sovereignty, an act of subversion against\n the power, privileges and person of the king. The legal term is lese- majesty (violating majesty), and was\n typically punished by torture and death. As long as people trusted the power and integrity of the king, they\n trusted his coins. Total strangers could easily agree on the worth of a Roman denarius coin, because they\n trusted the power and integrity of the Roman emperor, whose name and picture adorned it.",
"location": "1",
"chapter": "Part Three: The Unification of Humankind"
},
{
"color": "yellow",
"content": "Yet why should Chinese, Indians, Muslims and Spaniards– who belonged to very different cultures that failed\n to agree about much of anything– nevertheless share the belief in gold?",
"location": "1",
"chapter": "Part Three: The Unification of Humankind"
},
{
"color": "yellow",
"content": "Economists have a ready answer. Once trade connects two areas, the forces of supply and demand tend to\n equalise the prices of transportable goods.",
"location": "1",
"chapter": "Part Three: The Unification of Humankind"
},
{
"color": "yellow",
"content": "Even if Indians still had no real use for gold, the fact that Mediterranean people wanted it would be enough\n to make the Indians value it.",
"location": "1",
"chapter": "Part Three: The Unification of Humankind"
},
{
"color": "yellow",
"content": "Similarly, the fact that another person believes in cowry shells, or dollars, or electronic data, is enough\n to strengthen our own belief in them, even if that person is otherwise hated, despised or ridiculed by us.\n Christians and Muslims who could not agree on religious beliefs could nevertheless agree on a monetary\n belief, because whereas religion asks us to believe in something, money asks us to believe that other people\n believe in something.",
"location": "1",
"chapter": "Part Three: The Unification of Humankind"
},
{
"color": "yellow",
"content": "Money is based on two universal principles: Universal convertibility: with money as an alchemist, you can\n turn land into loyalty, justice into health, and violence into knowledge. Universal trust: with money as a\n go- between, any two people can cooperate on any project.",
"location": "1",
"chapter": "Part Three: The Unification of Humankind"
},
{
"color": "yellow",
"content": "Nobody really knows how to solve this thorny question of cultural inheritance. Whatever path we take, the\n first step is to acknowledge the complexity of the dilemma and to accept that simplistically dividing the\n past into good guys and bad guys leads nowhere. Unless, of course, we are willing to admit that we usually\n follow the lead of the bad guys.",
"location": "2",
"chapter": "Part Three: The Unification of Humankind"
},
{
"color": "yellow",
"content": "Religion is a system of human norms and values that is founded on belief in a superhuman order. The theory\n of relativity is not a religion, because (at least so far) there are no human norms and values that are\n founded on it. Football is not a religion because nobody argues that its rules reflect superhuman edicts.\n Islam, Buddhism and Communism are all religions, because all are systems of human norms and values that are\n founded on belief in a superhuman order. (Note the difference between ‘superhuman’ and ‘supernatural’. The\n Buddhist law of nature and the Marxist laws of history are superhuman, since they were not legislated by\n humans. Yet they are not supernatural.)",
"location": "2",
"chapter": "Part Three: The Unification of Humankind"
},
{
"color": "pink",
"content": "The Hindsight Fallacy Every point in history is a crossroads. A single travelled road leads from the past to\n the present, but myriad paths fork off into the future. Some of those paths are wider, smoother and better\n marked, and are thus more likely to be taken, but sometimes history– or the people who make history– takes\n unexpected turns.",
"location": "2",
"chapter": "Part Three: The Unification of Humankind"
},
{
"color": "yellow",
"content": "To describe ‘how’ means to reconstruct the series of specific events that led from one point to another. To\n explain ‘why’ means to find causal connections that account for the occurrence of this particular series of\n events to the exclusion of all others.",
"location": "2",
"chapter": "Part Three: The Unification of Humankind"
},
{
"color": "yellow",
"content": "This is one of the distinguishing marks of history as an academic discipline– the better you know a\n particular historical period, the harder it becomes to explain why things happened one way and not another.\n Those who have only a superficial knowledge of a certain period tend to focus only on the possibility that\n was eventually realised. They offer a just- so story to explain with hindsight why that outcome was\n inevitable. Those more deeply informed about the period are much more cognisant of the roads not taken.",
"location": "2",
"chapter": "Part Three: The Unification of Humankind"
},
{
"color": "yellow",
"content": "It is an iron rule of history that what looks inevitable in hindsight was far from obvious at the time.",
"location": "2",
"chapter": "Part Three: The Unification of Humankind"
},
{
"color": "yellow",
"content": "History cannot be explained deterministically and it cannot be predicted because it is chaotic. So many\n forces are at work and their interactions are so complex that extremely small variations in the strength of\n the forces and the way they interact produce huge differences in outcomes.",
"location": "2",
"chapter": "Part Three: The Unification of Humankind"
},
{
"color": "blue",
"content": "history is what is called a ‘level two’ chaotic system. Chaotic systems come in two shapes. Level one chaos\n is chaos that does not react to predictions about it.",
"location": "2",
"chapter": "Part Three: The Unification of Humankind"
},
{
"color": "blue",
"content": "Level two chaos is chaos that reacts to predictions about it, and therefore can never be predicted\n accurately. Markets, for example, are a level two chaotic system.",
"location": "2",
"chapter": "Part Three: The Unification of Humankind"
},
{
"color": "blue",
"content": "Politics, too, is a second- order chaotic system.",
"location": "2",
"chapter": "Part Three: The Unification of Humankind"
},
{
"color": "yellow",
"content": "Unlike physics or economics, history is not a means for making accurate predictions. We study history not to\n know the future but to widen our horizons, to understand that our present situation is neither natural nor\n inevitable, and that we consequently have many more possibilities before us than we imagine.",
"location": "2",
"chapter": "Part Three: The Unification of Humankind"
},
{
"color": "yellow",
"content": "According to this approach, cultures are not conspiracies concocted by some people in order to take\n advantage of others (as Marxists tend to think). Rather, cultures are mental parasites that emerge\n accidentally, and thereafter take advantage of all people infected by them. This approach is sometimes\n called memetics. It assumes that, just as organic evolution is based on the replication of organic\n information units called ‘genes’, so cultural evolution is based on the replication of cultural information\n units called ‘memes’. 1 Successful cultures are those that excel in reproducing their memes, irrespective of\n the costs and benefits to their human hosts.",
"location": "2",
"chapter": "Part Three: The Unification of Humankind"
},
{
"color": "yellow",
"content": "Game theory explains how in multi- player systems, views and behaviour patterns that harm all players\n nevertheless manage to take root and spread.",
"location": "2",
"chapter": "Part Three: The Unification of Humankind"
},
{
"color": "yellow",
"content": "But modern science differs from all previous traditions of knowledge in three critical ways:",
"location": "2",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "yellow",
"content": "The willingness to admit ignorance. Modern science is based on the Latin injunction ignoramus– ‘we do not\n know’.",
"location": "2",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "yellow",
"content": "The centrality of observation and mathematics. Having admitted ignorance, modern science aims to obtain new\n knowledge. It does so by gathering observations and then using mathematical tools to connect these\n observations into comprehensive theories. The acquisition of new powers. Modern science is not content with\n creating theories. It uses these theories in order to acquire new powers, and in particular to develop new\n technologies.",
"location": "2",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "yellow",
"content": "The Scientific Revolution has not been a revolution of knowledge. It has been above all a revolution of\n ignorance. The great discovery that launched the Scientific Revolution was the discovery that humans do not\n know the answers to their most important questions.",
"location": "2",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "yellow",
"content": "Most scientific studies are funded because somebody believes they can help attain some political, economic\n or religious goal. For example, in the sixteenth century, kings and bankers channelled enormous resources to\n finance geographical expeditions around the world but not a penny for studying child psychology. This is\n because kings and bankers surmised that the discovery of new geographical knowledge would enable them to\n conquer new lands and set up trade empires, whereas they couldn’t see any profit in understanding child\n psychology.",
"location": "2",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "yellow",
"content": "In 1775 Asia accounted for 80 per cent of the world economy. The combined economies of India and China alone\n represented two- thirds of global production. In comparison, Europe was an economic dwarf. 3",
"location": "2",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "blue",
"content": "The global centre of power shifted to Europe only between 1750 and 1850, when Europeans humiliated the Asian\n powers in a series of wars and conquered large parts of Asia. By 1900 Europeans firmly controlled the\n world’s economy and most of its territory. In 1950 western Europe and the United States together accounted\n for more than half of global production, whereas China’s portion had been reduced to 5 per cent. 4 Under the\n European aegis a new global order and global culture emerged. Today all humans are, to a much greater extent\n than they usually want to admit, European in dress, thought and taste. They may be fiercely anti- European\n in their rhetoric, but almost everyone on the planet views politics, medicine, war and economics through\n European eyes, and listens to music written in European modes with words in European languages. Even today’s\n burgeoning Chinese economy, which may soon regain its global primacy, is built on a European model of\n production and finance.",
"location": "2",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "pink",
"content": "The Chinese and Persians did not lack technological inventions such as steam engines (which could be freely\n copied or bought). They lacked the values, myths, judicial apparatus and sociopolitical structures that took\n centuries to form and mature in the West and which could not be copied and internalised rapidly. France and\n the United States quickly followed in Britain’s footsteps because the French and Americans already shared\n the most important British myths and social structures. The Chinese and Persians could not catch up as\n quickly because they thought and organised their societies differently.",
"location": "2",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "yellow",
"content": "This explanation sheds new light on the period from 1500 to 1850. During this era Europe did not enjoy any\n obvious technological, political, military or economic advantage over the Asian powers, yet the continent\n built up a unique potential, whose importance suddenly became obvious around 1850.",
"location": "2",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "yellow",
"content": "What potential did Europe develop in the early modern period that enabled it to dominate the late modern\n world? There are two complementary answers to this question: modern science and capitalism. Europeans were\n used to thinking and behaving in a scientific and capitalist way even before they enjoyed any significant\n technological advantages.",
"location": "2",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "yellow",
"content": "The discovery of America was the foundational event of the Scientific Revolution. It not only taught\n Europeans to favour present observations over past traditions, but the desire to conquer America also\n obliged Europeans to search for new knowledge at breakneck speed. If they really wanted to control the vast\n new territories, they had to gather enormous amounts of new data about the geography, climate, flora, fauna,\n languages, cultures and history of the new continent.",
"location": "2",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "blue",
"content": "These European explore- and- conquer expeditions are so familiar to us that we tend to overlook just how\n extraordinary they were. Nothing like them had ever happened before. Long- distance campaigns of conquest\n are not a natural undertaking. Throughout history most human societies were so busy with local conflicts and\n neighbourhood quarrels that they never considered exploring and conquering distant lands. Most great empires\n extended their control only over their immediate neighbourhood– they reached far- flung lands simply because\n their neighbourhood kept expanding.",
"location": "2",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "yellow",
"content": "Modern science and modern empires were motivated by the restless feeling that perhaps something important\n awaited beyond the horizon– something they had better explore and master. Yet the connection between science\n and empire went much deeper. Not just the motivation, but also the practices of empire- builders were\n entangled with those of scientists.",
"location": "2",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "blue",
"content": "For modern Europeans, building an empire was a scientific project, while setting up a scientific discipline\n was an imperial project. When the Muslims conquered India, they did not bring along archaeologists to\n systematically study Indian history, anthropologists to study Indian cultures, geologists to study Indian\n soils, or zoologists to study Indian fauna. When the British conquered India, they did all of these things.\n On 10 April 1802 the Great Survey of India was launched. It lasted sixty years. With the help of tens of\n thousands of native labourers, scholars and guides, the British carefully mapped the whole of India, marking\n borders, measuring distances, and even calculating for the first time the exact height of Mount Everest and\n the other Himalayan peaks. The British explored the military resources of Indian provinces and the location\n of their gold mines, but they also took the trouble to collect information about rare Indian spiders, to\n catalogue colourful butterflies, to trace the ancient origins of extinct Indian languages, and to dig up\n forgotten ruins.",
"location": "2",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "orange",
"content": "the Mauryas, nor the Guptas, nor the Delhi sultans, nor the great Mughals– had given the ruins a second\n glance. But a British archaeological survey took notice of the site in 1922. A British team then excavated\n it, and discovered the first great civilisation of India, which no Indian had been aware of.",
"location": "2",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "yellow",
"content": "Thanks to the work of people like William Jones and Henry Rawlinson, the European conquerors knew their\n empires very well. Far better, indeed, than any previous conquerors, or even than the native population\n itself. Their superior knowledge had obvious practical advantages. Without such knowledge, it is unlikely\n that a ridiculously small number of Britons could have succeeded in governing, oppressing and exploiting so\n many hundreds of millions of Indians for two centuries. Throughout the nineteenth and early twentieth\n centuries, fewer than 5,000 British officials, about 40,000– 70,000 British soldiers, and perhaps another\n 100,000 British business people, hangers- on, wives and children were sufficient to conquer and rule up to\n 300 million Indians.",
"location": "3",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "yellow",
"content": "No less important was the fact that science gave the empires ideological justification. Modern Europeans\n came to believe that acquiring new knowledge was always good. The fact that the empires produced a constant\n stream of new knowledge branded them as progressive and positive enterprises.",
"location": "3",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "pink",
"content": "In truth, neither the narrative of oppression and exploitation nor that of ‘the White Man’s burden’\n completely matches the facts. The European empires did so many different things on such a large scale, that\n you can find plenty of examples to support whatever you want to say about them. You think that these empires\n were evil monstrosities that spread death, oppression and injustice around the world? You could easily fill\n an encyclopedia with their crimes. You want to argue that they in fact improved the conditions of their\n subjects with new medicines, better economic conditions and greater security? You could fill another\n encyclopedia with their achievements. Due to their close cooperation with science, these empires wielded so\n much power and changed the world to such an extent that perhaps they cannot be simply labelled as good or\n evil. They created the world as we know it, including the ideologies we use in order to judge them.",
"location": "3",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "yellow",
"content": "For most of history the economy stayed much the same size. Yes, global production increased, but this was\n due mostly to demographic expansion and the settlement of new lands. Per capita production remained static.\n But all that changed in the modern age. In 1500, global production of goods and services was equal to about\n $ 250 billion; today it hovers around $ 60 trillion. More importantly, in 1500, annual per capita production\n averaged $ 550, while today every man, woman and child produces, on the average, $ 8,800 a year. 1 What\n accounts for this stupendous growth?",
"location": "3",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "yellow",
"content": "Current US banking law permits the bank to repeat this exercise seven more times. The contractor would\n eventually have $ 10 million in his account, even though the bank still has but $ 1 million in its vaults.\n Banks are allowed to loan $ 10 for every dollar they actually possess, which means that 90 per cent of all\n the money in our bank accounts is not covered by actual coins and notes. 2 If all of the account holders at\n Barclays Bank suddenly demand their money, Barclays will promptly collapse (unless the government steps in\n to save it). The same is true of Lloyds, Deutsche Bank, Citibank, and all other banks in the world.",
"location": "3",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "pink",
"content": "It sounds like a giant Ponzi scheme, doesn’t it? But if it’s a fraud, then the entire modern economy is a\n fraud. The fact is, it’s not a deception, but rather a tribute to the amazing abilities of the human\n imagination. What enables banks– and the entire economy– to survive and flourish is our trust in the future.",
"location": "3",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "yellow",
"content": "In the present, she has a lot of dreams, but no tangible resources. The only way she could get her bakery\n built would be to find a contractor willing to work today and receive payment in a few years’ time, if and\n when the bakery starts making money. Alas, such contractors are rare breeds. So our entrepreneur is in a\n bind. Without a bakery, she can’t bake cakes. Without cakes, she can’t make money. Without money, she can’t\n hire a contractor. Without a contractor, she has no bakery.",
"location": "3",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "blue",
"content": "Humankind was trapped in this predicament for thousands of years. As a result, economies remained frozen.\n The way out of the trap was discovered only in the modern era, with the appearance of a new system based on\n trust in the future. In it, people agreed to represent imaginary goods– goods that do not exist in the\n present– with a special kind of money they called ‘credit’. Credit enables us to build the present at the\n expense of the future. It’s founded on the assumption that our future resources are sure to be far more\n abundant than our present resources. A host of new and wonderful opportunities open up if we can build\n things in the present using future income.",
"location": "3",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "yellow",
"content": "Credit arrangements of one kind or another have existed in all known human cultures, going back at least to\n ancient Sumer. The problem in previous eras was not that no one had the idea or knew how to use it. It was\n that people seldom wanted to extend much credit because they didn’t trust that the future would be better\n than the present. They generally believed that times past had been better than their own times and that the\n future would be worse, or at best much the same. To put that in economic terms, they believed that the total\n amount of wealth was limited, if not dwindling. People therefore considered it a bad bet to assume that they\n personally, or their kingdom, or the entire world, would be producing more wealth ten years down the line.\n Business looked like a zero- sum game. Of course, the profits of one particular bakery might rise, but only\n at the expense of the bakery next door. Venice might flourish, but only by impoverishing Genoa. The king of\n England might enrich himself, but only by robbing the king of France. You could cut the pie in many\n different ways, but it never got any bigger.",
"location": "3",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "yellow",
"content": "If the global pie stayed the same size, there was no margin for credit. Credit is the difference between\n today’s pie and tomorrow’s pie. If the pie stays the same, why extend credit? It would be an unacceptable\n risk unless you believed that the baker or king asking for your money might be able to steal a slice from a\n competitor. So it was hard to get a loan in the premodern world, and when you got one it was usually small,\n short- term, and subject to high interest rates. Upstart entrepreneurs thus found it difficult to open new\n bakeries and great kings who wanted to build palaces or wage wars had no choice but to raise the necessary\n funds through high taxes and tariffs. That was fine for kings (as long as their subjects remained docile),\n but a scullery maid who had a great idea for a bakery and wanted to move up in the world generally could\n only dream of wealth while scrubbing down the royal kitchen’s floors.",
"location": "3",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "yellow",
"content": "Then came the Scientific Revolution and the idea of progress. The idea of progress is built on the notion\n that if we admit our ignorance and invest resources in research, things can improve. This idea was soon\n translated into economic terms. Whoever believes in progress believes that geographical discoveries,\n technological inventions and organisational developments can increase the sum total of human production,\n trade and wealth.",
"location": "3",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "yellow",
"content": "Over the last 500 years the idea of progress convinced people to put more and more trust in the future. This\n trust created credit; credit brought real economic growth; and growth strengthened the trust in the future\n and opened the way for even more credit. It didn’t happen overnight– the economy behaved more like a roller\n coaster than a balloon. But over the long run, with the bumps evened out, the general direction was\n unmistakable. Today, there is so much credit in the world that governments, business corporations and\n private individuals easily obtain large, long- term and low- interest loans that far exceed current income.",
"location": "3",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "yellow",
"content": "In 1776 the Scottish economist Adam Smith published The Wealth of Nations, probably the most important\n economics manifesto of all time. In the eighth chapter of its first volume, Smith made the following novel\n argument: when a landlord, a weaver or a shoemaker has greater profits than he needs to maintain his own\n family, he uses the surplus to employ more assistants, in order to further increase his profits. The more\n profits he has, the more assistants he can employ. It follows that an increase in the profits of private\n entrepreneurs is the basis for the increase in collective wealth and prosperity. This may not strike you as\n very original, because we all live in a capitalist world that takes Smith’s argument for granted. We hear\n variations on this theme every day in the news. Yet Smith’s claim that the selfish human urge to increase\n private profits is the basis for collective wealth is one of the most revolutionary ideas in human history–\n revolutionary not just from an economic perspective, but even more so from a moral and political\n perspective. What Smith says is, in fact, that greed is good, and that by becoming richer I benefit\n everybody, not just myself. Egoism is altruism.",
"location": "3",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "yellow",
"content": "In Smith’s story, people become rich not by despoiling their neighbours, but by increasing the overall size\n of the pie. And when the pie grows, everyone benefits. The rich are accordingly the most useful and\n benevolent people in society, because they turn the wheels of growth for everyone’s advantage.",
"location": "3",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "blue",
"content": "All this depends, however, on the rich using their profits to open new factories and hire new employees,\n rather than wasting them on non- productive activities. Smith therefore repeated like a mantra the maxim\n that ‘When profits increase, the landlord or weaver will employ more assistants’ and not ‘When profits\n increase, Scrooge will hoard his money in a chest and take it out only to count his coins.’ A crucial part\n of the modern capitalist economy was the emergence of a new ethic, according to which profits ought to be\n reinvested in production. This brings about more profits, which are again reinvested in production, which\n brings more profits, et cetera ad infinitum. Investments can be made in many ways: enlarging the factory,\n conducting scientific research, developing new products. Yet all these investments must somehow increase\n production and translate into larger profits. In the new capitalist creed, the first and most sacred\n commandment is: ‘The profits of production must be reinvested in increasing production.’",
"location": "3",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "pink",
"content": "That’s why capitalism is called ‘capitalism’. Capitalism distinguishes ‘capital’ from mere ‘wealth’. Capital\n consists of money, goods and resources that are invested in production. Wealth, on the other hand, is buried\n in the ground or wasted on unproductive activities. A pharaoh who pours resources into a non- productive\n pyramid is not a capitalist. A pirate who loots a Spanish treasure fleet and buries a chest full of\n glittering coins on the beach of some Caribbean island is not a capitalist. But a hard- working factory hand\n who reinvests part of his income in the stock market is. The idea that ‘The profits of production must be\n reinvested in increasing production’ sounds trivial. Yet it was alien to most people throughout history.",
"location": "3",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "yellow",
"content": "Over the last few years, banks and governments have been frenziedly printing money. Everybody is terrified\n that the current economic crisis may stop the growth of the economy. So they are creating trillions of\n dollars, euros and yen out of thin air, pumping cheap credit into the system, and hoping that the\n scientists, technicians and engineers will manage to come up with something really big, before the bubble\n bursts. Everything depends on the people in the labs. New discoveries in fields such as biotechnology and\n nanotechnology could create entire new industries, whose profits could back the trillions of make- believe\n money that the banks and governments have created since 2008. If the labs do not fulfil these expectations\n before the bubble bursts, we are heading towards very rough times.",
"location": "3",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "pink",
"content": "The king of Portugal declined. Like a present- day start- up entrepreneur, Columbus did not give up. He\n pitched his idea to other potential investors in Italy, France, England, and again in Portugal. Each time he\n was rejected. He then tried his luck with Ferdinand and Isabella, rulers of newly united Spain. He took on\n some experienced lobbyists, and with their help he managed to convince Queen Isabella to invest. As every\n schoolchild knows, Isabella hit the jackpot. Columbus’ discoveries enabled the Spaniards to conquer America,\n where they established gold and silver mines as well as sugar and tobacco plantations that enriched the\n Spanish kings, bankers and merchants beyond their wildest dreams.",
"location": "3",
"chapter": "Part Four: The Scientific Revolution"
},
{
"color": "blue",
"content": "This was the magic circle of imperial capitalism: credit financed new discoveries; discoveries led to\n colonies; colonies provided profits; profits built trust; and trust translated into more credit.",
"location": "3",