@eightyfourthousand/lib-editing 2026.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (304) hide show
  1. package/.babelrc +12 -0
  2. package/.eslintrc.json +18 -0
  3. package/README.md +7 -0
  4. package/jest.config.ts +10 -0
  5. package/package.json +35 -0
  6. package/postcss.config.mjs +9 -0
  7. package/project.json +29 -0
  8. package/src/fixtures/basic/json.ts +396 -0
  9. package/src/fixtures/toh251/json.ts +4913 -0
  10. package/src/fixtures/toh251/passages.ts +2814 -0
  11. package/src/fixtures/types.ts +8 -0
  12. package/src/index.ts +4 -0
  13. package/src/lib/block.ts +226 -0
  14. package/src/lib/components/editor/BlockEditor.tsx +38 -0
  15. package/src/lib/components/editor/EditorBackMatterPage.tsx +95 -0
  16. package/src/lib/components/editor/EditorBodyPage.tsx +87 -0
  17. package/src/lib/components/editor/EditorHeader.tsx +22 -0
  18. package/src/lib/components/editor/EditorLayout.tsx +62 -0
  19. package/src/lib/components/editor/EditorLeftPanelPage.tsx +27 -0
  20. package/src/lib/components/editor/EditorProvider.tsx +399 -0
  21. package/src/lib/components/editor/PaginationProvider.tsx +472 -0
  22. package/src/lib/components/editor/TitlesBuilder.tsx +40 -0
  23. package/src/lib/components/editor/TranslationBuilder.tsx +171 -0
  24. package/src/lib/components/editor/TranslationEditor.tsx +32 -0
  25. package/src/lib/components/editor/extensions/Abbreviation/Abbreviation.ts +133 -0
  26. package/src/lib/components/editor/extensions/Audio/Audio.ts +69 -0
  27. package/src/lib/components/editor/extensions/Bold.ts +43 -0
  28. package/src/lib/components/editor/extensions/Document.ts +8 -0
  29. package/src/lib/components/editor/extensions/DragHandle/DragHandle.ts +429 -0
  30. package/src/lib/components/editor/extensions/EndNoteLink/EndNoteLink.tsx +39 -0
  31. package/src/lib/components/editor/extensions/EndNoteLink/EndNoteLinkHoverContent.tsx +139 -0
  32. package/src/lib/components/editor/extensions/EndNoteLink/EndNoteLinkMark.ts +236 -0
  33. package/src/lib/components/editor/extensions/EndNoteLink/endnote-utils.ts +412 -0
  34. package/src/lib/components/editor/extensions/GlobalConfig.ts +52 -0
  35. package/src/lib/components/editor/extensions/GlossaryInstance/GlossaryInput.tsx +54 -0
  36. package/src/lib/components/editor/extensions/GlossaryInstance/GlossaryInstance.tsx +129 -0
  37. package/src/lib/components/editor/extensions/GlossaryInstance/GlossaryInstanceNode.ts +148 -0
  38. package/src/lib/components/editor/extensions/Heading/Heading.ts +71 -0
  39. package/src/lib/components/editor/extensions/HoverInputField.tsx +54 -0
  40. package/src/lib/components/editor/extensions/Image.ts +18 -0
  41. package/src/lib/components/editor/extensions/Indent.ts +103 -0
  42. package/src/lib/components/editor/extensions/InternalLink/InternalLink.ts +173 -0
  43. package/src/lib/components/editor/extensions/InternalLink/InternalLinkHoverContent.tsx +137 -0
  44. package/src/lib/components/editor/extensions/InternalLink/InternalLinkInput.tsx +71 -0
  45. package/src/lib/components/editor/extensions/InternalLink/index.ts +1 -0
  46. package/src/lib/components/editor/extensions/Italic.ts +50 -0
  47. package/src/lib/components/editor/extensions/LeadingSpace.ts +106 -0
  48. package/src/lib/components/editor/extensions/Line/LineNode.ts +41 -0
  49. package/src/lib/components/editor/extensions/LineGroup/LineGroupNode.ts +124 -0
  50. package/src/lib/components/editor/extensions/Link/Link.ts +65 -0
  51. package/src/lib/components/editor/extensions/Link/LinkHoverContent.tsx +124 -0
  52. package/src/lib/components/editor/extensions/Link/index.ts +1 -0
  53. package/src/lib/components/editor/extensions/List.ts +74 -0
  54. package/src/lib/components/editor/extensions/Mantra/Mantra.ts +88 -0
  55. package/src/lib/components/editor/extensions/Mention/Mention.ts +184 -0
  56. package/src/lib/components/editor/extensions/Mention/MentionHoverContent.tsx +158 -0
  57. package/src/lib/components/editor/extensions/NodeWrapper.tsx +57 -0
  58. package/src/lib/components/editor/extensions/Paragraph/Paragraph.ts +25 -0
  59. package/src/lib/components/editor/extensions/ParagraphIndent.ts +87 -0
  60. package/src/lib/components/editor/extensions/Passage/EditLabel.tsx +57 -0
  61. package/src/lib/components/editor/extensions/Passage/EditorOptions.tsx +29 -0
  62. package/src/lib/components/editor/extensions/Passage/Passage.tsx +238 -0
  63. package/src/lib/components/editor/extensions/Passage/PassageNode.ts +223 -0
  64. package/src/lib/components/editor/extensions/Passage/ReaderOptions.tsx +55 -0
  65. package/src/lib/components/editor/extensions/Passage/ShowAnnotations.tsx +92 -0
  66. package/src/lib/components/editor/extensions/Passage/index.ts +1 -0
  67. package/src/lib/components/editor/extensions/Passage/label.spec.ts +118 -0
  68. package/src/lib/components/editor/extensions/Passage/label.ts +39 -0
  69. package/src/lib/components/editor/extensions/Placeholder.ts +9 -0
  70. package/src/lib/components/editor/extensions/SlashCommand/SlashCommand.ts +65 -0
  71. package/src/lib/components/editor/extensions/SlashCommand/SuggestionList.tsx +109 -0
  72. package/src/lib/components/editor/extensions/SlashCommand/Suggestions.ts +185 -0
  73. package/src/lib/components/editor/extensions/SmallCaps.ts +110 -0
  74. package/src/lib/components/editor/extensions/StarterKit.ts +36 -0
  75. package/src/lib/components/editor/extensions/Subscript.ts +43 -0
  76. package/src/lib/components/editor/extensions/Superscript.ts +43 -0
  77. package/src/lib/components/editor/extensions/Table.ts +32 -0
  78. package/src/lib/components/editor/extensions/TextAlign.ts +5 -0
  79. package/src/lib/components/editor/extensions/TitleMetadata.ts +40 -0
  80. package/src/lib/components/editor/extensions/TitleNode.ts +133 -0
  81. package/src/lib/components/editor/extensions/TitlesNode.ts +102 -0
  82. package/src/lib/components/editor/extensions/Trailer.ts +57 -0
  83. package/src/lib/components/editor/extensions/TranslationDocument.ts +7 -0
  84. package/src/lib/components/editor/extensions/TranslationMetadata.ts +58 -0
  85. package/src/lib/components/editor/extensions/Underline.ts +43 -0
  86. package/src/lib/components/editor/hooks/index.ts +4 -0
  87. package/src/lib/components/editor/hooks/useBlockEditor.ts +53 -0
  88. package/src/lib/components/editor/hooks/useDefaultExtensions.ts +39 -0
  89. package/src/lib/components/editor/hooks/useDirtyStore.ts +33 -0
  90. package/src/lib/components/editor/hooks/useTranslationExtensions.ts +148 -0
  91. package/src/lib/components/editor/index.ts +10 -0
  92. package/src/lib/components/editor/menus/EmptyBubbleMenu.tsx +42 -0
  93. package/src/lib/components/editor/menus/MainBubbleMenu.tsx +51 -0
  94. package/src/lib/components/editor/menus/TranslationBubbleMenu.tsx +57 -0
  95. package/src/lib/components/editor/menus/index.ts +3 -0
  96. package/src/lib/components/editor/menus/selectors/EndNoteSelector.tsx +388 -0
  97. package/src/lib/components/editor/menus/selectors/GlossarySelector.tsx +63 -0
  98. package/src/lib/components/editor/menus/selectors/LinkSelector.tsx +68 -0
  99. package/src/lib/components/editor/menus/selectors/MantraSelector.tsx +119 -0
  100. package/src/lib/components/editor/menus/selectors/NodeSelector.tsx +144 -0
  101. package/src/lib/components/editor/menus/selectors/ParagraphButtons.tsx +68 -0
  102. package/src/lib/components/editor/menus/selectors/SelectorInputField.tsx +68 -0
  103. package/src/lib/components/editor/menus/selectors/TextAlignSelector.tsx +89 -0
  104. package/src/lib/components/editor/menus/selectors/TextButtons.tsx +89 -0
  105. package/src/lib/components/editor/menus/selectors/TranslationNodeSelector.tsx +143 -0
  106. package/src/lib/components/editor/menus/selectors/TranslationTextButtons.tsx +125 -0
  107. package/src/lib/components/editor/menus/selectors/index.ts +5 -0
  108. package/src/lib/components/editor/save-filter.spec.ts +94 -0
  109. package/src/lib/components/editor/save-filter.ts +27 -0
  110. package/src/lib/components/editor/util.ts +304 -0
  111. package/src/lib/components/index.ts +3 -0
  112. package/src/lib/components/reader/ReaderBackMatterPage.tsx +62 -0
  113. package/src/lib/components/reader/ReaderBackMatterPanel.tsx +53 -0
  114. package/src/lib/components/reader/ReaderBodyPage.tsx +46 -0
  115. package/src/lib/components/reader/ReaderBodyPanel.tsx +68 -0
  116. package/src/lib/components/reader/ReaderLayout.tsx +39 -0
  117. package/src/lib/components/reader/ReaderLeftPanel.tsx +8 -0
  118. package/src/lib/components/reader/ReaderLeftPanelPage.tsx +31 -0
  119. package/src/lib/components/reader/TranslationReader.tsx +28 -0
  120. package/src/lib/components/reader/index.ts +2 -0
  121. package/src/lib/components/reader/ssr.ts +3 -0
  122. package/src/lib/components/shared/AiSummarizerPage.tsx +12 -0
  123. package/src/lib/components/shared/BackMatterPanel.tsx +143 -0
  124. package/src/lib/components/shared/BodyPanel.tsx +214 -0
  125. package/src/lib/components/shared/HoverCardProvider.tsx +407 -0
  126. package/src/lib/components/shared/Imprint.tsx +24 -0
  127. package/src/lib/components/shared/LabeledElement.tsx +133 -0
  128. package/src/lib/components/shared/LeftPanel.tsx +65 -0
  129. package/src/lib/components/shared/NavigationContext.ts +64 -0
  130. package/src/lib/components/shared/NavigationProvider.tsx +368 -0
  131. package/src/lib/components/shared/OpenGraphImage.tsx +75 -0
  132. package/src/lib/components/shared/PassageSkeleton.tsx +10 -0
  133. package/src/lib/components/shared/RestrictionWarning.tsx +177 -0
  134. package/src/lib/components/shared/SourceReader.tsx +83 -0
  135. package/src/lib/components/shared/SuggestRevisionForm.tsx +99 -0
  136. package/src/lib/components/shared/TableOfContents.tsx +280 -0
  137. package/src/lib/components/shared/ThreeColumnRenderer.tsx +54 -0
  138. package/src/lib/components/shared/TranslationHeader.tsx +86 -0
  139. package/src/lib/components/shared/TranslationHoverCard.tsx +84 -0
  140. package/src/lib/components/shared/TranslationSkeleton.tsx +16 -0
  141. package/src/lib/components/shared/TranslationTable.tsx +155 -0
  142. package/src/lib/components/shared/bibliography/BibliographyBody.tsx +28 -0
  143. package/src/lib/components/shared/bibliography/BibliographyList.tsx +63 -0
  144. package/src/lib/components/shared/bibliography/index.ts +1 -0
  145. package/src/lib/components/shared/generate-metadata.ts +44 -0
  146. package/src/lib/components/shared/glossary/GlossaryInstanceBody.tsx +144 -0
  147. package/src/lib/components/shared/glossary/GlossaryPaginationProvider.tsx +317 -0
  148. package/src/lib/components/shared/glossary/GlossarySkeleton.tsx +19 -0
  149. package/src/lib/components/shared/glossary/GlossaryTermList.tsx +58 -0
  150. package/src/lib/components/shared/glossary/index.ts +3 -0
  151. package/src/lib/components/shared/hooks/useGlossaryInstanceListener.tsx +42 -0
  152. package/src/lib/components/shared/hooks/useScrollInTab.tsx +43 -0
  153. package/src/lib/components/shared/hooks/useScrollPositionRestore.ts +274 -0
  154. package/src/lib/components/shared/hooks/useTohToggle.tsx +52 -0
  155. package/src/lib/components/shared/index.ts +11 -0
  156. package/src/lib/components/shared/ssr.ts +2 -0
  157. package/src/lib/components/shared/titles/FramedCard.tsx +132 -0
  158. package/src/lib/components/shared/titles/LongTitle.tsx +20 -0
  159. package/src/lib/components/shared/titles/LongTitles.tsx +28 -0
  160. package/src/lib/components/shared/titles/Title.tsx +54 -0
  161. package/src/lib/components/shared/titles/TitleDetails.tsx +47 -0
  162. package/src/lib/components/shared/titles/TitleForm.tsx +37 -0
  163. package/src/lib/components/shared/titles/Titles.tsx +114 -0
  164. package/src/lib/components/shared/titles/TitlesCard.tsx +113 -0
  165. package/src/lib/components/shared/titles/index.ts +8 -0
  166. package/src/lib/components/shared/types.ts +79 -0
  167. package/src/lib/components/ssr.ts +2 -0
  168. package/src/lib/exporters/abbreviation.spec.ts +31 -0
  169. package/src/lib/exporters/abbreviation.ts +22 -0
  170. package/src/lib/exporters/annotation.ts +193 -0
  171. package/src/lib/exporters/audio.spec.ts +77 -0
  172. package/src/lib/exporters/audio.ts +27 -0
  173. package/src/lib/exporters/blockquote.spec.ts +48 -0
  174. package/src/lib/exporters/blockquote.ts +24 -0
  175. package/src/lib/exporters/code.spec.ts +93 -0
  176. package/src/lib/exporters/code.ts +26 -0
  177. package/src/lib/exporters/end-note-link.spec.ts +104 -0
  178. package/src/lib/exporters/end-note-link.ts +35 -0
  179. package/src/lib/exporters/export.ts +12 -0
  180. package/src/lib/exporters/glossary-instance.spec.ts +85 -0
  181. package/src/lib/exporters/glossary-instance.ts +31 -0
  182. package/src/lib/exporters/has-abbreviation.spec.ts +31 -0
  183. package/src/lib/exporters/has-abbreviation.ts +21 -0
  184. package/src/lib/exporters/heading.spec.ts +80 -0
  185. package/src/lib/exporters/heading.ts +28 -0
  186. package/src/lib/exporters/image.spec.ts +48 -0
  187. package/src/lib/exporters/image.ts +25 -0
  188. package/src/lib/exporters/indent.spec.ts +58 -0
  189. package/src/lib/exporters/indent.ts +18 -0
  190. package/src/lib/exporters/index.ts +1 -0
  191. package/src/lib/exporters/internal-link.spec.ts +90 -0
  192. package/src/lib/exporters/internal-link.ts +35 -0
  193. package/src/lib/exporters/italic.spec.ts +84 -0
  194. package/src/lib/exporters/italic.ts +55 -0
  195. package/src/lib/exporters/leading-space.spec.ts +28 -0
  196. package/src/lib/exporters/leading-space.ts +16 -0
  197. package/src/lib/exporters/line-group.spec.ts +48 -0
  198. package/src/lib/exporters/line-group.ts +24 -0
  199. package/src/lib/exporters/line.spec.ts +48 -0
  200. package/src/lib/exporters/line.ts +24 -0
  201. package/src/lib/exporters/link.spec.ts +123 -0
  202. package/src/lib/exporters/link.ts +67 -0
  203. package/src/lib/exporters/list-item.spec.ts +48 -0
  204. package/src/lib/exporters/list-item.ts +24 -0
  205. package/src/lib/exporters/list.spec.ts +82 -0
  206. package/src/lib/exporters/list.ts +31 -0
  207. package/src/lib/exporters/mantra.spec.ts +51 -0
  208. package/src/lib/exporters/mantra.ts +25 -0
  209. package/src/lib/exporters/mention.ts +41 -0
  210. package/src/lib/exporters/paragraph.spec.ts +173 -0
  211. package/src/lib/exporters/paragraph.ts +32 -0
  212. package/src/lib/exporters/quote.spec.ts +56 -0
  213. package/src/lib/exporters/quote.ts +25 -0
  214. package/src/lib/exporters/span.spec.ts +118 -0
  215. package/src/lib/exporters/span.ts +44 -0
  216. package/src/lib/exporters/table-body-data.spec.ts +48 -0
  217. package/src/lib/exporters/table-body-data.ts +24 -0
  218. package/src/lib/exporters/table-body-header.spec.ts +48 -0
  219. package/src/lib/exporters/table-body-header.ts +24 -0
  220. package/src/lib/exporters/table-body-row.spec.ts +48 -0
  221. package/src/lib/exporters/table-body-row.ts +24 -0
  222. package/src/lib/exporters/table.spec.ts +48 -0
  223. package/src/lib/exporters/table.ts +24 -0
  224. package/src/lib/exporters/trailer.spec.ts +48 -0
  225. package/src/lib/exporters/trailer.ts +24 -0
  226. package/src/lib/exporters/util.ts +62 -0
  227. package/src/lib/passage.ts +182 -0
  228. package/src/lib/titles.ts +80 -0
  229. package/src/lib/transformers/abbreviation.spec.ts +87 -0
  230. package/src/lib/transformers/abbreviation.ts +30 -0
  231. package/src/lib/transformers/annotate.ts +146 -0
  232. package/src/lib/transformers/audio.spec.ts +55 -0
  233. package/src/lib/transformers/audio.ts +29 -0
  234. package/src/lib/transformers/blockquote.spec.ts +48 -0
  235. package/src/lib/transformers/blockquote.ts +41 -0
  236. package/src/lib/transformers/code.spec.ts +52 -0
  237. package/src/lib/transformers/code.ts +22 -0
  238. package/src/lib/transformers/deprecated.ts +7 -0
  239. package/src/lib/transformers/end-note-link.spec.ts +56 -0
  240. package/src/lib/transformers/end-note-link.ts +76 -0
  241. package/src/lib/transformers/glossary-instance.spec.ts +55 -0
  242. package/src/lib/transformers/glossary-instance.ts +40 -0
  243. package/src/lib/transformers/has-abbreviation.spec.ts +50 -0
  244. package/src/lib/transformers/has-abbreviation.ts +30 -0
  245. package/src/lib/transformers/heading.spec.ts +62 -0
  246. package/src/lib/transformers/heading.ts +30 -0
  247. package/src/lib/transformers/image.spec.ts +51 -0
  248. package/src/lib/transformers/image.ts +28 -0
  249. package/src/lib/transformers/indent.spec.ts +53 -0
  250. package/src/lib/transformers/indent.ts +17 -0
  251. package/src/lib/transformers/index.ts +33 -0
  252. package/src/lib/transformers/inline-title.spec.ts +59 -0
  253. package/src/lib/transformers/inline-title.ts +34 -0
  254. package/src/lib/transformers/internal-link.spec.ts +67 -0
  255. package/src/lib/transformers/internal-link.ts +65 -0
  256. package/src/lib/transformers/italic.ts +22 -0
  257. package/src/lib/transformers/leading-space.spec.ts +55 -0
  258. package/src/lib/transformers/leading-space.ts +17 -0
  259. package/src/lib/transformers/line-group.spec.ts +48 -0
  260. package/src/lib/transformers/line-group.ts +37 -0
  261. package/src/lib/transformers/line.spec.ts +54 -0
  262. package/src/lib/transformers/line.ts +27 -0
  263. package/src/lib/transformers/link.spec.ts +61 -0
  264. package/src/lib/transformers/link.ts +27 -0
  265. package/src/lib/transformers/list-item.spec.ts +48 -0
  266. package/src/lib/transformers/list-item.ts +37 -0
  267. package/src/lib/transformers/list.spec.ts +58 -0
  268. package/src/lib/transformers/list.ts +42 -0
  269. package/src/lib/transformers/mantra.spec.ts +58 -0
  270. package/src/lib/transformers/mantra.ts +28 -0
  271. package/src/lib/transformers/mention.ts +70 -0
  272. package/src/lib/transformers/paragraph.spec.ts +46 -0
  273. package/src/lib/transformers/paragraph.ts +26 -0
  274. package/src/lib/transformers/quote.spec.ts +42 -0
  275. package/src/lib/transformers/quote.ts +3 -0
  276. package/src/lib/transformers/quoted.ts +3 -0
  277. package/src/lib/transformers/recurse.ts +76 -0
  278. package/src/lib/transformers/reference.ts +3 -0
  279. package/src/lib/transformers/span.spec.ts +68 -0
  280. package/src/lib/transformers/span.ts +78 -0
  281. package/src/lib/transformers/split-at.ts +58 -0
  282. package/src/lib/transformers/split-block.ts +110 -0
  283. package/src/lib/transformers/split-content.ts +67 -0
  284. package/src/lib/transformers/split-insert.ts +76 -0
  285. package/src/lib/transformers/split-marks.ts +42 -0
  286. package/src/lib/transformers/split-node.ts +138 -0
  287. package/src/lib/transformers/table-body-data.spec.ts +44 -0
  288. package/src/lib/transformers/table-body-data.ts +29 -0
  289. package/src/lib/transformers/table-body-header.spec.ts +44 -0
  290. package/src/lib/transformers/table-body-header.ts +29 -0
  291. package/src/lib/transformers/table-body-row.spec.ts +44 -0
  292. package/src/lib/transformers/table-body-row.ts +29 -0
  293. package/src/lib/transformers/table.spec.ts +47 -0
  294. package/src/lib/transformers/table.ts +29 -0
  295. package/src/lib/transformers/trailer.spec.ts +43 -0
  296. package/src/lib/transformers/trailer.ts +26 -0
  297. package/src/lib/transformers/transformer.ts +25 -0
  298. package/src/lib/transformers/unknown.ts +8 -0
  299. package/src/lib/transformers/util.ts +20 -0
  300. package/src/lib/types.ts +10 -0
  301. package/src/ssr.ts +1 -0
  302. package/tsconfig.json +20 -0
  303. package/tsconfig.lib.json +29 -0
  304. package/tsconfig.spec.json +22 -0
@@ -0,0 +1,4913 @@
1
+ import { TranslationEditorContent } from '../../lib/components';
2
+ import { EditorType } from '../types';
3
+
4
+ export const type: EditorType = 'translation';
5
+
6
+ export const content: TranslationEditorContent = [
7
+ {
8
+ type: 'passage',
9
+ attrs: {
10
+ uuid: '1bf5e88d-b25d-435d-8b8d-ccaa305efef4',
11
+ sort: 2,
12
+ type: 'summaryHeader',
13
+ label: 's.',
14
+ alignments: {},
15
+ },
16
+ content: [
17
+ {
18
+ type: 'heading',
19
+ attrs: {
20
+ level: 2,
21
+ start: 0,
22
+ end: 7,
23
+ uuid: 'ca3f2d68-7689-4d37-afe2-373d437fbb36',
24
+ class: 'section-title',
25
+ },
26
+ content: [
27
+ {
28
+ type: 'text',
29
+ text: 'Summary',
30
+ attrs: {
31
+ start: 0,
32
+ end: 7,
33
+ },
34
+ },
35
+ ],
36
+ },
37
+ ],
38
+ },
39
+ {
40
+ type: 'passage',
41
+ attrs: {
42
+ uuid: '29af456a-931e-4098-bda8-0e6f584ca49d',
43
+ sort: 4,
44
+ type: 'summary',
45
+ label: 's.1',
46
+ alignments: {},
47
+ },
48
+ content: [
49
+ {
50
+ type: 'paragraph',
51
+ attrs: {
52
+ start: 0,
53
+ end: 517,
54
+ uuid: '29af456a-931e-4098-bda8-0e6f584ca49d',
55
+ },
56
+ content: [
57
+ {
58
+ type: 'text',
59
+ text: 'While residing in the ',
60
+ attrs: {
61
+ start: 0,
62
+ end: 22,
63
+ },
64
+ },
65
+ {
66
+ type: 'text',
67
+ text: 'Jeta’s Grove',
68
+ attrs: {
69
+ start: 22,
70
+ end: 34,
71
+ },
72
+ marks: [
73
+ {
74
+ type: 'glossaryInstance',
75
+ attrs: {
76
+ glossary: '7fc58f66-5fbb-4973-8744-f6589f8aae97',
77
+ uuid: 'c84f3056-99ca-403b-baa7-d365ab7e41c2',
78
+ },
79
+ },
80
+ ],
81
+ },
82
+ {
83
+ type: 'text',
84
+ text: ' in ',
85
+ attrs: {
86
+ start: 34,
87
+ end: 38,
88
+ },
89
+ },
90
+ {
91
+ type: 'text',
92
+ text: 'Śrāvastī',
93
+ attrs: {
94
+ start: 38,
95
+ end: 46,
96
+ },
97
+ marks: [
98
+ {
99
+ type: 'glossaryInstance',
100
+ attrs: {
101
+ glossary: 'f2a07704-3c71-4f05-8e6a-5d326406fae2',
102
+ uuid: '5ba67072-54e0-4b5c-a446-6aaa11eb6053',
103
+ },
104
+ },
105
+ ],
106
+ },
107
+ {
108
+ type: 'text',
109
+ text: ', the Buddha explains to an assembly of monks and bodhisattvas four factors of the path that bodhisattvas must not abandon even at the cost of their lives: (1) the ',
110
+ attrs: {
111
+ start: 46,
112
+ end: 210,
113
+ },
114
+ },
115
+ {
116
+ type: 'text',
117
+ text: 'thought of awakening',
118
+ attrs: {
119
+ start: 210,
120
+ end: 230,
121
+ },
122
+ marks: [
123
+ {
124
+ type: 'glossaryInstance',
125
+ attrs: {
126
+ glossary: '445f17ca-164b-4c68-82a3-f9f3ee3595b6',
127
+ uuid: 'b9c0010a-3b22-40c6-b85b-bc6437ab1740',
128
+ },
129
+ },
130
+ ],
131
+ },
132
+ {
133
+ type: 'text',
134
+ text: ', (2) the ',
135
+ attrs: {
136
+ start: 230,
137
+ end: 240,
138
+ },
139
+ },
140
+ {
141
+ type: 'text',
142
+ text: 'spiritual friend',
143
+ attrs: {
144
+ start: 240,
145
+ end: 256,
146
+ },
147
+ marks: [
148
+ {
149
+ type: 'glossaryInstance',
150
+ attrs: {
151
+ glossary: '4049f21f-fa6c-4180-80f5-0750c14162da',
152
+ uuid: 'e05d0163-3b41-46df-8eba-f6e0a34e5b83',
153
+ },
154
+ },
155
+ ],
156
+ },
157
+ {
158
+ type: 'text',
159
+ text: ', (3) ',
160
+ attrs: {
161
+ start: 256,
162
+ end: 262,
163
+ },
164
+ },
165
+ {
166
+ type: 'text',
167
+ text: 'tolerance',
168
+ attrs: {
169
+ start: 262,
170
+ end: 271,
171
+ },
172
+ marks: [
173
+ {
174
+ type: 'glossaryInstance',
175
+ attrs: {
176
+ glossary: '3268038f-cca4-471a-94b3-13c62c85b7ca',
177
+ uuid: 'e2c29dee-968f-49c2-9a35-d4f8fa6ac26f',
178
+ },
179
+ },
180
+ ],
181
+ },
182
+ {
183
+ type: 'text',
184
+ text: ' and ',
185
+ attrs: {
186
+ start: 271,
187
+ end: 276,
188
+ },
189
+ },
190
+ {
191
+ type: 'text',
192
+ text: 'lenience',
193
+ attrs: {
194
+ start: 276,
195
+ end: 284,
196
+ },
197
+ marks: [
198
+ {
199
+ type: 'glossaryInstance',
200
+ attrs: {
201
+ glossary: '4f7a6a56-6c00-43a0-b457-f3e741364a05',
202
+ uuid: '9e8f4286-3a2f-4ec6-954d-49894ace7797',
203
+ },
204
+ },
205
+ ],
206
+ },
207
+ {
208
+ type: 'text',
209
+ text: ' (which are here counted as one), and (4) ',
210
+ attrs: {
211
+ start: 284,
212
+ end: 326,
213
+ },
214
+ },
215
+ {
216
+ type: 'text',
217
+ text: 'dwelling in the wilderness',
218
+ attrs: {
219
+ start: 326,
220
+ end: 352,
221
+ },
222
+ marks: [
223
+ {
224
+ type: 'glossaryInstance',
225
+ attrs: {
226
+ glossary: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
227
+ uuid: 'daa8f2de-672e-47b9-944d-aa6df327cc85',
228
+ },
229
+ },
230
+ ],
231
+ },
232
+ {
233
+ type: 'text',
234
+ text: '. The sūtra concludes with two verses in which the Buddha restates the four factors and asserts that those who do not relinquish them will attain complete awakening.',
235
+ attrs: {
236
+ start: 352,
237
+ end: 517,
238
+ },
239
+ },
240
+ ],
241
+ },
242
+ ],
243
+ },
244
+ {
245
+ type: 'passage',
246
+ attrs: {
247
+ uuid: '598d0186-3b3e-456f-8d1f-8b64042c7f7c',
248
+ sort: 20,
249
+ type: 'acknowledgmentHeader',
250
+ label: 'ac.',
251
+ alignments: {},
252
+ },
253
+ content: [
254
+ {
255
+ type: 'heading',
256
+ attrs: {
257
+ level: 2,
258
+ start: 0,
259
+ end: 16,
260
+ uuid: '1e1ada36-bdb8-4ab4-aaad-fbb71e7a3dd5',
261
+ class: 'section-title',
262
+ },
263
+ content: [
264
+ {
265
+ type: 'text',
266
+ text: 'Acknowledgements',
267
+ attrs: {
268
+ start: 0,
269
+ end: 16,
270
+ },
271
+ },
272
+ ],
273
+ },
274
+ ],
275
+ },
276
+ {
277
+ type: 'passage',
278
+ attrs: {
279
+ uuid: '34760e3e-0cb0-4bfa-b523-cf305f94b393',
280
+ sort: 22,
281
+ type: 'acknowledgment',
282
+ label: 'ac.1',
283
+ alignments: {},
284
+ },
285
+ content: [
286
+ {
287
+ type: 'paragraph',
288
+ attrs: {
289
+ start: 0,
290
+ end: 167,
291
+ uuid: '34760e3e-0cb0-4bfa-b523-cf305f94b393',
292
+ },
293
+ content: [
294
+ {
295
+ type: 'text',
296
+ text: 'The translation was completed by Adam Pearcey under the patronage and supervision of 84000: Translating the Words of the Buddha and edited by the 84000 editorial team.',
297
+ attrs: {
298
+ start: 0,
299
+ end: 167,
300
+ },
301
+ },
302
+ ],
303
+ },
304
+ ],
305
+ },
306
+ {
307
+ type: 'passage',
308
+ attrs: {
309
+ uuid: 'e74a4608-44d2-41ae-8017-a2b2ea02574a',
310
+ sort: 24,
311
+ type: 'introductionHeader',
312
+ label: 'i.',
313
+ alignments: {},
314
+ },
315
+ content: [
316
+ {
317
+ type: 'heading',
318
+ attrs: {
319
+ level: 2,
320
+ start: 0,
321
+ end: 12,
322
+ uuid: '3a1e9427-0485-4753-80ca-8929daf94585',
323
+ class: 'section-title',
324
+ },
325
+ content: [
326
+ {
327
+ type: 'text',
328
+ text: 'Introduction',
329
+ attrs: {
330
+ start: 0,
331
+ end: 12,
332
+ },
333
+ },
334
+ ],
335
+ },
336
+ ],
337
+ },
338
+ {
339
+ type: 'passage',
340
+ attrs: {
341
+ uuid: 'a2928923-0f9c-4ccc-8285-728a1a3c6b83',
342
+ sort: 26,
343
+ type: 'introduction',
344
+ label: 'i.1',
345
+ alignments: {},
346
+ },
347
+ content: [
348
+ {
349
+ type: 'paragraph',
350
+ attrs: {
351
+ start: 0,
352
+ end: 332,
353
+ uuid: 'a2928923-0f9c-4ccc-8285-728a1a3c6b83',
354
+ },
355
+ content: [
356
+ {
357
+ type: 'text',
358
+ text: 'The Noble Mahāyāna Sūtra on the Four Factors ',
359
+ attrs: {
360
+ start: 0,
361
+ end: 45,
362
+ },
363
+ marks: [
364
+ {
365
+ type: 'italic',
366
+ attrs: {
367
+ uuid: 'a4c61f15-5acb-4007-bd64-7b668d94b2a6',
368
+ lang: 'en',
369
+ type: 'inlineTitle',
370
+ },
371
+ },
372
+ ],
373
+ },
374
+ {
375
+ type: 'text',
376
+ text: '(',
377
+ attrs: {
378
+ start: 45,
379
+ end: 46,
380
+ },
381
+ },
382
+ {
383
+ type: 'text',
384
+ text: 'Ārya­catur­dharmaka­nāma­mahā­yāna sūtra)',
385
+ attrs: {
386
+ start: 46,
387
+ end: 87,
388
+ },
389
+ marks: [
390
+ {
391
+ type: 'italic',
392
+ attrs: {
393
+ uuid: '900771e9-2305-49c1-9514-2eeda2318021',
394
+ lang: 'Sa-Ltn',
395
+ type: 'inlineTitle',
396
+ },
397
+ },
398
+ ],
399
+ },
400
+ {
401
+ type: 'text',
402
+ text: ' is the third of three short sūtras with similar titles (all referring to sets of four ',
403
+ attrs: {
404
+ start: 87,
405
+ end: 174,
406
+ },
407
+ },
408
+ {
409
+ type: 'text',
410
+ text: 'dharmas',
411
+ attrs: {
412
+ start: 174,
413
+ end: 181,
414
+ },
415
+ marks: [
416
+ {
417
+ type: 'italic',
418
+ attrs: {
419
+ start: 174,
420
+ end: 181,
421
+ uuid: '53647c8d-c64b-4533-b381-6ff17fb994cb',
422
+ type: 'span',
423
+ lang: 'Sa-Ltn',
424
+ textStyle: 'foreign',
425
+ },
426
+ },
427
+ ],
428
+ },
429
+ {
430
+ type: 'text',
431
+ text: ' or factors of the path). In many Kangyurs (predominantly those of Tshalpa origin, including the Degé Kangyur) these sūtras are found grouped together.',
432
+ attrs: {
433
+ start: 181,
434
+ end: 332,
435
+ },
436
+ },
437
+ ],
438
+ },
439
+ ],
440
+ },
441
+ {
442
+ type: 'passage',
443
+ attrs: {
444
+ uuid: 'f5faeec0-ad74-4c36-aab7-a1f492694460',
445
+ sort: 33,
446
+ type: 'introduction',
447
+ label: 'i.2',
448
+ alignments: {},
449
+ },
450
+ content: [
451
+ {
452
+ type: 'paragraph',
453
+ attrs: {
454
+ start: 0,
455
+ end: 640,
456
+ uuid: 'f5faeec0-ad74-4c36-aab7-a1f492694460',
457
+ },
458
+ content: [
459
+ {
460
+ type: 'text',
461
+ text: 'Of the other sūtras in this set, ',
462
+ attrs: {
463
+ start: 0,
464
+ end: 33,
465
+ },
466
+ },
467
+ {
468
+ type: 'text',
469
+ text: 'The Sūtra Teaching the Four Factors ',
470
+ attrs: {
471
+ start: 33,
472
+ end: 69,
473
+ },
474
+ marks: [
475
+ {
476
+ type: 'italic',
477
+ attrs: {
478
+ uuid: '6e26360d-627d-4a9e-91e6-a81e2b38432a',
479
+ lang: 'en',
480
+ type: 'inlineTitle',
481
+ },
482
+ },
483
+ ],
484
+ },
485
+ {
486
+ type: 'text',
487
+ text: '(Toh 249)',
488
+ attrs: {
489
+ start: 69,
490
+ end: 78,
491
+ },
492
+ marks: [
493
+ {
494
+ type: 'endNoteLink',
495
+ attrs: {
496
+ notes: [
497
+ {
498
+ endNote: '2cb57e37-0798-4d57-81ae-eb25b4822a16',
499
+ label: '1',
500
+ uuid: '1b1d26bc-4f47-44c3-a6e0-f2ff94f38116',
501
+ start: 78,
502
+ end: 78,
503
+ location: 'end',
504
+ },
505
+ ],
506
+ },
507
+ },
508
+ ],
509
+ },
510
+ {
511
+ type: 'text',
512
+ text: ' is concerned with the four factors necessary for the practice of confession, while ',
513
+ attrs: {
514
+ start: 78,
515
+ end: 162,
516
+ },
517
+ },
518
+ {
519
+ type: 'text',
520
+ text: 'The Four Factors ',
521
+ attrs: {
522
+ start: 162,
523
+ end: 179,
524
+ },
525
+ marks: [
526
+ {
527
+ type: 'italic',
528
+ attrs: {
529
+ uuid: '159a9e7f-d8fb-46ae-8a2c-7ea20a831291',
530
+ lang: 'en',
531
+ type: 'inlineTitle',
532
+ },
533
+ },
534
+ ],
535
+ },
536
+ {
537
+ type: 'text',
538
+ text: '(Toh 250)',
539
+ attrs: {
540
+ start: 179,
541
+ end: 188,
542
+ },
543
+ marks: [
544
+ {
545
+ type: 'endNoteLink',
546
+ attrs: {
547
+ notes: [
548
+ {
549
+ endNote: '24ee6eb1-a9ce-4447-b1f4-b38fb8e4a426',
550
+ label: '2',
551
+ uuid: '30d3420e-b3f8-4b41-97e7-94242c6ad9a2',
552
+ start: 188,
553
+ end: 188,
554
+ location: 'end',
555
+ },
556
+ ],
557
+ },
558
+ },
559
+ ],
560
+ },
561
+ {
562
+ type: 'text',
563
+ text: ' identifies four beliefs that a wise son of a good family should not accept as true. Two further works, ',
564
+ attrs: {
565
+ start: 188,
566
+ end: 292,
567
+ },
568
+ },
569
+ {
570
+ type: 'text',
571
+ text: 'The Accomplishment of the Sets of Four Qualities: The Bodhisattvas’ Prātimokṣa ',
572
+ attrs: {
573
+ start: 292,
574
+ end: 371,
575
+ },
576
+ marks: [
577
+ {
578
+ type: 'italic',
579
+ attrs: {
580
+ uuid: '4681e4c3-f07f-49c2-b061-9fec15722cb2',
581
+ lang: 'en',
582
+ type: 'inlineTitle',
583
+ },
584
+ },
585
+ ],
586
+ },
587
+ {
588
+ type: 'text',
589
+ text: '(Toh 248)',
590
+ attrs: {
591
+ start: 371,
592
+ end: 380,
593
+ },
594
+ marks: [
595
+ {
596
+ type: 'endNoteLink',
597
+ attrs: {
598
+ notes: [
599
+ {
600
+ endNote: '5c383b48-6d8b-4976-b8bd-1bab3f5a16d4',
601
+ label: '3',
602
+ uuid: 'badbdb97-b3e8-4dca-b31c-0a28c8432e6f',
603
+ start: 380,
604
+ end: 380,
605
+ location: 'end',
606
+ },
607
+ ],
608
+ },
609
+ },
610
+ ],
611
+ },
612
+ {
613
+ type: 'text',
614
+ text: ' and ',
615
+ attrs: {
616
+ start: 380,
617
+ end: 385,
618
+ },
619
+ },
620
+ {
621
+ type: 'text',
622
+ text: 'The Fourfold Accomplishment ',
623
+ attrs: {
624
+ start: 385,
625
+ end: 413,
626
+ },
627
+ marks: [
628
+ {
629
+ type: 'italic',
630
+ attrs: {
631
+ uuid: 'e085cc9f-637c-4c8c-bcb1-f62d6d47c3f3',
632
+ lang: 'en',
633
+ type: 'inlineTitle',
634
+ },
635
+ },
636
+ ],
637
+ },
638
+ {
639
+ type: 'text',
640
+ text: '(Toh 252)',
641
+ attrs: {
642
+ start: 413,
643
+ end: 422,
644
+ },
645
+ marks: [
646
+ {
647
+ type: 'endNoteLink',
648
+ attrs: {
649
+ notes: [
650
+ {
651
+ endNote: 'd4bb4496-9915-45e9-9b41-6f4744056d34',
652
+ label: '4',
653
+ uuid: '54c51c32-4597-4174-9e23-184521c456e3',
654
+ start: 422,
655
+ end: 422,
656
+ location: 'end',
657
+ },
658
+ ],
659
+ },
660
+ },
661
+ ],
662
+ },
663
+ {
664
+ type: 'text',
665
+ text: ' also concern themselves with “sets of four” (',
666
+ attrs: {
667
+ start: 422,
668
+ end: 468,
669
+ },
670
+ },
671
+ {
672
+ type: 'text',
673
+ text: 'catuṣka',
674
+ attrs: {
675
+ start: 468,
676
+ end: 475,
677
+ },
678
+ marks: [
679
+ {
680
+ type: 'italic',
681
+ attrs: {
682
+ start: 468,
683
+ end: 475,
684
+ uuid: '66346061-42b1-46ae-844d-a04f5bb9378b',
685
+ type: 'span',
686
+ lang: 'Sa-Ltn',
687
+ textStyle: 'foreign',
688
+ },
689
+ },
690
+ ],
691
+ },
692
+ {
693
+ type: 'text',
694
+ text: ', ',
695
+ attrs: {
696
+ start: 475,
697
+ end: 477,
698
+ },
699
+ },
700
+ {
701
+ type: 'text',
702
+ text: 'bzhi pa',
703
+ attrs: {
704
+ start: 477,
705
+ end: 484,
706
+ },
707
+ marks: [
708
+ {
709
+ type: 'italic',
710
+ attrs: {
711
+ start: 477,
712
+ end: 484,
713
+ uuid: '108a6129-2c82-4b66-8b61-8f1fd21b4986',
714
+ type: 'span',
715
+ lang: 'Bo-Ltn',
716
+ textStyle: 'foreign',
717
+ },
718
+ },
719
+ ],
720
+ },
721
+ {
722
+ type: 'text',
723
+ text: '), thereby forming a larger group of five sūtras in the Degé Kangyur that lay out key elements of the practice of the path in discrete sets of four factors.',
724
+ attrs: {
725
+ start: 484,
726
+ end: 640,
727
+ },
728
+ },
729
+ ],
730
+ },
731
+ ],
732
+ },
733
+ {
734
+ type: 'passage',
735
+ attrs: {
736
+ uuid: '7d58acfa-74aa-4166-87f8-0f5e66dbb759',
737
+ sort: 55,
738
+ type: 'introduction',
739
+ label: 'i.3',
740
+ alignments: {},
741
+ },
742
+ content: [
743
+ {
744
+ type: 'paragraph',
745
+ attrs: {
746
+ start: 0,
747
+ end: 583,
748
+ uuid: '7d58acfa-74aa-4166-87f8-0f5e66dbb759',
749
+ },
750
+ content: [
751
+ {
752
+ type: 'text',
753
+ text: 'In the present sūtra, ',
754
+ attrs: {
755
+ start: 0,
756
+ end: 22,
757
+ },
758
+ },
759
+ {
760
+ type: 'text',
761
+ text: 'dharma',
762
+ attrs: {
763
+ start: 22,
764
+ end: 28,
765
+ },
766
+ marks: [
767
+ {
768
+ type: 'italic',
769
+ attrs: {
770
+ start: 22,
771
+ end: 28,
772
+ uuid: '61689b2b-a597-49d5-a49a-49e5f4761f1d',
773
+ type: 'span',
774
+ lang: 'Sa-Ltn',
775
+ textStyle: 'foreign',
776
+ },
777
+ },
778
+ ],
779
+ },
780
+ {
781
+ type: 'text',
782
+ text: ' is a flexible term used to refer to a specific set or category of four important components or factors of the path that a bodhisattva, someone who aspires to achieve the perfect awakening of a buddha, should not abandon under any circumstances. These four factors are (1) the ',
783
+ attrs: {
784
+ start: 28,
785
+ end: 305,
786
+ },
787
+ },
788
+ {
789
+ type: 'text',
790
+ text: 'thought of awakening',
791
+ attrs: {
792
+ start: 305,
793
+ end: 325,
794
+ },
795
+ marks: [
796
+ {
797
+ type: 'glossaryInstance',
798
+ attrs: {
799
+ glossary: '445f17ca-164b-4c68-82a3-f9f3ee3595b6',
800
+ uuid: 'd7ff4c34-60d9-4a4e-8cc0-541c097de9c2',
801
+ },
802
+ },
803
+ ],
804
+ },
805
+ {
806
+ type: 'text',
807
+ text: ', (2) the ',
808
+ attrs: {
809
+ start: 325,
810
+ end: 335,
811
+ },
812
+ },
813
+ {
814
+ type: 'text',
815
+ text: 'spiritual friend',
816
+ attrs: {
817
+ start: 335,
818
+ end: 351,
819
+ },
820
+ marks: [
821
+ {
822
+ type: 'glossaryInstance',
823
+ attrs: {
824
+ glossary: '4049f21f-fa6c-4180-80f5-0750c14162da',
825
+ uuid: 'af62f1c4-20e8-44f5-9aa0-59dd50a1e70b',
826
+ },
827
+ },
828
+ ],
829
+ },
830
+ {
831
+ type: 'text',
832
+ text: ' or companion and guide in virtue, (3) ',
833
+ attrs: {
834
+ start: 351,
835
+ end: 390,
836
+ },
837
+ },
838
+ {
839
+ type: 'text',
840
+ text: 'tolerance',
841
+ attrs: {
842
+ start: 390,
843
+ end: 399,
844
+ },
845
+ marks: [
846
+ {
847
+ type: 'glossaryInstance',
848
+ attrs: {
849
+ glossary: '3268038f-cca4-471a-94b3-13c62c85b7ca',
850
+ uuid: '29dd0b50-37c1-48a4-a7f0-053a52df4726',
851
+ },
852
+ },
853
+ ],
854
+ },
855
+ {
856
+ type: 'text',
857
+ text: ' and ',
858
+ attrs: {
859
+ start: 399,
860
+ end: 404,
861
+ },
862
+ },
863
+ {
864
+ type: 'text',
865
+ text: 'lenience',
866
+ attrs: {
867
+ start: 404,
868
+ end: 412,
869
+ },
870
+ marks: [
871
+ {
872
+ type: 'glossaryInstance',
873
+ attrs: {
874
+ glossary: '4f7a6a56-6c00-43a0-b457-f3e741364a05',
875
+ uuid: '13e16fac-6f0f-4ce3-b631-b2c32f8a8bdc',
876
+ },
877
+ },
878
+ ],
879
+ },
880
+ {
881
+ type: 'text',
882
+ text: ', considered here as a pair, and (4) ',
883
+ attrs: {
884
+ start: 412,
885
+ end: 449,
886
+ },
887
+ },
888
+ {
889
+ type: 'text',
890
+ text: 'dwelling in the wilderness',
891
+ attrs: {
892
+ start: 449,
893
+ end: 475,
894
+ },
895
+ marks: [
896
+ {
897
+ type: 'glossaryInstance',
898
+ attrs: {
899
+ glossary: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
900
+ uuid: '42200049-3ffb-4646-9418-1e1876172785',
901
+ },
902
+ },
903
+ ],
904
+ },
905
+ {
906
+ type: 'text',
907
+ text: ', that is, in a place suitably removed from the social world of the town so as to enable spiritual practice.',
908
+ attrs: {
909
+ start: 475,
910
+ end: 583,
911
+ },
912
+ },
913
+ ],
914
+ },
915
+ ],
916
+ },
917
+ {
918
+ type: 'passage',
919
+ attrs: {
920
+ uuid: 'c1bf5bc5-e441-43bd-b79e-eb88b560c811',
921
+ sort: 69,
922
+ type: 'introduction',
923
+ label: 'i.4',
924
+ alignments: {},
925
+ },
926
+ content: [
927
+ {
928
+ type: 'paragraph',
929
+ attrs: {
930
+ start: 0,
931
+ end: 556,
932
+ uuid: 'c1bf5bc5-e441-43bd-b79e-eb88b560c811',
933
+ },
934
+ content: [
935
+ {
936
+ type: 'text',
937
+ text: 'The Buddha presents these four factors using this formula: “For as long as they live, bodhisattvas, ',
938
+ attrs: {
939
+ start: 0,
940
+ end: 100,
941
+ },
942
+ },
943
+ {
944
+ type: 'text',
945
+ text: 'great beings',
946
+ attrs: {
947
+ start: 100,
948
+ end: 112,
949
+ },
950
+ marks: [
951
+ {
952
+ type: 'glossaryInstance',
953
+ attrs: {
954
+ glossary: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
955
+ uuid: '17e2072d-1653-4bba-8ad5-ce8d2956a595',
956
+ },
957
+ },
958
+ ],
959
+ },
960
+ {
961
+ type: 'text',
962
+ text: ', should not abandon ',
963
+ attrs: {
964
+ start: 112,
965
+ end: 133,
966
+ },
967
+ },
968
+ {
969
+ type: 'text',
970
+ text: 'x',
971
+ attrs: {
972
+ start: 133,
973
+ end: 134,
974
+ },
975
+ marks: [
976
+ {
977
+ type: 'italic',
978
+ attrs: {
979
+ start: 133,
980
+ end: 134,
981
+ uuid: '3228beba-a86c-41ea-92dd-522af762dd66',
982
+ type: 'span',
983
+ textStyle: 'distinct',
984
+ },
985
+ },
986
+ ],
987
+ },
988
+ {
989
+ type: 'text',
990
+ text: ' even at the cost of their lives.” This is repeated in six successive lines, first to introduce all four factors together, then for each one in turn, and finally to refer to all four by way of recapitulation. The sūtra thus employs the rhetorical device of repetition‍—combining ',
991
+ attrs: {
992
+ start: 134,
993
+ end: 413,
994
+ },
995
+ },
996
+ {
997
+ type: 'text',
998
+ text: 'anaphora',
999
+ attrs: {
1000
+ start: 413,
1001
+ end: 421,
1002
+ },
1003
+ marks: [
1004
+ {
1005
+ type: 'italic',
1006
+ attrs: {
1007
+ start: 413,
1008
+ end: 421,
1009
+ uuid: 'b515e108-2937-4c9b-a7c0-fd5c86983872',
1010
+ type: 'span',
1011
+ lang: 'Sa-Ltn',
1012
+ textStyle: 'foreign',
1013
+ },
1014
+ },
1015
+ ],
1016
+ },
1017
+ {
1018
+ type: 'text',
1019
+ text: ' and ',
1020
+ attrs: {
1021
+ start: 421,
1022
+ end: 426,
1023
+ },
1024
+ },
1025
+ {
1026
+ type: 'text',
1027
+ text: 'epistrophe',
1028
+ attrs: {
1029
+ start: 426,
1030
+ end: 436,
1031
+ },
1032
+ marks: [
1033
+ {
1034
+ type: 'italic',
1035
+ attrs: {
1036
+ start: 426,
1037
+ end: 436,
1038
+ uuid: '77334161-c18c-4136-8fc7-fd6758769620',
1039
+ type: 'span',
1040
+ lang: 'Sa-Ltn',
1041
+ textStyle: 'foreign',
1042
+ },
1043
+ },
1044
+ ],
1045
+ },
1046
+ {
1047
+ type: 'text',
1048
+ text: ', repetition of the beginning and end phrases of a line‍—that is such a common feature of Buddhist canonical literature.',
1049
+ attrs: {
1050
+ start: 436,
1051
+ end: 556,
1052
+ },
1053
+ },
1054
+ ],
1055
+ },
1056
+ ],
1057
+ },
1058
+ {
1059
+ type: 'passage',
1060
+ attrs: {
1061
+ uuid: '0cdb868d-6fa5-4c34-9901-fe4b3e005661',
1062
+ sort: 79,
1063
+ type: 'introduction',
1064
+ label: 'i.5',
1065
+ alignments: {},
1066
+ },
1067
+ content: [
1068
+ {
1069
+ type: 'paragraph',
1070
+ attrs: {
1071
+ start: 0,
1072
+ end: 419,
1073
+ uuid: '0cdb868d-6fa5-4c34-9901-fe4b3e005661',
1074
+ },
1075
+ content: [
1076
+ {
1077
+ type: 'text',
1078
+ text: 'The text concludes with two stanzas, also spoken by the Buddha, that summarize the sūtra’s message and explain the benefit of maintaining the four factors. These verses present the factors in a slightly different sequence, with ',
1079
+ attrs: {
1080
+ start: 0,
1081
+ end: 228,
1082
+ },
1083
+ },
1084
+ {
1085
+ type: 'text',
1086
+ text: 'tolerance',
1087
+ attrs: {
1088
+ start: 228,
1089
+ end: 237,
1090
+ },
1091
+ marks: [
1092
+ {
1093
+ type: 'glossaryInstance',
1094
+ attrs: {
1095
+ glossary: '3268038f-cca4-471a-94b3-13c62c85b7ca',
1096
+ uuid: '32592c1b-d066-41af-9e95-b5b6e572e4bb',
1097
+ },
1098
+ },
1099
+ ],
1100
+ },
1101
+ {
1102
+ type: 'text',
1103
+ text: ' and ',
1104
+ attrs: {
1105
+ start: 237,
1106
+ end: 242,
1107
+ },
1108
+ },
1109
+ {
1110
+ type: 'text',
1111
+ text: 'lenience',
1112
+ attrs: {
1113
+ start: 242,
1114
+ end: 250,
1115
+ },
1116
+ marks: [
1117
+ {
1118
+ type: 'glossaryInstance',
1119
+ attrs: {
1120
+ glossary: '4f7a6a56-6c00-43a0-b457-f3e741364a05',
1121
+ uuid: '3848d908-389e-46f3-9d9b-a6be4ecd9652',
1122
+ },
1123
+ },
1124
+ ],
1125
+ },
1126
+ {
1127
+ type: 'text',
1128
+ text: ' preceding the factor of the ',
1129
+ attrs: {
1130
+ start: 250,
1131
+ end: 279,
1132
+ },
1133
+ },
1134
+ {
1135
+ type: 'text',
1136
+ text: 'spiritual friend',
1137
+ attrs: {
1138
+ start: 279,
1139
+ end: 295,
1140
+ },
1141
+ marks: [
1142
+ {
1143
+ type: 'glossaryInstance',
1144
+ attrs: {
1145
+ glossary: '4049f21f-fa6c-4180-80f5-0750c14162da',
1146
+ uuid: 'a441bbfa-f494-49d1-b0ca-15cca2fec9fe',
1147
+ },
1148
+ },
1149
+ ],
1150
+ },
1151
+ {
1152
+ type: 'text',
1153
+ text: '. They also exhort the wise bodhisattva to be as fearless as a lion, “the king of beasts,” while ',
1154
+ attrs: {
1155
+ start: 295,
1156
+ end: 392,
1157
+ },
1158
+ },
1159
+ {
1160
+ type: 'text',
1161
+ text: 'dwelling in the wilderness',
1162
+ attrs: {
1163
+ start: 392,
1164
+ end: 418,
1165
+ },
1166
+ marks: [
1167
+ {
1168
+ type: 'glossaryInstance',
1169
+ attrs: {
1170
+ glossary: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
1171
+ uuid: '208b82c3-25ef-40fe-a136-1a1110c141dd',
1172
+ },
1173
+ },
1174
+ ],
1175
+ },
1176
+ {
1177
+ type: 'text',
1178
+ text: '.',
1179
+ attrs: {
1180
+ start: 418,
1181
+ end: 419,
1182
+ },
1183
+ },
1184
+ ],
1185
+ },
1186
+ ],
1187
+ },
1188
+ {
1189
+ type: 'passage',
1190
+ attrs: {
1191
+ uuid: 'bbf6ff9c-b5de-4b15-9ca8-9185ebc8d620',
1192
+ sort: 89,
1193
+ type: 'introduction',
1194
+ label: 'i.6',
1195
+ alignments: {},
1196
+ },
1197
+ content: [
1198
+ {
1199
+ type: 'paragraph',
1200
+ attrs: {
1201
+ start: 0,
1202
+ end: 731,
1203
+ uuid: 'bbf6ff9c-b5de-4b15-9ca8-9185ebc8d620',
1204
+ hasLeadingSpace: true,
1205
+ leadingSpaceUuid: '8512d924-48b2-477a-a306-35dd5c1b2227',
1206
+ },
1207
+ content: [
1208
+ {
1209
+ type: 'text',
1210
+ text: 'The Chinese Tripiṭaka contains two translations of the sūtra (Taishō 772',
1211
+ attrs: {
1212
+ start: 0,
1213
+ end: 72,
1214
+ },
1215
+ marks: [
1216
+ {
1217
+ type: 'endNoteLink',
1218
+ attrs: {
1219
+ notes: [
1220
+ {
1221
+ endNote: 'b63546f7-f747-42eb-83e4-4508719b0342',
1222
+ label: '5',
1223
+ uuid: '62eb1703-fb29-4c87-addf-cceb31efc04a',
1224
+ start: 72,
1225
+ end: 72,
1226
+ location: 'end',
1227
+ },
1228
+ ],
1229
+ },
1230
+ },
1231
+ ],
1232
+ },
1233
+ {
1234
+ type: 'text',
1235
+ text: ' & Taishō 773',
1236
+ attrs: {
1237
+ start: 72,
1238
+ end: 85,
1239
+ },
1240
+ marks: [
1241
+ {
1242
+ type: 'endNoteLink',
1243
+ attrs: {
1244
+ notes: [
1245
+ {
1246
+ endNote: 'b5ba5c64-cea9-4985-8a32-40c7685f8b8c',
1247
+ label: '6',
1248
+ uuid: 'f6eeb3c2-b289-464a-9b5b-a0dee255908e',
1249
+ start: 85,
1250
+ end: 85,
1251
+ location: 'end',
1252
+ },
1253
+ ],
1254
+ },
1255
+ },
1256
+ ],
1257
+ },
1258
+ {
1259
+ type: 'text',
1260
+ text: '), both by Divākara and dated to 680 ',
1261
+ attrs: {
1262
+ start: 85,
1263
+ end: 122,
1264
+ },
1265
+ },
1266
+ {
1267
+ type: 'text',
1268
+ text: 'ᴄᴇ',
1269
+ attrs: {
1270
+ start: 122,
1271
+ end: 124,
1272
+ },
1273
+ marks: [
1274
+ {
1275
+ type: 'smallCaps',
1276
+ attrs: {
1277
+ start: 122,
1278
+ end: 124,
1279
+ uuid: '278c349d-783a-489c-8f3d-222b7155fa83',
1280
+ type: 'span',
1281
+ textStyle: 'small-caps',
1282
+ },
1283
+ },
1284
+ ],
1285
+ },
1286
+ {
1287
+ type: 'text',
1288
+ text: ' and 681 ',
1289
+ attrs: {
1290
+ start: 124,
1291
+ end: 133,
1292
+ },
1293
+ },
1294
+ {
1295
+ type: 'text',
1296
+ text: 'ᴄᴇ',
1297
+ attrs: {
1298
+ start: 133,
1299
+ end: 135,
1300
+ },
1301
+ marks: [
1302
+ {
1303
+ type: 'smallCaps',
1304
+ attrs: {
1305
+ start: 133,
1306
+ end: 135,
1307
+ uuid: 'e36c2266-0ccb-4fd8-861a-8cc92e31e66e',
1308
+ type: 'span',
1309
+ textStyle: 'small-caps',
1310
+ },
1311
+ },
1312
+ ],
1313
+ },
1314
+ {
1315
+ type: 'text',
1316
+ text: '.',
1317
+ attrs: {
1318
+ start: 135,
1319
+ end: 136,
1320
+ },
1321
+ marks: [
1322
+ {
1323
+ type: 'endNoteLink',
1324
+ attrs: {
1325
+ notes: [
1326
+ {
1327
+ endNote: 'aa913b64-fd95-433b-92ff-e756258f55c0',
1328
+ label: '7',
1329
+ uuid: 'd1af8487-12fb-42f7-af65-6f3938e5031c',
1330
+ start: 136,
1331
+ end: 136,
1332
+ location: 'end',
1333
+ },
1334
+ ],
1335
+ },
1336
+ },
1337
+ ],
1338
+ },
1339
+ {
1340
+ type: 'text',
1341
+ text: ' The sūtra and commentaries also appear in several manuscripts of the Dunhuang collection. Among those manuscripts is an annotated translation of the sūtra (IOL Tib J 69) that identifies the translators as Surendrabodhi and Yeshe Dé. This manuscript is significant not only because of the annotations to the translation itself but also because the Kangyur versions lack a translator’s colophon (',
1342
+ attrs: {
1343
+ start: 136,
1344
+ end: 531,
1345
+ },
1346
+ },
1347
+ {
1348
+ type: 'text',
1349
+ text: '’gyur byang',
1350
+ attrs: {
1351
+ start: 531,
1352
+ end: 542,
1353
+ },
1354
+ marks: [
1355
+ {
1356
+ type: 'italic',
1357
+ attrs: {
1358
+ start: 531,
1359
+ end: 542,
1360
+ uuid: '88bd7213-631f-418d-9048-62d1cf657acd',
1361
+ type: 'span',
1362
+ lang: 'Bo-Ltn',
1363
+ textStyle: 'foreign',
1364
+ },
1365
+ },
1366
+ ],
1367
+ },
1368
+ {
1369
+ type: 'text',
1370
+ text: '). The sūtra is listed in both the Denkarma',
1371
+ attrs: {
1372
+ start: 542,
1373
+ end: 585,
1374
+ },
1375
+ marks: [
1376
+ {
1377
+ type: 'endNoteLink',
1378
+ attrs: {
1379
+ notes: [
1380
+ {
1381
+ endNote: '6bdebda4-694f-43c1-bfc7-a14974ebd8cd',
1382
+ label: '8',
1383
+ uuid: 'afb666ac-6ddc-40ad-b566-750d112ecf8a',
1384
+ start: 585,
1385
+ end: 585,
1386
+ location: 'end',
1387
+ },
1388
+ ],
1389
+ },
1390
+ },
1391
+ ],
1392
+ },
1393
+ {
1394
+ type: 'text',
1395
+ text: ' and Phangthangma',
1396
+ attrs: {
1397
+ start: 585,
1398
+ end: 602,
1399
+ },
1400
+ marks: [
1401
+ {
1402
+ type: 'endNoteLink',
1403
+ attrs: {
1404
+ notes: [
1405
+ {
1406
+ endNote: '23afe851-d528-4bf8-8776-012cf2dc192c',
1407
+ label: '9',
1408
+ uuid: '492760ba-0dfd-4805-b3db-65fb2d246267',
1409
+ start: 602,
1410
+ end: 602,
1411
+ location: 'end',
1412
+ },
1413
+ ],
1414
+ },
1415
+ },
1416
+ ],
1417
+ },
1418
+ {
1419
+ type: 'text',
1420
+ text: ' catalogs of translated works, indicating that the first Tibetan translation of the text was complete by the early ninth century.',
1421
+ attrs: {
1422
+ start: 602,
1423
+ end: 731,
1424
+ },
1425
+ },
1426
+ ],
1427
+ },
1428
+ ],
1429
+ },
1430
+ {
1431
+ type: 'passage',
1432
+ attrs: {
1433
+ uuid: '064a4cd7-e548-469b-b7c1-7d230c7f164a',
1434
+ sort: 107,
1435
+ type: 'introduction',
1436
+ label: 'i.7',
1437
+ alignments: {},
1438
+ },
1439
+ content: [
1440
+ {
1441
+ type: 'paragraph',
1442
+ attrs: {
1443
+ start: 0,
1444
+ end: 428,
1445
+ uuid: '064a4cd7-e548-469b-b7c1-7d230c7f164a',
1446
+ },
1447
+ content: [
1448
+ {
1449
+ type: 'text',
1450
+ text: 'There is a short commentary on this sūtra attributed to Vasubandhu and preserved in Tibetan in the Tengyur, (*',
1451
+ attrs: {
1452
+ start: 0,
1453
+ end: 110,
1454
+ },
1455
+ },
1456
+ {
1457
+ type: 'text',
1458
+ text: 'Ārya­catur­dharmaka­vyākhyāna,',
1459
+ attrs: {
1460
+ start: 110,
1461
+ end: 140,
1462
+ },
1463
+ marks: [
1464
+ {
1465
+ type: 'italic',
1466
+ attrs: {
1467
+ uuid: '98855691-6c0e-4f05-bf37-d34e9d0179ca',
1468
+ lang: 'Sa-Ltn',
1469
+ type: 'inlineTitle',
1470
+ },
1471
+ },
1472
+ ],
1473
+ },
1474
+ {
1475
+ type: 'text',
1476
+ text: ' ',
1477
+ attrs: {
1478
+ start: 140,
1479
+ end: 141,
1480
+ },
1481
+ },
1482
+ {
1483
+ type: 'text',
1484
+ text: '’phags pa chos bzhi pa’i rnam par bshad pa,',
1485
+ attrs: {
1486
+ start: 141,
1487
+ end: 184,
1488
+ },
1489
+ marks: [
1490
+ {
1491
+ type: 'italic',
1492
+ attrs: {
1493
+ uuid: 'dfde321b-1f10-401e-b2b5-7676b788a04b',
1494
+ lang: 'Bo-Ltn',
1495
+ type: 'inlineTitle',
1496
+ },
1497
+ },
1498
+ ],
1499
+ },
1500
+ {
1501
+ type: 'text',
1502
+ text: ' Toh 3990), which we have also translated,',
1503
+ attrs: {
1504
+ start: 184,
1505
+ end: 226,
1506
+ },
1507
+ marks: [
1508
+ {
1509
+ type: 'endNoteLink',
1510
+ attrs: {
1511
+ notes: [
1512
+ {
1513
+ endNote: '0071b8fa-9ec4-43fd-8f40-47ce6c91c489',
1514
+ label: '10',
1515
+ uuid: '842de512-4908-4b8b-a5cd-e60d5179182a',
1516
+ start: 226,
1517
+ end: 226,
1518
+ location: 'end',
1519
+ },
1520
+ ],
1521
+ },
1522
+ },
1523
+ ],
1524
+ },
1525
+ {
1526
+ type: 'text',
1527
+ text: ' as well as a slightly longer commentary on this commentary, attributed to Jñānadatta (: *',
1528
+ attrs: {
1529
+ start: 226,
1530
+ end: 316,
1531
+ },
1532
+ },
1533
+ {
1534
+ type: 'text',
1535
+ text: 'Āryacatur­dharmaka­vyākhyāna­ṭīkā,',
1536
+ attrs: {
1537
+ start: 316,
1538
+ end: 350,
1539
+ },
1540
+ marks: [
1541
+ {
1542
+ type: 'italic',
1543
+ attrs: {
1544
+ uuid: '9e0e4fba-1860-444a-8936-0830fa1c1f4d',
1545
+ lang: 'Sa-Ltn',
1546
+ type: 'inlineTitle',
1547
+ },
1548
+ },
1549
+ ],
1550
+ },
1551
+ {
1552
+ type: 'text',
1553
+ text: ' ',
1554
+ attrs: {
1555
+ start: 350,
1556
+ end: 351,
1557
+ },
1558
+ },
1559
+ {
1560
+ type: 'text',
1561
+ text: '’phags pa chos bzhi pa’i rgya cher bshad pa’i rgya cher ’grel pa,',
1562
+ attrs: {
1563
+ start: 351,
1564
+ end: 416,
1565
+ },
1566
+ marks: [
1567
+ {
1568
+ type: 'italic',
1569
+ attrs: {
1570
+ uuid: '17ed5280-b4b0-494f-9359-d0a57d0d3d87',
1571
+ lang: 'Bo-Ltn',
1572
+ type: 'inlineTitle',
1573
+ },
1574
+ },
1575
+ ],
1576
+ },
1577
+ {
1578
+ type: 'text',
1579
+ text: ' Toh 3990a).',
1580
+ attrs: {
1581
+ start: 416,
1582
+ end: 428,
1583
+ },
1584
+ },
1585
+ ],
1586
+ },
1587
+ ],
1588
+ },
1589
+ {
1590
+ type: 'passage',
1591
+ attrs: {
1592
+ uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
1593
+ sort: 119,
1594
+ type: 'introduction',
1595
+ label: 'i.8',
1596
+ alignments: {},
1597
+ },
1598
+ content: [
1599
+ {
1600
+ type: 'paragraph',
1601
+ attrs: {
1602
+ start: 0,
1603
+ end: 965,
1604
+ uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
1605
+ },
1606
+ content: [
1607
+ {
1608
+ type: 'text',
1609
+ text: 'Several independent treatises found within the Tengyur also make reference to this sūtra. Śāntideva’s ',
1610
+ attrs: {
1611
+ start: 0,
1612
+ end: 102,
1613
+ },
1614
+ },
1615
+ {
1616
+ type: 'text',
1617
+ text: 'Compendium of Training ',
1618
+ attrs: {
1619
+ start: 102,
1620
+ end: 125,
1621
+ },
1622
+ marks: [
1623
+ {
1624
+ type: 'italic',
1625
+ attrs: {
1626
+ uuid: '45ede0d6-5ff6-4df7-8697-bb8e24d3a7a7',
1627
+ lang: 'en',
1628
+ type: 'inlineTitle',
1629
+ },
1630
+ },
1631
+ ],
1632
+ },
1633
+ {
1634
+ type: 'text',
1635
+ text: '(',
1636
+ attrs: {
1637
+ start: 125,
1638
+ end: 126,
1639
+ },
1640
+ },
1641
+ {
1642
+ type: 'text',
1643
+ text: 'Śikṣā­samuccaya,',
1644
+ attrs: {
1645
+ start: 126,
1646
+ end: 142,
1647
+ },
1648
+ marks: [
1649
+ {
1650
+ type: 'italic',
1651
+ attrs: {
1652
+ uuid: '138bd714-9fab-4834-91c2-5894d15045ba',
1653
+ lang: 'Sa-Ltn',
1654
+ type: 'inlineTitle',
1655
+ },
1656
+ },
1657
+ ],
1658
+ },
1659
+ {
1660
+ type: 'text',
1661
+ text: ' Toh 3940), for instance, refers to the second of the four factors when discussing the importance of the teacher.',
1662
+ attrs: {
1663
+ start: 142,
1664
+ end: 255,
1665
+ },
1666
+ marks: [
1667
+ {
1668
+ type: 'endNoteLink',
1669
+ attrs: {
1670
+ notes: [
1671
+ {
1672
+ endNote: '2e04f38b-14cf-48f1-8f5e-eebadac78e49',
1673
+ label: '11',
1674
+ uuid: 'ffad76a0-3a7e-43c5-829f-11205fd28814',
1675
+ start: 255,
1676
+ end: 255,
1677
+ location: 'end',
1678
+ },
1679
+ ],
1680
+ },
1681
+ },
1682
+ ],
1683
+ },
1684
+ {
1685
+ type: 'text',
1686
+ text: ' Prajñākaramati also cites the same line in his ',
1687
+ attrs: {
1688
+ start: 255,
1689
+ end: 303,
1690
+ },
1691
+ },
1692
+ {
1693
+ type: 'text',
1694
+ text: 'Commentary on the Difficult Points of the Bodhicaryāvatāra ',
1695
+ attrs: {
1696
+ start: 303,
1697
+ end: 362,
1698
+ },
1699
+ marks: [
1700
+ {
1701
+ type: 'italic',
1702
+ attrs: {
1703
+ uuid: 'a99d4133-d20f-4f79-8586-9a0ee3b5b4cf',
1704
+ lang: 'en',
1705
+ type: 'inlineTitle',
1706
+ },
1707
+ },
1708
+ ],
1709
+ },
1710
+ {
1711
+ type: 'text',
1712
+ text: '(',
1713
+ attrs: {
1714
+ start: 362,
1715
+ end: 363,
1716
+ },
1717
+ },
1718
+ {
1719
+ type: 'text',
1720
+ text: 'Bodhi­caryāvatāra­pañjikā;',
1721
+ attrs: {
1722
+ start: 363,
1723
+ end: 389,
1724
+ },
1725
+ marks: [
1726
+ {
1727
+ type: 'italic',
1728
+ attrs: {
1729
+ uuid: '11311772-fe89-4256-a95a-f51b0f8f2662',
1730
+ lang: 'Sa-Ltn',
1731
+ type: 'inlineTitle',
1732
+ },
1733
+ },
1734
+ ],
1735
+ },
1736
+ {
1737
+ type: 'text',
1738
+ text: ' byang chub kyi spyod pa la ’jug pa’i dka’ ’grel,',
1739
+ attrs: {
1740
+ start: 389,
1741
+ end: 438,
1742
+ },
1743
+ marks: [
1744
+ {
1745
+ type: 'italic',
1746
+ attrs: {
1747
+ uuid: 'd717a585-33a1-4ce9-a01c-3d29dc7ad492',
1748
+ lang: 'Bo-Ltn',
1749
+ type: 'inlineTitle',
1750
+ },
1751
+ },
1752
+ ],
1753
+ },
1754
+ {
1755
+ type: 'text',
1756
+ text: ' Toh 3872).',
1757
+ attrs: {
1758
+ start: 438,
1759
+ end: 449,
1760
+ },
1761
+ marks: [
1762
+ {
1763
+ type: 'endNoteLink',
1764
+ attrs: {
1765
+ notes: [
1766
+ {
1767
+ endNote: '906dc92d-3438-43a0-b368-55e6288d3608',
1768
+ label: '12',
1769
+ uuid: '95ece1d3-8650-44d4-a091-a1dee6104eea',
1770
+ start: 449,
1771
+ end: 449,
1772
+ location: 'end',
1773
+ },
1774
+ ],
1775
+ },
1776
+ },
1777
+ ],
1778
+ },
1779
+ {
1780
+ type: 'text',
1781
+ text: ' Vimalamitra refers to the fourth factor on the importance of ',
1782
+ attrs: {
1783
+ start: 449,
1784
+ end: 511,
1785
+ },
1786
+ },
1787
+ {
1788
+ type: 'text',
1789
+ text: 'dwelling in the wilderness',
1790
+ attrs: {
1791
+ start: 511,
1792
+ end: 537,
1793
+ },
1794
+ marks: [
1795
+ {
1796
+ type: 'glossaryInstance',
1797
+ attrs: {
1798
+ glossary: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
1799
+ uuid: 'f4c38243-d9ff-4836-b444-862d9c58cd71',
1800
+ },
1801
+ },
1802
+ ],
1803
+ },
1804
+ {
1805
+ type: 'text',
1806
+ text: ' in ',
1807
+ attrs: {
1808
+ start: 537,
1809
+ end: 541,
1810
+ },
1811
+ },
1812
+ {
1813
+ type: 'text',
1814
+ text: 'The Meaning of the Gradual Cultivation ',
1815
+ attrs: {
1816
+ start: 541,
1817
+ end: 580,
1818
+ },
1819
+ marks: [
1820
+ {
1821
+ type: 'italic',
1822
+ attrs: {
1823
+ uuid: 'bbc624c9-a3da-4545-baaa-755594d07db6',
1824
+ lang: 'en',
1825
+ type: 'inlineTitle',
1826
+ },
1827
+ },
1828
+ ],
1829
+ },
1830
+ {
1831
+ type: 'text',
1832
+ text: '(',
1833
+ attrs: {
1834
+ start: 580,
1835
+ end: 581,
1836
+ },
1837
+ },
1838
+ {
1839
+ type: 'text',
1840
+ text: 'rim gyis ’jug pa’i sgom don,',
1841
+ attrs: {
1842
+ start: 581,
1843
+ end: 609,
1844
+ },
1845
+ marks: [
1846
+ {
1847
+ type: 'italic',
1848
+ attrs: {
1849
+ uuid: '7bece268-7b1f-4353-b60b-4c783a40702b',
1850
+ lang: 'Bo-Ltn',
1851
+ type: 'inlineTitle',
1852
+ },
1853
+ },
1854
+ ],
1855
+ },
1856
+ {
1857
+ type: 'text',
1858
+ text: ' Toh 3938).',
1859
+ attrs: {
1860
+ start: 609,
1861
+ end: 620,
1862
+ },
1863
+ marks: [
1864
+ {
1865
+ type: 'endNoteLink',
1866
+ attrs: {
1867
+ notes: [
1868
+ {
1869
+ endNote: 'e23dc433-53c0-48f4-8ae5-f3f4fe0db857',
1870
+ label: '13',
1871
+ uuid: 'c0b56deb-c9e9-416a-84ad-aa62d51eb92d',
1872
+ start: 620,
1873
+ end: 620,
1874
+ location: 'end',
1875
+ },
1876
+ ],
1877
+ },
1878
+ },
1879
+ ],
1880
+ },
1881
+ {
1882
+ type: 'text',
1883
+ text: ' The sūtra has also been cited in works by Tibetan authors. To give just one example, the celebrated Nyingma master Longchen Rabjam (1308–64) quotes the sūtra’s line about the importance of the ',
1884
+ attrs: {
1885
+ start: 620,
1886
+ end: 814,
1887
+ },
1888
+ },
1889
+ {
1890
+ type: 'text',
1891
+ text: 'spiritual friend',
1892
+ attrs: {
1893
+ start: 814,
1894
+ end: 830,
1895
+ },
1896
+ marks: [
1897
+ {
1898
+ type: 'glossaryInstance',
1899
+ attrs: {
1900
+ glossary: '4049f21f-fa6c-4180-80f5-0750c14162da',
1901
+ uuid: 'aa4fab69-6fac-40bd-a2db-cd052289c468',
1902
+ },
1903
+ },
1904
+ ],
1905
+ },
1906
+ {
1907
+ type: 'text',
1908
+ text: ' in the eighth chapter of ',
1909
+ attrs: {
1910
+ start: 830,
1911
+ end: 856,
1912
+ },
1913
+ },
1914
+ {
1915
+ type: 'text',
1916
+ text: 'The White Lotus Autocommentary on the Wish-Fulfilling Treasury ',
1917
+ attrs: {
1918
+ start: 856,
1919
+ end: 919,
1920
+ },
1921
+ marks: [
1922
+ {
1923
+ type: 'italic',
1924
+ attrs: {
1925
+ uuid: '22241133-0138-4184-b223-137bc10fa43c',
1926
+ lang: 'en',
1927
+ type: 'inlineTitle',
1928
+ },
1929
+ },
1930
+ ],
1931
+ },
1932
+ {
1933
+ type: 'text',
1934
+ text: '(',
1935
+ attrs: {
1936
+ start: 919,
1937
+ end: 920,
1938
+ },
1939
+ },
1940
+ {
1941
+ type: 'text',
1942
+ text: 'yid bzhin mdzod kyi ’grel pa pad ma dkar po)',
1943
+ attrs: {
1944
+ start: 920,
1945
+ end: 964,
1946
+ },
1947
+ marks: [
1948
+ {
1949
+ type: 'italic',
1950
+ attrs: {
1951
+ uuid: '551e09fd-991d-4d56-b35c-da2f0e31e395',
1952
+ lang: 'Bo-Ltn',
1953
+ type: 'inlineTitle',
1954
+ },
1955
+ },
1956
+ ],
1957
+ },
1958
+ {
1959
+ type: 'text',
1960
+ text: '.',
1961
+ attrs: {
1962
+ start: 964,
1963
+ end: 965,
1964
+ },
1965
+ marks: [
1966
+ {
1967
+ type: 'endNoteLink',
1968
+ attrs: {
1969
+ notes: [
1970
+ {
1971
+ endNote: '1d76f3e1-914c-4682-8973-4d8ed2bd4b9f',
1972
+ label: '14',
1973
+ uuid: '3c71c19a-a396-424b-ad7e-3d44ff2a329c',
1974
+ start: 965,
1975
+ end: 965,
1976
+ location: 'end',
1977
+ },
1978
+ ],
1979
+ },
1980
+ },
1981
+ ],
1982
+ },
1983
+ ],
1984
+ },
1985
+ ],
1986
+ },
1987
+ {
1988
+ type: 'passage',
1989
+ attrs: {
1990
+ uuid: '9293d581-2755-4c1c-91e0-77bc2c0810ef',
1991
+ sort: 151,
1992
+ type: 'introduction',
1993
+ label: 'i.9',
1994
+ alignments: {},
1995
+ },
1996
+ content: [
1997
+ {
1998
+ type: 'paragraph',
1999
+ attrs: {
2000
+ start: 0,
2001
+ end: 321,
2002
+ uuid: '9293d581-2755-4c1c-91e0-77bc2c0810ef',
2003
+ hasLeadingSpace: true,
2004
+ leadingSpaceUuid: '5571fb38-1193-41c0-9741-30d9656f6726',
2005
+ },
2006
+ content: [
2007
+ {
2008
+ type: 'text',
2009
+ text: 'A French translation of the sūtra by Léon Feer was first published in 1866 (and reprinted in 1883).',
2010
+ attrs: {
2011
+ start: 0,
2012
+ end: 99,
2013
+ },
2014
+ marks: [
2015
+ {
2016
+ type: 'endNoteLink',
2017
+ attrs: {
2018
+ notes: [
2019
+ {
2020
+ endNote: 'b8f11293-b74e-4137-873e-bd826dba04e1',
2021
+ label: '15',
2022
+ uuid: '08eaa440-ef51-46f0-ac00-72bdc7de2c16',
2023
+ start: 99,
2024
+ end: 99,
2025
+ location: 'end',
2026
+ },
2027
+ ],
2028
+ },
2029
+ },
2030
+ ],
2031
+ },
2032
+ {
2033
+ type: 'text',
2034
+ text: ' Peter Skilling has included a fine English translation along with some helpful notes under the title “Four Dharmas Never to Be Abandoned” in his recent collection ',
2035
+ attrs: {
2036
+ start: 99,
2037
+ end: 263,
2038
+ },
2039
+ },
2040
+ {
2041
+ type: 'text',
2042
+ text: 'Questioning the Buddha: A Selection of Twenty-Five Sutras',
2043
+ attrs: {
2044
+ start: 263,
2045
+ end: 320,
2046
+ },
2047
+ marks: [
2048
+ {
2049
+ type: 'italic',
2050
+ attrs: {
2051
+ uuid: 'e0477a96-7bef-4e95-b84a-987f1c4f10f1',
2052
+ lang: 'en',
2053
+ type: 'inlineTitle',
2054
+ },
2055
+ },
2056
+ ],
2057
+ },
2058
+ {
2059
+ type: 'text',
2060
+ text: '.',
2061
+ attrs: {
2062
+ start: 320,
2063
+ end: 321,
2064
+ },
2065
+ marks: [
2066
+ {
2067
+ type: 'endNoteLink',
2068
+ attrs: {
2069
+ notes: [
2070
+ {
2071
+ endNote: '120d0fb2-a60f-49d3-8ac8-4891703b3442',
2072
+ label: '16',
2073
+ uuid: 'b2969d71-74b4-44b0-b42f-8637a6ccc397',
2074
+ start: 321,
2075
+ end: 321,
2076
+ location: 'end',
2077
+ },
2078
+ ],
2079
+ },
2080
+ },
2081
+ ],
2082
+ },
2083
+ ],
2084
+ },
2085
+ ],
2086
+ },
2087
+ {
2088
+ type: 'passage',
2089
+ attrs: {
2090
+ uuid: '61fbe0f6-8817-4e3c-b80c-8a114ca75f3b',
2091
+ sort: 158,
2092
+ type: 'introduction',
2093
+ label: 'i.10',
2094
+ alignments: {},
2095
+ },
2096
+ content: [
2097
+ {
2098
+ type: 'paragraph',
2099
+ attrs: {
2100
+ start: 0,
2101
+ end: 238,
2102
+ uuid: '61fbe0f6-8817-4e3c-b80c-8a114ca75f3b',
2103
+ },
2104
+ content: [
2105
+ {
2106
+ type: 'text',
2107
+ text: 'The following translation was made primarily on the basis of the Degé block print with reference to the Comparative Edition (',
2108
+ attrs: {
2109
+ start: 0,
2110
+ end: 125,
2111
+ },
2112
+ },
2113
+ {
2114
+ type: 'text',
2115
+ text: 'dpe bsdur ma)',
2116
+ attrs: {
2117
+ start: 125,
2118
+ end: 138,
2119
+ },
2120
+ marks: [
2121
+ {
2122
+ type: 'italic',
2123
+ attrs: {
2124
+ uuid: '6292c481-c7a6-46be-907f-160f6941aedd',
2125
+ lang: 'Bo-Ltn',
2126
+ type: 'inlineTitle',
2127
+ },
2128
+ },
2129
+ ],
2130
+ },
2131
+ {
2132
+ type: 'text',
2133
+ text: ', the Stok Palace Kangyur, IOL Tib J 69, and the commentaries ascribed to Vasubandhu and Jñānadatta.',
2134
+ attrs: {
2135
+ start: 138,
2136
+ end: 238,
2137
+ },
2138
+ },
2139
+ ],
2140
+ },
2141
+ ],
2142
+ },
2143
+ {
2144
+ type: 'passage',
2145
+ attrs: {
2146
+ uuid: '0a812d07-8fcc-41b9-9af5-96ec9bce25d5',
2147
+ sort: 165,
2148
+ type: 'translationHeader',
2149
+ label: '1.',
2150
+ alignments: {},
2151
+ },
2152
+ content: [
2153
+ {
2154
+ type: 'heading',
2155
+ attrs: {
2156
+ level: 2,
2157
+ start: 0,
2158
+ end: 15,
2159
+ uuid: 'c4229046-ec92-4d1e-8bd2-ac9e860d0b64',
2160
+ class: 'section-title',
2161
+ },
2162
+ content: [
2163
+ {
2164
+ type: 'text',
2165
+ text: 'The Translation',
2166
+ attrs: {
2167
+ start: 0,
2168
+ end: 15,
2169
+ },
2170
+ },
2171
+ ],
2172
+ },
2173
+ ],
2174
+ },
2175
+ {
2176
+ type: 'passage',
2177
+ attrs: {
2178
+ uuid: 'b1ac687a-8ba7-46ca-9851-125cf2d77439',
2179
+ sort: 166,
2180
+ type: 'translation',
2181
+ label: 'tr.',
2182
+ alignments: {
2183
+ toh251: {
2184
+ folioUuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
2185
+ toh: 'toh251',
2186
+ tibetan:
2187
+ '༄༅༅། །རྒྱ་གར་སྐད་དུ། ཨཱརྱ་ཙ་ཏུར་དྷརྨ་ཀཾ་ནཱ་མ་མ་ཧཱ་ཡཱ་ན་སཱུ་ཏྲ། བོད་སྐད་དུ། འཕགས་པ་ཆོས་བཞི་པ་ཞེས་བྱ་བ་ཐེག་པ་ཆེན་པོའི་མདོ། ',
2188
+ folioNumber: 60,
2189
+ volumeNumber: 66,
2190
+ },
2191
+ },
2192
+ },
2193
+ content: [
2194
+ {
2195
+ type: 'heading',
2196
+ attrs: {
2197
+ start: 0,
2198
+ end: 28,
2199
+ uuid: '7184b36c-1264-48fe-9cbf-e36572f3e00f',
2200
+ level: 2,
2201
+ class: 'body-title-honorific',
2202
+ hasLeadingSpace: true,
2203
+ leadingSpaceUuid: 'e134c0c3-e12a-4c6f-b45c-73e3fac2770e',
2204
+ },
2205
+ content: [
2206
+ {
2207
+ type: 'text',
2208
+ text: 'The Noble Mahāyāna Sūtra on ',
2209
+ attrs: {
2210
+ start: 0,
2211
+ end: 28,
2212
+ },
2213
+ },
2214
+ ],
2215
+ },
2216
+ {
2217
+ type: 'heading',
2218
+ attrs: {
2219
+ start: 28,
2220
+ end: 44,
2221
+ uuid: 'f5580dae-b137-4614-b4d2-de23f3105982',
2222
+ level: 2,
2223
+ class: 'body-title-main',
2224
+ },
2225
+ content: [
2226
+ {
2227
+ type: 'text',
2228
+ text: 'The Four Factors',
2229
+ attrs: {
2230
+ start: 28,
2231
+ end: 44,
2232
+ },
2233
+ },
2234
+ ],
2235
+ },
2236
+ ],
2237
+ },
2238
+ {
2239
+ type: 'passage',
2240
+ attrs: {
2241
+ uuid: 'b7a07809-d6e0-427b-bfc6-50ea2acd8155',
2242
+ sort: 168,
2243
+ type: 'translation',
2244
+ label: '1.1',
2245
+ alignments: {
2246
+ toh251: {
2247
+ folioUuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
2248
+ toh: 'toh251',
2249
+ tibetan: 'སངས་རྒྱས་དང་བྱང་ཆུབ་སེམས་དཔའ་ཐམས་ཅད་ལ་ཕྱག་འཚལ་ལོ། །',
2250
+ folioNumber: 60,
2251
+ volumeNumber: 66,
2252
+ },
2253
+ },
2254
+ },
2255
+ content: [
2256
+ {
2257
+ type: 'paragraph',
2258
+ attrs: {
2259
+ start: 0,
2260
+ end: 43,
2261
+ uuid: 'b7a07809-d6e0-427b-bfc6-50ea2acd8155',
2262
+ },
2263
+ content: [
2264
+ {
2265
+ type: 'text',
2266
+ text: 'Homage to all the buddhas and bodhisattvas!',
2267
+ attrs: {
2268
+ start: 0,
2269
+ end: 43,
2270
+ },
2271
+ },
2272
+ ],
2273
+ },
2274
+ ],
2275
+ },
2276
+ {
2277
+ type: 'passage',
2278
+ attrs: {
2279
+ uuid: '2dda83c5-f367-4b13-96b0-14835d5bb2dd',
2280
+ sort: 170,
2281
+ type: 'translation',
2282
+ label: '1.2',
2283
+ alignments: {
2284
+ toh251: {
2285
+ folioUuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
2286
+ toh: 'toh251',
2287
+ tibetan:
2288
+ 'འདི་སྐད་བདག་གིས་ཐོས་པ་དུས་གཅིག་ན། \nབཅོམ་ལྡན་འདས་མཉན་ཡོད་ན་རྒྱལ་བུ་རྒྱལ་བྱེད་ཀྱི་ཚལ་མགོན་མེད་ཟས་སྦྱིན་གྱི་ཀུན་དགའ་ར་བ་ན། དགེ་སློང་སྟོང་ཉིས་བརྒྱ་ལྔ་བཅུའི་དགེ་སློང་གི་དགེ་འདུན་ཆེན་པོ་དང་ཐབས་ཅིག་ཏུ་བཞུགས་ཏེ། བྱང་ཆུབ་སེམས་དཔའི་ཚོགས་ཆེན་པོ་དང་ཡང་ཐབས་ཅིག་གོ། །དེ་ནས་བཅོམ་\nལྡན་འདས་ཀྱིས་དགེ་སློང་རྣམས་ལ་བཀའ་སྩལ་པ། ',
2289
+ folioNumber: 60,
2290
+ volumeNumber: 66,
2291
+ },
2292
+ },
2293
+ },
2294
+ content: [
2295
+ {
2296
+ type: 'paragraph',
2297
+ attrs: {
2298
+ start: 0,
2299
+ end: 262,
2300
+ uuid: '2dda83c5-f367-4b13-96b0-14835d5bb2dd',
2301
+ hasLeadingSpace: true,
2302
+ leadingSpaceUuid: 'c0e02497-7d8e-4150-9178-f13a2ad77d91',
2303
+ },
2304
+ content: [
2305
+ {
2306
+ type: 'text',
2307
+ text: 'Thus did I hear at one time. The Buddha was residing in ',
2308
+ attrs: {
2309
+ start: 0,
2310
+ end: 56,
2311
+ },
2312
+ },
2313
+ {
2314
+ type: 'text',
2315
+ text: 'Śrāvastī',
2316
+ attrs: {
2317
+ start: 56,
2318
+ end: 64,
2319
+ },
2320
+ marks: [
2321
+ {
2322
+ type: 'glossaryInstance',
2323
+ attrs: {
2324
+ glossary: 'f2a07704-3c71-4f05-8e6a-5d326406fae2',
2325
+ uuid: '48b09ede-46cf-419a-9ec8-64c4a610b456',
2326
+ },
2327
+ },
2328
+ ],
2329
+ },
2330
+ {
2331
+ type: 'text',
2332
+ text: ', in ',
2333
+ attrs: {
2334
+ start: 64,
2335
+ end: 69,
2336
+ },
2337
+ },
2338
+ {
2339
+ type: 'text',
2340
+ text: 'Jeta’s Grove, Anāthapiṇḍada’s park',
2341
+ attrs: {
2342
+ start: 69,
2343
+ end: 103,
2344
+ },
2345
+ marks: [
2346
+ {
2347
+ type: 'glossaryInstance',
2348
+ attrs: {
2349
+ glossary: '7fc58f66-5fbb-4973-8744-f6589f8aae97',
2350
+ uuid: '4ebf55f0-fddd-45e6-a9af-09997c6f96f5',
2351
+ },
2352
+ },
2353
+ ],
2354
+ },
2355
+ {
2356
+ type: 'text',
2357
+ text: ', together with a great community of monks, consisting of 1,250 monks, and a great assembly of bodhisattvas. At that time, the Blessed One addressed the monks:',
2358
+ attrs: {
2359
+ start: 103,
2360
+ end: 262,
2361
+ },
2362
+ },
2363
+ ],
2364
+ },
2365
+ ],
2366
+ },
2367
+ {
2368
+ type: 'passage',
2369
+ attrs: {
2370
+ uuid: 'df6f18e0-7db5-4b06-8a8a-fb3a31144f85',
2371
+ sort: 176,
2372
+ type: 'translation',
2373
+ label: '1.3',
2374
+ alignments: {
2375
+ toh251: {
2376
+ folioUuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
2377
+ toh: 'toh251',
2378
+ tibetan:
2379
+ 'དགེ་སློང་དག་བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོས་ཆོས་བཞི་པོ་འདི་དག་ཇི་སྲིད་འཚོའི་བར་དུ་སྲོག་གི་ཕྱིར་ཡང་ཡོངས་སུ་མི་གཏོང་ངོ་། །བཞི་གང་ཞེ་ན། ',
2380
+ folioNumber: 60,
2381
+ volumeNumber: 66,
2382
+ },
2383
+ },
2384
+ },
2385
+ content: [
2386
+ {
2387
+ type: 'paragraph',
2388
+ attrs: {
2389
+ start: 0,
2390
+ end: 147,
2391
+ uuid: 'df6f18e0-7db5-4b06-8a8a-fb3a31144f85',
2392
+ },
2393
+ content: [
2394
+ {
2395
+ type: 'text',
2396
+ text: '“Monks, for as long as they live, bodhisattvas, ',
2397
+ attrs: {
2398
+ start: 0,
2399
+ end: 48,
2400
+ },
2401
+ },
2402
+ {
2403
+ type: 'text',
2404
+ text: 'great beings',
2405
+ attrs: {
2406
+ start: 48,
2407
+ end: 60,
2408
+ },
2409
+ marks: [
2410
+ {
2411
+ type: 'glossaryInstance',
2412
+ attrs: {
2413
+ glossary: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
2414
+ uuid: '73776d26-6858-413b-9d62-5ffe18a59e4c',
2415
+ },
2416
+ },
2417
+ ],
2418
+ },
2419
+ {
2420
+ type: 'text',
2421
+ text: ', should not abandon four factors even at the cost of their lives. What are these four?',
2422
+ attrs: {
2423
+ start: 60,
2424
+ end: 147,
2425
+ },
2426
+ },
2427
+ ],
2428
+ },
2429
+ ],
2430
+ },
2431
+ {
2432
+ type: 'passage',
2433
+ attrs: {
2434
+ uuid: '1350a8f8-cb5f-48d6-8d24-7152124b2ed9',
2435
+ sort: 181,
2436
+ type: 'translation',
2437
+ label: '1.4',
2438
+ alignments: {
2439
+ toh251: {
2440
+ folioUuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
2441
+ toh: 'toh251',
2442
+ tibetan:
2443
+ 'དགེ་སློང་དག་བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོས་\nཇི་སྲིད་འཚོའི་བར་དུ་བྱང་ཆུབ་ཀྱི་སེམས་སྲོག་གི་ཕྱིར་ཡང་ཡོངས་སུ་མི་གཏང་བ་དང་། ',
2444
+ folioNumber: 60,
2445
+ volumeNumber: 66,
2446
+ },
2447
+ },
2448
+ },
2449
+ content: [
2450
+ {
2451
+ type: 'paragraph',
2452
+ attrs: {
2453
+ start: 0,
2454
+ end: 138,
2455
+ uuid: '1350a8f8-cb5f-48d6-8d24-7152124b2ed9',
2456
+ },
2457
+ content: [
2458
+ {
2459
+ type: 'text',
2460
+ text: '“Monks, for as long as they live, bodhisattvas, ',
2461
+ attrs: {
2462
+ start: 0,
2463
+ end: 48,
2464
+ },
2465
+ },
2466
+ {
2467
+ type: 'text',
2468
+ text: 'great beings',
2469
+ attrs: {
2470
+ start: 48,
2471
+ end: 60,
2472
+ },
2473
+ marks: [
2474
+ {
2475
+ type: 'glossaryInstance',
2476
+ attrs: {
2477
+ glossary: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
2478
+ uuid: '93fb08c3-dabb-45e3-b9d6-05d40fb8df92',
2479
+ },
2480
+ },
2481
+ ],
2482
+ },
2483
+ {
2484
+ type: 'text',
2485
+ text: ', should not abandon the ',
2486
+ attrs: {
2487
+ start: 60,
2488
+ end: 85,
2489
+ },
2490
+ },
2491
+ {
2492
+ type: 'text',
2493
+ text: 'thought of awakening',
2494
+ attrs: {
2495
+ start: 85,
2496
+ end: 105,
2497
+ },
2498
+ marks: [
2499
+ {
2500
+ type: 'glossaryInstance',
2501
+ attrs: {
2502
+ glossary: '445f17ca-164b-4c68-82a3-f9f3ee3595b6',
2503
+ uuid: '7cb61bc2-cf3c-4b28-a026-56062c3febce',
2504
+ },
2505
+ },
2506
+ ],
2507
+ },
2508
+ {
2509
+ type: 'text',
2510
+ text: ' even at the cost of their lives.',
2511
+ attrs: {
2512
+ start: 105,
2513
+ end: 138,
2514
+ },
2515
+ },
2516
+ ],
2517
+ },
2518
+ ],
2519
+ },
2520
+ {
2521
+ type: 'passage',
2522
+ attrs: {
2523
+ uuid: 'f1ed1290-9632-4bcf-8e9d-e6bf561e32a8',
2524
+ sort: 187,
2525
+ type: 'translation',
2526
+ label: '1.5',
2527
+ alignments: {
2528
+ toh251: {
2529
+ folioUuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
2530
+ toh: 'toh251',
2531
+ tibetan:
2532
+ 'དགེ་སློང་དག་བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོས་ཇི་སྲིད་འཚོའི་བར་དུ་དགེ་བའི་བཤེས་གཉེན་སྲོག་གི་ཕྱིར་ཡང་ཡོངས་སུ་མི་གཏང་བ་དང་། ',
2533
+ folioNumber: 60,
2534
+ volumeNumber: 66,
2535
+ },
2536
+ },
2537
+ },
2538
+ content: [
2539
+ {
2540
+ type: 'paragraph',
2541
+ attrs: {
2542
+ start: 0,
2543
+ end: 134,
2544
+ uuid: 'f1ed1290-9632-4bcf-8e9d-e6bf561e32a8',
2545
+ },
2546
+ content: [
2547
+ {
2548
+ type: 'text',
2549
+ text: '“Monks, for as long as they live, bodhisattvas, ',
2550
+ attrs: {
2551
+ start: 0,
2552
+ end: 48,
2553
+ },
2554
+ },
2555
+ {
2556
+ type: 'text',
2557
+ text: 'great beings',
2558
+ attrs: {
2559
+ start: 48,
2560
+ end: 60,
2561
+ },
2562
+ marks: [
2563
+ {
2564
+ type: 'glossaryInstance',
2565
+ attrs: {
2566
+ glossary: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
2567
+ uuid: '1e14fa7b-adde-4991-8b26-3f4ff17ac243',
2568
+ },
2569
+ },
2570
+ ],
2571
+ },
2572
+ {
2573
+ type: 'text',
2574
+ text: ', should not abandon the ',
2575
+ attrs: {
2576
+ start: 60,
2577
+ end: 85,
2578
+ },
2579
+ },
2580
+ {
2581
+ type: 'text',
2582
+ text: 'spiritual friend',
2583
+ attrs: {
2584
+ start: 85,
2585
+ end: 101,
2586
+ },
2587
+ marks: [
2588
+ {
2589
+ type: 'glossaryInstance',
2590
+ attrs: {
2591
+ glossary: '4049f21f-fa6c-4180-80f5-0750c14162da',
2592
+ uuid: 'b720b5d4-3213-4638-b192-eb8e8dca8299',
2593
+ },
2594
+ },
2595
+ ],
2596
+ },
2597
+ {
2598
+ type: 'text',
2599
+ text: ' even at the cost of their lives.',
2600
+ attrs: {
2601
+ start: 101,
2602
+ end: 134,
2603
+ },
2604
+ },
2605
+ ],
2606
+ },
2607
+ ],
2608
+ },
2609
+ {
2610
+ type: 'passage',
2611
+ attrs: {
2612
+ uuid: '965340e9-4b95-4ab7-966d-059e25b094aa',
2613
+ sort: 193,
2614
+ type: 'translation',
2615
+ label: '1.6',
2616
+ alignments: {
2617
+ toh251: {
2618
+ folioUuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
2619
+ toh: 'toh251',
2620
+ tibetan:
2621
+ 'དགེ་སློང་དག་བྱང་ཆུབ་སེམས་\nདཔའ་སེམས་དཔའ་ཆེན་པོས་ཇི་སྲིད་འཚོའི་བར་དུ་བཟོད་པ་དང་དེས་པ་སྲོག་གི་ཕྱིར་ཡང་ཡོངས་སུ་མི་གཏང་བ་དང་། ',
2622
+ folioNumber: 60,
2623
+ volumeNumber: 66,
2624
+ },
2625
+ },
2626
+ },
2627
+ content: [
2628
+ {
2629
+ type: 'paragraph',
2630
+ attrs: {
2631
+ start: 0,
2632
+ end: 136,
2633
+ uuid: '965340e9-4b95-4ab7-966d-059e25b094aa',
2634
+ },
2635
+ content: [
2636
+ {
2637
+ type: 'text',
2638
+ text: '“Monks, for as long as they live, bodhisattvas, ',
2639
+ attrs: {
2640
+ start: 0,
2641
+ end: 48,
2642
+ },
2643
+ },
2644
+ {
2645
+ type: 'text',
2646
+ text: 'great beings',
2647
+ attrs: {
2648
+ start: 48,
2649
+ end: 60,
2650
+ },
2651
+ marks: [
2652
+ {
2653
+ type: 'glossaryInstance',
2654
+ attrs: {
2655
+ glossary: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
2656
+ uuid: '9be0ece5-da55-4d6d-934f-26149e9241ac',
2657
+ },
2658
+ },
2659
+ ],
2660
+ },
2661
+ {
2662
+ type: 'text',
2663
+ text: ', should not abandon ',
2664
+ attrs: {
2665
+ start: 60,
2666
+ end: 81,
2667
+ },
2668
+ },
2669
+ {
2670
+ type: 'text',
2671
+ text: 'tolerance',
2672
+ attrs: {
2673
+ start: 81,
2674
+ end: 90,
2675
+ },
2676
+ marks: [
2677
+ {
2678
+ type: 'glossaryInstance',
2679
+ attrs: {
2680
+ glossary: '3268038f-cca4-471a-94b3-13c62c85b7ca',
2681
+ uuid: '247d0cd6-8f48-4e3d-8c70-ab5ddf7f1382',
2682
+ },
2683
+ },
2684
+ ],
2685
+ },
2686
+ {
2687
+ type: 'text',
2688
+ text: ' and ',
2689
+ attrs: {
2690
+ start: 90,
2691
+ end: 95,
2692
+ },
2693
+ },
2694
+ {
2695
+ type: 'text',
2696
+ text: 'lenience',
2697
+ attrs: {
2698
+ start: 95,
2699
+ end: 103,
2700
+ },
2701
+ marks: [
2702
+ {
2703
+ type: 'glossaryInstance',
2704
+ attrs: {
2705
+ glossary: '4f7a6a56-6c00-43a0-b457-f3e741364a05',
2706
+ uuid: 'bc10971b-913a-4a6b-b0cb-888310563c90',
2707
+ },
2708
+ },
2709
+ ],
2710
+ },
2711
+ {
2712
+ type: 'text',
2713
+ text: ' even at the cost of their lives.',
2714
+ attrs: {
2715
+ start: 103,
2716
+ end: 136,
2717
+ },
2718
+ marks: [
2719
+ {
2720
+ type: 'endNoteLink',
2721
+ attrs: {
2722
+ notes: [
2723
+ {
2724
+ endNote: '5433d5e2-c2f2-4a05-bc48-60dcb1109fbf',
2725
+ label: '17',
2726
+ uuid: 'de90ce7e-9b47-4324-ae1c-b803ee1cd28e',
2727
+ start: 136,
2728
+ end: 136,
2729
+ location: 'end',
2730
+ },
2731
+ ],
2732
+ },
2733
+ },
2734
+ ],
2735
+ },
2736
+ ],
2737
+ },
2738
+ ],
2739
+ },
2740
+ {
2741
+ type: 'passage',
2742
+ attrs: {
2743
+ uuid: '06d427ec-46d0-4df1-9d48-08716f8710ec',
2744
+ sort: 202,
2745
+ type: 'translation',
2746
+ label: '1.7',
2747
+ alignments: {
2748
+ toh251: {
2749
+ folioUuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
2750
+ toh: 'toh251',
2751
+ tibetan:
2752
+ 'དགེ་སློང་དག་བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོས་ཇི་སྲིད་འཚོའི་བར་དུ་དགོན་པ་ལ་གནས་པ་སྲོག་གི་ཕྱིར་ཡང་ཡོངས་སུ་གཏང་བར་མི་བྱ་སྟེ། ',
2753
+ folioNumber: 60,
2754
+ volumeNumber: 66,
2755
+ },
2756
+ },
2757
+ },
2758
+ content: [
2759
+ {
2760
+ type: 'paragraph',
2761
+ attrs: {
2762
+ start: 0,
2763
+ end: 140,
2764
+ uuid: '06d427ec-46d0-4df1-9d48-08716f8710ec',
2765
+ },
2766
+ content: [
2767
+ {
2768
+ type: 'text',
2769
+ text: '“Monks, for as long as they live, bodhisattvas, ',
2770
+ attrs: {
2771
+ start: 0,
2772
+ end: 48,
2773
+ },
2774
+ },
2775
+ {
2776
+ type: 'text',
2777
+ text: 'great beings',
2778
+ attrs: {
2779
+ start: 48,
2780
+ end: 60,
2781
+ },
2782
+ marks: [
2783
+ {
2784
+ type: 'glossaryInstance',
2785
+ attrs: {
2786
+ glossary: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
2787
+ uuid: '85247b59-0ae2-4dc2-8f1d-fc7d43d18e04',
2788
+ },
2789
+ },
2790
+ ],
2791
+ },
2792
+ {
2793
+ type: 'text',
2794
+ text: ', should not abandon ',
2795
+ attrs: {
2796
+ start: 60,
2797
+ end: 81,
2798
+ },
2799
+ },
2800
+ {
2801
+ type: 'text',
2802
+ text: 'dwelling in the wilderness',
2803
+ attrs: {
2804
+ start: 81,
2805
+ end: 107,
2806
+ },
2807
+ marks: [
2808
+ {
2809
+ type: 'glossaryInstance',
2810
+ attrs: {
2811
+ glossary: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
2812
+ uuid: '9f5020c2-2a3f-4faa-8d83-e953dfb0b255',
2813
+ },
2814
+ },
2815
+ {
2816
+ type: 'endNoteLink',
2817
+ attrs: {
2818
+ notes: [
2819
+ {
2820
+ endNote: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
2821
+ label: '18',
2822
+ uuid: 'd5f88fe6-79d7-45ed-bf99-2cbfca3bc9f3',
2823
+ start: 107,
2824
+ end: 107,
2825
+ location: 'end',
2826
+ },
2827
+ ],
2828
+ },
2829
+ },
2830
+ ],
2831
+ },
2832
+ {
2833
+ type: 'text',
2834
+ text: ' even at the cost of their lives.',
2835
+ attrs: {
2836
+ start: 107,
2837
+ end: 140,
2838
+ },
2839
+ },
2840
+ ],
2841
+ },
2842
+ ],
2843
+ },
2844
+ {
2845
+ type: 'passage',
2846
+ attrs: {
2847
+ uuid: '7dea2dba-3580-4d45-8bb3-f9cea52a1991',
2848
+ sort: 209,
2849
+ type: 'translation',
2850
+ label: '1.8',
2851
+ alignments: {
2852
+ toh251: {
2853
+ folioUuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
2854
+ toh: 'toh251',
2855
+ tibetan:
2856
+ 'དགེ་སློང་དག་བྱང་ཆུབ་\nསེམས་དཔའ་སེམས་དཔའ་ཆེན་པོས་ཇི་སྲིད་འཚོའི་བར་དུ་ཆོས་བཞི་པོ་འདི་དག་སྲོག་གི་ཕྱིར་ཡང་ཡོངས་སུ་གཏང་བར་མི་བྱའོ། །',
2857
+ folioNumber: 60,
2858
+ volumeNumber: 66,
2859
+ },
2860
+ },
2861
+ },
2862
+ content: [
2863
+ {
2864
+ type: 'paragraph',
2865
+ attrs: {
2866
+ start: 0,
2867
+ end: 133,
2868
+ uuid: '7dea2dba-3580-4d45-8bb3-f9cea52a1991',
2869
+ },
2870
+ content: [
2871
+ {
2872
+ type: 'text',
2873
+ text: '“Monks, for as long as they live, bodhisattvas, ',
2874
+ attrs: {
2875
+ start: 0,
2876
+ end: 48,
2877
+ },
2878
+ },
2879
+ {
2880
+ type: 'text',
2881
+ text: 'great beings',
2882
+ attrs: {
2883
+ start: 48,
2884
+ end: 60,
2885
+ },
2886
+ marks: [
2887
+ {
2888
+ type: 'glossaryInstance',
2889
+ attrs: {
2890
+ glossary: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
2891
+ uuid: 'f78b3d56-2441-426f-ae87-8285bb46c82a',
2892
+ },
2893
+ },
2894
+ ],
2895
+ },
2896
+ {
2897
+ type: 'text',
2898
+ text: ', should not abandon these four factors even at the cost of their lives.”',
2899
+ attrs: {
2900
+ start: 60,
2901
+ end: 133,
2902
+ },
2903
+ },
2904
+ ],
2905
+ },
2906
+ ],
2907
+ },
2908
+ {
2909
+ type: 'passage',
2910
+ attrs: {
2911
+ uuid: 'd9096952-6a7d-4f87-93cf-a8c99a4c1ef3',
2912
+ sort: 213,
2913
+ type: 'translation',
2914
+ label: '1.9',
2915
+ alignments: {
2916
+ toh251: {
2917
+ folioUuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
2918
+ toh: 'toh251',
2919
+ tibetan:
2920
+ 'བཅོམ་ལྡན་འདས་ཀྱིས་དེ་སྐད་ཅེས་བཀའ་སྩལ་ཏེ། བདེ་བར་གཤེགས་པས་དེ་སྐད་གསུངས་ནས། སྟོན་པས་གཞན་ཡང་འདི་སྐད་བཀའ་སྩལ་\nཏོ། །',
2921
+ folioNumber: 60,
2922
+ volumeNumber: 66,
2923
+ },
2924
+ },
2925
+ },
2926
+ content: [
2927
+ {
2928
+ type: 'paragraph',
2929
+ attrs: {
2930
+ start: 0,
2931
+ end: 120,
2932
+ uuid: 'd9096952-6a7d-4f87-93cf-a8c99a4c1ef3',
2933
+ },
2934
+ content: [
2935
+ {
2936
+ type: 'text',
2937
+ text: 'The Blessed One spoke these words, and once the Sugata had spoken in this way, he, the Teacher, also said the following:',
2938
+ attrs: {
2939
+ start: 0,
2940
+ end: 120,
2941
+ },
2942
+ },
2943
+ ],
2944
+ },
2945
+ ],
2946
+ },
2947
+ {
2948
+ type: 'passage',
2949
+ attrs: {
2950
+ uuid: '7ece3672-4152-4d60-a0d5-cc623a8cfa6f',
2951
+ sort: 215,
2952
+ type: 'translation',
2953
+ label: '1.10',
2954
+ alignments: {
2955
+ toh251: {
2956
+ folioUuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
2957
+ toh: 'toh251',
2958
+ tibetan:
2959
+ 'ཐམས་ཅད་མཁྱེན་ཉིད་སེམས་ནི་མི་གཏོང་ཞིང་། །མཁས་པས་རྫོགས་པའི་བྱང་ཆུབ་སེམས་སྐྱེད་ཅིག །བཟོད་པ་དེས་པའི་སྟོབས་ལ་རབ་གནས་ཏེ། །དགེ་བའི་བཤེས་གཉེན་ཡོངས་སུ་གཏང་མི་བྱ། །',
2960
+ folioNumber: 60,
2961
+ volumeNumber: 66,
2962
+ },
2963
+ },
2964
+ },
2965
+ content: [
2966
+ {
2967
+ type: 'lineGroup',
2968
+ attrs: {
2969
+ start: 0,
2970
+ end: 201,
2971
+ uuid: '7d2b05e7-c63f-40ea-8e6b-3ccefb83c603',
2972
+ },
2973
+ content: [
2974
+ {
2975
+ type: 'line',
2976
+ content: [
2977
+ {
2978
+ type: 'text',
2979
+ text: '“Let the wise conceive the thought of perfect awakening, ',
2980
+ attrs: {
2981
+ start: 0,
2982
+ end: 57,
2983
+ },
2984
+ },
2985
+ ],
2986
+ attrs: {
2987
+ start: 0,
2988
+ end: 57,
2989
+ uuid: '181a3584-20b8-4d6e-a0e5-c0ea733dbae6',
2990
+ },
2991
+ },
2992
+ {
2993
+ type: 'line',
2994
+ content: [
2995
+ {
2996
+ type: 'text',
2997
+ text: 'And not cast aside the thought of omniscience',
2998
+ attrs: {
2999
+ start: 57,
3000
+ end: 102,
3001
+ },
3002
+ marks: [
3003
+ {
3004
+ type: 'endNoteLink',
3005
+ attrs: {
3006
+ notes: [
3007
+ {
3008
+ endNote: 'fb352874-9ae4-4658-97ea-ec944f2c6dfc',
3009
+ label: '19',
3010
+ uuid: 'bc5071aa-2099-4323-a353-6318e01de343',
3011
+ start: 102,
3012
+ end: 102,
3013
+ location: 'end',
3014
+ },
3015
+ ],
3016
+ },
3017
+ },
3018
+ ],
3019
+ },
3020
+ {
3021
+ type: 'text',
3022
+ text: '; ',
3023
+ attrs: {
3024
+ start: 102,
3025
+ end: 104,
3026
+ },
3027
+ },
3028
+ ],
3029
+ attrs: {
3030
+ start: 57,
3031
+ end: 104,
3032
+ uuid: 'ca6b3880-1040-4920-b1ce-e80aa7e7bcd7',
3033
+ },
3034
+ },
3035
+ {
3036
+ type: 'line',
3037
+ content: [
3038
+ {
3039
+ type: 'text',
3040
+ text: 'Let them maintain the strength of ',
3041
+ attrs: {
3042
+ start: 104,
3043
+ end: 138,
3044
+ },
3045
+ },
3046
+ {
3047
+ type: 'text',
3048
+ text: 'tolerance',
3049
+ attrs: {
3050
+ start: 138,
3051
+ end: 147,
3052
+ },
3053
+ marks: [
3054
+ {
3055
+ type: 'glossaryInstance',
3056
+ attrs: {
3057
+ glossary: '3268038f-cca4-471a-94b3-13c62c85b7ca',
3058
+ uuid: '79f4938e-df3c-40c8-a618-fa188a124517',
3059
+ },
3060
+ },
3061
+ ],
3062
+ },
3063
+ {
3064
+ type: 'text',
3065
+ text: ' and ',
3066
+ attrs: {
3067
+ start: 147,
3068
+ end: 152,
3069
+ },
3070
+ },
3071
+ {
3072
+ type: 'text',
3073
+ text: 'lenience',
3074
+ attrs: {
3075
+ start: 152,
3076
+ end: 160,
3077
+ },
3078
+ marks: [
3079
+ {
3080
+ type: 'glossaryInstance',
3081
+ attrs: {
3082
+ glossary: '4f7a6a56-6c00-43a0-b457-f3e741364a05',
3083
+ uuid: 'dd65abe5-d658-40d9-820d-d9c427e40f5e',
3084
+ },
3085
+ },
3086
+ ],
3087
+ },
3088
+ {
3089
+ type: 'text',
3090
+ text: ', ',
3091
+ attrs: {
3092
+ start: 160,
3093
+ end: 162,
3094
+ },
3095
+ },
3096
+ ],
3097
+ attrs: {
3098
+ start: 104,
3099
+ end: 162,
3100
+ uuid: '196aa179-8cea-4525-8a41-19eb0781312f',
3101
+ },
3102
+ },
3103
+ {
3104
+ type: 'line',
3105
+ content: [
3106
+ {
3107
+ type: 'text',
3108
+ text: 'And never forsake the ',
3109
+ attrs: {
3110
+ start: 162,
3111
+ end: 184,
3112
+ },
3113
+ },
3114
+ {
3115
+ type: 'text',
3116
+ text: 'spiritual friend',
3117
+ attrs: {
3118
+ start: 184,
3119
+ end: 200,
3120
+ },
3121
+ marks: [
3122
+ {
3123
+ type: 'glossaryInstance',
3124
+ attrs: {
3125
+ glossary: '4049f21f-fa6c-4180-80f5-0750c14162da',
3126
+ uuid: '83d1bcb5-15ed-492b-a401-d59e7a0c0ad3',
3127
+ },
3128
+ },
3129
+ ],
3130
+ },
3131
+ {
3132
+ type: 'text',
3133
+ text: '.',
3134
+ attrs: {
3135
+ start: 200,
3136
+ end: 201,
3137
+ },
3138
+ },
3139
+ ],
3140
+ attrs: {
3141
+ start: 162,
3142
+ end: 201,
3143
+ uuid: 'cf054120-9398-4855-8c62-3677041041d4',
3144
+ },
3145
+ },
3146
+ ],
3147
+ },
3148
+ ],
3149
+ },
3150
+ {
3151
+ type: 'passage',
3152
+ attrs: {
3153
+ uuid: 'ee947d31-48e1-4b37-a901-b999b24962f3',
3154
+ sort: 230,
3155
+ type: 'translation',
3156
+ label: '1.11',
3157
+ alignments: {
3158
+ toh251: {
3159
+ folioUuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
3160
+ toh: 'toh251',
3161
+ tibetan:
3162
+ 'རི་དགས་རྒྱལ་པོ་བཞིན་དུ་འཇིགས་སྤངས་ཏེ། །མཁས་[F.61.a]པས་དགོན་གནས་རྟག་ཏུ་བསྟེན་པར་བྱ། །ཆོས་འདི་དག་ལ་རྟག་ཏུ་རབ་གནས་ན། །བདུད་རྣམས་བཅོམ་ནས་བྱང་ཆུབ་དེ་འཚང་རྒྱ། །',
3163
+ folioNumber: 60,
3164
+ volumeNumber: 66,
3165
+ },
3166
+ },
3167
+ },
3168
+ content: [
3169
+ {
3170
+ type: 'lineGroup',
3171
+ attrs: {
3172
+ start: 0,
3173
+ end: 184,
3174
+ uuid: 'e9eec4aa-3a9f-435b-9111-4aa27a3deb11',
3175
+ },
3176
+ content: [
3177
+ {
3178
+ type: 'line',
3179
+ content: [
3180
+ {
3181
+ type: 'text',
3182
+ text: '“If the wise, like the king of beasts, abandon fear, ',
3183
+ attrs: {
3184
+ start: 0,
3185
+ end: 53,
3186
+ },
3187
+ },
3188
+ ],
3189
+ attrs: {
3190
+ start: 0,
3191
+ end: 53,
3192
+ uuid: '9b820bc7-def0-484e-bdd8-088d19e37b48',
3193
+ },
3194
+ },
3195
+ {
3196
+ type: 'line',
3197
+ content: [
3198
+ {
3199
+ type: 'text',
3200
+ text: 'Always remain ',
3201
+ attrs: {
3202
+ start: 53,
3203
+ end: 67,
3204
+ },
3205
+ },
3206
+ {
3207
+ type: 'text',
3208
+ text: 'dwelling in the wilderness',
3209
+ attrs: {
3210
+ start: 67,
3211
+ end: 93,
3212
+ },
3213
+ marks: [
3214
+ {
3215
+ type: 'glossaryInstance',
3216
+ attrs: {
3217
+ glossary: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
3218
+ uuid: 'cc951a6e-3334-4f23-8727-8d1b9807e186',
3219
+ },
3220
+ },
3221
+ ],
3222
+ },
3223
+ {
3224
+ type: 'text',
3225
+ text: ', ',
3226
+ attrs: {
3227
+ start: 93,
3228
+ end: 95,
3229
+ },
3230
+ },
3231
+ ],
3232
+ attrs: {
3233
+ start: 53,
3234
+ end: 95,
3235
+ uuid: 'd65f874d-9d51-42f3-aa8d-60a200f566fd',
3236
+ },
3237
+ },
3238
+ {
3239
+ type: 'line',
3240
+ content: [
3241
+ {
3242
+ type: 'text',
3243
+ text: 'And constantly maintain these factors, ',
3244
+ attrs: {
3245
+ start: 95,
3246
+ end: 134,
3247
+ },
3248
+ },
3249
+ ],
3250
+ attrs: {
3251
+ start: 95,
3252
+ end: 134,
3253
+ uuid: '7defb520-391b-488f-8821-ab35d7fac408',
3254
+ },
3255
+ },
3256
+ {
3257
+ type: 'line',
3258
+ content: [
3259
+ {
3260
+ type: 'text',
3261
+ text: 'They will conquer the māras and attain awakening.”',
3262
+ attrs: {
3263
+ start: 134,
3264
+ end: 184,
3265
+ },
3266
+ },
3267
+ ],
3268
+ attrs: {
3269
+ start: 134,
3270
+ end: 184,
3271
+ uuid: 'e003cc18-27e1-4be5-b52d-ed4230eaf692',
3272
+ },
3273
+ },
3274
+ ],
3275
+ },
3276
+ ],
3277
+ },
3278
+ {
3279
+ type: 'passage',
3280
+ attrs: {
3281
+ uuid: '3c0a9671-d031-40fa-ae5b-def8887c4ded',
3282
+ sort: 241,
3283
+ type: 'translation',
3284
+ label: '1.12',
3285
+ alignments: {
3286
+ toh251: {
3287
+ folioUuid: '9cb7de38-b313-4014-91a2-71dc81d46c96',
3288
+ toh: 'toh251',
3289
+ tibetan:
3290
+ 'བཅོམ་ལྡན་འདས་ཀྱིས་དེ་སྐད་ཅེས་བཀའ་སྩལ་ནས། དགེ་སློང་དེ་དག་དང་། བྱང་ཆུབ་སེམས་དཔའ་དེ་དག་དང་། \nཐམས་ཅད་དང་ལྡན་པའི་འཁོར་དེ་དག་ཡི་རངས་ཏེ། བཅོམ་ལྡན་འདས་ཀྱིས་གསུངས་པ་ལ་མངོན་པར་བསྟོད་དོ།། །།',
3291
+ folioNumber: 61,
3292
+ volumeNumber: 66,
3293
+ },
3294
+ },
3295
+ },
3296
+ content: [
3297
+ {
3298
+ type: 'paragraph',
3299
+ attrs: {
3300
+ start: 0,
3301
+ end: 149,
3302
+ uuid: '3c0a9671-d031-40fa-ae5b-def8887c4ded',
3303
+ },
3304
+ content: [
3305
+ {
3306
+ type: 'text',
3307
+ text: 'When the Blessed One had said this, the monks and bodhisattvas, together with the entire assembly, rejoiced and praised the words of the Blessed One.',
3308
+ attrs: {
3309
+ start: 0,
3310
+ end: 149,
3311
+ },
3312
+ },
3313
+ ],
3314
+ },
3315
+ ],
3316
+ },
3317
+ {
3318
+ type: 'passage',
3319
+ attrs: {
3320
+ uuid: 'de103c91-0bb2-4f90-9d98-c84718baecc9',
3321
+ sort: 243,
3322
+ type: 'translation',
3323
+ label: '1.13',
3324
+ alignments: {
3325
+ toh251: {
3326
+ folioUuid: '9cb7de38-b313-4014-91a2-71dc81d46c96',
3327
+ toh: 'toh251',
3328
+ tibetan: 'འཕགས་པ་ཆོས་བཞི་པ་ཞེས་བྱ་བ་ཐེག་པ་ཆེན་པོའི་མདོ་རྫོགས་སོ། །',
3329
+ folioNumber: 61,
3330
+ volumeNumber: 66,
3331
+ },
3332
+ },
3333
+ },
3334
+ content: [
3335
+ {
3336
+ type: 'trailer',
3337
+ attrs: {
3338
+ start: 0,
3339
+ end: 62,
3340
+ uuid: '76612414-df30-4c73-89fa-139e794a4a4d',
3341
+ },
3342
+ content: [
3343
+ {
3344
+ type: 'text',
3345
+ text: 'This concludes ',
3346
+ attrs: {
3347
+ start: 0,
3348
+ end: 15,
3349
+ },
3350
+ },
3351
+ {
3352
+ type: 'text',
3353
+ text: '“The Noble Mahāyāna Sūtra on the Four Factors.”',
3354
+ attrs: {
3355
+ start: 15,
3356
+ end: 62,
3357
+ },
3358
+ marks: [
3359
+ {
3360
+ type: 'italic',
3361
+ attrs: {
3362
+ uuid: '895f43ec-7189-4273-b067-d557523723aa',
3363
+ lang: 'en',
3364
+ type: 'inlineTitle',
3365
+ },
3366
+ },
3367
+ ],
3368
+ },
3369
+ ],
3370
+ },
3371
+ ],
3372
+ },
3373
+ {
3374
+ type: 'passage',
3375
+ attrs: {
3376
+ uuid: 'de4cfc5e-5984-4269-a6da-41041aebda05',
3377
+ sort: 246,
3378
+ type: 'endnotesHeader',
3379
+ label: 'n.',
3380
+ alignments: {},
3381
+ },
3382
+ content: [
3383
+ {
3384
+ type: 'heading',
3385
+ attrs: {
3386
+ level: 2,
3387
+ start: 0,
3388
+ end: 5,
3389
+ uuid: '7f292b93-a6d6-408a-8cc2-44eabf24b79a',
3390
+ class: 'section-title',
3391
+ },
3392
+ content: [
3393
+ {
3394
+ type: 'text',
3395
+ text: 'Notes',
3396
+ attrs: {
3397
+ start: 0,
3398
+ end: 5,
3399
+ },
3400
+ },
3401
+ ],
3402
+ },
3403
+ ],
3404
+ },
3405
+ {
3406
+ type: 'passage',
3407
+ attrs: {
3408
+ uuid: '2cb57e37-0798-4d57-81ae-eb25b4822a16',
3409
+ sort: 248,
3410
+ type: 'endnotes',
3411
+ label: 'n.1',
3412
+ alignments: {},
3413
+ },
3414
+ content: [
3415
+ {
3416
+ type: 'paragraph',
3417
+ attrs: {
3418
+ start: 0,
3419
+ end: 126,
3420
+ uuid: '2cb57e37-0798-4d57-81ae-eb25b4822a16',
3421
+ },
3422
+ content: [
3423
+ {
3424
+ type: 'text',
3425
+ text: 'Pearcey, Adam. trans. (2019), ',
3426
+ attrs: {
3427
+ start: 0,
3428
+ end: 30,
3429
+ },
3430
+ },
3431
+ {
3432
+ type: 'text',
3433
+ text: 'The Sūtra Teaching the Four Factors,',
3434
+ attrs: {
3435
+ start: 30,
3436
+ end: 66,
3437
+ },
3438
+ marks: [
3439
+ {
3440
+ type: 'internalLink',
3441
+ attrs: {
3442
+ href: '/entity/work/c0ca609d-29b7-4fef-8ea1-8db78310f1bb',
3443
+ entity: 'c0ca609d-29b7-4fef-8ea1-8db78310f1bb',
3444
+ type: 'work',
3445
+ start: 30,
3446
+ end: 0,
3447
+ },
3448
+ },
3449
+ {
3450
+ type: 'italic',
3451
+ attrs: {
3452
+ uuid: '2cfd2746-55cd-4798-955c-95ee8a1eeaa3',
3453
+ lang: 'en',
3454
+ type: 'inlineTitle',
3455
+ },
3456
+ },
3457
+ ],
3458
+ },
3459
+ {
3460
+ type: 'text',
3461
+ text: ' Toh 249 (84000: Translating the Words of the Buddha, 2019).',
3462
+ attrs: {
3463
+ start: 66,
3464
+ end: 126,
3465
+ },
3466
+ },
3467
+ ],
3468
+ },
3469
+ ],
3470
+ },
3471
+ {
3472
+ type: 'passage',
3473
+ attrs: {
3474
+ uuid: '24ee6eb1-a9ce-4447-b1f4-b38fb8e4a426',
3475
+ sort: 252,
3476
+ type: 'endnotes',
3477
+ label: 'n.2',
3478
+ alignments: {},
3479
+ },
3480
+ content: [
3481
+ {
3482
+ type: 'paragraph',
3483
+ attrs: {
3484
+ start: 0,
3485
+ end: 108,
3486
+ uuid: '24ee6eb1-a9ce-4447-b1f4-b38fb8e4a426',
3487
+ },
3488
+ content: [
3489
+ {
3490
+ type: 'text',
3491
+ text: 'Pearcey, Adam. trans. (2023a), ',
3492
+ attrs: {
3493
+ start: 0,
3494
+ end: 31,
3495
+ },
3496
+ },
3497
+ {
3498
+ type: 'text',
3499
+ text: 'The Four Factors,',
3500
+ attrs: {
3501
+ start: 31,
3502
+ end: 48,
3503
+ },
3504
+ marks: [
3505
+ {
3506
+ type: 'internalLink',
3507
+ attrs: {
3508
+ href: '/entity/work/194ce59e-f1a7-48ed-a3a2-e07e3164ec71',
3509
+ entity: '194ce59e-f1a7-48ed-a3a2-e07e3164ec71',
3510
+ type: 'work',
3511
+ start: 31,
3512
+ end: 0,
3513
+ },
3514
+ },
3515
+ {
3516
+ type: 'italic',
3517
+ attrs: {
3518
+ uuid: '5fc6af77-5fd7-4671-8ebc-41f9f83713c8',
3519
+ lang: 'en',
3520
+ type: 'inlineTitle',
3521
+ },
3522
+ },
3523
+ ],
3524
+ },
3525
+ {
3526
+ type: 'text',
3527
+ text: ' Toh 250 (84000: Translating the Words of the Buddha, 2023).',
3528
+ attrs: {
3529
+ start: 48,
3530
+ end: 108,
3531
+ },
3532
+ },
3533
+ ],
3534
+ },
3535
+ ],
3536
+ },
3537
+ {
3538
+ type: 'passage',
3539
+ attrs: {
3540
+ uuid: '5c383b48-6d8b-4976-b8bd-1bab3f5a16d4',
3541
+ sort: 256,
3542
+ type: 'endnotes',
3543
+ label: 'n.3',
3544
+ alignments: {},
3545
+ },
3546
+ content: [
3547
+ {
3548
+ type: 'paragraph',
3549
+ attrs: {
3550
+ start: 0,
3551
+ end: 183,
3552
+ uuid: '5c383b48-6d8b-4976-b8bd-1bab3f5a16d4',
3553
+ },
3554
+ content: [
3555
+ {
3556
+ type: 'text',
3557
+ text: 'Dharmachakra Translation Committee, trans., ',
3558
+ attrs: {
3559
+ start: 0,
3560
+ end: 44,
3561
+ },
3562
+ },
3563
+ {
3564
+ type: 'text',
3565
+ text: 'The Accomplishment of the Sets of Four Qualities: The Bodhisattvas’ Prātimokṣa,',
3566
+ attrs: {
3567
+ start: 44,
3568
+ end: 123,
3569
+ },
3570
+ marks: [
3571
+ {
3572
+ type: 'italic',
3573
+ attrs: {
3574
+ uuid: '03764b3f-fe7c-491e-87fd-49c659738c26',
3575
+ lang: 'en',
3576
+ type: 'inlineTitle',
3577
+ start: 44,
3578
+ end: 0,
3579
+ },
3580
+ },
3581
+ {
3582
+ type: 'internalLink',
3583
+ attrs: {
3584
+ href: '/entity/work/93e4b079-d91a-4928-92f2-a49ee367c0f0',
3585
+ entity: '93e4b079-d91a-4928-92f2-a49ee367c0f0',
3586
+ type: 'work',
3587
+ },
3588
+ },
3589
+ ],
3590
+ },
3591
+ {
3592
+ type: 'text',
3593
+ text: ' Toh 248 (84000: Translating the Words of the Buddha, 2024).',
3594
+ attrs: {
3595
+ start: 123,
3596
+ end: 183,
3597
+ },
3598
+ },
3599
+ ],
3600
+ },
3601
+ ],
3602
+ },
3603
+ {
3604
+ type: 'passage',
3605
+ attrs: {
3606
+ uuid: 'd4bb4496-9915-45e9-9b41-6f4744056d34',
3607
+ sort: 260,
3608
+ type: 'endnotes',
3609
+ label: 'n.4',
3610
+ alignments: {},
3611
+ },
3612
+ content: [
3613
+ {
3614
+ type: 'paragraph',
3615
+ attrs: {
3616
+ start: 0,
3617
+ end: 132,
3618
+ uuid: 'd4bb4496-9915-45e9-9b41-6f4744056d34',
3619
+ },
3620
+ content: [
3621
+ {
3622
+ type: 'text',
3623
+ text: 'Dharmachakra Translation Committee, trans., ',
3624
+ attrs: {
3625
+ start: 0,
3626
+ end: 44,
3627
+ },
3628
+ },
3629
+ {
3630
+ type: 'text',
3631
+ text: 'The Fourfold Accomplishment,',
3632
+ attrs: {
3633
+ start: 44,
3634
+ end: 72,
3635
+ },
3636
+ marks: [
3637
+ {
3638
+ type: 'internalLink',
3639
+ attrs: {
3640
+ href: '/entity/work/42cb94e9-b9a4-4daf-ab22-c5e87da4fb68',
3641
+ entity: '42cb94e9-b9a4-4daf-ab22-c5e87da4fb68',
3642
+ type: 'work',
3643
+ start: 44,
3644
+ end: 0,
3645
+ },
3646
+ },
3647
+ {
3648
+ type: 'italic',
3649
+ attrs: {
3650
+ uuid: 'd639dd75-92fa-4eaa-90e1-ce07a4df2643',
3651
+ lang: 'en',
3652
+ type: 'inlineTitle',
3653
+ },
3654
+ },
3655
+ ],
3656
+ },
3657
+ {
3658
+ type: 'text',
3659
+ text: ' Toh 252 (84000: Translating the Words of the Buddha, 2020).',
3660
+ attrs: {
3661
+ start: 72,
3662
+ end: 132,
3663
+ },
3664
+ },
3665
+ ],
3666
+ },
3667
+ ],
3668
+ },
3669
+ {
3670
+ type: 'passage',
3671
+ attrs: {
3672
+ uuid: 'b63546f7-f747-42eb-83e4-4508719b0342',
3673
+ sort: 264,
3674
+ type: 'endnotes',
3675
+ label: 'n.5',
3676
+ alignments: {},
3677
+ },
3678
+ content: [
3679
+ {
3680
+ type: 'paragraph',
3681
+ attrs: {
3682
+ start: 0,
3683
+ end: 72,
3684
+ uuid: 'b63546f7-f747-42eb-83e4-4508719b0342',
3685
+ },
3686
+ content: [
3687
+ {
3688
+ type: 'text',
3689
+ text: 'Dasheng si fa jing 大乘四法經 (',
3690
+ attrs: {
3691
+ start: 0,
3692
+ end: 26,
3693
+ },
3694
+ },
3695
+ {
3696
+ type: 'text',
3697
+ text: 'Caturdharmaka­sūtra',
3698
+ attrs: {
3699
+ start: 26,
3700
+ end: 45,
3701
+ },
3702
+ marks: [
3703
+ {
3704
+ type: 'italic',
3705
+ attrs: {
3706
+ start: 26,
3707
+ end: 45,
3708
+ uuid: '0da63d9b-3ce4-47a5-b7a2-3a65700faccc',
3709
+ type: 'span',
3710
+ lang: 'Sa-Ltn',
3711
+ textStyle: 'foreign',
3712
+ },
3713
+ },
3714
+ ],
3715
+ },
3716
+ {
3717
+ type: 'text',
3718
+ text: '), Taishō 772 (',
3719
+ attrs: {
3720
+ start: 45,
3721
+ end: 60,
3722
+ },
3723
+ },
3724
+ {
3725
+ type: 'text',
3726
+ text: 'CBETA',
3727
+ attrs: {
3728
+ start: 60,
3729
+ end: 65,
3730
+ },
3731
+ marks: [
3732
+ {
3733
+ type: 'link',
3734
+ attrs: {
3735
+ href: 'https://cbetaonline.dila.edu.tw/en/T0772',
3736
+ uuid: 'c972c0f2-1273-4064-a26c-dda965b3f3ef',
3737
+ type: 'link',
3738
+ },
3739
+ },
3740
+ ],
3741
+ },
3742
+ {
3743
+ type: 'text',
3744
+ text: '; ',
3745
+ attrs: {
3746
+ start: 65,
3747
+ end: 67,
3748
+ },
3749
+ },
3750
+ {
3751
+ type: 'text',
3752
+ text: 'SAT',
3753
+ attrs: {
3754
+ start: 67,
3755
+ end: 70,
3756
+ },
3757
+ marks: [
3758
+ {
3759
+ type: 'link',
3760
+ attrs: {
3761
+ href: 'https://21dzk.l.u-tokyo.ac.jp/SAT2018/T0772.html',
3762
+ uuid: 'c19d9278-b438-41c4-9fef-724ade24c99b',
3763
+ type: 'link',
3764
+ },
3765
+ },
3766
+ ],
3767
+ },
3768
+ {
3769
+ type: 'text',
3770
+ text: ').',
3771
+ attrs: {
3772
+ start: 70,
3773
+ end: 72,
3774
+ },
3775
+ },
3776
+ ],
3777
+ },
3778
+ ],
3779
+ },
3780
+ {
3781
+ type: 'passage',
3782
+ attrs: {
3783
+ uuid: 'b5ba5c64-cea9-4985-8a32-40c7685f8b8c',
3784
+ sort: 275,
3785
+ type: 'endnotes',
3786
+ label: 'n.6',
3787
+ alignments: {},
3788
+ },
3789
+ content: [
3790
+ {
3791
+ type: 'paragraph',
3792
+ attrs: {
3793
+ start: 0,
3794
+ end: 90,
3795
+ uuid: 'b5ba5c64-cea9-4985-8a32-40c7685f8b8c',
3796
+ },
3797
+ content: [
3798
+ {
3799
+ type: 'text',
3800
+ text: 'Fo shuo pusa xiuxing si fa jing 佛說菩薩修行四法經 (',
3801
+ attrs: {
3802
+ start: 0,
3803
+ end: 43,
3804
+ },
3805
+ },
3806
+ {
3807
+ type: 'text',
3808
+ text: 'Catur­dharmaka­sūtra',
3809
+ attrs: {
3810
+ start: 43,
3811
+ end: 63,
3812
+ },
3813
+ marks: [
3814
+ {
3815
+ type: 'italic',
3816
+ attrs: {
3817
+ start: 43,
3818
+ end: 63,
3819
+ uuid: '2775b577-6d79-44d6-b30e-a73e93b2b8a7',
3820
+ type: 'span',
3821
+ lang: 'Sa-Ltn',
3822
+ textStyle: 'foreign',
3823
+ },
3824
+ },
3825
+ ],
3826
+ },
3827
+ {
3828
+ type: 'text',
3829
+ text: '), Taishō 773 (',
3830
+ attrs: {
3831
+ start: 63,
3832
+ end: 78,
3833
+ },
3834
+ },
3835
+ {
3836
+ type: 'text',
3837
+ text: 'CBETA',
3838
+ attrs: {
3839
+ start: 78,
3840
+ end: 83,
3841
+ },
3842
+ marks: [
3843
+ {
3844
+ type: 'link',
3845
+ attrs: {
3846
+ href: 'https://cbetaonline.dila.edu.tw/en/T0773',
3847
+ uuid: 'cd991891-b206-4212-ab0e-8109e88c9c17',
3848
+ type: 'link',
3849
+ },
3850
+ },
3851
+ ],
3852
+ },
3853
+ {
3854
+ type: 'text',
3855
+ text: '; ',
3856
+ attrs: {
3857
+ start: 83,
3858
+ end: 85,
3859
+ },
3860
+ },
3861
+ {
3862
+ type: 'text',
3863
+ text: 'SAT',
3864
+ attrs: {
3865
+ start: 85,
3866
+ end: 88,
3867
+ },
3868
+ marks: [
3869
+ {
3870
+ type: 'link',
3871
+ attrs: {
3872
+ href: 'https://21dzk.l.u-tokyo.ac.jp/SAT2018/T0773.html',
3873
+ uuid: '27cafadb-4372-449d-9982-3d804650e81c',
3874
+ type: 'link',
3875
+ },
3876
+ },
3877
+ ],
3878
+ },
3879
+ {
3880
+ type: 'text',
3881
+ text: ').',
3882
+ attrs: {
3883
+ start: 88,
3884
+ end: 90,
3885
+ },
3886
+ },
3887
+ ],
3888
+ },
3889
+ ],
3890
+ },
3891
+ {
3892
+ type: 'passage',
3893
+ attrs: {
3894
+ uuid: 'aa913b64-fd95-433b-92ff-e756258f55c0',
3895
+ sort: 286,
3896
+ type: 'endnotes',
3897
+ label: 'n.7',
3898
+ alignments: {},
3899
+ },
3900
+ content: [
3901
+ {
3902
+ type: 'paragraph',
3903
+ attrs: {
3904
+ start: 0,
3905
+ end: 31,
3906
+ uuid: 'aa913b64-fd95-433b-92ff-e756258f55c0',
3907
+ },
3908
+ content: [
3909
+ {
3910
+ type: 'text',
3911
+ text: 'See Skilling (2021), pp. 200–1.',
3912
+ attrs: {
3913
+ start: 0,
3914
+ end: 31,
3915
+ },
3916
+ },
3917
+ ],
3918
+ },
3919
+ ],
3920
+ },
3921
+ {
3922
+ type: 'passage',
3923
+ attrs: {
3924
+ uuid: '6bdebda4-694f-43c1-bfc7-a14974ebd8cd',
3925
+ sort: 288,
3926
+ type: 'endnotes',
3927
+ label: 'n.8',
3928
+ alignments: {},
3929
+ },
3930
+ content: [
3931
+ {
3932
+ type: 'paragraph',
3933
+ attrs: {
3934
+ start: 0,
3935
+ end: 78,
3936
+ uuid: '6bdebda4-694f-43c1-bfc7-a14974ebd8cd',
3937
+ },
3938
+ content: [
3939
+ {
3940
+ type: 'text',
3941
+ text: 'See Denkarma, F.300.a.2. See also Herrmann-Pfandt (2008), pp. 125–26, no. 238.',
3942
+ attrs: {
3943
+ start: 0,
3944
+ end: 78,
3945
+ },
3946
+ },
3947
+ ],
3948
+ },
3949
+ ],
3950
+ },
3951
+ {
3952
+ type: 'passage',
3953
+ attrs: {
3954
+ uuid: '23afe851-d528-4bf8-8776-012cf2dc192c',
3955
+ sort: 290,
3956
+ type: 'endnotes',
3957
+ label: 'n.9',
3958
+ alignments: {},
3959
+ },
3960
+ content: [
3961
+ {
3962
+ type: 'paragraph',
3963
+ attrs: {
3964
+ start: 0,
3965
+ end: 33,
3966
+ uuid: '23afe851-d528-4bf8-8776-012cf2dc192c',
3967
+ },
3968
+ content: [
3969
+ {
3970
+ type: 'text',
3971
+ text: 'dkar chag ’phang thang ma,',
3972
+ attrs: {
3973
+ start: 0,
3974
+ end: 26,
3975
+ },
3976
+ marks: [
3977
+ {
3978
+ type: 'italic',
3979
+ attrs: {
3980
+ uuid: '5761cf68-3cc7-4b50-860d-29cec085298c',
3981
+ lang: 'Bo-Ltn',
3982
+ type: 'inlineTitle',
3983
+ },
3984
+ },
3985
+ ],
3986
+ },
3987
+ {
3988
+ type: 'text',
3989
+ text: ' p. 18.',
3990
+ attrs: {
3991
+ start: 26,
3992
+ end: 33,
3993
+ },
3994
+ },
3995
+ ],
3996
+ },
3997
+ ],
3998
+ },
3999
+ {
4000
+ type: 'passage',
4001
+ attrs: {
4002
+ uuid: '0071b8fa-9ec4-43fd-8f40-47ce6c91c489',
4003
+ sort: 293,
4004
+ type: 'endnotes',
4005
+ label: 'n.10',
4006
+ alignments: {},
4007
+ },
4008
+ content: [
4009
+ {
4010
+ type: 'paragraph',
4011
+ attrs: {
4012
+ start: 0,
4013
+ end: 75,
4014
+ uuid: '0071b8fa-9ec4-43fd-8f40-47ce6c91c489',
4015
+ },
4016
+ content: [
4017
+ {
4018
+ type: 'text',
4019
+ text: 'See Pearcey (2023b), ',
4020
+ attrs: {
4021
+ start: 0,
4022
+ end: 21,
4023
+ },
4024
+ },
4025
+ {
4026
+ type: 'text',
4027
+ text: 'An Explanation of The Noble Sūtra on the Four Factors.',
4028
+ attrs: {
4029
+ start: 21,
4030
+ end: 75,
4031
+ },
4032
+ marks: [
4033
+ {
4034
+ type: 'internalLink',
4035
+ attrs: {
4036
+ href: '/entity/work/e8ef6b9a-df09-4ebc-8760-4b1a21402e2f',
4037
+ entity: 'e8ef6b9a-df09-4ebc-8760-4b1a21402e2f',
4038
+ type: 'work',
4039
+ start: 21,
4040
+ end: 0,
4041
+ },
4042
+ },
4043
+ {
4044
+ type: 'italic',
4045
+ attrs: {
4046
+ uuid: '5d996a48-b748-422b-9f78-dea398efed1f',
4047
+ lang: 'en',
4048
+ type: 'inlineTitle',
4049
+ },
4050
+ },
4051
+ ],
4052
+ },
4053
+ ],
4054
+ },
4055
+ ],
4056
+ },
4057
+ {
4058
+ type: 'passage',
4059
+ attrs: {
4060
+ uuid: '2e04f38b-14cf-48f1-8f5e-eebadac78e49',
4061
+ sort: 297,
4062
+ type: 'endnotes',
4063
+ label: 'n.11',
4064
+ alignments: {},
4065
+ },
4066
+ content: [
4067
+ {
4068
+ type: 'paragraph',
4069
+ attrs: {
4070
+ start: 0,
4071
+ end: 98,
4072
+ uuid: '2e04f38b-14cf-48f1-8f5e-eebadac78e49',
4073
+ },
4074
+ content: [
4075
+ {
4076
+ type: 'text',
4077
+ text: 'Śāntideva, 29a.4. Translations appear in Bendall & Rouse (1922), p. 43, and Goodman (2016), p. 44.',
4078
+ attrs: {
4079
+ start: 0,
4080
+ end: 98,
4081
+ },
4082
+ },
4083
+ ],
4084
+ },
4085
+ ],
4086
+ },
4087
+ {
4088
+ type: 'passage',
4089
+ attrs: {
4090
+ uuid: '906dc92d-3438-43a0-b368-55e6288d3608',
4091
+ sort: 299,
4092
+ type: 'endnotes',
4093
+ label: 'n.12',
4094
+ alignments: {},
4095
+ },
4096
+ content: [
4097
+ {
4098
+ type: 'paragraph',
4099
+ attrs: {
4100
+ start: 0,
4101
+ end: 23,
4102
+ uuid: '906dc92d-3438-43a0-b368-55e6288d3608',
4103
+ },
4104
+ content: [
4105
+ {
4106
+ type: 'text',
4107
+ text: 'Prajñākaramati, 107a.5.',
4108
+ attrs: {
4109
+ start: 0,
4110
+ end: 23,
4111
+ },
4112
+ },
4113
+ ],
4114
+ },
4115
+ ],
4116
+ },
4117
+ {
4118
+ type: 'passage',
4119
+ attrs: {
4120
+ uuid: 'e23dc433-53c0-48f4-8ae5-f3f4fe0db857',
4121
+ sort: 301,
4122
+ type: 'endnotes',
4123
+ label: 'n.13',
4124
+ alignments: {},
4125
+ },
4126
+ content: [
4127
+ {
4128
+ type: 'paragraph',
4129
+ attrs: {
4130
+ start: 0,
4131
+ end: 20,
4132
+ uuid: 'e23dc433-53c0-48f4-8ae5-f3f4fe0db857',
4133
+ },
4134
+ content: [
4135
+ {
4136
+ type: 'text',
4137
+ text: 'Vimalamitra, 353a.3.',
4138
+ attrs: {
4139
+ start: 0,
4140
+ end: 20,
4141
+ },
4142
+ },
4143
+ ],
4144
+ },
4145
+ ],
4146
+ },
4147
+ {
4148
+ type: 'passage',
4149
+ attrs: {
4150
+ uuid: '1d76f3e1-914c-4682-8973-4d8ed2bd4b9f',
4151
+ sort: 303,
4152
+ type: 'endnotes',
4153
+ label: 'n.14',
4154
+ alignments: {},
4155
+ },
4156
+ content: [
4157
+ {
4158
+ type: 'paragraph',
4159
+ attrs: {
4160
+ start: 0,
4161
+ end: 44,
4162
+ uuid: '1d76f3e1-914c-4682-8973-4d8ed2bd4b9f',
4163
+ },
4164
+ content: [
4165
+ {
4166
+ type: 'text',
4167
+ text: 'See Longchen Rabjam (2009), vol. 13, 249–50.',
4168
+ attrs: {
4169
+ start: 0,
4170
+ end: 44,
4171
+ },
4172
+ },
4173
+ ],
4174
+ },
4175
+ ],
4176
+ },
4177
+ {
4178
+ type: 'passage',
4179
+ attrs: {
4180
+ uuid: 'b8f11293-b74e-4137-873e-bd826dba04e1',
4181
+ sort: 305,
4182
+ type: 'endnotes',
4183
+ label: 'n.15',
4184
+ alignments: {},
4185
+ },
4186
+ content: [
4187
+ {
4188
+ type: 'paragraph',
4189
+ attrs: {
4190
+ start: 0,
4191
+ end: 25,
4192
+ uuid: 'b8f11293-b74e-4137-873e-bd826dba04e1',
4193
+ },
4194
+ content: [
4195
+ {
4196
+ type: 'text',
4197
+ text: 'Feer (1866), pp. 299–302.',
4198
+ attrs: {
4199
+ start: 0,
4200
+ end: 25,
4201
+ },
4202
+ },
4203
+ ],
4204
+ },
4205
+ ],
4206
+ },
4207
+ {
4208
+ type: 'passage',
4209
+ attrs: {
4210
+ uuid: '120d0fb2-a60f-49d3-8ac8-4891703b3442',
4211
+ sort: 307,
4212
+ type: 'endnotes',
4213
+ label: 'n.16',
4214
+ alignments: {},
4215
+ },
4216
+ content: [
4217
+ {
4218
+ type: 'paragraph',
4219
+ attrs: {
4220
+ start: 0,
4221
+ end: 29,
4222
+ uuid: '120d0fb2-a60f-49d3-8ac8-4891703b3442',
4223
+ },
4224
+ content: [
4225
+ {
4226
+ type: 'text',
4227
+ text: 'Skilling (2021), pp. 199–205.',
4228
+ attrs: {
4229
+ start: 0,
4230
+ end: 29,
4231
+ },
4232
+ },
4233
+ ],
4234
+ },
4235
+ ],
4236
+ },
4237
+ {
4238
+ type: 'passage',
4239
+ attrs: {
4240
+ uuid: '5433d5e2-c2f2-4a05-bc48-60dcb1109fbf',
4241
+ sort: 309,
4242
+ type: 'endnotes',
4243
+ label: 'n.17',
4244
+ alignments: {},
4245
+ },
4246
+ content: [
4247
+ {
4248
+ type: 'paragraph',
4249
+ attrs: {
4250
+ start: 0,
4251
+ end: 252,
4252
+ uuid: '5433d5e2-c2f2-4a05-bc48-60dcb1109fbf',
4253
+ },
4254
+ content: [
4255
+ {
4256
+ type: 'text',
4257
+ text: 'According to Jñānadatta’s commentary, ',
4258
+ attrs: {
4259
+ start: 0,
4260
+ end: 38,
4261
+ },
4262
+ },
4263
+ {
4264
+ type: 'text',
4265
+ text: 'tolerance',
4266
+ attrs: {
4267
+ start: 38,
4268
+ end: 47,
4269
+ },
4270
+ marks: [
4271
+ {
4272
+ type: 'glossaryInstance',
4273
+ attrs: {
4274
+ glossary: '3268038f-cca4-471a-94b3-13c62c85b7ca',
4275
+ uuid: 'b184bb78-4e5b-4fa7-bf1d-84fe80b897b1',
4276
+ },
4277
+ },
4278
+ ],
4279
+ },
4280
+ {
4281
+ type: 'text',
4282
+ text: ' (',
4283
+ attrs: {
4284
+ start: 47,
4285
+ end: 49,
4286
+ },
4287
+ },
4288
+ {
4289
+ type: 'text',
4290
+ text: 'kṣanti',
4291
+ attrs: {
4292
+ start: 49,
4293
+ end: 55,
4294
+ },
4295
+ marks: [
4296
+ {
4297
+ type: 'italic',
4298
+ attrs: {
4299
+ start: 49,
4300
+ end: 55,
4301
+ uuid: '2c487496-029b-43b1-81f2-3900d58f2d37',
4302
+ type: 'span',
4303
+ lang: 'Sa-Ltn',
4304
+ textStyle: 'foreign',
4305
+ },
4306
+ },
4307
+ ],
4308
+ },
4309
+ {
4310
+ type: 'text',
4311
+ text: '; ',
4312
+ attrs: {
4313
+ start: 55,
4314
+ end: 57,
4315
+ },
4316
+ },
4317
+ {
4318
+ type: 'text',
4319
+ text: 'bzod pa',
4320
+ attrs: {
4321
+ start: 57,
4322
+ end: 64,
4323
+ },
4324
+ marks: [
4325
+ {
4326
+ type: 'italic',
4327
+ attrs: {
4328
+ start: 57,
4329
+ end: 64,
4330
+ uuid: '16a0ffde-39cc-47b6-b2e7-a0a8e0ffaf08',
4331
+ type: 'span',
4332
+ lang: 'Bo-Ltn',
4333
+ textStyle: 'foreign',
4334
+ },
4335
+ },
4336
+ ],
4337
+ },
4338
+ {
4339
+ type: 'text',
4340
+ text: ') means bearing the harm done to one by others (',
4341
+ attrs: {
4342
+ start: 64,
4343
+ end: 112,
4344
+ },
4345
+ },
4346
+ {
4347
+ type: 'text',
4348
+ text: 'pha rol gyi gnod pa byas pa la bzod pa',
4349
+ attrs: {
4350
+ start: 112,
4351
+ end: 150,
4352
+ },
4353
+ marks: [
4354
+ {
4355
+ type: 'italic',
4356
+ attrs: {
4357
+ start: 112,
4358
+ end: 150,
4359
+ uuid: '5cb8b347-3e3a-4901-8e41-127f200b8596',
4360
+ type: 'span',
4361
+ lang: 'Bo-Ltn',
4362
+ textStyle: 'foreign',
4363
+ },
4364
+ },
4365
+ ],
4366
+ },
4367
+ {
4368
+ type: 'text',
4369
+ text: '), and ',
4370
+ attrs: {
4371
+ start: 150,
4372
+ end: 157,
4373
+ },
4374
+ },
4375
+ {
4376
+ type: 'text',
4377
+ text: 'lenience',
4378
+ attrs: {
4379
+ start: 157,
4380
+ end: 165,
4381
+ },
4382
+ marks: [
4383
+ {
4384
+ type: 'glossaryInstance',
4385
+ attrs: {
4386
+ glossary: '4f7a6a56-6c00-43a0-b457-f3e741364a05',
4387
+ uuid: '98fd6e70-d5c4-4440-b9bb-5d8c42825a13',
4388
+ },
4389
+ },
4390
+ ],
4391
+ },
4392
+ {
4393
+ type: 'text',
4394
+ text: ' (',
4395
+ attrs: {
4396
+ start: 165,
4397
+ end: 167,
4398
+ },
4399
+ },
4400
+ {
4401
+ type: 'text',
4402
+ text: 'sauratya',
4403
+ attrs: {
4404
+ start: 167,
4405
+ end: 175,
4406
+ },
4407
+ marks: [
4408
+ {
4409
+ type: 'italic',
4410
+ attrs: {
4411
+ start: 167,
4412
+ end: 175,
4413
+ uuid: '7d48d3fc-c8b5-4c97-9d70-d559640db6e9',
4414
+ type: 'span',
4415
+ lang: 'Sa-Ltn',
4416
+ textStyle: 'foreign',
4417
+ },
4418
+ },
4419
+ ],
4420
+ },
4421
+ {
4422
+ type: 'text',
4423
+ text: '; ',
4424
+ attrs: {
4425
+ start: 175,
4426
+ end: 177,
4427
+ },
4428
+ },
4429
+ {
4430
+ type: 'text',
4431
+ text: 'des pa',
4432
+ attrs: {
4433
+ start: 177,
4434
+ end: 183,
4435
+ },
4436
+ marks: [
4437
+ {
4438
+ type: 'italic',
4439
+ attrs: {
4440
+ start: 177,
4441
+ end: 183,
4442
+ uuid: '356930fd-869d-4026-86cb-3cce2f500ca1',
4443
+ type: 'span',
4444
+ lang: 'Bo-Ltn',
4445
+ textStyle: 'foreign',
4446
+ },
4447
+ },
4448
+ ],
4449
+ },
4450
+ {
4451
+ type: 'text',
4452
+ text: ') means refraining from harming them (',
4453
+ attrs: {
4454
+ start: 183,
4455
+ end: 221,
4456
+ },
4457
+ },
4458
+ {
4459
+ type: 'text',
4460
+ text: 'pha rol la gnod pa mi byed pa',
4461
+ attrs: {
4462
+ start: 221,
4463
+ end: 250,
4464
+ },
4465
+ marks: [
4466
+ {
4467
+ type: 'italic',
4468
+ attrs: {
4469
+ start: 221,
4470
+ end: 250,
4471
+ uuid: 'ac2fd54f-4199-4e16-bd6e-f16fdb05e27b',
4472
+ type: 'span',
4473
+ lang: 'Bo-Ltn',
4474
+ textStyle: 'foreign',
4475
+ },
4476
+ },
4477
+ ],
4478
+ },
4479
+ {
4480
+ type: 'text',
4481
+ text: ').',
4482
+ attrs: {
4483
+ start: 250,
4484
+ end: 252,
4485
+ },
4486
+ },
4487
+ ],
4488
+ },
4489
+ ],
4490
+ },
4491
+ {
4492
+ type: 'passage',
4493
+ attrs: {
4494
+ uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
4495
+ sort: 327,
4496
+ type: 'endnotes',
4497
+ label: 'n.18',
4498
+ alignments: {},
4499
+ },
4500
+ content: [
4501
+ {
4502
+ type: 'paragraph',
4503
+ attrs: {
4504
+ start: 0,
4505
+ end: 536,
4506
+ uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
4507
+ },
4508
+ content: [
4509
+ {
4510
+ type: 'text',
4511
+ text: 'Dwelling in the wilderness',
4512
+ attrs: {
4513
+ start: 0,
4514
+ end: 26,
4515
+ },
4516
+ marks: [
4517
+ {
4518
+ type: 'glossaryInstance',
4519
+ attrs: {
4520
+ glossary: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
4521
+ uuid: '3ea8bb1a-1077-406a-bd76-14f4499f0717',
4522
+ },
4523
+ },
4524
+ ],
4525
+ },
4526
+ {
4527
+ type: 'text',
4528
+ text: ' is also one of the twelve ascetic practices (',
4529
+ attrs: {
4530
+ start: 26,
4531
+ end: 72,
4532
+ },
4533
+ },
4534
+ {
4535
+ type: 'text',
4536
+ text: 'dhūtaguṇa',
4537
+ attrs: {
4538
+ start: 72,
4539
+ end: 81,
4540
+ },
4541
+ marks: [
4542
+ {
4543
+ type: 'italic',
4544
+ attrs: {
4545
+ start: 72,
4546
+ end: 81,
4547
+ uuid: '3272a842-73c7-48d6-bc39-d063a7cbf278',
4548
+ type: 'span',
4549
+ lang: 'Sa-Ltn',
4550
+ textStyle: 'foreign',
4551
+ },
4552
+ },
4553
+ ],
4554
+ },
4555
+ {
4556
+ type: 'text',
4557
+ text: '). Note that related to (and sometimes conflated with) the Sanskrit ',
4558
+ attrs: {
4559
+ start: 81,
4560
+ end: 149,
4561
+ },
4562
+ },
4563
+ {
4564
+ type: 'text',
4565
+ text: 'araṇya',
4566
+ attrs: {
4567
+ start: 149,
4568
+ end: 155,
4569
+ },
4570
+ marks: [
4571
+ {
4572
+ type: 'italic',
4573
+ attrs: {
4574
+ start: 149,
4575
+ end: 155,
4576
+ uuid: '2a54ebff-8aad-4e0d-a530-d8f6767e79b8',
4577
+ type: 'span',
4578
+ lang: 'Sa-Ltn',
4579
+ textStyle: 'foreign',
4580
+ },
4581
+ },
4582
+ ],
4583
+ },
4584
+ {
4585
+ type: 'text',
4586
+ text: ' in the compound ',
4587
+ attrs: {
4588
+ start: 155,
4589
+ end: 172,
4590
+ },
4591
+ },
4592
+ {
4593
+ type: 'text',
4594
+ text: 'araṇyavāsa',
4595
+ attrs: {
4596
+ start: 172,
4597
+ end: 182,
4598
+ },
4599
+ marks: [
4600
+ {
4601
+ type: 'italic',
4602
+ attrs: {
4603
+ start: 172,
4604
+ end: 182,
4605
+ uuid: 'd837f02b-4718-41fc-9d95-a8ceb9f2854b',
4606
+ type: 'span',
4607
+ lang: 'Sa-Ltn',
4608
+ textStyle: 'foreign',
4609
+ },
4610
+ },
4611
+ ],
4612
+ },
4613
+ {
4614
+ type: 'text',
4615
+ text: '‍—attested for ',
4616
+ attrs: {
4617
+ start: 182,
4618
+ end: 197,
4619
+ },
4620
+ },
4621
+ {
4622
+ type: 'text',
4623
+ text: 'dgon pa la gnas pa',
4624
+ attrs: {
4625
+ start: 197,
4626
+ end: 215,
4627
+ },
4628
+ marks: [
4629
+ {
4630
+ type: 'italic',
4631
+ attrs: {
4632
+ start: 197,
4633
+ end: 215,
4634
+ uuid: '1b620ad5-e418-4ae4-a2a6-fc1f7963649f',
4635
+ type: 'span',
4636
+ lang: 'Bo-Ltn',
4637
+ textStyle: 'foreign',
4638
+ },
4639
+ },
4640
+ ],
4641
+ },
4642
+ {
4643
+ type: 'text',
4644
+ text: ' not in this text but in the Sanskrit of the ',
4645
+ attrs: {
4646
+ start: 215,
4647
+ end: 260,
4648
+ },
4649
+ },
4650
+ {
4651
+ type: 'text',
4652
+ text: 'Rāṣṭra­pāla­paripṛcchā ',
4653
+ attrs: {
4654
+ start: 260,
4655
+ end: 283,
4656
+ },
4657
+ marks: [
4658
+ {
4659
+ type: 'italic',
4660
+ attrs: {
4661
+ uuid: 'e4e17479-7e3c-4636-af88-1b2e80d42c53',
4662
+ lang: 'Sa-Ltn',
4663
+ type: 'inlineTitle',
4664
+ },
4665
+ },
4666
+ ],
4667
+ },
4668
+ {
4669
+ type: 'text',
4670
+ text: '(Toh 62)‍—is another term, ',
4671
+ attrs: {
4672
+ start: 283,
4673
+ end: 310,
4674
+ },
4675
+ },
4676
+ {
4677
+ type: 'text',
4678
+ text: 'araṇa',
4679
+ attrs: {
4680
+ start: 310,
4681
+ end: 315,
4682
+ },
4683
+ marks: [
4684
+ {
4685
+ type: 'italic',
4686
+ attrs: {
4687
+ start: 310,
4688
+ end: 315,
4689
+ uuid: 'ea407cbe-77c5-4341-834a-0abbe5a4fc94',
4690
+ type: 'span',
4691
+ lang: 'Sa-Ltn',
4692
+ textStyle: 'foreign',
4693
+ },
4694
+ },
4695
+ ],
4696
+ },
4697
+ {
4698
+ type: 'text',
4699
+ text: ', in the compound ',
4700
+ attrs: {
4701
+ start: 315,
4702
+ end: 333,
4703
+ },
4704
+ },
4705
+ {
4706
+ type: 'text',
4707
+ text: 'araṇa­vihāra',
4708
+ attrs: {
4709
+ start: 333,
4710
+ end: 345,
4711
+ },
4712
+ marks: [
4713
+ {
4714
+ type: 'italic',
4715
+ attrs: {
4716
+ start: 333,
4717
+ end: 345,
4718
+ uuid: '54764895-a14c-43a4-bad0-8796eec28c36',
4719
+ type: 'span',
4720
+ lang: 'Sa-Ltn',
4721
+ textStyle: 'foreign',
4722
+ },
4723
+ },
4724
+ ],
4725
+ },
4726
+ {
4727
+ type: 'text',
4728
+ text: ', of which the Tibetan rendering is ',
4729
+ attrs: {
4730
+ start: 345,
4731
+ end: 381,
4732
+ },
4733
+ },
4734
+ {
4735
+ type: 'text',
4736
+ text: 'nyon mongs pa med par gnas pa',
4737
+ attrs: {
4738
+ start: 381,
4739
+ end: 410,
4740
+ },
4741
+ marks: [
4742
+ {
4743
+ type: 'italic',
4744
+ attrs: {
4745
+ start: 381,
4746
+ end: 410,
4747
+ uuid: '13da046b-591d-4293-b2c0-bc917e4d2397',
4748
+ type: 'span',
4749
+ lang: 'Bo-Ltn',
4750
+ textStyle: 'foreign',
4751
+ },
4752
+ },
4753
+ ],
4754
+ },
4755
+ {
4756
+ type: 'text',
4757
+ text: ' (Mvy 6366), with the more “inner” meaning of “dwelling free of afflicted mental states.” See Edgerton s.v. ',
4758
+ attrs: {
4759
+ start: 410,
4760
+ end: 518,
4761
+ },
4762
+ },
4763
+ {
4764
+ type: 'text',
4765
+ text: 'araṇya',
4766
+ attrs: {
4767
+ start: 518,
4768
+ end: 524,
4769
+ },
4770
+ marks: [
4771
+ {
4772
+ type: 'italic',
4773
+ attrs: {
4774
+ start: 518,
4775
+ end: 524,
4776
+ uuid: 'e7f68c19-e746-49b5-a822-7b7a276f1fc7',
4777
+ type: 'span',
4778
+ lang: 'Sa-Ltn',
4779
+ textStyle: 'foreign',
4780
+ },
4781
+ },
4782
+ ],
4783
+ },
4784
+ {
4785
+ type: 'text',
4786
+ text: ' and ',
4787
+ attrs: {
4788
+ start: 524,
4789
+ end: 529,
4790
+ },
4791
+ },
4792
+ {
4793
+ type: 'text',
4794
+ text: 'araṇya',
4795
+ attrs: {
4796
+ start: 529,
4797
+ end: 535,
4798
+ },
4799
+ marks: [
4800
+ {
4801
+ type: 'italic',
4802
+ attrs: {
4803
+ start: 529,
4804
+ end: 535,
4805
+ uuid: 'ece52aa1-1789-411a-9dde-e691a4208b24',
4806
+ type: 'span',
4807
+ lang: 'Sa-Ltn',
4808
+ textStyle: 'foreign',
4809
+ },
4810
+ },
4811
+ ],
4812
+ },
4813
+ {
4814
+ type: 'text',
4815
+ text: '.',
4816
+ attrs: {
4817
+ start: 535,
4818
+ end: 536,
4819
+ },
4820
+ },
4821
+ ],
4822
+ },
4823
+ ],
4824
+ },
4825
+ {
4826
+ type: 'passage',
4827
+ attrs: {
4828
+ uuid: 'fb352874-9ae4-4658-97ea-ec944f2c6dfc',
4829
+ sort: 350,
4830
+ type: 'endnotes',
4831
+ label: 'n.19',
4832
+ alignments: {},
4833
+ },
4834
+ content: [
4835
+ {
4836
+ type: 'paragraph',
4837
+ attrs: {
4838
+ start: 0,
4839
+ end: 144,
4840
+ uuid: 'fb352874-9ae4-4658-97ea-ec944f2c6dfc',
4841
+ },
4842
+ content: [
4843
+ {
4844
+ type: 'text',
4845
+ text: 'The translation here follows the Degé and IOL Tib J 69 editions, which have ',
4846
+ attrs: {
4847
+ start: 0,
4848
+ end: 76,
4849
+ },
4850
+ },
4851
+ {
4852
+ type: 'text',
4853
+ text: 'sems skyed cig',
4854
+ attrs: {
4855
+ start: 76,
4856
+ end: 90,
4857
+ },
4858
+ marks: [
4859
+ {
4860
+ type: 'italic',
4861
+ attrs: {
4862
+ start: 76,
4863
+ end: 90,
4864
+ uuid: 'd5dc508d-d3e0-4ca0-a62f-94ae47a58762',
4865
+ type: 'span',
4866
+ lang: 'Bo-Ltn',
4867
+ textStyle: 'foreign',
4868
+ },
4869
+ },
4870
+ ],
4871
+ },
4872
+ {
4873
+ type: 'text',
4874
+ text: '. The Stok Palace Kangyur version reads ',
4875
+ attrs: {
4876
+ start: 90,
4877
+ end: 130,
4878
+ },
4879
+ },
4880
+ {
4881
+ type: 'text',
4882
+ text: 'sems dpa’ cig',
4883
+ attrs: {
4884
+ start: 130,
4885
+ end: 143,
4886
+ },
4887
+ marks: [
4888
+ {
4889
+ type: 'italic',
4890
+ attrs: {
4891
+ start: 130,
4892
+ end: 143,
4893
+ uuid: 'c3d2d6f6-ba32-419e-b089-6e79551a231b',
4894
+ type: 'span',
4895
+ lang: 'Bo-Ltn',
4896
+ textStyle: 'foreign',
4897
+ },
4898
+ },
4899
+ ],
4900
+ },
4901
+ {
4902
+ type: 'text',
4903
+ text: '.',
4904
+ attrs: {
4905
+ start: 143,
4906
+ end: 144,
4907
+ },
4908
+ },
4909
+ ],
4910
+ },
4911
+ ],
4912
+ },
4913
+ ];