瀏覽代碼

导入 标题 数据库

visuddhinanda 5 年之前
父節點
當前提交
5fd0db2ab3

+ 189 - 0
app/install/db_update_toc.php

@@ -0,0 +1,189 @@
+<?php
+//error handler function
+function customError($errno, $errstr)
+ { 
+ echo "<b>Error:</b> [$errno] $errstr";
+ }
+
+//set error handler
+set_error_handler("customError");
+
+require_once '../path.php';
+require_once "../public/_pdo.php";
+require_once "../public/function.php";
+
+function getWordEn($strIn){
+    $strIn = strtolower($strIn);
+	$search  = array('ā', 'ī', 'ū', 'ṅ', 'ñ' , 'ṭ', 'ḍ', 'ṇ', 'ḷ', 'ṃ');
+	$replace = array('a', 'i', 'u', 'n', 'n' , 't', 'd', 'n', 'l', 'm');
+	return(str_replace($search,$replace,$strIn));
+}
+?>
+<!DOCTYPE html>
+<html>
+<head>
+</head>
+<body>
+<h2>Update Table of Contence</h2>
+<?php
+
+if(isset($_GET["from"])==false){
+?>
+<form action="db_update_toc.php" method="get">
+From: <input type="text" name="from" value="0"><br> 
+To: <input type="text" name="to" value="216"><br>
+File: <input type="text" name="file" value="title"><br>
+Author: <input type="text" name="author" value=""><br>
+Language:
+<select name="lang">
+<option value="1">pali</option>
+<option value="2">English</option>
+<option value="3">简体中文</option>
+<option value="4">繁体中文</option>
+</select>
+<br>
+<input type="submit">
+</form>
+<?php
+return;
+}
+
+$from=$_GET["from"];
+$to=$_GET["to"];
+$_file=$_GET["file"];
+$_author=$_GET["author"];
+$_lang=$_GET["lang"];
+$filelist=array();
+$fileNums=0;
+$log="";
+echo "<h2>$from</h2>";
+
+if(($handle=fopen("filelist.csv",'r'))!==FALSE){
+	while(($filelist[$fileNums]=fgetcsv($handle,0,','))!==FALSE){
+		$fileNums++;
+	}
+}
+if($to==0 || $to>=$fileNums) $to=$fileNums-1;
+
+$FileName=$filelist[$from][1].".htm";
+$fileId=$filelist[$from][0];
+$fileId=$filelist[$from][0];
+
+$dirLog=_DIR_LOG_."/";
+
+$dirDb="/";
+$inputFileName=$FileName;
+$outputFileNameHead=$filelist[$from][1];
+$bookId=$filelist[$from][2];
+$vriParNum=0;
+$wordOrder=1;
+
+$dirXmlBase=_DIR_PALI_CSV_."/";
+$dirPaliTextBase=_DIR_PALI_HTML_."/";
+$dirXml=$outputFileNameHead."/";
+
+
+
+$xmlfile = $inputFileName;
+
+$log=$log.date("Y-m-d h:i:sa").",$from,$FileName,open\r\n";
+
+$arrInserString=array();
+
+
+// 打开csv文件并读取数据
+$inputRow=0;
+if(($fp=fopen(_DIR_PALI_TITLE_."/".($from+1)."_{$_file}.csv", "r"))!==FALSE){
+	while(($data=fgetcsv($fp,0,','))!==FALSE){
+		if($inputRow>0 && $data[3] != 100  && !empty($data[6])){
+			array_push($arrInserString,$data);
+		}
+		$inputRow++;
+	}
+	fclose($fp);
+	echo "res load:"._DIR_PALI_TITLE_."/".($from+1)."_title.csv<br>";
+}
+else{
+    echo "can not open csv ";
+    
+    if($from==$to){
+        echo "<h2>齐活!功德无量!all done!</h2>";
+    }
+    else{
+        echo "<script>";
+        $next = $from+1;
+        echo "window.location.assign(\"db_update_toc.php?from={$next}&to={$to}&file={$_file}&author={$_author}&lang={$_lang}\")";
+        echo "</script>";
+        echo "正在载入:".($from+1);
+        echo "</body></html>";
+        exit;
+    }
+}
+
+$book=$from+1;
+
+//删除已有标题
+PDO_Connect("sqlite:"._FILE_DB_RESRES_INDEX_);
+$query =" DELETE FROM 'index' WHERE book ='{$book}'  AND  language = '{$_lang}'  ";
+
+$PDO->query($query);
+
+// 开始一个事务,关闭自动提交
+$PDO->beginTransaction();
+$query="INSERT INTO 'index' ('id','book','paragraph','title','title_en' ,'level','type','language','author','share','create_time','update_time' ) VALUES ( NULL , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? , ? )";
+$stmt = $PDO->prepare($query);
+if($_lang=="1"){
+    $type=1;
+}
+else{
+    $type=2;
+}
+foreach($arrInserString as $title){
+	$newData=array(
+        $book,
+        $title[2],
+        $title[6],
+        getWordEn($title[6]),
+        $title[3],
+		$type,
+	    $_lang,
+        $_author,
+	   1,
+	   mTime(),
+       mTime()
+	);
+	$stmt->execute($newData);
+}
+// 提交更改 
+$PDO->commit();
+if (!$stmt || ($stmt && $stmt->errorCode() != 0)) {
+	$error = PDO_ErrorInfo();
+	echo "error - $error[2] <br>";
+	$log=$log."$from, error, $error[2] \r\n";
+}
+else{
+	$count=count($arrInserString);
+	echo "updata $count title recorders.<br>";
+}
+//段落信息结束
+	$myLogFile = fopen(_DIR_LOG_."/db_update_toc.log", "a");
+	fwrite($myLogFile, $log);
+	fclose($myLogFile);
+	
+?>
+
+
+<?php 
+    if($from==$to){
+        echo "<h2>齐活!功德无量!all done!</h2>";
+    }
+    else{
+        echo "<script>";
+        $next = $from+1;
+        echo "window.location.assign(\"db_update_toc.php?from={$next}&to={$to}&file={$_file}&author={$_author}&lang={$_lang}\")";
+        echo "</script>";
+        echo "正在载入:".($from+1)."——".$filelist[$from+1][0];
+    }
+?>
+</body>
+</html>

+ 188 - 0
app/install/palicanon_db/res.sql

@@ -0,0 +1,188 @@
+--
+-- 由SQLiteStudio v3.1.1 产生的文件 周六 8月 8 07:41:35 2020
+--
+-- 文本编码:UTF-8
+--
+PRAGMA foreign_keys = off;
+BEGIN TRANSACTION;
+
+-- 表:album
+DROP TABLE IF EXISTS album;
+
+CREATE TABLE album (
+    id          INTEGER   PRIMARY KEY ASC AUTOINCREMENT,
+    book        INTEGER,
+    guid        CHAR (40),
+    type        INTEGER,
+    title       TEXT,
+    file        TEXT,
+    cover       TEXT,
+    language    INTEGER,
+    author      TEXT,
+    tag         TEXT,
+    summary     TEXT,
+    create_time INTEGER,
+    update_time INTEGER,
+    version     INTEGER,
+    edition     TEXT (20),
+    owner       INTEGER   DEFAULT (0) 
+);
+
+
+-- 表:album_ebook
+DROP TABLE IF EXISTS album_ebook;
+
+CREATE TABLE album_ebook (
+    id          INTEGER PRIMARY KEY AUTOINCREMENT
+                        UNIQUE
+                        NOT NULL,
+    album       INTEGER NOT NULL,
+    file_format INTEGER NOT NULL,
+    file_size   INTEGER NOT NULL,
+    file_name   TEXT    NOT NULL,
+    time        INTEGER
+);
+
+
+-- 表:album_power
+DROP TABLE IF EXISTS album_power;
+
+CREATE TABLE album_power (
+    id       INTEGER   PRIMARY KEY AUTOINCREMENT
+                       NOT NULL
+                       UNIQUE,
+    album_id INTEGER   NOT NULL,
+    user_id  INTEGER   NOT NULL,
+    password TEXT (20),
+    power    INTEGER
+);
+
+
+-- 表:author
+DROP TABLE IF EXISTS author;
+
+CREATE TABLE author (
+    id      INTEGER    PRIMARY KEY ASC AUTOINCREMENT,
+    name    TEXT (128),
+    [group] INTEGER
+);
+
+
+-- 表:book
+DROP TABLE IF EXISTS book;
+
+CREATE TABLE book (
+    id       INTEGER PRIMARY KEY AUTOINCREMENT,
+    book_id  INTEGER,
+    language INTEGER,
+    title    TEXT,
+    c1       TEXT,
+    c2       TEXT
+);
+
+
+-- 表:file_format
+DROP TABLE IF EXISTS file_format;
+
+CREATE TABLE file_format (
+    id     INTEGER PRIMARY KEY AUTOINCREMENT,
+    format TEXT
+);
+
+
+-- 表:index
+DROP TABLE IF EXISTS [index];
+
+CREATE TABLE [index] (
+    id          INTEGER PRIMARY KEY AUTOINCREMENT
+                        NOT NULL,
+    book        INTEGER,
+    paragraph   INTEGER,
+    title       TEXT,
+    title_en    TEXT,
+    level       INTEGER,
+    type        INTEGER,
+    language    INTEGER,
+    author      TEXT,
+    editor      INTEGER,
+    share       INTEGER,
+    edition     INTEGER NOT NULL
+                        DEFAULT 1,
+    hit         INTEGER DEFAULT 0
+                        NOT NULL,
+    album       INTEGER,
+    tag         TEXT,
+    summary     TEXT,
+    create_time INTEGER,
+    update_time INTEGER DEFAULT (1) 
+);
+
+
+-- 表:language
+DROP TABLE IF EXISTS language;
+
+CREATE TABLE language (
+    id   INTEGER  PRIMARY KEY
+                  UNIQUE
+                  NOT NULL,
+    code TEXT (2) NOT NULL,
+    note TEXT
+);
+
+
+-- 表:media_type
+DROP TABLE IF EXISTS media_type;
+
+CREATE TABLE media_type (
+    id   INTEGER PRIMARY KEY
+                 UNIQUE
+                 NOT NULL,
+    type TEXT    UNIQUE
+                 NOT NULL,
+    note TEXT
+);
+
+
+-- 表:paragraph_info
+DROP TABLE IF EXISTS paragraph_info;
+
+CREATE TABLE paragraph_info (
+    id        INTEGER PRIMARY KEY AUTOINCREMENT,
+    book      INTEGER,
+    paragraph INTEGER,
+    length    INTEGER,
+    prev      INTEGER,
+    next      INTEGER,
+    parent    INTEGER
+);
+
+
+-- 表:tag
+DROP TABLE IF EXISTS tag;
+
+CREATE TABLE tag (
+    id       INTEGER PRIMARY KEY AUTOINCREMENT,
+    pali     TEXT,
+    tag      TEXT,
+    language INTEGER,
+    ref      INTEGER DEFAULT (0) 
+);
+
+
+-- 索引:search
+DROP INDEX IF EXISTS search;
+
+CREATE INDEX search ON [index] (
+    "book",
+    paragraph,
+    "language",
+    "title",
+    "author",
+    "editor",
+    "edition",
+    hit
+);
+
+
+COMMIT TRANSACTION;
+PRAGMA foreign_keys = on;

+ 41 - 8
app/install/step5.php

@@ -37,6 +37,7 @@ $dbfile[]=array(_FILE_DB_PALI_INDEX_,"paliindex.sql");
 $dbfile[]=array(_FILE_DB_WORD_INDEX_,"wordindex.sql");
 $dbfile[]=array(_FILE_DB_PALI_SENTENCE_,"pali_sent.sql");
 $dbfile[]=array(_FILE_DB_PALITEXT_,"pali_text.sql");
+$dbfile[]=array(_FILE_DB_RESRES_INDEX_,"res.sql");
 $dir="./palicanon_db/";
 
 if(isset($_GET["index"])){
@@ -104,7 +105,7 @@ else{
 		else{
 			echo "<span style='color:green;'>已存在</span>";
 			echo "</div>"; 
-			echo '<div style="flex:2;"><a href="step4.php?index='.$i.'">重建</a><span style="color:red;">注意!此操作将删除原数据库中所有数据!</span></div>';
+			echo '<div style="flex:2;"><a href="step5.php?index='.$i.'">清空</a><span style="color:red;">注意!此操作将删除原数据库中所有数据!</span></div>';
 		}
 		echo "</div>";  
 	}
@@ -133,12 +134,12 @@ else{
 	if(!file_exists($db[0])){
         echo "<span style='color:red;'>数据库不存在</span>";
     	echo "</div>"; 
-        echo '<div style="flex:2;"><a href="step4.php?index='.$i.'">建立</a></div>';    
+        echo '<div style="flex:2;"><a href="step5.php?index='.$i.'">建立</a></div>';    
 	}
 	else{
         echo "<span style='color:green;'>已存在</span>";
     	echo "</div>"; 
-        echo '<div style="flex:2;"><a href="step4.php?index='.$i.'">清空</a><span style="color:red;">注意!此操作将删除原数据库中所有数据!</span></div>';
+        echo '<div style="flex:2;"><a href="step5.php?index='.$i.'">清空</a><span style="color:red;">注意!此操作将删除原数据库中所有数据!</span></div>';
     }
 	echo "</div>";  
 	?>
@@ -157,12 +158,12 @@ else{
 	if(!file_exists($db[0])){
         echo "<span style='color:red;'>数据库不存在</span>";
     	echo "</div>"; 
-        echo '<div style="flex:2;"><a href="step4.php?index='.$i.'">建立</a></div>';    
+        echo '<div style="flex:2;"><a href="step5.php?index='.$i.'">建立</a></div>';    
 	}
 	else{
         echo "<span style='color:green;'>已存在</span>";
     	echo "</div>"; 
-        echo '<div style="flex:2;"><a href="step4.php?index='.$i.'">清空</a><span style="color:red;">注意!此操作将删除原数据库中所有数据!</span></div>';
+        echo '<div style="flex:2;"><a href="step5.php?index='.$i.'">清空</a><span style="color:red;">注意!此操作将删除原数据库中所有数据!</span></div>';
     }
 	echo "</div>";  
 
@@ -179,7 +180,6 @@ else{
 
 <div class="card">
 <h4>Pali原文库</h4>
-
 <div>
 <?php
 	$db = $dbfile[6];
@@ -189,12 +189,12 @@ else{
 	if(!file_exists($db[0])){
         echo "<span style='color:red;'>数据库不存在</span>";
     	echo "</div>"; 
-        echo '<div style="flex:2;"><a href="step4.php?index='.$i.'">建立</a></div>';    
+        echo '<div style="flex:2;"><a href="step5.php?index='.$i.'">建立</a></div>';    
 	}
 	else{
         echo "<span style='color:green;'>已存在</span>";
     	echo "</div>"; 
-        echo '<div style="flex:2;"><a href="step4.php?index='.$i.'">清空</a><span style="color:red;">注意!此操作将删除原数据库中所有数据!</span></div>';
+        echo '<div style="flex:2;"><a href="step5.php?index='.$i.'">清空</a><span style="color:red;">注意!此操作将删除原数据库中所有数据!</span></div>';
     }
 	echo "</div>";  
 
@@ -212,6 +212,39 @@ echo "<a href = '"._DIR_LOG_."/db_update_palitext.log"."' target='_blank'>view L
 </div>
 
 
+<div class="card">
+<h4>标题索引</h4>
+<div>
+<?php
+	$db = $dbfile[7];
+	echo '<div style="padding:10px;margin:5px;border-bottom: 1px solid gray;display:flex;">';
+	echo '<div style="flex:5;">'.$db[0].'</div>';
+	echo '<div style="flex:3;">';
+	if(!file_exists($db[0])){
+        echo "<span style='color:red;'>数据库不存在</span>";
+    	echo "</div>"; 
+        echo '<div style="flex:2;"><a href="step5.php?index=7">建立</a></div>'; 
+	}
+	else{
+        echo "<span style='color:green;'>已存在</span>";
+    	echo "</div>"; 
+        echo '<div style="flex:2;"><a href="step5.php?index=7">清空</a><span style="color:red;">注意!此操作将删除原数据库中所有数据!</span></div>';
+    }
+	echo "</div>";  
+
+	if(file_exists(_FILE_DB_PALITEXT_)){
+		echo "标题索引数据库已经存在<br>";
+		echo '<a href="db_update_toc.php" target="_blank">更新</a><br>';
+	}
+	else{
+		echo "标题索引数据库不存在<br>";
+		echo '<div style="flex:2;"><a href="step5.php?index='.$i.'">建立</a></div>'; 
+	}
+echo "<a href = '"._DIR_LOG_."/db_update_title.log"."' target='_blank'>view Log</a>"
+?>
+</div>
+</div>
+
 <hr>
 <h2>完成</h2>
 </body>

+ 0 - 0
app/search/_FILE_DB_RES_INDEX_


+ 3 - 3
app/search/title_search.php

@@ -28,7 +28,7 @@ function microtime_float()
 function render_book_list($strWord,$booklist=null){
 	//查找这些词出现在哪些书中
 	$arrBookType=json_decode(file_get_contents("../public/book_name/booktype.json"));
-	PDO_Connect("sqlite:"._FILE_DB_RES_INDEX_);	
+	PDO_Connect("sqlite:"._FILE_DB_RESRES_INDEX_);	
 	if(isset($booklist)){
 		foreach($booklist as $oneBook){
 			$aInputBook["{$oneBook}"]=1;
@@ -123,7 +123,7 @@ switch($op){
 		
 		$searching=$arrWordList[count($arrWordList)-1];
 
-		PDO_Connect("sqlite:"._FILE_DB_RES_INDEX_);
+		PDO_Connect("sqlite:"._FILE_DB_RESRES_INDEX_);
 		
 		if(count($arrWordList)>1){
 			echo "<div>";
@@ -189,7 +189,7 @@ switch($op){
 		//前20条记录
 		$time_start=microtime_float();
 
-		PDO_Connect("sqlite:"._FILE_DB_RES_INDEX_);
+		PDO_Connect("sqlite:"._FILE_DB_RESRES_INDEX_);
 		if(isset($_GET["booklist"])){
 			$query = "select * from 'index' where (\"title_en\" like ".$PDO->quote("%".$_GET["word"].'%')." OR \"title\" like ".$PDO->quote("%".$_GET["word"].'%').") and book in {$_GET["booklist"]} limit 0,50";
 		}

+ 2674 - 0
pali_title/209_zh-cn.csv

@@ -0,0 +1,2674 @@
+id,book,par_num,100,class,title,text
+NULL,p209,1,100,centered,,
+NULL,p209,2,100,nikaya,,
+NULL,p209,3,1,book,Vajirabuddhi-ṭīkā,金刚觉-复注
+NULL,p209,4,5,subsubhead,Ganthārambhakathā,开题诗
+NULL,p209,5,100,gatha1,,
+NULL,p209,6,100,gatha2,,
+NULL,p209,7,100,gatha3,,
+NULL,p209,8,100,gathalast,,
+NULL,p209,9,100,gatha1,,
+NULL,p209,10,100,gatha2,,
+NULL,p209,11,100,gatha3,,
+NULL,p209,12,100,gathalast,,
+NULL,p209,13,100,gatha1,,
+NULL,p209,14,100,gatha2,,
+NULL,p209,15,100,gatha3,,
+NULL,p209,16,100,gathalast,,
+NULL,p209,17,100,gatha1,,
+NULL,p209,18,100,gathalast,,
+NULL,p209,19,100,unindented,,
+NULL,p209,20,100,bodytext,,
+NULL,p209,21,100,gatha1,,
+NULL,p209,22,100,gathalast,,
+NULL,p209,23,100,bodytext,,
+NULL,p209,24,100,bodytext,,
+NULL,p209,25,100,gatha1,,
+NULL,p209,26,100,gathalast,,
+NULL,p209,27,100,bodytext,,
+NULL,p209,28,100,gatha1,,
+NULL,p209,29,100,gathalast,,
+NULL,p209,30,100,gatha1,,
+NULL,p209,31,100,gatha1,,
+NULL,p209,32,100,gathalast,,
+NULL,p209,33,100,gatha1,,
+NULL,p209,34,100,bodytext,,
+NULL,p209,35,100,gatha1,,
+NULL,p209,36,100,gathalast,,
+NULL,p209,37,100,bodytext,,
+NULL,p209,38,100,indent,,
+NULL,p209,39,100,bodytext,,
+NULL,p209,40,5,subsubhead,Ganthārambhakathāvaṇṇanā,开题诗解释
+NULL,p209,41,100,bodytext,,
+NULL,p209,42,100,bodytext,,
+NULL,p209,43,100,gatha1,,
+NULL,p209,44,100,gathalast,,
+NULL,p209,45,100,bodytext,,
+NULL,p209,46,100,gatha1,,
+NULL,p209,47,100,gatha2,,
+NULL,p209,48,100,gatha3,,
+NULL,p209,49,100,gathalast,,
+NULL,p209,50,100,bodytext,,
+NULL,p209,51,100,gatha1,,
+NULL,p209,52,100,gathalast,,
+NULL,p209,53,100,unindented,,
+NULL,p209,54,100,gatha1,,
+NULL,p209,55,100,gathalast,,
+NULL,p209,56,100,bodytext,,
+NULL,p209,57,100,gatha1,,
+NULL,p209,58,100,gathalast,,
+NULL,p209,59,100,unindented,,
+NULL,p209,60,100,bodytext,,
+NULL,p209,61,100,bodytext,,
+NULL,p209,62,100,gatha1,,
+NULL,p209,63,100,gathalast,,
+NULL,p209,64,100,bodytext,,
+NULL,p209,65,100,gatha1,,
+NULL,p209,66,100,gathalast,,
+NULL,p209,67,100,bodytext,,
+NULL,p209,68,100,gatha1,,
+NULL,p209,69,100,gathalast,,
+NULL,p209,70,100,gatha1,,
+NULL,p209,71,100,gathalast,,
+NULL,p209,72,100,gatha1,,
+NULL,p209,73,100,gathalast,,
+NULL,p209,74,100,bodytext,,
+NULL,p209,75,100,gatha1,,
+NULL,p209,76,100,gathalast,,
+NULL,p209,77,100,gatha1,,
+NULL,p209,78,100,gathalast,,
+NULL,p209,79,100,bodytext,,
+NULL,p209,80,100,gatha1,,
+NULL,p209,81,100,gathalast,,
+NULL,p209,82,100,bodytext,,
+NULL,p209,83,100,gatha1,,
+NULL,p209,84,100,gatha2,,
+NULL,p209,85,100,gatha3,,
+NULL,p209,86,100,gathalast,,
+NULL,p209,87,100,unindented,,
+NULL,p209,88,100,bodytext,,
+NULL,p209,89,100,gatha1,,
+NULL,p209,90,100,gathalast,,
+NULL,p209,91,100,unindented,,
+NULL,p209,92,100,gatha1,,
+NULL,p209,93,100,gatha2,,
+NULL,p209,94,100,gatha3,,
+NULL,p209,95,100,gathalast,,
+NULL,p209,96,100,gatha1,,
+NULL,p209,97,100,gatha2,,
+NULL,p209,98,100,gatha3,,
+NULL,p209,99,100,gathalast,,
+NULL,p209,100,100,bodytext,,
+NULL,p209,101,100,bodytext,,
+NULL,p209,102,100,bodytext,,
+NULL,p209,103,100,bodytext,,
+NULL,p209,104,100,gatha1,,
+NULL,p209,105,100,gathalast,,
+NULL,p209,106,100,bodytext,,
+NULL,p209,107,100,gatha1,,
+NULL,p209,108,100,gathalast,,
+NULL,p209,109,100,gatha1,,
+NULL,p209,110,100,gathalast,,
+NULL,p209,111,100,bodytext,,
+NULL,p209,112,100,gatha1,,
+NULL,p209,113,100,gatha2,,
+NULL,p209,114,100,gatha3,,
+NULL,p209,115,100,gathalast,,
+NULL,p209,116,100,indent,,
+NULL,p209,117,100,gatha1,,
+NULL,p209,118,100,gathalast,,
+NULL,p209,119,100,bodytext,,
+NULL,p209,120,100,gatha1,,
+NULL,p209,121,100,gathalast,,
+NULL,p209,122,100,bodytext,,
+NULL,p209,123,100,bodytext,,
+NULL,p209,124,100,bodytext,,
+NULL,p209,125,100,bodytext,,
+NULL,p209,126,100,bodytext,,
+NULL,p209,127,100,bodytext,,
+NULL,p209,128,100,bodytext,,
+NULL,p209,129,100,bodytext,,
+NULL,p209,130,100,bodytext,,
+NULL,p209,131,100,bodytext,,
+NULL,p209,132,100,bodytext,,
+NULL,p209,133,100,centered,,
+NULL,p209,134,4,subhead,Bāhiranidānakathāvaṇṇanā,
+NULL,p209,135,100,bodytext,,
+NULL,p209,136,4,subhead,Paṭhamamahāsaṅgītikathāvaṇṇanā,
+NULL,p209,137,100,bodytext,,
+NULL,p209,138,100,gatha1,,
+NULL,p209,139,100,gathalast,,
+NULL,p209,140,100,bodytext,,
+NULL,p209,141,100,bodytext,,
+NULL,p209,142,100,bodytext,,
+NULL,p209,143,100,gatha1,,
+NULL,p209,144,100,gathalast,,
+NULL,p209,145,100,gatha1,,
+NULL,p209,146,100,gathalast,,
+NULL,p209,147,100,bodytext,,
+NULL,p209,148,100,centered,,
+NULL,p209,149,4,subhead,Dutiyasaṅgītikathāvaṇṇanā,
+NULL,p209,150,100,bodytext,,
+NULL,p209,151,100,centered,,
+NULL,p209,152,4,subhead,Tatiyasaṅgītikathāvaṇṇanā,
+NULL,p209,153,100,bodytext,,
+NULL,p209,154,100,gatha1,,
+NULL,p209,155,100,gathalast,,
+NULL,p209,156,100,bodytext,,
+NULL,p209,157,100,gatha1,,
+NULL,p209,158,100,gathalast,,
+NULL,p209,159,100,bodytext,,
+NULL,p209,160,100,centered,,
+NULL,p209,161,100,bodytext,,
+NULL,p209,162,100,bodytext,,
+NULL,p209,163,100,gatha1,,
+NULL,p209,164,100,gathalast,,
+NULL,p209,165,100,centered,,
+NULL,p209,166,2,chapter,Pārājikavaṇṇanā,巴拉基卡详解
+NULL,p209,167,4,subhead,Verañjakaṇḍo,
+NULL,p209,168,4,subhead,Verañjakaṇḍavaṇṇanā,
+NULL,p209,169,100,bodytext,,
+NULL,p209,170,100,bodytext,,
+NULL,p209,171,100,gatha1,,
+NULL,p209,172,100,gathalast,,
+NULL,p209,173,100,unindented,,
+NULL,p209,174,100,bodytext,,
+NULL,p209,175,100,bodytext,,
+NULL,p209,176,100,bodytext,,
+NULL,p209,177,100,bodytext,,
+NULL,p209,178,100,bodytext,,
+NULL,p209,179,100,bodytext,,
+NULL,p209,180,100,bodytext,,
+NULL,p209,181,100,bodytext,,
+NULL,p209,182,100,bodytext,,
+NULL,p209,183,100,bodytext,,
+NULL,p209,184,100,bodytext,,
+NULL,p209,185,100,bodytext,,
+NULL,p209,186,100,bodytext,,
+NULL,p209,187,100,bodytext,,
+NULL,p209,188,100,bodytext,,
+NULL,p209,189,100,bodytext,,
+NULL,p209,190,100,gatha1,,
+NULL,p209,191,100,gatha2,,
+NULL,p209,192,100,gatha3,,
+NULL,p209,193,100,gathalast,,
+NULL,p209,194,100,unindented,,
+NULL,p209,195,100,bodytext,,
+NULL,p209,196,100,bodytext,,
+NULL,p209,197,100,bodytext,,
+NULL,p209,198,100,centered,,
+NULL,p209,199,4,subhead,Pubbenivāsakathāvaṇṇanā,
+NULL,p209,200,100,bodytext,,
+NULL,p209,201,100,gatha1,,
+NULL,p209,202,100,gathalast,,
+NULL,p209,203,100,bodytext,,
+NULL,p209,204,100,bodytext,,
+NULL,p209,205,100,bodytext,,
+NULL,p209,206,100,bodytext,,
+NULL,p209,207,100,gatha1,,
+NULL,p209,208,100,gathalast,,
+NULL,p209,209,100,unindented,,
+NULL,p209,210,100,bodytext,,
+NULL,p209,211,100,centered,,
+NULL,p209,212,4,subhead,Dibbacakkhuñāṇakathāvaṇṇanā,
+NULL,p209,213,100,bodytext,,
+NULL,p209,214,100,bodytext,,
+NULL,p209,215,100,centered,,
+NULL,p209,216,4,subhead,Āsavakkhayañāṇakathāvaṇṇanā,
+NULL,p209,217,100,bodytext,,
+NULL,p209,218,100,centered,,
+NULL,p209,219,4,subhead,Upāsakattapaṭivedanākathāvaṇṇanā,
+NULL,p209,220,100,bodytext,,
+NULL,p209,221,100,bodytext,,
+NULL,p209,222,100,bodytext,,
+NULL,p209,223,100,bodytext,,
+NULL,p209,224,100,gatha1,,
+NULL,p209,225,100,gathalast,,
+NULL,p209,226,100,unindented,,
+NULL,p209,227,100,bodytext,,
+NULL,p209,228,100,bodytext,,
+NULL,p209,229,100,bodytext,,
+NULL,p209,230,100,gatha1,,
+NULL,p209,231,100,gatha2,,
+NULL,p209,232,100,gatha3,,
+NULL,p209,233,100,gathalast,,
+NULL,p209,234,100,gatha1,,
+NULL,p209,235,100,gatha2,,
+NULL,p209,236,100,gatha3,,
+NULL,p209,237,100,gathalast,,
+NULL,p209,238,100,gatha1,,
+NULL,p209,239,100,gatha2,,
+NULL,p209,240,100,gatha3,,
+NULL,p209,241,100,gathalast,,
+NULL,p209,242,100,gatha1,,
+NULL,p209,243,100,gatha2,,
+NULL,p209,244,100,gatha3,,
+NULL,p209,245,100,gathalast,,
+NULL,p209,246,100,gatha1,,
+NULL,p209,247,100,gatha2,,
+NULL,p209,248,100,gatha3,,
+NULL,p209,249,100,gathalast,,
+NULL,p209,250,100,bodytext,,
+NULL,p209,251,100,gatha1,,
+NULL,p209,252,100,gathalast,,
+NULL,p209,253,100,bodytext,,
+NULL,p209,254,100,bodytext,,
+NULL,p209,255,100,bodytext,,
+NULL,p209,256,100,bodytext,,
+NULL,p209,257,100,gatha1,,
+NULL,p209,258,100,gatha2,,
+NULL,p209,259,100,gatha3,,
+NULL,p209,260,100,gathalast,,
+NULL,p209,261,100,bodytext,,
+NULL,p209,262,100,gatha1,,
+NULL,p209,263,100,gatha2,,
+NULL,p209,264,100,gatha3,,
+NULL,p209,265,100,gathalast,,
+NULL,p209,266,100,bodytext,,
+NULL,p209,267,100,gatha1,,
+NULL,p209,268,100,gatha2,,
+NULL,p209,269,100,gatha3,,
+NULL,p209,270,100,gatha2,,
+NULL,p209,271,100,gatha3,,
+NULL,p209,272,100,gathalast,,
+NULL,p209,273,100,bodytext,,
+NULL,p209,274,100,gatha1,,
+NULL,p209,275,100,gathalast,,
+NULL,p209,276,100,bodytext,,
+NULL,p209,277,100,bodytext,,
+NULL,p209,278,100,centered,,
+NULL,p209,279,100,centered,,
+NULL,p209,280,4,subhead,1. Pārājikakaṇḍo,
+NULL,p209,281,3,title,1. Paṭhamapārājikaṃ,第一巴拉基卡
+NULL,p209,282,4,subhead,Sudinnabhāṇavāravaṇṇanā,
+NULL,p209,283,100,gatha1,,
+NULL,p209,284,100,gathalast,,
+NULL,p209,285,100,bodytext,,
+NULL,p209,286,100,gatha1,,
+NULL,p209,287,100,gathalast,,
+NULL,p209,288,100,gatha1,,
+NULL,p209,289,100,gathalast,,
+NULL,p209,290,100,gatha1,,
+NULL,p209,291,100,gathalast,,
+NULL,p209,292,100,gatha1,,
+NULL,p209,293,100,gathalast,,
+NULL,p209,294,100,gatha1,,
+NULL,p209,295,100,gathalast,,
+NULL,p209,296,100,gatha1,,
+NULL,p209,297,100,gathalast,,
+NULL,p209,298,100,bodytext,,
+NULL,p209,299,100,gatha1,,
+NULL,p209,300,100,gathalast,,
+NULL,p209,301,100,bodytext,,
+NULL,p209,302,100,bodytext,,
+NULL,p209,303,100,bodytext,,
+NULL,p209,304,100,gatha1,,
+NULL,p209,305,100,gathalast,,
+NULL,p209,306,100,bodytext,,
+NULL,p209,307,100,bodytext,,
+NULL,p209,308,100,bodytext,,
+NULL,p209,309,100,gatha1,,
+NULL,p209,310,100,gathalast,,
+NULL,p209,311,100,gatha1,,
+NULL,p209,312,100,gathalast,,
+NULL,p209,313,100,gatha1,,
+NULL,p209,314,100,gathalast,,
+NULL,p209,315,100,gatha1,,
+NULL,p209,316,100,gathalast,,
+NULL,p209,317,100,gatha1,,
+NULL,p209,318,100,gathalast,,
+NULL,p209,319,100,bodytext,,
+NULL,p209,320,100,gatha1,,
+NULL,p209,321,100,gatha2,,
+NULL,p209,322,100,gathalast,,
+NULL,p209,323,100,bodytext,,
+NULL,p209,324,100,gatha1,,
+NULL,p209,325,100,gathalast,,
+NULL,p209,326,100,bodytext,,
+NULL,p209,327,100,bodytext,,
+NULL,p209,328,100,bodytext,,
+NULL,p209,329,100,bodytext,,
+NULL,p209,330,100,centered,,
+NULL,p209,331,100,centered,,
+NULL,p209,332,4,subhead,Makkaṭīvatthukathāvaṇṇanā,
+NULL,p209,333,100,bodytext,,
+NULL,p209,334,100,bodytext,,
+NULL,p209,335,100,bodytext,,
+NULL,p209,336,100,centered,,
+NULL,p209,337,4,subhead,Vajjiputtakavatthuvaṇṇanā,
+NULL,p209,338,100,bodytext,,
+NULL,p209,339,100,gatha1,,
+NULL,p209,340,100,gathalast,,
+NULL,p209,341,100,unindented,,
+NULL,p209,342,100,bodytext,,
+NULL,p209,343,100,gatha1,,
+NULL,p209,344,100,gathalast,,
+NULL,p209,345,100,unindented,,
+NULL,p209,346,100,bodytext,,
+NULL,p209,347,100,bodytext,,
+NULL,p209,348,100,bodytext,,
+NULL,p209,349,100,bodytext,,
+NULL,p209,350,100,bodytext,,
+NULL,p209,351,100,bodytext,,
+NULL,p209,352,100,bodytext,,
+NULL,p209,353,100,bodytext,,
+NULL,p209,354,100,bodytext,,
+NULL,p209,355,100,centered,,
+NULL,p209,356,4,subhead,Catubbidhavinayakathāvaṇṇanā,
+NULL,p209,357,100,bodytext,,
+NULL,p209,358,100,bodytext,,
+NULL,p209,359,100,bodytext,,
+NULL,p209,360,100,bodytext,,
+NULL,p209,361,100,bodytext,,
+NULL,p209,362,100,gatha1,,
+NULL,p209,363,100,gathalast,,
+NULL,p209,364,100,unindented,,
+NULL,p209,365,100,bodytext,,
+NULL,p209,366,100,bodytext,,
+NULL,p209,367,100,bodytext,,
+NULL,p209,368,100,centered,,
+NULL,p209,369,4,subhead,Padabhājanīyavaṇṇanā,
+NULL,p209,370,100,bodytext,,
+NULL,p209,371,100,bodytext,,
+NULL,p209,372,100,bodytext,,
+NULL,p209,373,100,bodytext,,
+NULL,p209,374,100,bodytext,,
+NULL,p209,375,100,bodytext,,
+NULL,p209,376,100,bodytext,,
+NULL,p209,377,100,bodytext,,
+NULL,p209,378,100,bodytext,,
+NULL,p209,379,100,bodytext,,
+NULL,p209,380,4,subhead,Sājīvapadabhājanīyavaṇṇanā,
+NULL,p209,381,100,bodytext,,
+NULL,p209,382,100,bodytext,,
+NULL,p209,383,100,bodytext,,
+NULL,p209,384,4,subhead,Sikkhāpaccakkhānakathāvaṇṇanā,
+NULL,p209,385,100,bodytext,,
+NULL,p209,386,100,bodytext,,
+NULL,p209,387,100,bodytext,,
+NULL,p209,388,100,bodytext,,
+NULL,p209,389,100,bodytext,,
+NULL,p209,390,100,centered,,
+NULL,p209,391,4,subhead,Mūlapaññattikathāvaṇṇanā,
+NULL,p209,392,100,bodytext,,
+NULL,p209,393,100,bodytext,,
+NULL,p209,394,100,gatha1,,
+NULL,p209,395,100,gatha2,,
+NULL,p209,396,100,gatha3,,
+NULL,p209,397,100,gathalast,,
+NULL,p209,398,100,unindented,,
+NULL,p209,399,4,subhead,Paṭhamacatukkakathāvaṇṇanā,
+NULL,p209,400,100,bodytext,,
+NULL,p209,401,100,bodytext,,
+NULL,p209,402,100,indent,,
+NULL,p209,403,100,bodytext,,
+NULL,p209,404,100,centered,,
+NULL,p209,405,4,subhead,Ekūnasattatidvisatacatukkakathāvaṇṇanā,
+NULL,p209,406,100,bodytext,,
+NULL,p209,407,100,bodytext,,
+NULL,p209,408,100,bodytext,,
+NULL,p209,409,100,centered,,
+NULL,p209,410,4,subhead,Santhatacatukkabhedakakathāvaṇṇanā,
+NULL,p209,411,100,bodytext,,
+NULL,p209,412,100,centered,,
+NULL,p209,413,100,centered,,
+NULL,p209,414,4,subhead,Pakiṇṇakakathāvaṇṇanā,
+NULL,p209,415,100,bodytext,,
+NULL,p209,416,100,bodytext,,
+NULL,p209,417,100,bodytext,,
+NULL,p209,418,100,bodytext,,
+NULL,p209,419,100,bodytext,,
+NULL,p209,420,100,bodytext,,
+NULL,p209,421,4,subhead,Vinītavatthuvaṇṇanā,
+NULL,p209,422,100,bodytext,,
+NULL,p209,423,100,bodytext,,
+NULL,p209,424,100,bodytext,,
+NULL,p209,425,100,bodytext,,
+NULL,p209,426,100,bodytext,,
+NULL,p209,427,100,bodytext,,
+NULL,p209,428,100,bodytext,,
+NULL,p209,429,100,bodytext,,
+NULL,p209,430,100,bodytext,,
+NULL,p209,431,100,bodytext,,
+NULL,p209,432,100,bodytext,,
+NULL,p209,433,100,centered,,
+NULL,p209,434,3,title,2. Dutiyapārājikaṃ,第二巴拉基卡
+NULL,p209,435,4,subhead,Dhaniyavatthuvaṇṇanā,
+NULL,p209,436,100,bodytext,,
+NULL,p209,437,100,bodytext,,
+NULL,p209,438,4,subhead,Pāḷimuttakavinicchayavaṇṇanā,
+NULL,p209,439,100,bodytext,,
+NULL,p209,440,100,bodytext,,
+NULL,p209,441,100,bodytext,,
+NULL,p209,442,100,bodytext,,
+NULL,p209,443,100,bodytext,,
+NULL,p209,444,4,subhead,Padabhājanīyavaṇṇanā,
+NULL,p209,445,100,bodytext,,
+NULL,p209,446,100,bodytext,,
+NULL,p209,447,100,bodytext,,
+NULL,p209,448,4,subhead,Pañcavīsatiavahārakathāvaṇṇanā,
+NULL,p209,449,100,bodytext,,
+NULL,p209,450,4,subhead,Bhūmaṭṭhakathādivaṇṇanā,
+NULL,p209,451,100,bodytext,,
+NULL,p209,452,100,bodytext,,
+NULL,p209,453,100,bodytext,,
+NULL,p209,454,100,bodytext,,
+NULL,p209,455,100,bodytext,,
+NULL,p209,456,100,bodytext,,
+NULL,p209,457,100,bodytext,,
+NULL,p209,458,100,bodytext,,
+NULL,p209,459,100,bodytext,,
+NULL,p209,460,100,bodytext,,
+NULL,p209,461,100,bodytext,,
+NULL,p209,462,100,bodytext,,
+NULL,p209,463,100,bodytext,,
+NULL,p209,464,100,bodytext,,
+NULL,p209,465,100,bodytext,,
+NULL,p209,466,100,bodytext,,
+NULL,p209,467,100,bodytext,,
+NULL,p209,468,100,bodytext,,
+NULL,p209,469,100,bodytext,,
+NULL,p209,470,100,bodytext,,
+NULL,p209,471,100,bodytext,,
+NULL,p209,472,100,bodytext,,
+NULL,p209,473,100,bodytext,,
+NULL,p209,474,100,bodytext,,
+NULL,p209,475,100,bodytext,,
+NULL,p209,476,100,bodytext,,
+NULL,p209,477,100,bodytext,,
+NULL,p209,478,100,bodytext,,
+NULL,p209,479,100,centered,,
+NULL,p209,480,4,subhead,Āpattibhedavaṇṇanā,
+NULL,p209,481,100,bodytext,,
+NULL,p209,482,100,bodytext,,
+NULL,p209,483,100,centered,,
+NULL,p209,484,4,subhead,Anāpattibhedavaṇṇanā,
+NULL,p209,485,100,bodytext,,
+NULL,p209,486,100,centered,,
+NULL,p209,487,4,subhead,Pakiṇṇakakathāvaṇṇanā,
+NULL,p209,488,100,bodytext,,
+NULL,p209,489,100,bodytext,,
+NULL,p209,490,100,gatha1,,
+NULL,p209,491,100,gathalast,,
+NULL,p209,492,100,gatha1,,
+NULL,p209,493,100,gathalast,,
+NULL,p209,494,4,subhead,Vinītavatthuvaṇṇanā,
+NULL,p209,495,100,bodytext,,
+NULL,p209,496,100,gatha1,,
+NULL,p209,497,100,gathalast,,
+NULL,p209,498,100,bodytext,,
+NULL,p209,499,100,bodytext,,
+NULL,p209,500,4,subhead,Kusasaṅkāmanavatthukathāvaṇṇanā,
+NULL,p209,501,100,bodytext,,
+NULL,p209,502,100,bodytext,,
+NULL,p209,503,100,bodytext,,
+NULL,p209,504,100,bodytext,,
+NULL,p209,505,100,bodytext,,
+NULL,p209,506,100,bodytext,,
+NULL,p209,507,100,bodytext,,
+NULL,p209,508,100,centered,,
+NULL,p209,509,3,title,3. Tatiyapārājikaṃ,第三巴拉基卡
+NULL,p209,510,4,subhead,Paṭhamapaññattinidānavaṇṇanā,
+NULL,p209,511,100,bodytext,,
+NULL,p209,512,100,bodytext,,
+NULL,p209,513,100,bodytext,,
+NULL,p209,514,100,bodytext,,
+NULL,p209,515,100,bodytext,,
+NULL,p209,516,100,bodytext,,
+NULL,p209,517,100,bodytext,,
+NULL,p209,518,4,subhead,Ānāpānassatisamādhikathāvaṇṇanā,
+NULL,p209,519,100,bodytext,,
+NULL,p209,520,100,bodytext,,
+NULL,p209,521,100,bodytext,,
+NULL,p209,522,100,bodytext,,
+NULL,p209,523,100,bodytext,,
+NULL,p209,524,100,bodytext,,
+NULL,p209,525,100,bodytext,,
+NULL,p209,526,100,bodytext,,
+NULL,p209,527,100,bodytext,,
+NULL,p209,528,100,bodytext,,
+NULL,p209,529,100,bodytext,,
+NULL,p209,530,100,bodytext,,
+NULL,p209,531,100,bodytext,,
+NULL,p209,532,100,bodytext,,
+NULL,p209,533,100,bodytext,,
+NULL,p209,534,100,bodytext,,
+NULL,p209,535,100,bodytext,,
+NULL,p209,536,100,bodytext,,
+NULL,p209,537,100,bodytext,,
+NULL,p209,538,4,subhead,Padabhājanīyavaṇṇanā,
+NULL,p209,539,100,bodytext,,
+NULL,p209,540,100,gatha1,,
+NULL,p209,541,100,gatha2,,
+NULL,p209,542,100,gathalast,,
+NULL,p209,543,100,bodytext,,
+NULL,p209,544,100,bodytext,,
+NULL,p209,545,100,bodytext,,
+NULL,p209,546,100,bodytext,,
+NULL,p209,547,100,gatha1,,
+NULL,p209,548,100,gathalast,,
+NULL,p209,549,100,gatha1,,
+NULL,p209,550,100,gathalast,,
+NULL,p209,551,100,gatha1,,
+NULL,p209,552,100,gathalast,,
+NULL,p209,553,100,gatha1,,
+NULL,p209,554,100,gathalast,,
+NULL,p209,555,100,gatha1,,
+NULL,p209,556,100,gathalast,,
+NULL,p209,557,100,gatha1,,
+NULL,p209,558,100,gathalast,,
+NULL,p209,559,100,gatha1,,
+NULL,p209,560,100,gathalast,,
+NULL,p209,561,100,gatha1,,
+NULL,p209,562,100,gathalast,,
+NULL,p209,563,100,gatha1,,
+NULL,p209,564,100,gathalast,,
+NULL,p209,565,100,gatha1,,
+NULL,p209,566,100,gathalast,,
+NULL,p209,567,100,gatha1,,
+NULL,p209,568,100,gathalast,,
+NULL,p209,569,100,gatha1,,
+NULL,p209,570,100,gathalast,,
+NULL,p209,571,100,gatha1,,
+NULL,p209,572,100,gathalast,,
+NULL,p209,573,100,gatha1,,
+NULL,p209,574,100,gathalast,,
+NULL,p209,575,100,bodytext,,
+NULL,p209,576,100,bodytext,,
+NULL,p209,577,100,bodytext,,
+NULL,p209,578,100,bodytext,,
+NULL,p209,579,100,bodytext,,
+NULL,p209,580,100,bodytext,,
+NULL,p209,581,100,bodytext,,
+NULL,p209,582,100,bodytext,,
+NULL,p209,583,100,bodytext,,
+NULL,p209,584,100,bodytext,,
+NULL,p209,585,100,bodytext,,
+NULL,p209,586,100,bodytext,,
+NULL,p209,587,100,gatha1,,
+NULL,p209,588,100,gathalast,,
+NULL,p209,589,100,bodytext,,
+NULL,p209,590,100,bodytext,,
+NULL,p209,591,100,bodytext,,
+NULL,p209,592,100,centered,,
+NULL,p209,593,4,subhead,Vinītavatthuvaṇṇanā,
+NULL,p209,594,100,bodytext,,
+NULL,p209,595,100,bodytext,,
+NULL,p209,596,100,bodytext,,
+NULL,p209,597,100,bodytext,,
+NULL,p209,598,100,bodytext,,
+NULL,p209,599,100,bodytext,,
+NULL,p209,600,100,bodytext,,
+NULL,p209,601,100,bodytext,,
+NULL,p209,602,100,bodytext,,
+NULL,p209,603,100,bodytext,,
+NULL,p209,604,100,centered,,
+NULL,p209,605,3,title,4. Catutthapārājikaṃ,第四巴拉基卡
+NULL,p209,606,4,subhead,Vaggumudātīriyabhikkhuvatthuvaṇṇanā,
+NULL,p209,607,100,bodytext,,
+NULL,p209,608,100,bodytext,,
+NULL,p209,609,4,subhead,Savibhaṅgasikkhāpadavaṇṇanā,
+NULL,p209,610,100,bodytext,,
+NULL,p209,611,4,subhead,Padabhājanīyavaṇṇanā,
+NULL,p209,612,100,bodytext,,
+NULL,p209,613,100,bodytext,,
+NULL,p209,614,100,bodytext,,
+NULL,p209,615,100,bodytext,,
+NULL,p209,616,100,centered,,
+NULL,p209,617,4,subhead,Vattukāmavārakathāvaṇṇanā,
+NULL,p209,618,100,bodytext,,
+NULL,p209,619,100,centered,,
+NULL,p209,620,4,subhead,Anāpattibhedakathāvaṇṇanā,
+NULL,p209,621,100,bodytext,,
+NULL,p209,622,100,centered,,
+NULL,p209,623,4,subhead,Vinītavatthuvaṇṇanā,
+NULL,p209,624,100,bodytext,,
+NULL,p209,625,100,bodytext,,
+NULL,p209,626,100,bodytext,,
+NULL,p209,627,4,subhead,Nigamanavaṇṇanā,
+NULL,p209,628,100,bodytext,,
+NULL,p209,629,100,centered,,
+NULL,p209,630,100,centered,,
+NULL,p209,631,4,subhead,2. Saṅghādisesakaṇḍo,
+NULL,p209,632,4,subhead,1. Sukkavissaṭṭhisikkhāpadavaṇṇanā,
+NULL,p209,633,100,bodytext,,
+NULL,p209,634,100,bodytext,,
+NULL,p209,635,100,bodytext,,
+NULL,p209,636,100,bodytext,,
+NULL,p209,637,100,bodytext,,
+NULL,p209,638,100,bodytext,,
+NULL,p209,639,100,bodytext,,
+NULL,p209,640,100,bodytext,,
+NULL,p209,641,100,bodytext,,
+NULL,p209,642,100,bodytext,,
+NULL,p209,643,100,bodytext,,
+NULL,p209,644,100,centered,,
+NULL,p209,645,4,subhead,2. Kāyasaṃsaggasikkhāpadavaṇṇanā,
+NULL,p209,646,100,bodytext,,
+NULL,p209,647,100,bodytext,,
+NULL,p209,648,100,bodytext,,
+NULL,p209,649,4,subhead,Padabhājanīyavaṇṇanā,
+NULL,p209,650,100,bodytext,,
+NULL,p209,651,100,bodytext,,
+NULL,p209,652,100,bodytext,,
+NULL,p209,653,100,bodytext,,
+NULL,p209,654,100,bodytext,,
+NULL,p209,655,100,bodytext,,
+NULL,p209,656,4,subhead,Vinītavatthuvaṇṇanā,
+NULL,p209,657,100,bodytext,,
+NULL,p209,658,100,bodytext,,
+NULL,p209,659,100,indent,,
+NULL,p209,660,100,bodytext,,
+NULL,p209,661,100,centered,,
+NULL,p209,662,4,subhead,3. Duṭṭhullavācāsikkhāpadavaṇṇanā,
+NULL,p209,663,100,bodytext,,
+NULL,p209,664,4,subhead,Padabhājanīyavaṇṇanā,
+NULL,p209,665,100,bodytext,,
+NULL,p209,666,100,bodytext,,
+NULL,p209,667,4,subhead,Vinītavatthuvaṇṇanā,
+NULL,p209,668,100,bodytext,,
+NULL,p209,669,100,centered,,
+NULL,p209,670,4,subhead,4. Attakāmapāricariyasikkhāpadavaṇṇanā,
+NULL,p209,671,100,bodytext,,
+NULL,p209,672,100,bodytext,,
+NULL,p209,673,100,bodytext,,
+NULL,p209,674,100,centered,,
+NULL,p209,675,4,subhead,5. Sañcarittasikkhāpadavaṇṇanā,
+NULL,p209,676,100,bodytext,,
+NULL,p209,677,100,bodytext,,
+NULL,p209,678,4,subhead,Padabhājanīyavaṇṇanā,
+NULL,p209,679,100,bodytext,,
+NULL,p209,680,100,bodytext,,
+NULL,p209,681,100,bodytext,,
+NULL,p209,682,100,bodytext,,
+NULL,p209,683,4,subhead,Vinītavatthuvaṇṇanā,
+NULL,p209,684,100,bodytext,,
+NULL,p209,685,100,centered,,
+NULL,p209,686,4,subhead,6. Kuṭikārasikkhāpadavaṇṇanā,
+NULL,p209,687,100,bodytext,,
+NULL,p209,688,100,bodytext,,
+NULL,p209,689,100,bodytext,,
+NULL,p209,690,100,bodytext,,
+NULL,p209,691,100,bodytext,,
+NULL,p209,692,100,bodytext,,
+NULL,p209,693,100,bodytext,,
+NULL,p209,694,100,bodytext,,
+NULL,p209,695,100,centered,,
+NULL,p209,696,4,subhead,7. Vihārakārasikkhāpadavaṇṇanā,
+NULL,p209,697,100,bodytext,,
+NULL,p209,698,100,centered,,
+NULL,p209,699,4,subhead,8. Paṭhamaduṭṭhadosasikkhāpadavaṇṇanā,
+NULL,p209,700,100,bodytext,,
+NULL,p209,701,100,bodytext,,
+NULL,p209,702,100,bodytext,,
+NULL,p209,703,100,bodytext,,
+NULL,p209,704,100,bodytext,,
+NULL,p209,705,100,bodytext,,
+NULL,p209,706,100,bodytext,,
+NULL,p209,707,100,bodytext,,
+NULL,p209,708,100,bodytext,,
+NULL,p209,709,100,gatha1,,
+NULL,p209,710,100,gatha2,,
+NULL,p209,711,100,gatha3,,
+NULL,p209,712,100,gathalast,,
+NULL,p209,713,100,gatha1,,
+NULL,p209,714,100,gatha2,,
+NULL,p209,715,100,gatha3,,
+NULL,p209,716,100,gathalast,,
+NULL,p209,717,100,bodytext,,
+NULL,p209,718,100,bodytext,,
+NULL,p209,719,100,bodytext,,
+NULL,p209,720,100,centered,,
+NULL,p209,721,4,subhead,9. Dutiyaduṭṭhadosasikkhāpadavaṇṇanā,
+NULL,p209,722,100,bodytext,,
+NULL,p209,723,100,bodytext,,
+NULL,p209,724,100,bodytext,,
+NULL,p209,725,100,bodytext,,
+NULL,p209,726,100,bodytext,,
+NULL,p209,727,100,bodytext,,
+NULL,p209,728,100,bodytext,,
+NULL,p209,729,100,bodytext,,
+NULL,p209,730,100,bodytext,,
+NULL,p209,731,100,bodytext,,
+NULL,p209,732,100,centered,,
+NULL,p209,733,100,bodytext,,
+NULL,p209,734,100,centered,,
+NULL,p209,735,4,subhead,10. Paṭhamasaṅghabhedasikkhāpadavaṇṇanā,
+NULL,p209,736,100,bodytext,,
+NULL,p209,737,100,bodytext,,
+NULL,p209,738,100,bodytext,,
+NULL,p209,739,100,bodytext,,
+NULL,p209,740,100,bodytext,,
+NULL,p209,741,100,bodytext,,
+NULL,p209,742,100,centered,,
+NULL,p209,743,4,subhead,11. Dutiyasaṅghabhedasikkhāpadavaṇṇanā,
+NULL,p209,744,100,bodytext,,
+NULL,p209,745,100,centered,,
+NULL,p209,746,4,subhead,12. Dubbacasikkhāpadavaṇṇanā,
+NULL,p209,747,100,bodytext,,
+NULL,p209,748,100,bodytext,,
+NULL,p209,749,100,centered,,
+NULL,p209,750,4,subhead,13. Kuladūsakasikkhāpadavaṇṇanā,
+NULL,p209,751,100,bodytext,,
+NULL,p209,752,100,bodytext,,
+NULL,p209,753,100,bodytext,,
+NULL,p209,754,100,bodytext,,
+NULL,p209,755,100,bodytext,,
+NULL,p209,756,100,bodytext,,
+NULL,p209,757,100,centered,,
+NULL,p209,758,100,centered,,
+NULL,p209,759,4,subhead,3. Aniyatakaṇḍo,
+NULL,p209,760,4,subhead,1. Paṭhamaaniyatasikkhāpadavaṇṇanā,
+NULL,p209,761,100,bodytext,,
+NULL,p209,762,100,bodytext,,
+NULL,p209,763,100,centered,,
+NULL,p209,764,4,subhead,2. Dutiyaaniyatasikkhāpadavaṇṇanā,
+NULL,p209,765,100,bodytext,,
+NULL,p209,766,100,bodytext,,
+NULL,p209,767,100,centered,,
+NULL,p209,768,4,subhead,Pakiṇṇakavaṇṇanā,
+NULL,p209,769,100,bodytext,,
+NULL,p209,770,100,centered,,
+NULL,p209,771,100,centered,,
+NULL,p209,772,4,subhead,4. Nissaggiyakaṇḍo,
+NULL,p209,773,3,title,1. Cīvaravaggo,衣章
+NULL,p209,774,4,subhead,1. Paṭhamakathinasikkhāpadavaṇṇanā,
+NULL,p209,775,100,bodytext,,
+NULL,p209,776,100,bodytext,,
+NULL,p209,777,100,bodytext,,
+NULL,p209,778,100,bodytext,,
+NULL,p209,779,100,bodytext,,
+NULL,p209,780,100,bodytext,,
+NULL,p209,781,100,bodytext,,
+NULL,p209,782,100,bodytext,,
+NULL,p209,783,100,bodytext,,
+NULL,p209,784,100,bodytext,,
+NULL,p209,785,100,bodytext,,
+NULL,p209,786,100,bodytext,,
+NULL,p209,787,100,bodytext,,
+NULL,p209,788,100,bodytext,,
+NULL,p209,789,100,bodytext,,
+NULL,p209,790,100,bodytext,,
+NULL,p209,791,100,bodytext,,
+NULL,p209,792,100,bodytext,,
+NULL,p209,793,100,bodytext,,
+NULL,p209,794,100,bodytext,,
+NULL,p209,795,100,bodytext,,
+NULL,p209,796,100,bodytext,,
+NULL,p209,797,100,bodytext,,
+NULL,p209,798,100,gatha1,,
+NULL,p209,799,100,gatha2,,
+NULL,p209,800,100,gatha3,,
+NULL,p209,801,100,gathalast,,
+NULL,p209,802,100,bodytext,,
+NULL,p209,803,100,centered,,
+NULL,p209,804,4,subhead,2. Udositasikkhāpadavaṇṇanā,
+NULL,p209,805,100,bodytext,,
+NULL,p209,806,100,bodytext,,
+NULL,p209,807,100,bodytext,,
+NULL,p209,808,100,bodytext,,
+NULL,p209,809,100,bodytext,,
+NULL,p209,810,100,bodytext,,
+NULL,p209,811,100,bodytext,,
+NULL,p209,812,100,gatha1,,
+NULL,p209,813,100,gathalast,,
+NULL,p209,814,100,unindented,,
+NULL,p209,815,100,bodytext,,
+NULL,p209,816,100,bodytext,,
+NULL,p209,817,100,bodytext,,
+NULL,p209,818,100,centered,,
+NULL,p209,819,4,subhead,3. Tatiyakathinasikkhāpadavaṇṇanā,
+NULL,p209,820,100,bodytext,,
+NULL,p209,821,100,bodytext,,
+NULL,p209,822,100,bodytext,,
+NULL,p209,823,100,bodytext,,
+NULL,p209,824,100,bodytext,,
+NULL,p209,825,100,bodytext,,
+NULL,p209,826,100,centered,,
+NULL,p209,827,4,subhead,4. Purāṇacīvarasikkhāpadavaṇṇanā,
+NULL,p209,828,100,bodytext,,
+NULL,p209,829,100,bodytext,,
+NULL,p209,830,100,centered,,
+NULL,p209,831,4,subhead,5. Cīvarapaṭiggahaṇasikkhāpadavaṇṇanā,
+NULL,p209,832,100,bodytext,,
+NULL,p209,833,100,bodytext,,
+NULL,p209,834,100,bodytext,,
+NULL,p209,835,100,bodytext,,
+NULL,p209,836,100,centered,,
+NULL,p209,837,4,subhead,6. Aññātakaviññattisikkhāpadavaṇṇanā,
+NULL,p209,838,100,bodytext,,
+NULL,p209,839,100,bodytext,,
+NULL,p209,840,100,bodytext,,
+NULL,p209,841,100,bodytext,,
+NULL,p209,842,100,bodytext,,
+NULL,p209,843,100,centered,,
+NULL,p209,844,4,subhead,7. Tatuttarisikkhāpadavaṇṇanā,
+NULL,p209,845,100,bodytext,,
+NULL,p209,846,100,bodytext,,
+NULL,p209,847,100,centered,,
+NULL,p209,848,4,subhead,8. Paṭhamaupakkhaṭasikkhāpadavaṇṇanā,
+NULL,p209,849,100,bodytext,,
+NULL,p209,850,100,centered,,
+NULL,p209,851,4,subhead,9. Dutiyaupakkhaṭasikkhāpadavaṇṇanā,
+NULL,p209,852,100,bodytext,,
+NULL,p209,853,100,bodytext,,
+NULL,p209,854,100,gatha1,,
+NULL,p209,855,100,gathalast,,
+NULL,p209,856,100,gatha1,,
+NULL,p209,857,100,gathalast,,
+NULL,p209,858,100,bodytext,,
+NULL,p209,859,100,gatha1,,
+NULL,p209,860,100,gatha2,,
+NULL,p209,861,100,gatha3,,
+NULL,p209,862,100,gathalast,,
+NULL,p209,863,100,bodytext,,
+NULL,p209,864,100,centered,,
+NULL,p209,865,4,subhead,10. Rājasikkhāpadavaṇṇanā,
+NULL,p209,866,100,bodytext,,
+NULL,p209,867,100,bodytext,,
+NULL,p209,868,100,bodytext,,
+NULL,p209,869,100,bodytext,,
+NULL,p209,870,100,bodytext,,
+NULL,p209,871,100,bodytext,,
+NULL,p209,872,100,gatha1,,
+NULL,p209,873,100,gathalast,,
+NULL,p209,874,100,centered,,
+NULL,p209,875,100,centered,,
+NULL,p209,876,3,title,2. Kosiyavaggo,
+NULL,p209,877,4,subhead,1. Kosiyasikkhāpadavaṇṇanā,
+NULL,p209,878,100,bodytext,,
+NULL,p209,879,100,centered,,
+NULL,p209,880,4,subhead,2. Suddhakāḷakasikkhāpadavaṇṇanā,
+NULL,p209,881,100,bodytext,,
+NULL,p209,882,100,centered,,
+NULL,p209,883,4,subhead,3. Dvebhāgasikkhāpadavaṇṇanā,
+NULL,p209,884,100,bodytext,,
+NULL,p209,885,100,centered,,
+NULL,p209,886,4,subhead,4. Chabbassasikkhāpadavaṇṇanā,
+NULL,p209,887,100,bodytext,,
+NULL,p209,888,100,centered,,
+NULL,p209,889,4,subhead,5. Nisīdanasanthatasikkhāpadavaṇṇanā,
+NULL,p209,890,100,bodytext,,
+NULL,p209,891,100,bodytext,,
+NULL,p209,892,100,bodytext,,
+NULL,p209,893,100,bodytext,,
+NULL,p209,894,100,bodytext,,
+NULL,p209,895,100,bodytext,,
+NULL,p209,896,100,centered,,
+NULL,p209,897,4,subhead,6. Eḷakalomasikkhāpadavaṇṇanā,
+NULL,p209,898,100,bodytext,,
+NULL,p209,899,100,bodytext,,
+NULL,p209,900,100,bodytext,,
+NULL,p209,901,100,bodytext,,
+NULL,p209,902,100,centered,,
+NULL,p209,903,4,subhead,7. Eḷakalomadhovāpanasikkhāpadavaṇṇanā,
+NULL,p209,904,100,bodytext,,
+NULL,p209,905,100,centered,,
+NULL,p209,906,4,subhead,8. Rūpiyasikkhāpadavaṇṇanā,
+NULL,p209,907,100,bodytext,,
+NULL,p209,908,100,bodytext,,
+NULL,p209,909,100,bodytext,,
+NULL,p209,910,100,bodytext,,
+NULL,p209,911,100,bodytext,,
+NULL,p209,912,100,bodytext,,
+NULL,p209,913,100,bodytext,,
+NULL,p209,914,100,centered,,
+NULL,p209,915,4,subhead,9. Rūpiyasaṃvohārasikkhāpadavaṇṇanā,
+NULL,p209,916,100,bodytext,,
+NULL,p209,917,100,bodytext,,
+NULL,p209,918,100,bodytext,,
+NULL,p209,919,100,bodytext,,
+NULL,p209,920,100,bodytext,,
+NULL,p209,921,100,centered,,
+NULL,p209,922,4,subhead,10. Kayavikkayasikkhāpadavaṇṇanā,
+NULL,p209,923,100,bodytext,,
+NULL,p209,924,100,centered,,
+NULL,p209,925,100,centered,,
+NULL,p209,926,3,title,3. Pattavaggo,
+NULL,p209,927,4,subhead,1. Pattasikkhāpadavaṇṇanā,
+NULL,p209,928,100,bodytext,,
+NULL,p209,929,100,gatha1,,
+NULL,p209,930,100,gathalast,,
+NULL,p209,931,100,unindented,,
+NULL,p209,932,100,bodytext,,
+NULL,p209,933,100,bodytext,,
+NULL,p209,934,100,bodytext,,
+NULL,p209,935,100,centered,,
+NULL,p209,936,4,subhead,2. Ūnapañcabandhanasikkhāpadavaṇṇanā,
+NULL,p209,937,100,bodytext,,
+NULL,p209,938,100,centered,,
+NULL,p209,939,4,subhead,3. Bhesajjasikkhāpadavaṇṇanā,
+NULL,p209,940,100,bodytext,,
+NULL,p209,941,100,bodytext,,
+NULL,p209,942,100,bodytext,,
+NULL,p209,943,100,bodytext,,
+NULL,p209,944,100,bodytext,,
+NULL,p209,945,100,bodytext,,
+NULL,p209,946,100,bodytext,,
+NULL,p209,947,100,bodytext,,
+NULL,p209,948,100,bodytext,,
+NULL,p209,949,100,bodytext,,
+NULL,p209,950,100,centered,,
+NULL,p209,951,4,subhead,4. Vassikasāṭikasikkhāpadavaṇṇanā,
+NULL,p209,952,100,bodytext,,
+NULL,p209,953,100,bodytext,,
+NULL,p209,954,100,bodytext,,
+NULL,p209,955,100,bodytext,,
+NULL,p209,956,100,bodytext,,
+NULL,p209,957,100,centered,,
+NULL,p209,958,4,subhead,5. Cīvaraacchindanasikkhāpadavaṇṇanā,
+NULL,p209,959,100,bodytext,,
+NULL,p209,960,100,bodytext,,
+NULL,p209,961,100,centered,,
+NULL,p209,962,4,subhead,6. Suttaviññattisikkhāpadavaṇṇanā,
+NULL,p209,963,100,bodytext,,
+NULL,p209,964,100,centered,,
+NULL,p209,965,4,subhead,7. Mahāpesakārasikkhāpadavaṇṇanā,
+NULL,p209,966,100,bodytext,,
+NULL,p209,967,100,centered,,
+NULL,p209,968,4,subhead,8. Accekacīvarasikkhāpadavaṇṇanā,
+NULL,p209,969,100,bodytext,,
+NULL,p209,970,100,bodytext,,
+NULL,p209,971,100,bodytext,,
+NULL,p209,972,100,bodytext,,
+NULL,p209,973,100,bodytext,,
+NULL,p209,974,100,bodytext,,
+NULL,p209,975,100,centered,,
+NULL,p209,976,4,subhead,9. Sāsaṅkasikkhāpadavaṇṇanā,
+NULL,p209,977,100,bodytext,,
+NULL,p209,978,100,bodytext,,
+NULL,p209,979,100,centered,,
+NULL,p209,980,4,subhead,10. Pariṇatasikkhāpadavaṇṇanā,
+NULL,p209,981,100,bodytext,,
+NULL,p209,982,100,gatha1,,
+NULL,p209,983,100,gathalast,,
+NULL,p209,984,100,bodytext,,
+NULL,p209,985,100,gatha1,,
+NULL,p209,986,100,gatha2,,
+NULL,p209,987,100,gatha3,,
+NULL,p209,988,100,gathalast,,
+NULL,p209,989,100,centered,,
+NULL,p209,990,100,centered,,
+NULL,p209,991,100,centered,,
+NULL,p209,992,2,chapter,Pācittiyavaṇṇanā,巴基帝亚详解
+NULL,p209,993,4,subhead,5. Pācittiyakaṇḍo,
+NULL,p209,994,3,title,1. Musāvādavaggo,
+NULL,p209,995,4,subhead,1. Musāvādasikkhāpadavaṇṇanā,
+NULL,p209,996,100,bodytext,,
+NULL,p209,997,100,bodytext,,
+NULL,p209,998,100,bodytext,,
+NULL,p209,999,100,bodytext,,
+NULL,p209,1000,100,bodytext,,
+NULL,p209,1001,100,bodytext,,
+NULL,p209,1002,100,bodytext,,
+NULL,p209,1003,100,centered,,
+NULL,p209,1004,4,subhead,2. Omasavādasikkhāpadavaṇṇanā,
+NULL,p209,1005,100,bodytext,,
+NULL,p209,1006,100,bodytext,,
+NULL,p209,1007,100,bodytext,,
+NULL,p209,1008,100,bodytext,,
+NULL,p209,1009,100,centered,,
+NULL,p209,1010,4,subhead,3. Pesuññasikkhāpadavaṇṇanā,
+NULL,p209,1011,100,bodytext,,
+NULL,p209,1012,100,bodytext,,
+NULL,p209,1013,100,centered,,
+NULL,p209,1014,4,subhead,4. Padasodhammasikkhāpadavaṇṇanā,
+NULL,p209,1015,100,bodytext,,
+NULL,p209,1016,100,bodytext,,
+NULL,p209,1017,100,gatha1,,
+NULL,p209,1018,100,gathalast,,
+NULL,p209,1019,100,bodytext,,
+NULL,p209,1020,100,bodytext,,
+NULL,p209,1021,100,bodytext,,
+NULL,p209,1022,100,centered,,
+NULL,p209,1023,4,subhead,5. Paṭhamasahaseyyasikkhāpadavaṇṇanā,
+NULL,p209,1024,100,bodytext,,
+NULL,p209,1025,100,bodytext,,
+NULL,p209,1026,100,centered,,
+NULL,p209,1027,4,subhead,6. Dutiyasahaseyyasikkhāpadavaṇṇanā,
+NULL,p209,1028,100,bodytext,,
+NULL,p209,1029,100,centered,,
+NULL,p209,1030,4,subhead,7. Dhammadesanāsikkhāpadavaṇṇanā,
+NULL,p209,1031,100,bodytext,,
+NULL,p209,1032,100,centered,,
+NULL,p209,1033,4,subhead,8. Bhūtārocanasikkhāpadavaṇṇanā,
+NULL,p209,1034,100,bodytext,,
+NULL,p209,1035,100,bodytext,,
+NULL,p209,1036,100,centered,,
+NULL,p209,1037,4,subhead,9. Duṭṭhullārocanasikkhāpadavaṇṇanā,
+NULL,p209,1038,100,bodytext,,
+NULL,p209,1039,100,bodytext,,
+NULL,p209,1040,100,centered,,
+NULL,p209,1041,4,subhead,10. Pathavīkhaṇanasikkhāpadavaṇṇanā,
+NULL,p209,1042,100,bodytext,,
+NULL,p209,1043,100,bodytext,,
+NULL,p209,1044,100,centered,,
+NULL,p209,1045,100,centered,,
+NULL,p209,1046,3,title,2. Bhūtagāmavaggo,
+NULL,p209,1047,4,subhead,1. Bhūtagāmasikkhāpadavaṇṇanā,
+NULL,p209,1048,100,bodytext,,
+NULL,p209,1049,100,bodytext,,
+NULL,p209,1050,100,bodytext,,
+NULL,p209,1051,100,centered,,
+NULL,p209,1052,4,subhead,2. Aññavādakasikkhāpadavaṇṇanā,
+NULL,p209,1053,100,bodytext,,
+NULL,p209,1054,100,bodytext,,
+NULL,p209,1055,100,bodytext,,
+NULL,p209,1056,100,centered,,
+NULL,p209,1057,4,subhead,3. Ujjhāpanakasikkhāpadavaṇṇanā,
+NULL,p209,1058,100,bodytext,,
+NULL,p209,1059,100,bodytext,,
+NULL,p209,1060,100,centered,,
+NULL,p209,1061,4,subhead,4. Paṭhamasenāsanasikkhāpadavaṇṇanā,
+NULL,p209,1062,100,bodytext,,
+NULL,p209,1063,100,bodytext,,
+NULL,p209,1064,100,bodytext,,
+NULL,p209,1065,100,bodytext,,
+NULL,p209,1066,100,bodytext,,
+NULL,p209,1067,100,centered,,
+NULL,p209,1068,4,subhead,5. Dutiyasenāsanasikkhāpadavaṇṇanā,
+NULL,p209,1069,100,bodytext,,
+NULL,p209,1070,100,bodytext,,
+NULL,p209,1071,100,centered,,
+NULL,p209,1072,4,subhead,6. Anupakhajjasikkhāpadavaṇṇanā,
+NULL,p209,1073,100,bodytext,,
+NULL,p209,1074,100,bodytext,,
+NULL,p209,1075,100,centered,,
+NULL,p209,1076,4,subhead,7. Nikkaḍḍhanasikkhāpadavaṇṇanā,
+NULL,p209,1077,100,bodytext,,
+NULL,p209,1078,100,centered,,
+NULL,p209,1079,4,subhead,8. Vehāsakuṭisikkhāpadavaṇṇanā,
+NULL,p209,1080,100,bodytext,,
+NULL,p209,1081,100,centered,,
+NULL,p209,1082,4,subhead,9. Mahallakavihārasikkhāpadavaṇṇanā,
+NULL,p209,1083,100,bodytext,,
+NULL,p209,1084,100,bodytext,,
+NULL,p209,1085,100,bodytext,,
+NULL,p209,1086,100,centered,,
+NULL,p209,1087,4,subhead,10. Sappāṇakasikkhāpadavaṇṇanā,
+NULL,p209,1088,100,bodytext,,
+NULL,p209,1089,100,centered,,
+NULL,p209,1090,3,title,3. Ovādavaggo,
+NULL,p209,1091,4,subhead,1. Ovādasikkhāpadavaṇṇanā,
+NULL,p209,1092,100,bodytext,,
+NULL,p209,1093,100,bodytext,,
+NULL,p209,1094,100,bodytext,,
+NULL,p209,1095,100,centered,,
+NULL,p209,1096,4,subhead,2. Atthaṅgatasikkhāpadavaṇṇanā,
+NULL,p209,1097,100,bodytext,,
+NULL,p209,1098,100,bodytext,,
+NULL,p209,1099,100,centered,,
+NULL,p209,1100,4,subhead,3. Bhikkhunupassayasikkhāpadavaṇṇanā,
+NULL,p209,1101,100,bodytext,,
+NULL,p209,1102,100,centered,,
+NULL,p209,1103,4,subhead,4. Āmisasikkhāpadavaṇṇanā,
+NULL,p209,1104,100,bodytext,,
+NULL,p209,1105,100,centered,,
+NULL,p209,1106,4,subhead,5. Cīvaradānasikkhāpadavaṇṇanā,
+NULL,p209,1107,100,bodytext,,
+NULL,p209,1108,100,centered,,
+NULL,p209,1109,4,subhead,6. Cīvarasibbanasikkhāpadavaṇṇanā,
+NULL,p209,1110,100,bodytext,,
+NULL,p209,1111,100,centered,,
+NULL,p209,1112,4,subhead,7. Saṃvidhānasikkhāpadavaṇṇanā,
+NULL,p209,1113,100,bodytext,,
+NULL,p209,1114,100,bodytext,,
+NULL,p209,1115,100,bodytext,,
+NULL,p209,1116,100,centered,,
+NULL,p209,1117,4,subhead,8. Nāvābhiruhanasikkhāpadavaṇṇanā,
+NULL,p209,1118,100,bodytext,,
+NULL,p209,1119,100,bodytext,,
+NULL,p209,1120,100,centered,,
+NULL,p209,1121,4,subhead,9. Paripācitasikkhāpadavaṇṇanā,
+NULL,p209,1122,100,bodytext,,
+NULL,p209,1123,100,bodytext,,
+NULL,p209,1124,100,centered,,
+NULL,p209,1125,4,subhead,10. Rahonisajjasikkhāpadavaṇṇanā,
+NULL,p209,1126,100,bodytext,,
+NULL,p209,1127,100,centered,,
+NULL,p209,1128,100,centered,,
+NULL,p209,1129,3,title,4. Bhojanavaggo,
+NULL,p209,1130,4,subhead,1. Āvasathapiṇḍasikkhāpadavaṇṇanā,
+NULL,p209,1131,100,bodytext,,
+NULL,p209,1132,100,bodytext,,
+NULL,p209,1133,100,centered,,
+NULL,p209,1134,4,subhead,2. Gaṇabhojanasikkhāpadavaṇṇanā,
+NULL,p209,1135,100,bodytext,,
+NULL,p209,1136,100,bodytext,,
+NULL,p209,1137,100,bodytext,,
+NULL,p209,1138,100,centered,,
+NULL,p209,1139,4,subhead,3. Paramparabhojanasikkhāpadavaṇṇanā,
+NULL,p209,1140,100,bodytext,,
+NULL,p209,1141,100,bodytext,,
+NULL,p209,1142,100,bodytext,,
+NULL,p209,1143,100,bodytext,,
+NULL,p209,1144,100,bodytext,,
+NULL,p209,1145,100,centered,,
+NULL,p209,1146,4,subhead,4. Kāṇamātāsikkhāpadavaṇṇanā,
+NULL,p209,1147,100,bodytext,,
+NULL,p209,1148,100,centered,,
+NULL,p209,1149,4,subhead,5. Paṭhamapavāraṇasikkhāpadavaṇṇanā,
+NULL,p209,1150,100,bodytext,,
+NULL,p209,1151,100,bodytext,,
+NULL,p209,1152,100,bodytext,,
+NULL,p209,1153,100,bodytext,,
+NULL,p209,1154,100,bodytext,,
+NULL,p209,1155,100,bodytext,,
+NULL,p209,1156,100,centered,,
+NULL,p209,1157,4,subhead,6. Dutiyapavāraṇasikkhāpadavaṇṇanā,
+NULL,p209,1158,100,bodytext,,
+NULL,p209,1159,100,centered,,
+NULL,p209,1160,4,subhead,7. Vikālabhojanasikkhāpadavaṇṇanā,
+NULL,p209,1161,100,bodytext,,
+NULL,p209,1162,100,bodytext,,
+NULL,p209,1163,100,bodytext,,
+NULL,p209,1164,100,bodytext,,
+NULL,p209,1165,100,bodytext,,
+NULL,p209,1166,100,bodytext,,
+NULL,p209,1167,100,bodytext,,
+NULL,p209,1168,100,bodytext,,
+NULL,p209,1169,100,bodytext,,
+NULL,p209,1170,100,bodytext,,
+NULL,p209,1171,100,centered,,
+NULL,p209,1172,4,subhead,8. Sannidhikārakasikkhāpadavaṇṇanā,
+NULL,p209,1173,100,bodytext,,
+NULL,p209,1174,100,bodytext,,
+NULL,p209,1175,100,bodytext,,
+NULL,p209,1176,100,bodytext,,
+NULL,p209,1177,100,centered,,
+NULL,p209,1178,4,subhead,9. Paṇītabhojanasikkhāpadavaṇṇanā,
+NULL,p209,1179,100,bodytext,,
+NULL,p209,1180,100,bodytext,,
+NULL,p209,1181,100,centered,,
+NULL,p209,1182,4,subhead,10. Dantaponasikkhāpadavaṇṇanā,
+NULL,p209,1183,100,bodytext,,
+NULL,p209,1184,100,bodytext,,
+NULL,p209,1185,100,bodytext,,
+NULL,p209,1186,100,centered,,
+NULL,p209,1187,100,centered,,
+NULL,p209,1188,3,title,5. Acelakavaggo,
+NULL,p209,1189,4,subhead,1. Acelakasikkhāpadavaṇṇanā,
+NULL,p209,1190,100,bodytext,,
+NULL,p209,1191,100,centered,,
+NULL,p209,1192,4,subhead,2. Uyyojanasikkhāpadavaṇṇanā,
+NULL,p209,1193,100,bodytext,,
+NULL,p209,1194,100,centered,,
+NULL,p209,1195,4,subhead,3. Sabhojanasikkhāpadavaṇṇanā,
+NULL,p209,1196,100,bodytext,,
+NULL,p209,1197,100,centered,,
+NULL,p209,1198,4,subhead,4. Rahopaṭicchannasikkhāpadavaṇṇanā,
+NULL,p209,1199,100,bodytext,,
+NULL,p209,1200,100,centered,,
+NULL,p209,1201,4,subhead,5. Rahonisajjasikkhāpadavaṇṇanā,
+NULL,p209,1202,100,bodytext,,
+NULL,p209,1203,4,subhead,6. Cārittasikkhāpadavaṇṇanā,
+NULL,p209,1204,100,bodytext,,
+NULL,p209,1205,100,gatha1,,
+NULL,p209,1206,100,gathalast,,
+NULL,p209,1207,100,gatha1,,
+NULL,p209,1208,100,gathalast,,
+NULL,p209,1209,100,gatha1,,
+NULL,p209,1210,100,gathalast,,
+NULL,p209,1211,100,gatha1,,
+NULL,p209,1212,100,gathalast,,
+NULL,p209,1213,100,gatha1,,
+NULL,p209,1214,100,gathalast,,
+NULL,p209,1215,100,centered,,
+NULL,p209,1216,4,subhead,7. Mahānāmasikkhāpadavaṇṇanā,
+NULL,p209,1217,100,bodytext,,
+NULL,p209,1218,100,centered,,
+NULL,p209,1219,4,subhead,8. Uyyuttasenāsikkhāpadavaṇṇanā,
+NULL,p209,1220,100,bodytext,,
+NULL,p209,1221,100,centered,,
+NULL,p209,1222,4,subhead,9. Senāvāsasikkhāpadavaṇṇanā,
+NULL,p209,1223,100,bodytext,,
+NULL,p209,1224,100,centered,,
+NULL,p209,1225,4,subhead,10. Uyyodhikasikkhāpadavaṇṇanā,
+NULL,p209,1226,100,bodytext,,
+NULL,p209,1227,100,centered,,
+NULL,p209,1228,100,centered,,
+NULL,p209,1229,3,title,6. Surāpānavaggo,
+NULL,p209,1230,4,subhead,1. Surāpānasikkhāpadavaṇṇanā,
+NULL,p209,1231,100,gatha1,,
+NULL,p209,1232,100,gatha2,,
+NULL,p209,1233,100,gatha3,,
+NULL,p209,1234,100,gathalast,,
+NULL,p209,1235,100,gatha1,,
+NULL,p209,1236,100,gatha2,,
+NULL,p209,1237,100,gatha3,,
+NULL,p209,1238,100,gathalast,,
+NULL,p209,1239,100,bodytext,,
+NULL,p209,1240,100,centered,,
+NULL,p209,1241,4,subhead,2. Aṅgulipatodakasikkhāpadavaṇṇanā,
+NULL,p209,1242,100,bodytext,,
+NULL,p209,1243,4,subhead,3. Hasadhammasikkhāpadavaṇṇanā,
+NULL,p209,1244,100,bodytext,,
+NULL,p209,1245,100,gatha1,,
+NULL,p209,1246,100,gathalast,,
+NULL,p209,1247,100,gatha1,,
+NULL,p209,1248,100,gathalast,,
+NULL,p209,1249,100,gatha1,,
+NULL,p209,1250,100,gathalast,,
+NULL,p209,1251,100,centered,,
+NULL,p209,1252,4,subhead,4. Anādariyasikkhāpadavaṇṇanā,
+NULL,p209,1253,100,bodytext,,
+NULL,p209,1254,100,bodytext,,
+NULL,p209,1255,100,centered,,
+NULL,p209,1256,4,subhead,5. Bhiṃsāpanasikkhāpadavaṇṇanā,
+NULL,p209,1257,100,bodytext,,
+NULL,p209,1258,4,subhead,6. Jotisikkhāpadavaṇṇanā,
+NULL,p209,1259,100,bodytext,,
+NULL,p209,1260,100,centered,,
+NULL,p209,1261,4,subhead,7. Nahānasikkhāpadavaṇṇanā,
+NULL,p209,1262,100,bodytext,,
+NULL,p209,1263,4,subhead,8. Dubbaṇṇakaraṇasikkhāpadavaṇṇanā,
+NULL,p209,1264,100,bodytext,,
+NULL,p209,1265,100,centered,,
+NULL,p209,1266,4,subhead,9. Vikappanasikkhāpadavaṇṇanā,
+NULL,p209,1267,100,bodytext,,
+NULL,p209,1268,100,centered,,
+NULL,p209,1269,4,subhead,10. Cīvarāpanidhānasikkhāpadavaṇṇanā,
+NULL,p209,1270,100,bodytext,,
+NULL,p209,1271,100,centered,,
+NULL,p209,1272,100,centered,,
+NULL,p209,1273,3,title,7. Sappāṇakavaggo,
+NULL,p209,1274,4,subhead,1. Sañciccapāṇasikkhāpadavaṇṇanā,
+NULL,p209,1275,100,bodytext,,
+NULL,p209,1276,4,subhead,2. Sappāṇakasikkhāpadavaṇṇanā,
+NULL,p209,1277,100,bodytext,,
+NULL,p209,1278,100,gatha1,,
+NULL,p209,1279,100,gathalast,,
+NULL,p209,1280,100,centered,,
+NULL,p209,1281,4,subhead,3. Ukkoṭanasikkhāpadavaṇṇanā,
+NULL,p209,1282,100,bodytext,,
+NULL,p209,1283,100,centered,,
+NULL,p209,1284,4,subhead,4. Duṭṭhullasikkhāpadavaṇṇanā,
+NULL,p209,1285,100,bodytext,,
+NULL,p209,1286,100,bodytext,,
+NULL,p209,1287,100,centered,,
+NULL,p209,1288,4,subhead,5. Ūnavīsativassasikkhāpadavaṇṇanā,
+NULL,p209,1289,100,bodytext,,
+NULL,p209,1290,100,bodytext,,
+NULL,p209,1291,100,centered,,
+NULL,p209,1292,4,subhead,6. Theyyasatthasikkhāpadavaṇṇanā,
+NULL,p209,1293,100,bodytext,,
+NULL,p209,1294,100,centered,,
+NULL,p209,1295,4,subhead,7. Saṃvidhānasikkhāpadavaṇṇanā,
+NULL,p209,1296,100,bodytext,,
+NULL,p209,1297,100,bodytext,,
+NULL,p209,1298,100,centered,,
+NULL,p209,1299,4,subhead,8. Ariṭṭhasikkhāpadavaṇṇanā,
+NULL,p209,1300,100,bodytext,,
+NULL,p209,1301,100,centered,,
+NULL,p209,1302,4,subhead,9. Ukkhittasambhogasikkhāpadavaṇṇanā,
+NULL,p209,1303,100,bodytext,,
+NULL,p209,1304,100,centered,,
+NULL,p209,1305,4,subhead,10. Kaṇṭakasikkhāpadavaṇṇanā,
+NULL,p209,1306,100,bodytext,,
+NULL,p209,1307,100,centered,,
+NULL,p209,1308,100,centered,,
+NULL,p209,1309,3,title,8. Sahadhammikavaggo,
+NULL,p209,1310,4,subhead,1. Sahadhammikasikkhāpadavaṇṇanā,
+NULL,p209,1311,100,bodytext,,
+NULL,p209,1312,4,subhead,2. Vilekhanasikkhāpadavaṇṇanā,
+NULL,p209,1313,100,bodytext,,
+NULL,p209,1314,100,centered,,
+NULL,p209,1315,4,subhead,3. Mohanasikkhāpadavaṇṇanā,
+NULL,p209,1316,100,bodytext,,
+NULL,p209,1317,4,subhead,4. Pahārasikkhāpadavaṇṇanā,
+NULL,p209,1318,100,bodytext,,
+NULL,p209,1319,100,centered,,
+NULL,p209,1320,4,subhead,5. Talasattikasikkhāpadavaṇṇanā,
+NULL,p209,1321,100,bodytext,,
+NULL,p209,1322,100,centered,,
+NULL,p209,1323,4,subhead,6. Amūlakasikkhāpadavaṇṇanā,
+NULL,p209,1324,100,bodytext,,
+NULL,p209,1325,100,centered,,
+NULL,p209,1326,4,subhead,7. Sañciccasikkhāpadavaṇṇanā,
+NULL,p209,1327,100,bodytext,,
+NULL,p209,1328,100,centered,,
+NULL,p209,1329,4,subhead,8. Upassutisikkhāpadavaṇṇanā,
+NULL,p209,1330,100,bodytext,,
+NULL,p209,1331,100,centered,,
+NULL,p209,1332,4,subhead,9. Kammapaṭibāhanasikkhāpadavaṇṇanā,
+NULL,p209,1333,100,bodytext,,
+NULL,p209,1334,100,centered,,
+NULL,p209,1335,4,subhead,10. Chandaṃadatvāgamanasikkhāpadavaṇṇanā,
+NULL,p209,1336,100,bodytext,,
+NULL,p209,1337,100,centered,,
+NULL,p209,1338,4,subhead,11. Dubbalasikkhāpadavaṇṇanā,
+NULL,p209,1339,100,bodytext,,
+NULL,p209,1340,100,centered,,
+NULL,p209,1341,4,subhead,12. Pariṇāmanasikkhāpadavaṇṇanā,
+NULL,p209,1342,100,bodytext,,
+NULL,p209,1343,100,centered,,
+NULL,p209,1344,100,centered,,
+NULL,p209,1345,3,title,9. Ratanavaggo,
+NULL,p209,1346,4,subhead,1. Antepurasikkhāpadavaṇṇanā,
+NULL,p209,1347,100,bodytext,,
+NULL,p209,1348,100,bodytext,,
+NULL,p209,1349,100,bodytext,,
+NULL,p209,1350,100,centered,,
+NULL,p209,1351,4,subhead,2. Ratanasikkhāpadavaṇṇanā,
+NULL,p209,1352,100,bodytext,,
+NULL,p209,1353,100,bodytext,,
+NULL,p209,1354,100,centered,,
+NULL,p209,1355,4,subhead,3. Vikālagāmappavisanasikkhāpadavaṇṇanā,
+NULL,p209,1356,100,bodytext,,
+NULL,p209,1357,100,centered,,
+NULL,p209,1358,4,subhead,4. Sūcigharasikkhāpadavaṇṇanā,
+NULL,p209,1359,100,bodytext,,
+NULL,p209,1360,100,bodytext,,
+NULL,p209,1361,100,centered,,
+NULL,p209,1362,4,subhead,5. Mañcasikkhāpadavaṇṇanā,
+NULL,p209,1363,100,bodytext,,
+NULL,p209,1364,100,centered,,
+NULL,p209,1365,4,subhead,6. Tūlonaddhasikkhāpadavaṇṇanā,
+NULL,p209,1366,100,bodytext,,
+NULL,p209,1367,100,centered,,
+NULL,p209,1368,4,subhead,7. Nisīdanasikkhāpadavaṇṇanā,
+NULL,p209,1369,100,bodytext,,
+NULL,p209,1370,100,centered,,
+NULL,p209,1371,4,subhead,8. Kaṇḍupaṭicchādisikkhāpadavaṇṇanā,
+NULL,p209,1372,100,bodytext,,
+NULL,p209,1373,100,centered,,
+NULL,p209,1374,4,subhead,9. Vassikasāṭikasikkhāpadavaṇṇanā,
+NULL,p209,1375,100,bodytext,,
+NULL,p209,1376,100,centered,,
+NULL,p209,1377,4,subhead,10. Nandattherasikkhāpadavaṇṇanā,
+NULL,p209,1378,100,bodytext,,
+NULL,p209,1379,100,centered,,
+NULL,p209,1380,100,centered,,
+NULL,p209,1381,100,centered,,
+NULL,p209,1382,4,subhead,6. Pāṭidesanīyakaṇḍo,
+NULL,p209,1383,4,subhead,1. Paṭhamapāṭidesanīyasikkhāpadavaṇṇanā,
+NULL,p209,1384,100,bodytext,,
+NULL,p209,1385,100,centered,,
+NULL,p209,1386,4,subhead,2. Dutiyapāṭidesanīyasikkhāpadavaṇṇanā,
+NULL,p209,1387,100,bodytext,,
+NULL,p209,1388,100,centered,,
+NULL,p209,1389,100,bodytext,,
+NULL,p209,1390,100,centered,,
+NULL,p209,1391,4,subhead,7. Sekhiyakaṇḍo,
+NULL,p209,1392,4,subhead,1. Parimaṇḍalavaggavaṇṇanā,
+NULL,p209,1393,100,bodytext,,
+NULL,p209,1394,100,bodytext,,
+NULL,p209,1395,100,bodytext,,
+NULL,p209,1396,100,centered,,
+NULL,p209,1397,4,subhead,2. Ujjagghikavaggavaṇṇanā,
+NULL,p209,1398,100,bodytext,,
+NULL,p209,1399,100,bodytext,,
+NULL,p209,1400,100,centered,,
+NULL,p209,1401,4,subhead,3. Khambhakatavaggavaṇṇanā,
+NULL,p209,1402,100,bodytext,,
+NULL,p209,1403,100,bodytext,,
+NULL,p209,1404,100,centered,,
+NULL,p209,1405,4,subhead,4. Sakkaccavaggavaṇṇanā,
+NULL,p209,1406,100,bodytext,,
+NULL,p209,1407,100,centered,,
+NULL,p209,1408,4,subhead,5. Kabaḷavaggavaṇṇanā,
+NULL,p209,1409,100,bodytext,,
+NULL,p209,1410,100,bodytext,,
+NULL,p209,1411,100,centered,,
+NULL,p209,1412,4,subhead,6. Surusuruvaggavaṇṇanā,
+NULL,p209,1413,100,bodytext,,
+NULL,p209,1414,100,bodytext,,
+NULL,p209,1415,100,bodytext,,
+NULL,p209,1416,100,bodytext,,
+NULL,p209,1417,100,centered,,
+NULL,p209,1418,4,subhead,7. Pādukavaggavaṇṇanā,
+NULL,p209,1419,100,bodytext,,
+NULL,p209,1420,100,gathalast,,
+NULL,p209,1421,100,bodytext,,
+NULL,p209,1422,100,bodytext,,
+NULL,p209,1423,100,centered,,
+NULL,p209,1424,4,subhead,Pakiṇṇakavaṇṇanā,
+NULL,p209,1425,100,bodytext,,
+NULL,p209,1426,100,centered,,
+NULL,p209,1427,100,centered,,
+NULL,p209,1428,4,subhead,8. Sattādhikaraṇasamathavaṇṇanā,
+NULL,p209,1429,100,bodytext,,
+NULL,p209,1430,100,centered,,
+NULL,p209,1431,100,centered,,
+NULL,p209,1432,100,centered,,
+NULL,p209,1433,1,book,Bhikkhunīvibhaṅgavaṇṇanā,比库尼分别详解
+NULL,p209,1434,4,subhead,1. Pārājikakaṇḍavaṇṇanā,
+NULL,p209,1435,3,title,Ganthārambhavaṇṇanā,
+NULL,p209,1436,100,gatha1,,
+NULL,p209,1437,100,gathalast,,
+NULL,p209,1438,100,bodytext,,
+NULL,p209,1439,100,centered,,
+NULL,p209,1440,4,subhead,1. Paṭhamapārājikasikkhāpadavaṇṇanā,
+NULL,p209,1441,100,bodytext,,
+NULL,p209,1442,100,bodytext,,
+NULL,p209,1443,100,gatha1,,
+NULL,p209,1444,100,gatha2,,
+NULL,p209,1445,100,gatha3,,
+NULL,p209,1446,100,gathalast,,
+NULL,p209,1447,100,bodytext,,
+NULL,p209,1448,100,bodytext,,
+NULL,p209,1449,100,bodytext,,
+NULL,p209,1450,100,centered,,
+NULL,p209,1451,4,subhead,2. Dutiyapārājikasikkhāpadavaṇṇanā,
+NULL,p209,1452,100,bodytext,,
+NULL,p209,1453,100,bodytext,,
+NULL,p209,1454,100,centered,,
+NULL,p209,1455,4,subhead,3. Tatiyapārājikasikkhāpadavaṇṇanā,
+NULL,p209,1456,100,bodytext,,
+NULL,p209,1457,100,centered,,
+NULL,p209,1458,4,subhead,4. Catutthapārājikasikkhāpadavaṇṇanā,
+NULL,p209,1459,100,bodytext,,
+NULL,p209,1460,100,bodytext,,
+NULL,p209,1461,100,centered,,
+NULL,p209,1462,100,centered,,
+NULL,p209,1463,4,subhead,2. Saṅghādisesakaṇḍavaṇṇanā,
+NULL,p209,1464,4,subhead,1. Paṭhamasaṅghādisesasikkhāpadavaṇṇanā,
+NULL,p209,1465,100,bodytext,,
+NULL,p209,1466,100,centered,,
+NULL,p209,1467,4,subhead,2. Dutiyasaṅghādisesasikkhāpadavaṇṇanā,
+NULL,p209,1468,100,bodytext,,
+NULL,p209,1469,100,centered,,
+NULL,p209,1470,4,subhead,3. Tatiyasaṅghādisesasikkhāpadavaṇṇanā,
+NULL,p209,1471,100,bodytext,,
+NULL,p209,1472,100,bodytext,,
+NULL,p209,1473,100,bodytext,,
+NULL,p209,1474,100,bodytext,,
+NULL,p209,1475,100,bodytext,,
+NULL,p209,1476,100,centered,,
+NULL,p209,1477,4,subhead,4. Catutthasaṅghādisesasikkhāpadavaṇṇanā,
+NULL,p209,1478,100,bodytext,,
+NULL,p209,1479,100,bodytext,,
+NULL,p209,1480,100,centered,,
+NULL,p209,1481,4,subhead,5. Pañcamasaṅghādisesasikkhāpadavaṇṇanā,
+NULL,p209,1482,100,bodytext,,
+NULL,p209,1483,100,centered,,
+NULL,p209,1484,4,subhead,6. Chaṭṭhasaṅghādisesasikkhāpadavaṇṇanā,
+NULL,p209,1485,100,bodytext,,
+NULL,p209,1486,100,centered,,
+NULL,p209,1487,4,subhead,7. Sattamasaṅghādisesasikkhāpadavaṇṇanā,
+NULL,p209,1488,100,bodytext,,
+NULL,p209,1489,100,centered,,
+NULL,p209,1490,4,subhead,8. Aṭṭhamasaṅghādisesasikkhāpadavaṇṇanā,
+NULL,p209,1491,100,bodytext,,
+NULL,p209,1492,100,centered,,
+NULL,p209,1493,4,subhead,9. Navamasaṅghādisesasikkhāpadavaṇṇanā,
+NULL,p209,1494,100,bodytext,,
+NULL,p209,1495,100,centered,,
+NULL,p209,1496,100,centered,,
+NULL,p209,1497,4,subhead,3. Nissaggiyakaṇḍavaṇṇanā,
+NULL,p209,1498,4,subhead,1. Paṭhamanissaggiyapācittiyasikkhāpadavaṇṇanā,
+NULL,p209,1499,100,bodytext,,
+NULL,p209,1500,4,subhead,2. Dutiyanissaggiyapācittiyasikkhāpadavaṇṇanā,
+NULL,p209,1501,100,bodytext,,
+NULL,p209,1502,100,bodytext,,
+NULL,p209,1503,100,centered,,
+NULL,p209,1504,4,subhead,3. Tatiyanissaggiyapācittiyasikkhāpadavaṇṇanā,
+NULL,p209,1505,100,bodytext,,
+NULL,p209,1506,100,centered,,
+NULL,p209,1507,4,subhead,4. Catutthanissaggiyapācittiyasikkhāpadavaṇṇanā,
+NULL,p209,1508,100,bodytext,,
+NULL,p209,1509,100,centered,,
+NULL,p209,1510,4,subhead,5. Pañcamanissaggiyapācittiyasikkhāpadavaṇṇanā,
+NULL,p209,1511,100,bodytext,,
+NULL,p209,1512,100,centered,,
+NULL,p209,1513,4,subhead,6. Chaṭṭhanissaggiyapācittiyasikkhāpadavaṇṇanā,
+NULL,p209,1514,100,bodytext,,
+NULL,p209,1515,100,centered,,
+NULL,p209,1516,4,subhead,7. Sattamanissaggiyapācittiyasikkhāpadavaṇṇanā,
+NULL,p209,1517,100,bodytext,,
+NULL,p209,1518,100,bodytext,,
+NULL,p209,1519,100,centered,,
+NULL,p209,1520,4,subhead,8. Aṭṭhamanissaggiyapācittiyasikkhāpadavaṇṇanā,
+NULL,p209,1521,100,bodytext,,
+NULL,p209,1522,100,centered,,
+NULL,p209,1523,4,subhead,9. Navamanissaggiyapācittiyasikkhāpadavaṇṇanā,
+NULL,p209,1524,100,bodytext,,
+NULL,p209,1525,100,centered,,
+NULL,p209,1526,4,subhead,10. Dasamanissaggiyapācittiyasikkhāpadavaṇṇanā,
+NULL,p209,1527,100,bodytext,,
+NULL,p209,1528,100,centered,,
+NULL,p209,1529,4,subhead,11. Ekādasamanissaggiyapācittiyasikkhāpadavaṇṇanā,
+NULL,p209,1530,100,bodytext,,
+NULL,p209,1531,100,centered,,
+NULL,p209,1532,100,centered,,
+NULL,p209,1533,100,centered,,
+NULL,p209,1534,4,subhead,4. Pācittiyakaṇḍavaṇṇanā,
+NULL,p209,1535,3,title,1. Lasuṇavaggo,
+NULL,p209,1536,4,subhead,1. Paṭhamalasuṇasikkhāpadavaṇṇanā,
+NULL,p209,1537,100,bodytext,,
+NULL,p209,1538,100,centered,,
+NULL,p209,1539,4,subhead,2. Dutiyasikkhāpadavaṇṇanā,
+NULL,p209,1540,100,bodytext,,
+NULL,p209,1541,100,centered,,
+NULL,p209,1542,100,bodytext,,
+NULL,p209,1543,4,subhead,5. Pañcamasikkhāpadavaṇṇanā,
+NULL,p209,1544,100,bodytext,,
+NULL,p209,1545,100,centered,,
+NULL,p209,1546,100,bodytext,,
+NULL,p209,1547,4,subhead,7. Sattamasikkhāpadavaṇṇanā,
+NULL,p209,1548,100,bodytext,,
+NULL,p209,1549,100,bodytext,,
+NULL,p209,1550,100,centered,,
+NULL,p209,1551,4,subhead,8. Aṭṭhamasikkhāpadavaṇṇanā,
+NULL,p209,1552,100,bodytext,,
+NULL,p209,1553,100,bodytext,,
+NULL,p209,1554,100,centered,,
+NULL,p209,1555,4,subhead,9. Navamasikkhāpadavaṇṇanā,
+NULL,p209,1556,100,bodytext,,
+NULL,p209,1557,100,centered,,
+NULL,p209,1558,4,subhead,10. Dasamasikkhāpadavaṇṇanā,
+NULL,p209,1559,100,bodytext,,
+NULL,p209,1560,100,bodytext,,
+NULL,p209,1561,100,bodytext,,
+NULL,p209,1562,100,centered,,
+NULL,p209,1563,100,centered,,
+NULL,p209,1564,3,title,2. Andhakāravaggavaṇṇanā,
+NULL,p209,1565,4,subhead,1. Paṭhamasikkhāpadavaṇṇanā,
+NULL,p209,1566,100,bodytext,,
+NULL,p209,1567,100,centered,,
+NULL,p209,1568,4,subhead,2-3-4. Dutiyatatiyacatutthasikkhāpadavaṇṇanā,
+NULL,p209,1569,100,bodytext,,
+NULL,p209,1570,100,bodytext,,
+NULL,p209,1571,100,centered,,
+NULL,p209,1572,4,subhead,5. Pañcamasikkhāpadavaṇṇanā,
+NULL,p209,1573,100,bodytext,,
+NULL,p209,1574,100,centered,,
+NULL,p209,1575,4,subhead,6. Chaṭṭhasikkhāpadavaṇṇanā,
+NULL,p209,1576,100,bodytext,,
+NULL,p209,1577,100,centered,,
+NULL,p209,1578,4,subhead,7. Sattamasikkhāpadavaṇṇanā,
+NULL,p209,1579,100,bodytext,,
+NULL,p209,1580,100,centered,,
+NULL,p209,1581,4,subhead,8. Aṭṭhamasikkhāpadavaṇṇanā,
+NULL,p209,1582,100,bodytext,,
+NULL,p209,1583,100,centered,,
+NULL,p209,1584,4,subhead,9. Navamasikkhāpadavaṇṇanā,
+NULL,p209,1585,100,bodytext,,
+NULL,p209,1586,100,centered,,
+NULL,p209,1587,4,subhead,10. Dasamasikkhāpadavaṇṇanā,
+NULL,p209,1588,100,bodytext,,
+NULL,p209,1589,100,centered,,
+NULL,p209,1590,100,centered,,
+NULL,p209,1591,3,title,3. Naggavaggavaṇṇanā,
+NULL,p209,1592,4,subhead,1-2. Paṭhamadutiyasikkhāpadavaṇṇanā,
+NULL,p209,1593,100,bodytext,,
+NULL,p209,1594,100,centered,,
+NULL,p209,1595,4,subhead,3. Tatiyasikkhāpadavaṇṇanā,
+NULL,p209,1596,100,bodytext,,
+NULL,p209,1597,100,centered,,
+NULL,p209,1598,4,subhead,4. Catutthasikkhāpadavaṇṇanā,
+NULL,p209,1599,100,bodytext,,
+NULL,p209,1600,100,centered,,
+NULL,p209,1601,4,subhead,5. Pañcamasikkhāpadavaṇṇanā,
+NULL,p209,1602,100,bodytext,,
+NULL,p209,1603,100,centered,,
+NULL,p209,1604,100,bodytext,,
+NULL,p209,1605,4,subhead,8. Aṭṭhamasikkhāpadavaṇṇanā,
+NULL,p209,1606,100,bodytext,,
+NULL,p209,1607,100,centered,,
+NULL,p209,1608,4,subhead,9. Navamasikkhāpadavaṇṇanā,
+NULL,p209,1609,100,bodytext,,
+NULL,p209,1610,100,centered,,
+NULL,p209,1611,4,subhead,10. Dasamasikkhāpadavaṇṇanā,
+NULL,p209,1612,100,bodytext,,
+NULL,p209,1613,100,centered,,
+NULL,p209,1614,100,centered,,
+NULL,p209,1615,3,title,4. Tuvaṭṭavaggavaṇṇanā,
+NULL,p209,1616,4,subhead,1. Paṭhamasikkhāpadavaṇṇanā,
+NULL,p209,1617,100,bodytext,,
+NULL,p209,1618,100,centered,,
+NULL,p209,1619,4,subhead,2. Dutiyasikkhāpadavaṇṇanā,
+NULL,p209,1620,100,bodytext,,
+NULL,p209,1621,100,centered,,
+NULL,p209,1622,4,subhead,3. Tatiyasikkhāpadavaṇṇanā,
+NULL,p209,1623,100,bodytext,,
+NULL,p209,1624,100,centered,,
+NULL,p209,1625,100,bodytext,,
+NULL,p209,1626,4,subhead,6. Chaṭṭhasikkhāpadavaṇṇanā,
+NULL,p209,1627,100,bodytext,,
+NULL,p209,1628,100,centered,,
+NULL,p209,1629,100,bodytext,,
+NULL,p209,1630,4,subhead,9. Navamasikkhāpadavaṇṇanā,
+NULL,p209,1631,100,bodytext,,
+NULL,p209,1632,100,bodytext,,
+NULL,p209,1633,100,bodytext,,
+NULL,p209,1634,100,centered,,
+NULL,p209,1635,4,subhead,10. Dasamasikkhāpadavaṇṇanā,
+NULL,p209,1636,100,bodytext,,
+NULL,p209,1637,100,centered,,
+NULL,p209,1638,100,centered,,
+NULL,p209,1639,3,title,5. Cittāgāravaggavaṇṇanā,
+NULL,p209,1640,4,subhead,1. Paṭhamasikkhāpadavaṇṇanā,
+NULL,p209,1641,100,bodytext,,
+NULL,p209,1642,100,centered,,
+NULL,p209,1643,4,subhead,2. Dutiyasikkhāpadavaṇṇanā,
+NULL,p209,1644,100,bodytext,,
+NULL,p209,1645,100,centered,,
+NULL,p209,1646,4,subhead,3. Tatiyasikkhāpadavaṇṇanā,
+NULL,p209,1647,100,bodytext,,
+NULL,p209,1648,100,centered,,
+NULL,p209,1649,4,subhead,4. Catutthasikkhāpadavaṇṇanā,
+NULL,p209,1650,100,bodytext,,
+NULL,p209,1651,100,centered,,
+NULL,p209,1652,100,bodytext,,
+NULL,p209,1653,4,subhead,6. Chaṭṭhasikkhāpadavaṇṇanā,
+NULL,p209,1654,100,bodytext,,
+NULL,p209,1655,100,centered,,
+NULL,p209,1656,100,bodytext,,
+NULL,p209,1657,4,subhead,9. Navamasikkhāpadavaṇṇanā,
+NULL,p209,1658,100,bodytext,,
+NULL,p209,1659,100,centered,,
+NULL,p209,1660,100,bodytext,,
+NULL,p209,1661,100,centered,,
+NULL,p209,1662,3,title,6. Ārāmavaggavaṇṇanā,
+NULL,p209,1663,100,bodytext,,
+NULL,p209,1664,4,subhead,2. Dutiyasikkhāpadavaṇṇanā,
+NULL,p209,1665,100,bodytext,,
+NULL,p209,1666,100,bodytext,,
+NULL,p209,1667,100,centered,,
+NULL,p209,1668,100,bodytext,,
+NULL,p209,1669,4,subhead,4. Catutthasikkhāpadavaṇṇanā,
+NULL,p209,1670,100,bodytext,,
+NULL,p209,1671,100,centered,,
+NULL,p209,1672,100,centered,,
+NULL,p209,1673,3,title,7. Gabbhinivaggavaṇṇanā,
+NULL,p209,1674,4,subhead,1. Paṭhamādisikkhāpadavaṇṇanā,
+NULL,p209,1675,100,bodytext,,
+NULL,p209,1676,100,bodytext,,
+NULL,p209,1677,100,bodytext,,
+NULL,p209,1678,100,bodytext,,
+NULL,p209,1679,100,bodytext,,
+NULL,p209,1680,100,centered,,
+NULL,p209,1681,100,centered,,
+NULL,p209,1682,3,title,8. Kumāribhūtavaggavaṇṇanā,
+NULL,p209,1683,4,subhead,2. Dutiyādisikkhāpadavaṇṇanā,
+NULL,p209,1684,100,bodytext,,
+NULL,p209,1685,100,bodytext,,
+NULL,p209,1686,100,bodytext,,
+NULL,p209,1687,100,bodytext,,
+NULL,p209,1688,100,bodytext,,
+NULL,p209,1689,100,bodytext,,
+NULL,p209,1690,100,gatha1,,
+NULL,p209,1691,100,gathalast,,
+NULL,p209,1692,100,bodytext,,
+NULL,p209,1693,100,centered,,
+NULL,p209,1694,100,centered,,
+NULL,p209,1695,3,title,9. Chattupāhanavaggavaṇṇanā,
+NULL,p209,1696,4,subhead,11. Ekādasamādisikkhāpadavaṇṇanā,
+NULL,p209,1697,100,bodytext,,
+NULL,p209,1698,100,bodytext,,
+NULL,p209,1699,100,bodytext,,
+NULL,p209,1700,100,centered,,
+NULL,p209,1701,100,centered,,
+NULL,p209,1702,4,subhead,Nigamanavaṇṇanā,
+NULL,p209,1703,100,bodytext,,
+NULL,p209,1704,100,centered,,
+NULL,p209,1705,100,centered,,
+NULL,p209,1706,100,centered,,
+NULL,p209,1707,100,centered,,
+NULL,p209,1708,2,chapter,Mahāvaggavaṇṇanā,大品详解
+NULL,p209,1709,4,subhead,1. Mahākhandhakavaṇṇanā,
+NULL,p209,1710,4,subhead,Bodhikathāvaṇṇanā,
+NULL,p209,1711,100,gatha1,,
+NULL,p209,1712,100,gathalast,,
+NULL,p209,1713,100,bodytext,,
+NULL,p209,1714,100,bodytext,,
+NULL,p209,1715,100,bodytext,,
+NULL,p209,1716,100,bodytext,,
+NULL,p209,1717,100,bodytext,,
+NULL,p209,1718,100,bodytext,,
+NULL,p209,1719,100,bodytext,,
+NULL,p209,1720,100,bodytext,,
+NULL,p209,1721,100,bodytext,,
+NULL,p209,1722,4,subhead,Ajapālakathāvaṇṇanā,
+NULL,p209,1723,100,bodytext,,
+NULL,p209,1724,100,centered,,
+NULL,p209,1725,4,subhead,Mucalindakathāvaṇṇanā,
+NULL,p209,1726,100,bodytext,,
+NULL,p209,1727,100,centered,,
+NULL,p209,1728,4,subhead,Rājāyatanakathāvaṇṇanā,
+NULL,p209,1729,100,bodytext,,
+NULL,p209,1730,100,centered,,
+NULL,p209,1731,4,subhead,Brahmayācanakathāvaṇṇanā,
+NULL,p209,1732,100,bodytext,,
+NULL,p209,1733,100,bodytext,,
+NULL,p209,1734,100,bodytext,,
+NULL,p209,1735,100,bodytext,,
+NULL,p209,1736,100,bodytext,,
+NULL,p209,1737,100,centered,,
+NULL,p209,1738,4,subhead,Pañcavaggiyakathāvaṇṇanā,
+NULL,p209,1739,100,bodytext,,
+NULL,p209,1740,100,bodytext,,
+NULL,p209,1741,100,bodytext,,
+NULL,p209,1742,100,bodytext,,
+NULL,p209,1743,100,bodytext,,
+NULL,p209,1744,100,bodytext,,
+NULL,p209,1745,100,bodytext,,
+NULL,p209,1746,100,bodytext,,
+NULL,p209,1747,100,bodytext,,
+NULL,p209,1748,100,bodytext,,
+NULL,p209,1749,100,gatha1,,
+NULL,p209,1750,100,gathalast,,
+NULL,p209,1751,100,gatha1,,
+NULL,p209,1752,100,gathalast,,
+NULL,p209,1753,100,gatha1,,
+NULL,p209,1754,100,gathalast,,
+NULL,p209,1755,100,gatha1,,
+NULL,p209,1756,100,gathalast,,
+NULL,p209,1757,100,gatha1,,
+NULL,p209,1758,100,gatha2,,
+NULL,p209,1759,100,gatha3,,
+NULL,p209,1760,100,gathalast,,
+NULL,p209,1761,100,gatha1,,
+NULL,p209,1762,100,gatha2,,
+NULL,p209,1763,100,gatha3,,
+NULL,p209,1764,100,gathalast,,
+NULL,p209,1765,100,gatha1,,
+NULL,p209,1766,100,gatha2,,
+NULL,p209,1767,100,gatha3,,
+NULL,p209,1768,100,gatha2,,
+NULL,p209,1769,100,gatha1,,
+NULL,p209,1770,100,gathalast,,
+NULL,p209,1771,100,gatha1,,
+NULL,p209,1772,100,gatha2,,
+NULL,p209,1773,100,gatha3,,
+NULL,p209,1774,100,gathalast,,
+NULL,p209,1775,100,bodytext,,
+NULL,p209,1776,100,bodytext,,
+NULL,p209,1777,100,bodytext,,
+NULL,p209,1778,100,bodytext,,
+NULL,p209,1779,100,bodytext,,
+NULL,p209,1780,100,bodytext,,
+NULL,p209,1781,100,bodytext,,
+NULL,p209,1782,100,centered,,
+NULL,p209,1783,4,subhead,Pabbajjākathāvaṇṇanā,
+NULL,p209,1784,100,bodytext,,
+NULL,p209,1785,100,bodytext,,
+NULL,p209,1786,100,bodytext,,
+NULL,p209,1787,100,bodytext,,
+NULL,p209,1788,100,bodytext,,
+NULL,p209,1789,100,bodytext,,
+NULL,p209,1790,100,bodytext,,
+NULL,p209,1791,100,bodytext,,
+NULL,p209,1792,100,gatha1,,
+NULL,p209,1793,100,gathalast,,
+NULL,p209,1794,100,bodytext,,
+NULL,p209,1795,100,gatha1,,
+NULL,p209,1796,100,gathalast,,
+NULL,p209,1797,100,bodytext,,
+NULL,p209,1798,100,centered,,
+NULL,p209,1799,4,subhead,Dutiyamārakathāvaṇṇanā,
+NULL,p209,1800,100,bodytext,,
+NULL,p209,1801,100,centered,,
+NULL,p209,1802,4,subhead,Uruvelapāṭihāriyakathāvaṇṇanā,
+NULL,p209,1803,100,bodytext,,
+NULL,p209,1804,100,bodytext,,
+NULL,p209,1805,100,bodytext,,
+NULL,p209,1806,100,bodytext,,
+NULL,p209,1807,100,bodytext,,
+NULL,p209,1808,100,bodytext,,
+NULL,p209,1809,100,centered,,
+NULL,p209,1810,4,subhead,Bimbisārasamāgamakathāvaṇṇanā,
+NULL,p209,1811,100,bodytext,,
+NULL,p209,1812,100,bodytext,,
+NULL,p209,1813,100,gatha1,,
+NULL,p209,1814,100,gathalast,,
+NULL,p209,1815,100,gatha1,,
+NULL,p209,1816,100,gathalast,,
+NULL,p209,1817,100,bodytext,,
+NULL,p209,1818,100,centered,,
+NULL,p209,1819,4,subhead,Sāriputtamoggallānapabbajjākathāvaṇṇanā,
+NULL,p209,1820,100,bodytext,,
+NULL,p209,1821,100,bodytext,,
+NULL,p209,1822,100,bodytext,,
+NULL,p209,1823,100,gatha1,,
+NULL,p209,1824,100,gatha2,,
+NULL,p209,1825,100,gatha3,,
+NULL,p209,1826,100,gathalast,,
+NULL,p209,1827,100,gatha1,,
+NULL,p209,1828,100,gatha2,,
+NULL,p209,1829,100,gatha3,,
+NULL,p209,1830,100,gathalast,,
+NULL,p209,1831,100,centered,,
+NULL,p209,1832,4,subhead,Upajjhāyavattakathāvaṇṇanā,
+NULL,p209,1833,100,bodytext,,
+NULL,p209,1834,100,bodytext,,
+NULL,p209,1835,100,bodytext,,
+NULL,p209,1836,100,bodytext,,
+NULL,p209,1837,100,centered,,
+NULL,p209,1838,4,subhead,Nasammāvattanādikathāvaṇṇanā,
+NULL,p209,1839,100,bodytext,,
+NULL,p209,1840,100,centered,,
+NULL,p209,1841,4,subhead,Rādhabrāhmaṇavatthukathāvaṇṇanā,
+NULL,p209,1842,100,bodytext,,
+NULL,p209,1843,100,centered,,
+NULL,p209,1844,4,subhead,Ācariyavattakathāvaṇṇanā,
+NULL,p209,1845,100,bodytext,,
+NULL,p209,1846,100,centered,,
+NULL,p209,1847,4,subhead,Nissayapaṭippassaddhikathāvaṇṇanā,
+NULL,p209,1848,100,bodytext,,
+NULL,p209,1849,100,bodytext,,
+NULL,p209,1850,100,bodytext,,
+NULL,p209,1851,100,centered,,
+NULL,p209,1852,4,subhead,Upasampādetabbapañcakakathāvaṇṇanā,
+NULL,p209,1853,100,bodytext,,
+NULL,p209,1854,100,centered,,
+NULL,p209,1855,4,subhead,Aññatitthiyapubbavatthukathāvaṇṇanā,
+NULL,p209,1856,100,bodytext,,
+NULL,p209,1857,100,centered,,
+NULL,p209,1858,4,subhead,Pañcābādhavatthukathāvaṇṇanā,
+NULL,p209,1859,100,bodytext,,
+NULL,p209,1860,100,centered,,
+NULL,p209,1861,4,subhead,Coravatthukathāvaṇṇanā,
+NULL,p209,1862,100,bodytext,,
+NULL,p209,1863,100,centered,,
+NULL,p209,1864,4,subhead,Iṇāyikadāsavatthukathāvaṇṇanā,
+NULL,p209,1865,100,bodytext,,
+NULL,p209,1866,100,bodytext,,
+NULL,p209,1867,100,centered,,
+NULL,p209,1868,4,subhead,Kammārabhaṇḍuvatthādikathāvaṇṇanā,
+NULL,p209,1869,100,bodytext,,
+NULL,p209,1870,100,bodytext,,
+NULL,p209,1871,100,centered,,
+NULL,p209,1872,4,subhead,Rāhulavatthukathāvaṇṇanā,
+NULL,p209,1873,100,bodytext,,
+NULL,p209,1874,100,gatha1,,
+NULL,p209,1875,100,gatha2,,
+NULL,p209,1876,100,gatha3,,
+NULL,p209,1877,100,gathalast,,
+NULL,p209,1878,100,bodytext,,
+NULL,p209,1879,100,gatha1,,
+NULL,p209,1880,100,gatha2,,
+NULL,p209,1881,100,gatha3,,
+NULL,p209,1882,100,gathalast,,
+NULL,p209,1883,100,gatha1,,
+NULL,p209,1884,100,gatha2,,
+NULL,p209,1885,100,gatha3,,
+NULL,p209,1886,100,gathalast,,
+NULL,p209,1887,100,gatha1,,
+NULL,p209,1888,100,gatha2,,
+NULL,p209,1889,100,gatha3,,
+NULL,p209,1890,100,gathalast,,
+NULL,p209,1891,100,gatha1,,
+NULL,p209,1892,100,gatha2,,
+NULL,p209,1893,100,gatha3,,
+NULL,p209,1894,100,gathalast,,
+NULL,p209,1895,100,gatha1,,
+NULL,p209,1896,100,gatha2,,
+NULL,p209,1897,100,gatha3,,
+NULL,p209,1898,100,gathalast,,
+NULL,p209,1899,100,gatha1,,
+NULL,p209,1900,100,gatha2,,
+NULL,p209,1901,100,gatha3,,
+NULL,p209,1902,100,gathalast,,
+NULL,p209,1903,100,gatha1,,
+NULL,p209,1904,100,gatha2,,
+NULL,p209,1905,100,gatha3,,
+NULL,p209,1906,100,gathalast,,
+NULL,p209,1907,100,gatha1,,
+NULL,p209,1908,100,gatha2,,
+NULL,p209,1909,100,gatha3,,
+NULL,p209,1910,100,gathalast,,
+NULL,p209,1911,100,gatha1,,
+NULL,p209,1912,100,gatha2,,
+NULL,p209,1913,100,gatha3,,
+NULL,p209,1914,100,gathalast,,
+NULL,p209,1915,100,bodytext,,
+NULL,p209,1916,100,bodytext,,
+NULL,p209,1917,100,bodytext,,
+NULL,p209,1918,100,bodytext,,
+NULL,p209,1919,100,centered,,
+NULL,p209,1920,4,subhead,Sikkhāpadadaṇḍakammavatthukathāvaṇṇanā,
+NULL,p209,1921,100,bodytext,,
+NULL,p209,1922,100,centered,,
+NULL,p209,1923,4,subhead,Anāpucchāvaraṇavatthuādikathāvaṇṇanā,
+NULL,p209,1924,100,bodytext,,
+NULL,p209,1925,100,centered,,
+NULL,p209,1926,4,subhead,Paṇḍakavatthukathāvaṇṇanā,
+NULL,p209,1927,100,bodytext,,
+NULL,p209,1928,100,bodytext,,
+NULL,p209,1929,100,centered,,
+NULL,p209,1930,4,subhead,Theyyasaṃvāsakavatthukathāvaṇṇanā,
+NULL,p209,1931,100,bodytext,,
+NULL,p209,1932,100,bodytext,,
+NULL,p209,1933,100,centered,,
+NULL,p209,1934,4,subhead,Titthiyapakkantakakathāvaṇṇanā,
+NULL,p209,1935,100,bodytext,,
+NULL,p209,1936,100,centered,,
+NULL,p209,1937,4,subhead,Tiracchānagatavatthukathāvaṇṇanā,
+NULL,p209,1938,100,bodytext,,
+NULL,p209,1939,100,centered,,
+NULL,p209,1940,4,subhead,Mātughātakādivatthukathāvaṇṇanā,
+NULL,p209,1941,100,bodytext,,
+NULL,p209,1942,100,centered,,
+NULL,p209,1943,4,subhead,Ubhatobyañjanakavatthukathāvaṇṇanā,
+NULL,p209,1944,100,bodytext,,
+NULL,p209,1945,100,centered,,
+NULL,p209,1946,4,subhead,Anupajjhāyakādivatthukathāvaṇṇanā,
+NULL,p209,1947,100,bodytext,,
+NULL,p209,1948,100,bodytext,,
+NULL,p209,1949,4,subhead,Apattakādivatthukathāvaṇṇanā,
+NULL,p209,1950,100,bodytext,,
+NULL,p209,1951,4,subhead,Hatthacchinnādivatthukathāvaṇṇanā,
+NULL,p209,1952,100,bodytext,,
+NULL,p209,1953,100,bodytext,,
+NULL,p209,1954,100,bodytext,,
+NULL,p209,1955,100,bodytext,,
+NULL,p209,1956,100,gatha1,,
+NULL,p209,1957,100,gathalast,,
+NULL,p209,1958,100,bodytext,,
+NULL,p209,1959,100,bodytext,,
+NULL,p209,1960,100,gatha1,,
+NULL,p209,1961,100,gathalast,,
+NULL,p209,1962,100,bodytext,,
+NULL,p209,1963,100,centered,,
+NULL,p209,1964,4,subhead,Alajjīnissayavatthukathāvaṇṇanā,
+NULL,p209,1965,100,bodytext,,
+NULL,p209,1966,4,subhead,Gamikādinissayavatthukathāvaṇṇanā,
+NULL,p209,1967,100,bodytext,,
+NULL,p209,1968,100,bodytext,,
+NULL,p209,1969,100,bodytext,,
+NULL,p209,1970,100,bodytext,,
+NULL,p209,1971,4,subhead,Upasampadāvidhikathāvaṇṇanā,
+NULL,p209,1972,100,bodytext,,
+NULL,p209,1973,4,subhead,Cattāronissayādikathāvaṇṇanā,
+NULL,p209,1974,100,bodytext,,
+NULL,p209,1975,100,bodytext,,
+NULL,p209,1976,100,gatha1,,
+NULL,p209,1977,100,gathalast,,
+NULL,p209,1978,100,unindented,,
+NULL,p209,1979,100,gatha1,,
+NULL,p209,1980,100,gatha2,,
+NULL,p209,1981,100,gatha3,,
+NULL,p209,1982,100,gathalast,,
+NULL,p209,1983,100,centered,,
+NULL,p209,1984,4,subhead,2. Uposathakkhandhakavaṇṇanā,
+NULL,p209,1985,4,subhead,Sannipātānujānanādikathāvaṇṇanā,
+NULL,p209,1986,100,bodytext,,
+NULL,p209,1987,100,bodytext,,
+NULL,p209,1988,100,bodytext,,
+NULL,p209,1989,100,bodytext,,
+NULL,p209,1990,100,bodytext,,
+NULL,p209,1991,100,bodytext,,
+NULL,p209,1992,100,bodytext,,
+NULL,p209,1993,100,bodytext,,
+NULL,p209,1994,4,subhead,Sīmānujānanakathāvaṇṇanā,
+NULL,p209,1995,100,bodytext,,
+NULL,p209,1996,100,bodytext,,
+NULL,p209,1997,100,bodytext,,
+NULL,p209,1998,100,bodytext,,
+NULL,p209,1999,100,bodytext,,
+NULL,p209,2000,100,bodytext,,
+NULL,p209,2001,100,bodytext,,
+NULL,p209,2002,100,bodytext,,
+NULL,p209,2003,100,bodytext,,
+NULL,p209,2004,100,bodytext,,
+NULL,p209,2005,100,centered,,
+NULL,p209,2006,4,subhead,Uposathāgārādikathāvaṇṇanā,
+NULL,p209,2007,100,bodytext,,
+NULL,p209,2008,100,bodytext,,
+NULL,p209,2009,4,subhead,Avippavāsasīmānujānanakathāvaṇṇanā,
+NULL,p209,2010,100,bodytext,,
+NULL,p209,2011,100,bodytext,,
+NULL,p209,2012,4,subhead,Gāmasīmādikathāvaṇṇanā,
+NULL,p209,2013,100,bodytext,,
+NULL,p209,2014,100,bodytext,,
+NULL,p209,2015,100,bodytext,,
+NULL,p209,2016,100,bodytext,,
+NULL,p209,2017,100,gatha1,,
+NULL,p209,2018,100,gathalast,,
+NULL,p209,2019,100,gatha1,,
+NULL,p209,2020,100,gathalast,,
+NULL,p209,2021,100,bodytext,,
+NULL,p209,2022,100,bodytext,,
+NULL,p209,2023,4,subhead,Uposathabhedādikathāvaṇṇanā,
+NULL,p209,2024,100,bodytext,,
+NULL,p209,2025,4,subhead,Pātimokkhuddesakathāvaṇṇanā,
+NULL,p209,2026,100,bodytext,,
+NULL,p209,2027,4,subhead,Adhammakammapaṭikkosanādikathāvaṇṇanā,
+NULL,p209,2028,100,bodytext,,
+NULL,p209,2029,4,subhead,Pātimokkhuddesakaajjhesanādikathāvaṇṇanā,
+NULL,p209,2030,100,bodytext,,
+NULL,p209,2031,4,subhead,Disaṃgamikādivatthukathāvaṇṇanā,
+NULL,p209,2032,100,bodytext,,
+NULL,p209,2033,4,subhead,Pārisuddhidānakathāvaṇṇanā,
+NULL,p209,2034,100,bodytext,,
+NULL,p209,2035,4,subhead,Chandadānādikathāvaṇṇanā,
+NULL,p209,2036,100,bodytext,,
+NULL,p209,2037,4,subhead,Āpattipaṭikammavidhikathādivaṇṇanā,
+NULL,p209,2038,100,bodytext,,
+NULL,p209,2039,4,subhead,Anāpattipannarasakādikathāvaṇṇanā,
+NULL,p209,2040,100,bodytext,,
+NULL,p209,2041,4,subhead,Sīmokkantikapeyyālakathāvaṇṇanā,
+NULL,p209,2042,100,bodytext,,
+NULL,p209,2043,4,subhead,Liṅgādidassanakathāvaṇṇanā,
+NULL,p209,2044,100,bodytext,,
+NULL,p209,2045,4,subhead,Nagantabbagantabbavārakathāvaṇṇanā,
+NULL,p209,2046,100,bodytext,,
+NULL,p209,2047,4,subhead,Vajjanīyapuggalasandassanakathāvaṇṇanā,
+NULL,p209,2048,100,bodytext,,
+NULL,p209,2049,100,centered,,
+NULL,p209,2050,4,subhead,3. Vassūpanāyikakkhandhakavaṇṇanā,
+NULL,p209,2051,4,subhead,Vassūpanāyikānujānanakathāvaṇṇanā,
+NULL,p209,2052,100,bodytext,,
+NULL,p209,2053,4,subhead,Vassānecārikāpaṭikkhepādikathāvaṇṇanā,
+NULL,p209,2054,100,bodytext,,
+NULL,p209,2055,4,subhead,Sattāhakaraṇīyānujānanakathāvaṇṇanā,
+NULL,p209,2056,100,bodytext,,
+NULL,p209,2057,4,subhead,Pahiteyevaanujānanakathāvaṇṇanā,
+NULL,p209,2058,100,bodytext,,
+NULL,p209,2059,100,bodytext,,
+NULL,p209,2060,4,subhead,Antarāyeanāpattivassacchedakathāvaṇṇanā,
+NULL,p209,2061,100,bodytext,,
+NULL,p209,2062,4,subhead,Vajādīsuvassūpagamanakathāvaṇṇanā,
+NULL,p209,2063,100,bodytext,,
+NULL,p209,2064,100,bodytext,,
+NULL,p209,2065,100,bodytext,,
+NULL,p209,2066,4,subhead,Adhammikakatikādikathāvaṇṇanā,
+NULL,p209,2067,100,bodytext,,
+NULL,p209,2068,100,bodytext,,
+NULL,p209,2069,100,bodytext,,
+NULL,p209,2070,100,bodytext,,
+NULL,p209,2071,100,bodytext,,
+NULL,p209,2072,100,centered,,
+NULL,p209,2073,4,subhead,4. Pavāraṇākkhandhakavaṇṇanā,
+NULL,p209,2074,4,subhead,Aphāsukavihārakathāvaṇṇanā,
+NULL,p209,2075,100,bodytext,,
+NULL,p209,2076,4,subhead,Pavāraṇābhedavaṇṇanā,
+NULL,p209,2077,100,bodytext,,
+NULL,p209,2078,4,subhead,Pavāraṇādānānujānanakathāvaṇṇanā,
+NULL,p209,2079,100,bodytext,,
+NULL,p209,2080,4,subhead,Anāpattipannarasakādikathāvaṇṇanā,
+NULL,p209,2081,100,bodytext,,
+NULL,p209,2082,100,bodytext,,
+NULL,p209,2083,100,bodytext,,
+NULL,p209,2084,100,bodytext,,
+NULL,p209,2085,100,centered,,
+NULL,p209,2086,4,subhead,5. Cammakkhandhakavaṇṇanā,
+NULL,p209,2087,4,subhead,Soṇakoḷivisavatthukathāvaṇṇanā,
+NULL,p209,2088,100,bodytext,,
+NULL,p209,2089,4,subhead,Soṇassapabbajjākathāvaṇṇanā,
+NULL,p209,2090,100,bodytext,,
+NULL,p209,2091,100,bodytext,,
+NULL,p209,2092,4,subhead,Sabbanīlikādipaṭikkhepakathāvaṇṇanā,
+NULL,p209,2093,100,bodytext,,
+NULL,p209,2094,4,subhead,Yānādipaṭikkhepakathāvaṇṇanā,
+NULL,p209,2095,100,bodytext,,
+NULL,p209,2096,4,subhead,Sabbacammapaṭikkhepādikathāvaṇṇanā,
+NULL,p209,2097,100,bodytext,,
+NULL,p209,2098,100,bodytext,,
+NULL,p209,2099,100,bodytext,,
+NULL,p209,2100,100,centered,,
+NULL,p209,2101,4,subhead,6. Bhesajjakkhandhakavaṇṇanā,
+NULL,p209,2102,4,subhead,Pañcabhesajjādikathāvaṇṇanā,
+NULL,p209,2103,100,bodytext,,
+NULL,p209,2104,100,bodytext,,
+NULL,p209,2105,100,bodytext,,
+NULL,p209,2106,100,bodytext,,
+NULL,p209,2107,100,bodytext,,
+NULL,p209,2108,100,bodytext,,
+NULL,p209,2109,100,bodytext,,
+NULL,p209,2110,100,bodytext,,
+NULL,p209,2111,4,subhead,Guḷādianujānanakathāvaṇṇanā,
+NULL,p209,2112,100,bodytext,,
+NULL,p209,2113,100,bodytext,,
+NULL,p209,2114,100,bodytext,,
+NULL,p209,2115,4,subhead,Manussamaṃsapaṭikkhepakathāvaṇṇanā,
+NULL,p209,2116,100,bodytext,,
+NULL,p209,2117,4,subhead,Hatthimaṃsādipaṭikkhepakathāvaṇṇanā,
+NULL,p209,2118,100,bodytext,,
+NULL,p209,2119,100,indent,,
+NULL,p209,2120,100,unindented,,
+NULL,p209,2121,4,subhead,Yāgumadhugoḷakādikathāvaṇṇanā,
+NULL,p209,2122,100,bodytext,,
+NULL,p209,2123,100,bodytext,,
+NULL,p209,2124,100,bodytext,,
+NULL,p209,2125,100,bodytext,,
+NULL,p209,2126,4,subhead,Kappiyabhūmianujānanakathāvaṇṇanā,
+NULL,p209,2127,100,bodytext,,
+NULL,p209,2128,100,bodytext,,
+NULL,p209,2129,4,subhead,Keṇiyajaṭilavatthukathāvaṇṇanā,
+NULL,p209,2130,100,bodytext,,
+NULL,p209,2131,100,bodytext,,
+NULL,p209,2132,100,centered,,
+NULL,p209,2133,4,subhead,7. Kathinakkhandhakavaṇṇanā,
+NULL,p209,2134,4,subhead,Kathinānujānanakathāvaṇṇanā,
+NULL,p209,2135,100,bodytext,,
+NULL,p209,2136,100,bodytext,,
+NULL,p209,2137,100,bodytext,,
+NULL,p209,2138,100,bodytext,,
+NULL,p209,2139,100,bodytext,,
+NULL,p209,2140,100,bodytext,,
+NULL,p209,2141,100,bodytext,,
+NULL,p209,2142,100,bodytext,,
+NULL,p209,2143,100,bodytext,,
+NULL,p209,2144,4,subhead,Ādāyasattakakathāvaṇṇanā,
+NULL,p209,2145,100,bodytext,,
+NULL,p209,2146,100,bodytext,,
+NULL,p209,2147,100,bodytext,,
+NULL,p209,2148,100,bodytext,,
+NULL,p209,2149,100,bodytext,,
+NULL,p209,2150,100,centered,,
+NULL,p209,2151,4,subhead,8. Cīvarakkhandhakavaṇṇanā,
+NULL,p209,2152,4,subhead,Jīvakavatthukathāvaṇṇanā,
+NULL,p209,2153,100,bodytext,,
+NULL,p209,2154,100,bodytext,,
+NULL,p209,2155,100,bodytext,,
+NULL,p209,2156,4,subhead,Pajjotarājavatthukathāvaṇṇanā,
+NULL,p209,2157,100,bodytext,,
+NULL,p209,2158,4,subhead,Samattiṃsavirecanakathāvaṇṇanā,
+NULL,p209,2159,100,bodytext,,
+NULL,p209,2160,4,subhead,Varayācanakathāvaṇṇanā,
+NULL,p209,2161,100,bodytext,,
+NULL,p209,2162,4,subhead,Kambalānujānanādikathāvaṇṇanā,
+NULL,p209,2163,100,bodytext,,
+NULL,p209,2164,100,bodytext,,
+NULL,p209,2165,4,subhead,Bhaṇḍāgārasammutiādikathāvaṇṇanā,
+NULL,p209,2166,100,bodytext,,
+NULL,p209,2167,4,subhead,Cīvararajanakathāvaṇṇanā,
+NULL,p209,2168,100,bodytext,,
+NULL,p209,2169,4,subhead,Nisīdanādianujānanakathāvaṇṇanā,
+NULL,p209,2170,100,bodytext,,
+NULL,p209,2171,100,bodytext,,
+NULL,p209,2172,4,subhead,Saṅghikacīvaruppādakathāvaṇṇanā,
+NULL,p209,2173,100,bodytext,,
+NULL,p209,2174,4,subhead,Upanandasakyaputtavatthukathāvaṇṇanā,
+NULL,p209,2175,100,bodytext,,
+NULL,p209,2176,4,subhead,Matasantakakathāvaṇṇanā,
+NULL,p209,2177,100,bodytext,,
+NULL,p209,2178,100,bodytext,,
+NULL,p209,2179,100,bodytext,,
+NULL,p209,2180,4,subhead,Vassaṃvutthānaṃanuppannacīvarakathāvaṇṇanā,
+NULL,p209,2181,100,bodytext,,
+NULL,p209,2182,4,subhead,Saṅghebhinnecīvaruppādakathāvaṇṇanā,
+NULL,p209,2183,100,bodytext,,
+NULL,p209,2184,4,subhead,Aṭṭhacīvaramātikākathāvaṇṇanā,
+NULL,p209,2185,100,bodytext,,
+NULL,p209,2186,100,gatha1,,
+NULL,p209,2187,100,gathalast,,
+NULL,p209,2188,100,unindented,,
+NULL,p209,2189,100,bodytext,,
+NULL,p209,2190,100,centered,,
+NULL,p209,2191,4,subhead,9. Campeyyakkhandhakavaṇṇanā,
+NULL,p209,2192,4,subhead,Dvenissāraṇādikathāvaṇṇanā,
+NULL,p209,2193,100,bodytext,,
+NULL,p209,2194,4,subhead,Upālipucchākathāvaṇṇanā,
+NULL,p209,2195,100,bodytext,,
+NULL,p209,2196,100,centered,,
+NULL,p209,2197,4,subhead,10. Kosambakakkhandhakavaṇṇanā,
+NULL,p209,2198,4,subhead,Kosambakavivādakathāvaṇṇanā,
+NULL,p209,2199,100,bodytext,,
+NULL,p209,2200,100,bodytext,,
+NULL,p209,2201,4,subhead,Dīghāvuvatthukathāvaṇṇanā,
+NULL,p209,2202,100,bodytext,,
+NULL,p209,2203,4,subhead,Pālileyyakagamanakathāvaṇṇanā,
+NULL,p209,2204,100,bodytext,,
+NULL,p209,2205,4,subhead,Aṭṭhārasavatthukathāvaṇṇanā,
+NULL,p209,2206,100,bodytext,,
+NULL,p209,2207,4,subhead,Saṅghasāmaggīkathāvaṇṇanā,
+NULL,p209,2208,100,bodytext,,
+NULL,p209,2209,100,gatha1,,
+NULL,p209,2210,100,gathalast,,
+NULL,p209,2211,100,gatha1,,
+NULL,p209,2212,100,gathalast,,
+NULL,p209,2213,100,bodytext,,
+NULL,p209,2214,100,centered,,
+NULL,p209,2215,100,centered,,
+NULL,p209,2216,100,centered,,
+NULL,p209,2217,2,chapter,Cūḷavaggavaṇṇanā,小品详解
+NULL,p209,2218,3,title,1. Kammakkhandhakavaṇṇanā,
+NULL,p209,2219,4,subhead,Adhammakammadvādasakakathāvaṇṇanā,
+NULL,p209,2220,100,bodytext,,
+NULL,p209,2221,100,bodytext,,
+NULL,p209,2222,100,bodytext,,
+NULL,p209,2223,100,bodytext,,
+NULL,p209,2224,100,bodytext,,
+NULL,p209,2225,100,bodytext,,
+NULL,p209,2226,100,bodytext,,
+NULL,p209,2227,100,centered,,
+NULL,p209,2228,3,title,2. Pārivāsikakkhandhakavaṇṇanā,
+NULL,p209,2229,4,subhead,Pārivāsikavattakathāvaṇṇanā,
+NULL,p209,2230,100,bodytext,,
+NULL,p209,2231,100,bodytext,,
+NULL,p209,2232,100,bodytext,,
+NULL,p209,2233,100,centered,,
+NULL,p209,2234,4,subhead,Mūlāyapaṭikassanārahavattakathāvaṇṇanā,
+NULL,p209,2235,100,bodytext,,
+NULL,p209,2236,100,centered,,
+NULL,p209,2237,3,title,3. Samuccayakkhandhakavaṇṇanā,
+NULL,p209,2238,4,subhead,Sukkavissaṭṭhikathāvaṇṇanā,
+NULL,p209,2239,100,bodytext,,
+NULL,p209,2240,4,subhead,Parivāsakathāvaṇṇanā,
+NULL,p209,2241,100,bodytext,,
+NULL,p209,2242,100,bodytext,,
+NULL,p209,2243,100,bodytext,,
+NULL,p209,2244,100,centered,,
+NULL,p209,2245,100,bodytext,,
+NULL,p209,2246,4,subhead,Paṭicchannaparivāsādikathāvaṇṇanā,
+NULL,p209,2247,100,bodytext,,
+NULL,p209,2248,100,bodytext,,
+NULL,p209,2249,100,bodytext,,
+NULL,p209,2250,100,bodytext,,
+NULL,p209,2251,100,centered,,
+NULL,p209,2252,3,title,4. Samathakkhandhakavaṇṇanā,
+NULL,p209,2253,4,subhead,Sammukhāvinayakathāvaṇṇanā,
+NULL,p209,2254,100,bodytext,,
+NULL,p209,2255,4,subhead,Sativinayakathāvaṇṇanā,
+NULL,p209,2256,100,bodytext,,
+NULL,p209,2257,4,subhead,Amūḷhavinayakathāvaṇṇanā,
+NULL,p209,2258,100,bodytext,,
+NULL,p209,2259,4,subhead,Paṭiññātakaraṇakathāvaṇṇanā,
+NULL,p209,2260,100,bodytext,,
+NULL,p209,2261,4,subhead,Tassapāpiyasikākathāvaṇṇanā,
+NULL,p209,2262,100,bodytext,,
+NULL,p209,2263,4,subhead,Tiṇavatthārakādikathāvaṇṇanā,
+NULL,p209,2264,100,bodytext,,
+NULL,p209,2265,4,subhead,Adhikaraṇakathāvaṇṇanā,
+NULL,p209,2266,100,bodytext,,
+NULL,p209,2267,100,bodytext,,
+NULL,p209,2268,100,bodytext,,
+NULL,p209,2269,100,bodytext,,
+NULL,p209,2270,100,bodytext,,
+NULL,p209,2271,100,bodytext,,
+NULL,p209,2272,100,bodytext,,
+NULL,p209,2273,100,bodytext,,
+NULL,p209,2274,100,bodytext,,
+NULL,p209,2275,100,bodytext,,
+NULL,p209,2276,100,centered,,
+NULL,p209,2277,3,title,5. Khuddakavatthukkhandhakavaṇṇanā,
+NULL,p209,2278,4,subhead,Khuddakavatthukathāvaṇṇanā,
+NULL,p209,2279,100,bodytext,,
+NULL,p209,2280,100,bodytext,,
+NULL,p209,2281,100,bodytext,,
+NULL,p209,2282,100,bodytext,,
+NULL,p209,2283,100,bodytext,,
+NULL,p209,2284,100,bodytext,,
+NULL,p209,2285,100,bodytext,,
+NULL,p209,2286,100,bodytext,,
+NULL,p209,2287,100,bodytext,,
+NULL,p209,2288,100,bodytext,,
+NULL,p209,2289,100,bodytext,,
+NULL,p209,2290,100,bodytext,,
+NULL,p209,2291,100,bodytext,,
+NULL,p209,2292,100,bodytext,,
+NULL,p209,2293,100,bodytext,,
+NULL,p209,2294,100,bodytext,,
+NULL,p209,2295,100,bodytext,,
+NULL,p209,2296,100,centered,,
+NULL,p209,2297,3,title,6. Senāsanakkhandhakavaṇṇanā,
+NULL,p209,2298,4,subhead,Vihārānujānanakathāvaṇṇanā,
+NULL,p209,2299,100,bodytext,,
+NULL,p209,2300,100,bodytext,,
+NULL,p209,2301,100,bodytext,,
+NULL,p209,2302,100,bodytext,,
+NULL,p209,2303,100,bodytext,,
+NULL,p209,2304,100,bodytext,,
+NULL,p209,2305,100,bodytext,,
+NULL,p209,2306,100,bodytext,,
+NULL,p209,2307,100,bodytext,,
+NULL,p209,2308,100,bodytext,,
+NULL,p209,2309,4,subhead,Senāsanaggāhakathāvaṇṇanā,
+NULL,p209,2310,100,bodytext,,
+NULL,p209,2311,100,bodytext,,
+NULL,p209,2312,100,bodytext,,
+NULL,p209,2313,4,subhead,Upanandavatthukathāvaṇṇanā,
+NULL,p209,2314,100,bodytext,,
+NULL,p209,2315,4,subhead,Avissajjiyavatthukathāvaṇṇanā,
+NULL,p209,2316,100,bodytext,,
+NULL,p209,2317,100,bodytext,,
+NULL,p209,2318,4,subhead,Navakammadānakathāvaṇṇanā,
+NULL,p209,2319,100,bodytext,,
+NULL,p209,2320,4,subhead,Saṅghabhattādianujānanakathāvaṇṇanā,
+NULL,p209,2321,4,subhead,Uddesabhattakathāvaṇṇanā,
+NULL,p209,2322,100,bodytext,,
+NULL,p209,2323,4,subhead,Nimantanabhattakathāvaṇṇanā,
+NULL,p209,2324,100,bodytext,,
+NULL,p209,2325,4,subhead,Salākabhattakathāvaṇṇanā,
+NULL,p209,2326,100,bodytext,,
+NULL,p209,2327,4,subhead,Pakkhikabhattakathāvaṇṇanā,
+NULL,p209,2328,100,bodytext,,
+NULL,p209,2329,100,centered,,
+NULL,p209,2330,3,title,7. Saṅghabhedakakkhandhakavaṇṇanā,
+NULL,p209,2331,4,subhead,Chasakyapabbajjākathāvaṇṇanā,
+NULL,p209,2332,100,bodytext,,
+NULL,p209,2333,100,bodytext,,
+NULL,p209,2334,100,bodytext,,
+NULL,p209,2335,100,bodytext,,
+NULL,p209,2336,100,bodytext,,
+NULL,p209,2337,100,bodytext,,
+NULL,p209,2338,100,bodytext,,
+NULL,p209,2339,100,bodytext,,
+NULL,p209,2340,100,bodytext,,
+NULL,p209,2341,100,bodytext,,
+NULL,p209,2342,100,bodytext,,
+NULL,p209,2343,100,bodytext,,
+NULL,p209,2344,100,bodytext,,
+NULL,p209,2345,100,centered,,
+NULL,p209,2346,3,title,8. Vattakkhandhakavaṇṇanā,
+NULL,p209,2347,4,subhead,Āgantukavattakathāvaṇṇanā,
+NULL,p209,2348,100,bodytext,,
+NULL,p209,2349,4,subhead,Anumodanavattakathāvaṇṇanā,
+NULL,p209,2350,100,bodytext,,
+NULL,p209,2351,100,centered,,
+NULL,p209,2352,3,title,9. Pātimokkhaṭṭhapanakkhandhakavaṇṇanā,
+NULL,p209,2353,4,subhead,Pātimokkhuddesayācanakathāvaṇṇanā,
+NULL,p209,2354,100,bodytext,,
+NULL,p209,2355,4,subhead,Attādānaaṅgakathāvaṇṇanā,
+NULL,p209,2356,100,bodytext,,
+NULL,p209,2357,100,bodytext,,
+NULL,p209,2358,100,centered,,
+NULL,p209,2359,3,title,10. Bhikkhunikkhandhakavaṇṇanā,
+NULL,p209,2360,4,subhead,Mahāpajāpatigotamīvatthukathāvaṇṇanā,
+NULL,p209,2361,100,bodytext,,
+NULL,p209,2362,4,subhead,Bhikkhunīupasampadānujānanakathāvaṇṇanā,
+NULL,p209,2363,100,bodytext,,
+NULL,p209,2364,100,bodytext,,
+NULL,p209,2365,100,bodytext,,
+NULL,p209,2366,100,bodytext,,
+NULL,p209,2367,100,bodytext,,
+NULL,p209,2368,100,bodytext,,
+NULL,p209,2369,100,bodytext,,
+NULL,p209,2370,100,bodytext,,
+NULL,p209,2371,100,bodytext,,
+NULL,p209,2372,100,bodytext,,
+NULL,p209,2373,100,bodytext,,
+NULL,p209,2374,100,bodytext,,
+NULL,p209,2375,100,bodytext,,
+NULL,p209,2376,100,bodytext,,
+NULL,p209,2377,100,gatha1,,
+NULL,p209,2378,100,gathalast,,
+NULL,p209,2379,100,gatha1,,
+NULL,p209,2380,100,gathalast,,
+NULL,p209,2381,100,gatha1,,
+NULL,p209,2382,100,gathalast,,
+NULL,p209,2383,100,gatha1,,
+NULL,p209,2384,100,gathalast,,
+NULL,p209,2385,100,gatha1,,
+NULL,p209,2386,100,gathalast,,
+NULL,p209,2387,100,gatha1,,
+NULL,p209,2388,100,gathalast,,
+NULL,p209,2389,100,gatha1,,
+NULL,p209,2390,100,gatha1,,
+NULL,p209,2391,100,gathalast,,
+NULL,p209,2392,100,centered,,
+NULL,p209,2393,3,title,11. Pañcasatikakkhandhakavaṇṇanā,
+NULL,p209,2394,4,subhead,Saṅgītinidānakathāvaṇṇanā,
+NULL,p209,2395,100,bodytext,,
+NULL,p209,2396,4,subhead,Khuddānukhuddakakathāvaṇṇanā,
+NULL,p209,2397,100,bodytext,,
+NULL,p209,2398,100,bodytext,,
+NULL,p209,2399,4,subhead,Brahmadaṇḍakathāvaṇṇanā,
+NULL,p209,2400,100,bodytext,,
+NULL,p209,2401,100,centered,,
+NULL,p209,2402,3,title,12. Sattasatikakkhandhakavaṇṇanā,
+NULL,p209,2403,4,subhead,Dasavatthukathāvaṇṇanā,
+NULL,p209,2404,100,bodytext,,
+NULL,p209,2405,100,bodytext,,
+NULL,p209,2406,100,bodytext,,
+NULL,p209,2407,100,bodytext,,
+NULL,p209,2408,100,bodytext,,
+NULL,p209,2409,100,bodytext,,
+NULL,p209,2410,100,gatha1,,
+NULL,p209,2411,100,gathalast,,
+NULL,p209,2412,100,gatha1,,
+NULL,p209,2413,100,gathalast,,
+NULL,p209,2414,100,gatha1,,
+NULL,p209,2415,100,gathalast,,
+NULL,p209,2416,100,gatha1,,
+NULL,p209,2417,100,gathalast,,
+NULL,p209,2418,100,gatha1,,
+NULL,p209,2419,100,gathalast,,
+NULL,p209,2420,100,unindented,,
+NULL,p209,2421,100,gatha1,,
+NULL,p209,2422,100,gathalast,,
+NULL,p209,2423,100,gatha1,,
+NULL,p209,2424,100,gathalast,,
+NULL,p209,2425,100,centered,,
+NULL,p209,2426,100,centered,,
+NULL,p209,2427,100,centered,,
+NULL,p209,2428,2,chapter,Parivāravaṇṇanā,附录详解
+NULL,p209,2429,3,title,Soḷasamahāvāravaṇṇanā,
+NULL,p209,2430,4,subhead,Paññattivāravaṇṇanā,
+NULL,p209,2431,100,bodytext,,
+NULL,p209,2432,100,centered,,
+NULL,p209,2433,4,subhead,Katāpattivārādivaṇṇanā,
+NULL,p209,2434,100,bodytext,,
+NULL,p209,2435,100,bodytext,,
+NULL,p209,2436,100,bodytext,,
+NULL,p209,2437,100,bodytext,,
+NULL,p209,2438,100,centered,,
+NULL,p209,2439,3,title,Samuṭṭhānasīsavaṇṇanā,
+NULL,p209,2440,100,bodytext,,
+NULL,p209,2441,4,subhead,Paṭhamapārājikasamuṭṭhānavaṇṇanā,
+NULL,p209,2442,100,bodytext,,
+NULL,p209,2443,4,subhead,Dutiyapārājikasamuṭṭhānavaṇṇanā,
+NULL,p209,2444,100,bodytext,,
+NULL,p209,2445,100,bodytext,,
+NULL,p209,2446,3,title,Antarapeyyālaṃ,
+NULL,p209,2447,4,subhead,Katipucchāvāravaṇṇanā,
+NULL,p209,2448,100,bodytext,,
+NULL,p209,2449,100,bodytext,,
+NULL,p209,2450,4,subhead,Chaāpattisamuṭṭhānavārādivaṇṇanā,
+NULL,p209,2451,100,bodytext,,
+NULL,p209,2452,100,bodytext,,
+NULL,p209,2453,100,bodytext,,
+NULL,p209,2454,100,bodytext,,
+NULL,p209,2455,100,bodytext,,
+NULL,p209,2456,100,bodytext,,
+NULL,p209,2457,100,centered,,
+NULL,p209,2458,3,title,Samathabhedavaṇṇanā,
+NULL,p209,2459,4,subhead,Adhikaraṇapariyāyavārādivaṇṇanā,
+NULL,p209,2460,100,bodytext,,
+NULL,p209,2461,100,bodytext,,
+NULL,p209,2462,100,bodytext,,
+NULL,p209,2463,100,bodytext,,
+NULL,p209,2464,100,bodytext,,
+NULL,p209,2465,100,bodytext,,
+NULL,p209,2466,100,bodytext,,
+NULL,p209,2467,100,bodytext,,
+NULL,p209,2468,100,bodytext,,
+NULL,p209,2469,4,subhead,Yatthavārapucchāvāravaṇṇanā,
+NULL,p209,2470,100,bodytext,,
+NULL,p209,2471,4,subhead,Samathavāravissajjanāvāravaṇṇanā,
+NULL,p209,2472,100,bodytext,,
+NULL,p209,2473,4,subhead,Saṃsaṭṭhavārādivaṇṇanā,
+NULL,p209,2474,100,bodytext,,
+NULL,p209,2475,100,bodytext,,
+NULL,p209,2476,100,bodytext,,
+NULL,p209,2477,100,bodytext,,
+NULL,p209,2478,100,bodytext,,
+NULL,p209,2479,100,bodytext,,
+NULL,p209,2480,100,centered,,
+NULL,p209,2481,3,title,Khandhakapucchāvāravaṇṇanā,
+NULL,p209,2482,4,subhead,Pucchāvissajjanāvaṇṇanā,
+NULL,p209,2483,100,bodytext,,
+NULL,p209,2484,3,title,Ekuttarikanayavaṇṇanā,
+NULL,p209,2485,4,subhead,Ekakavāravaṇṇanā,
+NULL,p209,2486,100,bodytext,,
+NULL,p209,2487,100,bodytext,,
+NULL,p209,2488,100,bodytext,,
+NULL,p209,2489,100,bodytext,,
+NULL,p209,2490,100,bodytext,,
+NULL,p209,2491,100,bodytext,,
+NULL,p209,2492,4,subhead,Dukavāravaṇṇanā,
+NULL,p209,2493,100,bodytext,,
+NULL,p209,2494,4,subhead,Tikavāravaṇṇanā,
+NULL,p209,2495,100,bodytext,,
+NULL,p209,2496,4,subhead,Catukkavāravaṇṇanā,
+NULL,p209,2497,100,bodytext,,
+NULL,p209,2498,100,bodytext,,
+NULL,p209,2499,4,subhead,Pañcakavāravaṇṇanā,
+NULL,p209,2500,100,bodytext,,
+NULL,p209,2501,4,subhead,Chakkavāravaṇṇanā,
+NULL,p209,2502,100,bodytext,,
+NULL,p209,2503,4,subhead,Sattakavāravaṇṇanā,
+NULL,p209,2504,100,bodytext,,
+NULL,p209,2505,4,subhead,Aṭṭhakavāravaṇṇanā,
+NULL,p209,2506,100,bodytext,,
+NULL,p209,2507,4,subhead,Navakavāravaṇṇanā,
+NULL,p209,2508,100,bodytext,,
+NULL,p209,2509,4,subhead,Dasakavāravaṇṇanā,
+NULL,p209,2510,100,bodytext,,
+NULL,p209,2511,4,subhead,Ekādasakavāravaṇṇanā,
+NULL,p209,2512,100,bodytext,,
+NULL,p209,2513,100,centered,,
+NULL,p209,2514,4,subhead,Uposathādipucchāvissajjanāvaṇṇanā,
+NULL,p209,2515,100,bodytext,,
+NULL,p209,2516,4,subhead,Atthavasapakaraṇavaṇṇanā,
+NULL,p209,2517,100,bodytext,,
+NULL,p209,2518,100,gatha1,,
+NULL,p209,2519,100,gathalast,,
+NULL,p209,2520,100,bodytext,,
+NULL,p209,2521,100,gatha1,,
+NULL,p209,2522,100,gathalast,,
+NULL,p209,2523,100,bodytext,,
+NULL,p209,2524,100,gatha1,,
+NULL,p209,2525,100,gathalast,,
+NULL,p209,2526,100,gatha1,,
+NULL,p209,2527,100,gathalast,,
+NULL,p209,2528,100,bodytext,,
+NULL,p209,2529,100,gatha1,,
+NULL,p209,2530,100,gatha2,,
+NULL,p209,2531,100,gathalast,,
+NULL,p209,2532,100,unindented,,
+NULL,p209,2533,100,gatha1,,
+NULL,p209,2534,100,gatha2,,
+NULL,p209,2535,100,gathalast,,
+NULL,p209,2536,100,gatha1,,
+NULL,p209,2537,100,gathalast,,
+NULL,p209,2538,100,gatha1,,
+NULL,p209,2539,100,gathalast,,
+NULL,p209,2540,100,gatha1,,
+NULL,p209,2541,100,gathalast,,
+NULL,p209,2542,100,bodytext,,
+NULL,p209,2543,100,centered,,
+NULL,p209,2544,3,title,Paṭhamagāthāsaṅgaṇikavaṇṇanā,
+NULL,p209,2545,4,subhead,Sattanagaresu paññattasikkhāpadavaṇṇanā,
+NULL,p209,2546,100,bodytext,,
+NULL,p209,2547,4,subhead,Catuvipattivaṇṇanā,
+NULL,p209,2548,100,bodytext,,
+NULL,p209,2549,4,subhead,Chedanakādivaṇṇanā,
+NULL,p209,2550,100,bodytext,,
+NULL,p209,2551,4,subhead,Asādhāraṇādivaṇṇanā,
+NULL,p209,2552,100,bodytext,,
+NULL,p209,2553,100,bodytext,,
+NULL,p209,2554,100,gatha1,,
+NULL,p209,2555,100,gatha2,,
+NULL,p209,2556,100,gathalast,,
+NULL,p209,2557,100,gatha1,,
+NULL,p209,2558,100,gathalast,,
+NULL,p209,2559,100,gatha1,,
+NULL,p209,2560,100,gathalast,,
+NULL,p209,2561,100,unindented,,
+NULL,p209,2562,4,subhead,Pārājikādiāpattivaṇṇanā,
+NULL,p209,2563,100,bodytext,,
+NULL,p209,2564,100,centered,,
+NULL,p209,2565,3,title,Adhikaraṇabhedavaṇṇanā,
+NULL,p209,2566,4,subhead,Ukkoṭanabhedādivaṇṇanā,
+NULL,p209,2567,100,bodytext,,
+NULL,p209,2568,4,subhead,Adhikaraṇanidānādivaṇṇanā,
+NULL,p209,2569,100,bodytext,,
+NULL,p209,2570,100,bodytext,,
+NULL,p209,2571,100,bodytext,,
+NULL,p209,2572,100,bodytext,,
+NULL,p209,2573,100,centered,,
+NULL,p209,2574,3,title,Dutiyagāthāsaṅgaṇikavaṇṇanā,
+NULL,p209,2575,4,subhead,Codanādipucchāvissajjanāvaṇṇanā,
+NULL,p209,2576,100,bodytext,,
+NULL,p209,2577,3,title,Codanākaṇḍavaṇṇanā,
+NULL,p209,2578,4,subhead,Anuvijjakakiccavaṇṇanā,
+NULL,p209,2579,100,bodytext,,
+NULL,p209,2580,100,bodytext,,
+NULL,p209,2581,3,title,Cūḷasaṅgāmavaṇṇanā,
+NULL,p209,2582,4,subhead,Anuvijjakassapaṭipattivaṇṇanā,
+NULL,p209,2583,100,bodytext,,
+NULL,p209,2584,100,bodytext,,
+NULL,p209,2585,3,title,Mahāsaṅgāmavaṇṇanā,
+NULL,p209,2586,4,subhead,Voharantenajānitabbādivaṇṇanā,
+NULL,p209,2587,100,bodytext,,
+NULL,p209,2588,100,bodytext,,
+NULL,p209,2589,3,title,Kathinabhedavaṇṇanā,
+NULL,p209,2590,4,subhead,Kathinaatthatādivaṇṇanā,
+NULL,p209,2591,100,bodytext,,
+NULL,p209,2592,4,subhead,Kathinādijānitabbavibhāgavaṇṇanā,
+NULL,p209,2593,100,bodytext,,
+NULL,p209,2594,100,bodytext,,
+NULL,p209,2595,4,subhead,Palibodhapañhābyākaraṇakathāvaṇṇanā,
+NULL,p209,2596,100,bodytext,,
+NULL,p209,2597,100,centered,,
+NULL,p209,2598,100,centered,,
+NULL,p209,2599,3,title,Upālipañcakavaṇṇanā,
+NULL,p209,2600,4,subhead,Anissitavaggavaṇṇanā,
+NULL,p209,2601,100,bodytext,,
+NULL,p209,2602,4,subhead,Nappaṭippassambhanavaggavaṇṇanā,
+NULL,p209,2603,100,bodytext,,
+NULL,p209,2604,4,subhead,Vohāravaggavaṇṇanā,
+NULL,p209,2605,100,bodytext,,
+NULL,p209,2606,4,subhead,Diṭṭhāvikammavaggavaṇṇanā,
+NULL,p209,2607,100,bodytext,,
+NULL,p209,2608,100,bodytext,,
+NULL,p209,2609,4,subhead,Musāvādavaggavaṇṇanā,
+NULL,p209,2610,100,bodytext,,
+NULL,p209,2611,100,bodytext,,
+NULL,p209,2612,4,subhead,Bhikkhunovādavaggavaṇṇanā,
+NULL,p209,2613,100,bodytext,,
+NULL,p209,2614,4,subhead,Ubbāhikavaggavaṇṇanā,
+NULL,p209,2615,100,bodytext,,
+NULL,p209,2616,4,subhead,Adhikaraṇavūpasamavaggavaṇṇanā,
+NULL,p209,2617,100,bodytext,,
+NULL,p209,2618,4,subhead,Kathinatthāravaggavaṇṇanā,
+NULL,p209,2619,100,bodytext,,
+NULL,p209,2620,100,centered,,
+NULL,p209,2621,4,subhead,Āpattisamuṭṭhānavaṇṇanā,
+NULL,p209,2622,100,bodytext,,
+NULL,p209,2623,3,title,Dutiyagāthāsaṅgaṇikavaṇṇanā,
+NULL,p209,2624,4,subhead,Kāyikādiāpattivaṇṇanā,
+NULL,p209,2625,100,bodytext,,
+NULL,p209,2626,4,subhead,Pācittiyavaṇṇanā,
+NULL,p209,2627,100,bodytext,,
+NULL,p209,2628,4,subhead,Avandanīyapuggalādivaṇṇanā,
+NULL,p209,2629,100,bodytext,,
+NULL,p209,2630,4,subhead,Soḷasakammādivaṇṇanā,
+NULL,p209,2631,100,bodytext,,
+NULL,p209,2632,100,centered,,
+NULL,p209,2633,3,title,Sedamocanagāthāvaṇṇanā,
+NULL,p209,2634,4,subhead,Avippavāsapañhāvaṇṇanā,
+NULL,p209,2635,100,bodytext,,
+NULL,p209,2636,4,subhead,Pārājikādipañhāvaṇṇanā,
+NULL,p209,2637,100,bodytext,,
+NULL,p209,2638,4,subhead,Pācittiyādipañhāvaṇṇanā,
+NULL,p209,2639,100,bodytext,,
+NULL,p209,2640,100,centered,,
+NULL,p209,2641,3,title,Pañcavaggo,
+NULL,p209,2642,4,subhead,Kammavaggavaṇṇanā,
+NULL,p209,2643,100,bodytext,,
+NULL,p209,2644,100,bodytext,,
+NULL,p209,2645,100,bodytext,,
+NULL,p209,2646,100,bodytext,,
+NULL,p209,2647,4,subhead,Apalokanakammakathāvaṇṇanā,
+NULL,p209,2648,100,bodytext,,
+NULL,p209,2649,100,bodytext,,
+NULL,p209,2650,4,subhead,Apaññattepaññattavaggavaṇṇanā,
+NULL,p209,2651,100,bodytext,,
+NULL,p209,2652,4,subhead,Nigamanakathāvaṇṇanā,
+NULL,p209,2653,100,bodytext,,
+NULL,p209,2654,100,bodytext,,
+NULL,p209,2655,100,gatha1,,
+NULL,p209,2656,100,gathalast,,
+NULL,p209,2657,100,unindented,,
+NULL,p209,2658,100,bodytext,,
+NULL,p209,2659,100,bodytext,,
+NULL,p209,2660,100,gatha1,,
+NULL,p209,2661,100,gatha2,,
+NULL,p209,2662,100,gatha3,,
+NULL,p209,2663,100,gathalast,,
+NULL,p209,2664,100,gatha1,,
+NULL,p209,2665,100,gatha2,,
+NULL,p209,2666,100,gatha3,,
+NULL,p209,2667,100,gathalast,,
+NULL,p209,2668,100,gatha1,,
+NULL,p209,2669,100,gatha2,,
+NULL,p209,2670,100,gatha3,,
+NULL,p209,2671,100,gathalast,,
+NULL,p209,2672,100,centered,,
+NULL,p209,2673,100,centered,,

+ 1076 - 0
pali_title/93_zh-cn.csv

@@ -0,0 +1,1076 @@
+id,book,par_num,100,class,title,text
+NULL,p93,1,100,centered,,
+NULL,p93,2,100,nikaya,,
+NULL,p93,3,1,book,Sīlakkhandhavaggapāḷi,戒蕴品
+NULL,p93,4,2,chapter,1. Brahmajālasuttaṃ,1、梵网经
+NULL,p93,5,4,subhead,Paribbājakakathā,游行者之说
+NULL,p93,6,100,bodytext,,
+NULL,p93,7,100,bodytext,,
+NULL,p93,8,100,bodytext,,
+NULL,p93,9,100,bodytext,,
+NULL,p93,10,100,bodytext,,
+NULL,p93,11,100,bodytext,,
+NULL,p93,12,4,subhead,Cūḷasīlaṃ,小戒
+NULL,p93,13,100,bodytext,,
+NULL,p93,14,100,bodytext,,
+NULL,p93,15,100,bodytext,,
+NULL,p93,16,100,bodytext,,
+NULL,p93,17,100,bodytext,,
+NULL,p93,18,100,bodytext,,
+NULL,p93,19,100,bodytext,,
+NULL,p93,20,100,bodytext,,
+NULL,p93,21,100,bodytext,,
+NULL,p93,22,100,bodytext,,
+NULL,p93,23,100,bodytext,,
+NULL,p93,24,100,bodytext,,
+NULL,p93,25,100,bodytext,,
+NULL,p93,26,100,bodytext,,
+NULL,p93,27,100,bodytext,,
+NULL,p93,28,100,bodytext,,
+NULL,p93,29,100,bodytext,,
+NULL,p93,30,100,bodytext,,
+NULL,p93,31,100,bodytext,,
+NULL,p93,32,100,bodytext,,
+NULL,p93,33,100,bodytext,,
+NULL,p93,34,100,bodytext,,
+NULL,p93,35,100,bodytext,,
+NULL,p93,36,100,bodytext,,
+NULL,p93,37,100,bodytext,,
+NULL,p93,38,100,bodytext,,
+NULL,p93,39,100,bodytext,,
+NULL,p93,40,100,centered,,
+NULL,p93,41,4,subhead,Majjhimasīlaṃ,中戒
+NULL,p93,42,100,bodytext,,
+NULL,p93,43,100,bodytext,,
+NULL,p93,44,100,bodytext,,
+NULL,p93,45,100,bodytext,,
+NULL,p93,46,100,bodytext,,
+NULL,p93,47,100,bodytext,,
+NULL,p93,48,100,bodytext,,
+NULL,p93,49,100,bodytext,,
+NULL,p93,50,100,bodytext,,
+NULL,p93,51,100,bodytext,,
+NULL,p93,52,100,centered,,
+NULL,p93,53,4,subhead,Mahāsīlaṃ,大戒
+NULL,p93,54,100,bodytext,,
+NULL,p93,55,100,bodytext,,
+NULL,p93,56,100,bodytext,,
+NULL,p93,57,100,bodytext,,
+NULL,p93,58,100,bodytext,,
+NULL,p93,59,100,bodytext,,
+NULL,p93,60,100,bodytext,,
+NULL,p93,61,100,bodytext,,
+NULL,p93,62,100,centered,,
+NULL,p93,63,4,subhead,Pubbantakappikā,属于过去时间的
+NULL,p93,64,100,bodytext,,
+NULL,p93,65,100,bodytext,,
+NULL,p93,66,4,subhead,Sassatavādo,恒常论
+NULL,p93,67,100,bodytext,,
+NULL,p93,68,100,bodytext,,
+NULL,p93,69,100,bodytext,,
+NULL,p93,70,100,bodytext,,
+NULL,p93,71,100,bodytext,,
+NULL,p93,72,100,bodytext,,
+NULL,p93,73,100,bodytext,,
+NULL,p93,74,100,bodytext,,
+NULL,p93,75,100,bodytext,,
+NULL,p93,76,100,bodytext,,
+NULL,p93,77,100,bodytext,,
+NULL,p93,78,100,centered,,
+NULL,p93,79,4,subhead,Ekaccasassatavādo,某部分恒常论
+NULL,p93,80,100,bodytext,,
+NULL,p93,81,100,bodytext,,
+NULL,p93,82,100,bodytext,,
+NULL,p93,83,100,bodytext,,
+NULL,p93,84,100,bodytext,,
+NULL,p93,85,100,bodytext,,
+NULL,p93,86,100,bodytext,,
+NULL,p93,87,100,bodytext,,
+NULL,p93,88,100,bodytext,,
+NULL,p93,89,100,bodytext,,
+NULL,p93,90,100,bodytext,,
+NULL,p93,91,100,bodytext,,
+NULL,p93,92,100,bodytext,,
+NULL,p93,93,100,bodytext,,
+NULL,p93,94,100,bodytext,,
+NULL,p93,95,100,bodytext,,
+NULL,p93,96,100,bodytext,,
+NULL,p93,97,100,bodytext,,
+NULL,p93,98,100,bodytext,,
+NULL,p93,99,4,subhead,Antānantavādo,有边无边论
+NULL,p93,100,100,bodytext,,
+NULL,p93,101,100,bodytext,,
+NULL,p93,102,100,bodytext,,
+NULL,p93,103,100,bodytext,,
+NULL,p93,104,100,bodytext,,
+NULL,p93,105,100,bodytext,,
+NULL,p93,106,100,bodytext,,
+NULL,p93,107,100,bodytext,,
+NULL,p93,108,100,bodytext,,
+NULL,p93,109,100,bodytext,,
+NULL,p93,110,100,bodytext,,
+NULL,p93,111,4,subhead,Amarāvikkhepavādo,诡辩论
+NULL,p93,112,100,bodytext,,
+NULL,p93,113,100,bodytext,,
+NULL,p93,114,100,bodytext,,
+NULL,p93,115,100,bodytext,,
+NULL,p93,116,100,bodytext,,
+NULL,p93,117,100,bodytext,,
+NULL,p93,118,4,subhead,Adhiccasamuppannavādo,自然生论
+NULL,p93,119,100,bodytext,,
+NULL,p93,120,100,bodytext,,
+NULL,p93,121,100,bodytext,,
+NULL,p93,122,100,bodytext,,
+NULL,p93,123,100,bodytext,,
+NULL,p93,124,100,bodytext,,
+NULL,p93,125,100,bodytext,,
+NULL,p93,126,100,centered,,
+NULL,p93,127,4,subhead,Aparantakappikā,属于未来时间的
+NULL,p93,128,100,bodytext,,
+NULL,p93,129,4,subhead,Saññīvādo,有想论
+NULL,p93,130,100,bodytext,,
+NULL,p93,131,100,bodytext,,
+NULL,p93,132,100,bodytext,,
+NULL,p93,133,4,subhead,Asaññīvādo,无想论
+NULL,p93,134,100,bodytext,,
+NULL,p93,135,100,bodytext,,
+NULL,p93,136,100,bodytext,,
+NULL,p93,137,4,subhead,Nevasaññīnāsaññīvādo,非想非非想论
+NULL,p93,138,100,bodytext,,
+NULL,p93,139,100,bodytext,,
+NULL,p93,140,100,bodytext,,
+NULL,p93,141,4,subhead,Ucchedavādo,断灭论
+NULL,p93,142,100,bodytext,,
+NULL,p93,143,100,bodytext,,
+NULL,p93,144,100,bodytext,,
+NULL,p93,145,100,bodytext,,
+NULL,p93,146,100,bodytext,,
+NULL,p93,147,100,bodytext,,
+NULL,p93,148,100,bodytext,,
+NULL,p93,149,100,bodytext,,
+NULL,p93,150,100,bodytext,,
+NULL,p93,151,4,subhead,Diṭṭhadhammanibbānavādo,当生涅槃论
+NULL,p93,152,100,bodytext,,
+NULL,p93,153,100,bodytext,,
+NULL,p93,154,100,bodytext,,
+NULL,p93,155,100,bodytext,,
+NULL,p93,156,100,bodytext,,
+NULL,p93,157,100,bodytext,,
+NULL,p93,158,100,bodytext,,
+NULL,p93,159,100,bodytext,,
+NULL,p93,160,100,bodytext,,
+NULL,p93,161,100,bodytext,,
+NULL,p93,162,100,bodytext,,
+NULL,p93,163,100,bodytext,,
+NULL,p93,164,4,subhead,Paritassitavipphanditavāro,(暂缺)
+NULL,p93,165,100,bodytext,,
+NULL,p93,166,100,bodytext,,
+NULL,p93,167,100,bodytext,,
+NULL,p93,168,100,bodytext,,
+NULL,p93,169,100,bodytext,,
+NULL,p93,170,100,bodytext,,
+NULL,p93,171,100,bodytext,,
+NULL,p93,172,100,bodytext,,
+NULL,p93,173,100,bodytext,,
+NULL,p93,174,100,bodytext,,
+NULL,p93,175,100,bodytext,,
+NULL,p93,176,100,bodytext,,
+NULL,p93,177,100,bodytext,,
+NULL,p93,178,4,subhead,Phassapaccayāvāro,以触为缘章
+NULL,p93,179,100,bodytext,,
+NULL,p93,180,100,bodytext,,
+NULL,p93,181,100,bodytext,,
+NULL,p93,182,100,bodytext,,
+NULL,p93,183,100,bodytext,,
+NULL,p93,184,100,bodytext,,
+NULL,p93,185,100,bodytext,,
+NULL,p93,186,100,bodytext,,
+NULL,p93,187,100,bodytext,,
+NULL,p93,188,100,bodytext,,
+NULL,p93,189,100,bodytext,,
+NULL,p93,190,100,bodytext,,
+NULL,p93,191,100,bodytext,,
+NULL,p93,192,4,subhead,Netaṃ ṭhānaṃ vijjativāro,这是不可能的章
+NULL,p93,193,100,bodytext,,
+NULL,p93,194,100,bodytext,,
+NULL,p93,195,100,bodytext,,
+NULL,p93,196,100,bodytext,,
+NULL,p93,197,100,bodytext,,
+NULL,p93,198,100,bodytext,,
+NULL,p93,199,100,bodytext,,
+NULL,p93,200,100,bodytext,,
+NULL,p93,201,100,bodytext,,
+NULL,p93,202,100,bodytext,,
+NULL,p93,203,100,bodytext,,
+NULL,p93,204,100,bodytext,,
+NULL,p93,205,100,bodytext,,
+NULL,p93,206,4,subhead,Diṭṭhigatikādhiṭṭhānavaṭṭakathā,到达见依处的轮回谈说
+NULL,p93,207,100,bodytext,,
+NULL,p93,208,4,subhead,Vivaṭṭakathādi,还灭之谈说等
+NULL,p93,209,100,bodytext,,
+NULL,p93,210,100,bodytext,,
+NULL,p93,211,100,bodytext,,
+NULL,p93,212,100,bodytext,,
+NULL,p93,213,100,bodytext,,
+NULL,p93,214,100,bodytext,,
+NULL,p93,215,100,bodytext,,
+NULL,p93,216,100,centered,,
+NULL,p93,217,2,chapter,2. Sāmaññaphalasuttaṃ,2、沙门果经
+NULL,p93,218,4,subhead,Rājāmaccakathā,国王大臣的谈论
+NULL,p93,219,100,bodytext,,
+NULL,p93,220,100,bodytext,,
+NULL,p93,221,100,bodytext,,
+NULL,p93,222,100,bodytext,,
+NULL,p93,223,100,bodytext,,
+NULL,p93,224,100,bodytext,,
+NULL,p93,225,100,bodytext,,
+NULL,p93,226,4,subhead,Komārabhaccajīvakakathā,养子耆婆的谈论
+NULL,p93,227,100,bodytext,,
+NULL,p93,228,100,bodytext,,
+NULL,p93,229,100,bodytext,,
+NULL,p93,230,100,bodytext,,
+NULL,p93,231,100,bodytext,,
+NULL,p93,232,4,subhead,Sāmaññaphalapucchā,沙门果的问题
+NULL,p93,233,100,bodytext,,
+NULL,p93,234,100,bodytext,,
+NULL,p93,235,100,bodytext,,
+NULL,p93,236,100,bodytext,,
+NULL,p93,237,100,bodytext,,
+NULL,p93,238,4,subhead,Pūraṇakassapavādo,富兰那迦叶之论
+NULL,p93,239,100,bodytext,,
+NULL,p93,240,100,bodytext,,
+NULL,p93,241,100,bodytext,,
+NULL,p93,242,4,subhead,Makkhaligosālavādo,末迦利瞿舍罗之论
+NULL,p93,243,100,bodytext,,
+NULL,p93,244,100,bodytext,,
+NULL,p93,245,100,bodytext,,
+NULL,p93,246,4,subhead,Ajitakesakambalavādo,阿夷多翅舍钦婆罗之论
+NULL,p93,247,100,bodytext,,
+NULL,p93,248,100,bodytext,,
+NULL,p93,249,100,bodytext,,
+NULL,p93,250,4,subhead,Pakudhakaccāyanavādo,浮陀迦旃延之论
+NULL,p93,251,100,bodytext,,
+NULL,p93,252,100,bodytext,,
+NULL,p93,253,100,bodytext,,
+NULL,p93,254,4,subhead,Nigaṇṭhanāṭaputtavādo,尼干子若提子之论
+NULL,p93,255,100,bodytext,,
+NULL,p93,256,100,bodytext,,
+NULL,p93,257,100,bodytext,,
+NULL,p93,258,4,subhead,Sañcayabelaṭṭhaputtavādo,散惹耶毗罗梨子之论
+NULL,p93,259,100,bodytext,,
+NULL,p93,260,100,bodytext,,
+NULL,p93,261,100,bodytext,,
+NULL,p93,262,4,subhead,Paṭhamasandiṭṭhikasāmaññaphalaṃ,第一个当生看得见的沙门果
+NULL,p93,263,100,bodytext,,
+NULL,p93,264,100,bodytext,,
+NULL,p93,265,100,bodytext,,
+NULL,p93,266,100,bodytext,,
+NULL,p93,267,4,subhead,Dutiyasandiṭṭhikasāmaññaphalaṃ,第二个当生看得见的沙门果
+NULL,p93,268,100,bodytext,,
+NULL,p93,269,100,bodytext,,
+NULL,p93,270,100,bodytext,,
+NULL,p93,271,100,bodytext,,
+NULL,p93,272,4,subhead,Paṇītatarasāmaññaphalaṃ,更胜妙的沙门果
+NULL,p93,273,100,bodytext,,
+NULL,p93,274,100,bodytext,,
+NULL,p93,275,100,bodytext,,
+NULL,p93,276,100,bodytext,,
+NULL,p93,277,100,bodytext,,
+NULL,p93,278,4,subhead,Cūḷasīlaṃ,小戒
+NULL,p93,279,100,bodytext,,
+NULL,p93,280,100,bodytext,,
+NULL,p93,281,100,bodytext,,
+NULL,p93,282,100,bodytext,,
+NULL,p93,283,100,bodytext,,
+NULL,p93,284,100,bodytext,,
+NULL,p93,285,100,bodytext,,
+NULL,p93,286,100,bodytext,,
+NULL,p93,287,100,centered,,
+NULL,p93,288,4,subhead,Majjhimasīlaṃ,中戒
+NULL,p93,289,100,bodytext,,
+NULL,p93,290,100,bodytext,,
+NULL,p93,291,100,bodytext,,
+NULL,p93,292,100,bodytext,,
+NULL,p93,293,100,bodytext,,
+NULL,p93,294,100,bodytext,,
+NULL,p93,295,100,bodytext,,
+NULL,p93,296,100,bodytext,,
+NULL,p93,297,100,bodytext,,
+NULL,p93,298,100,bodytext,,
+NULL,p93,299,100,centered,,
+NULL,p93,300,4,subhead,Mahāsīlaṃ,大戒
+NULL,p93,301,100,bodytext,,
+NULL,p93,302,100,bodytext,,
+NULL,p93,303,100,bodytext,,
+NULL,p93,304,100,bodytext,,
+NULL,p93,305,100,bodytext,,
+NULL,p93,306,100,bodytext,,
+NULL,p93,307,100,bodytext,,
+NULL,p93,308,100,bodytext,,
+NULL,p93,309,100,centered,,
+NULL,p93,310,4,subhead,Indriyasaṃvaro,根的自制
+NULL,p93,311,100,bodytext,,
+NULL,p93,312,4,subhead,Satisampajaññaṃ,正念与正知
+NULL,p93,313,100,bodytext,,
+NULL,p93,314,4,subhead,Santoso,知足
+NULL,p93,315,100,bodytext,,
+NULL,p93,316,4,subhead,Nīvaraṇappahānaṃ,(暂缺)
+NULL,p93,317,100,bodytext,,
+NULL,p93,318,100,bodytext,,
+NULL,p93,319,100,bodytext,,
+NULL,p93,320,100,bodytext,,
+NULL,p93,321,100,bodytext,,
+NULL,p93,322,100,bodytext,,
+NULL,p93,323,100,bodytext,,
+NULL,p93,324,100,bodytext,,
+NULL,p93,325,100,bodytext,,
+NULL,p93,326,100,bodytext,,
+NULL,p93,327,4,subhead,Paṭhamajjhānaṃ,初禅
+NULL,p93,328,100,bodytext,,
+NULL,p93,329,100,bodytext,,
+NULL,p93,330,4,subhead,Dutiyajjhānaṃ,第二禅
+NULL,p93,331,100,bodytext,,
+NULL,p93,332,100,bodytext,,
+NULL,p93,333,4,subhead,Tatiyajjhānaṃ,第三禅
+NULL,p93,334,100,bodytext,,
+NULL,p93,335,100,bodytext,,
+NULL,p93,336,4,subhead,Catutthajjhānaṃ,第四禅
+NULL,p93,337,100,bodytext,,
+NULL,p93,338,100,bodytext,,
+NULL,p93,339,4,subhead,Vipassanāñāṇaṃ,毗婆舍那智
+NULL,p93,340,100,bodytext,,
+NULL,p93,341,100,bodytext,,
+NULL,p93,342,4,subhead,Manomayiddhiñāṇaṃ,意生神通智
+NULL,p93,343,100,bodytext,,
+NULL,p93,344,100,bodytext,,
+NULL,p93,345,4,subhead,Iddhividhañāṇaṃ,各种神通智
+NULL,p93,346,100,bodytext,,
+NULL,p93,347,100,bodytext,,
+NULL,p93,348,4,subhead,Dibbasotañāṇaṃ,天耳智
+NULL,p93,349,100,bodytext,,
+NULL,p93,350,100,bodytext,,
+NULL,p93,351,4,subhead,Cetopariyañāṇaṃ,他心智
+NULL,p93,352,100,bodytext,,
+NULL,p93,353,100,bodytext,,
+NULL,p93,354,4,subhead,Pubbenivāsānussatiñāṇaṃ,前世住处之回忆智
+NULL,p93,355,100,bodytext,,
+NULL,p93,356,100,bodytext,,
+NULL,p93,357,4,subhead,Dibbacakkhuñāṇaṃ,天眼智
+NULL,p93,358,100,bodytext,,
+NULL,p93,359,100,bodytext,,
+NULL,p93,360,4,subhead,Āsavakkhayañāṇaṃ,烦恼之灭尽智
+NULL,p93,361,100,bodytext,,
+NULL,p93,362,100,bodytext,,
+NULL,p93,363,4,subhead,Ajātasattuupāsakattapaṭivedanā,阿阇世-作为优婆塞的陈述
+NULL,p93,364,100,bodytext,,
+NULL,p93,365,100,bodytext,,
+NULL,p93,366,100,bodytext,,
+NULL,p93,367,100,bodytext,,
+NULL,p93,368,100,centered,,
+NULL,p93,369,2,chapter,3. Ambaṭṭhasuttaṃ,3、安玻德经
+NULL,p93,370,100,bodytext,,
+NULL,p93,371,4,subhead,Pokkharasātivatthu,玻科勒沙低的事
+NULL,p93,372,100,bodytext,,
+NULL,p93,373,4,subhead,Ambaṭṭhamāṇavo,安玻德学生婆罗门
+NULL,p93,374,100,bodytext,,
+NULL,p93,375,100,bodytext,,
+NULL,p93,376,100,bodytext,,
+NULL,p93,377,100,bodytext,,
+NULL,p93,378,100,bodytext,,
+NULL,p93,379,100,bodytext,,
+NULL,p93,380,100,bodytext,,
+NULL,p93,381,100,bodytext,,
+NULL,p93,382,4,subhead,Paṭhamaibbhavādo,第一次卑贱说
+NULL,p93,383,100,bodytext,,
+NULL,p93,384,100,bodytext,,
+NULL,p93,385,4,subhead,Dutiyaibbhavādo,第二次卑贱说
+NULL,p93,386,100,bodytext,,
+NULL,p93,387,4,subhead,Tatiyaibbhavādo,第三次卑贱说
+NULL,p93,388,100,bodytext,,
+NULL,p93,389,4,subhead,Dāsiputtavādo,婢女之子说
+NULL,p93,390,100,bodytext,,
+NULL,p93,391,100,bodytext,,
+NULL,p93,392,100,bodytext,,
+NULL,p93,393,100,bodytext,,
+NULL,p93,394,100,bodytext,,
+NULL,p93,395,100,bodytext,,
+NULL,p93,396,100,bodytext,,
+NULL,p93,397,100,bodytext,,
+NULL,p93,398,100,bodytext,,
+NULL,p93,399,100,bodytext,,
+NULL,p93,400,100,bodytext,,
+NULL,p93,401,100,bodytext,,
+NULL,p93,402,4,subhead,Ambaṭṭhavaṃsakathā,安玻德的种姓说
+NULL,p93,403,100,bodytext,,
+NULL,p93,404,100,bodytext,,
+NULL,p93,405,100,bodytext,,
+NULL,p93,406,4,subhead,Khattiyaseṭṭhabhāvo,刹帝利的最胜性
+NULL,p93,407,100,bodytext,,
+NULL,p93,408,100,bodytext,,
+NULL,p93,409,100,bodytext,,
+NULL,p93,410,100,bodytext,,
+NULL,p93,411,100,bodytext,,
+NULL,p93,412,100,gatha1,,
+NULL,p93,413,100,gatha2,,
+NULL,p93,414,100,gatha3,,
+NULL,p93,415,100,gathalast,,
+NULL,p93,416,100,bodytext,,
+NULL,p93,417,100,gatha1,,
+NULL,p93,418,100,gatha2,,
+NULL,p93,419,100,gatha3,,
+NULL,p93,420,100,gathalast,,
+NULL,p93,421,100,centered,,
+NULL,p93,422,4,subhead,Vijjācaraṇakathā,明与行之说
+NULL,p93,423,100,bodytext,,
+NULL,p93,424,100,bodytext,,
+NULL,p93,425,100,bodytext,,
+NULL,p93,426,100,bodytext,,
+NULL,p93,427,100,bodytext,,
+NULL,p93,428,100,bodytext,,
+NULL,p93,429,100,bodytext,,
+NULL,p93,430,100,bodytext,,
+NULL,p93,431,4,subhead,Catuapāyamukhaṃ,四个败散口
+NULL,p93,432,100,bodytext,,
+NULL,p93,433,100,bodytext,,
+NULL,p93,434,100,bodytext,,
+NULL,p93,435,100,bodytext,,
+NULL,p93,436,100,bodytext,,
+NULL,p93,437,100,bodytext,,
+NULL,p93,438,100,bodytext,,
+NULL,p93,439,100,bodytext,,
+NULL,p93,440,100,bodytext,,
+NULL,p93,441,100,bodytext,,
+NULL,p93,442,4,subhead,Pubbakaisibhāvānuyogo,以前仙人状态的实行
+NULL,p93,443,100,bodytext,,
+NULL,p93,444,100,bodytext,,
+NULL,p93,445,100,bodytext,,
+NULL,p93,446,100,bodytext,,
+NULL,p93,447,100,bodytext,,
+NULL,p93,448,100,bodytext,,
+NULL,p93,449,100,bodytext,,
+NULL,p93,450,100,bodytext,,
+NULL,p93,451,100,bodytext,,
+NULL,p93,452,4,subhead,Dvelakkhaṇādassanaṃ,二相的未见
+NULL,p93,453,100,bodytext,,
+NULL,p93,454,100,bodytext,,
+NULL,p93,455,100,bodytext,,
+NULL,p93,456,100,bodytext,,
+NULL,p93,457,100,bodytext,,
+NULL,p93,458,4,subhead,Pokkharasātibuddhupasaṅkamanaṃ,玻科勒沙低往见佛陀
+NULL,p93,459,100,bodytext,,
+NULL,p93,460,100,bodytext,,
+NULL,p93,461,100,bodytext,,
+NULL,p93,462,100,bodytext,,
+NULL,p93,463,100,bodytext,,
+NULL,p93,464,100,bodytext,,
+NULL,p93,465,100,bodytext,,
+NULL,p93,466,4,subhead,Pokkharasātiupāsakattapaṭivedanā,玻科勒沙低-作为优婆塞的陈述
+NULL,p93,467,100,bodytext,,
+NULL,p93,468,100,centered,,
+NULL,p93,469,2,chapter,4. Soṇadaṇḍasuttaṃ,4、犬杖经
+NULL,p93,470,4,subhead,Campeyyakabrāhmaṇagahapatikā,瞻波城的婆罗门、屋主
+NULL,p93,471,100,bodytext,,
+NULL,p93,472,100,bodytext,,
+NULL,p93,473,100,bodytext,,
+NULL,p93,474,4,subhead,Soṇadaṇḍaguṇakathā,犬杖的种种谈说
+NULL,p93,475,100,bodytext,,
+NULL,p93,476,100,bodytext,,
+NULL,p93,477,100,bodytext,,
+NULL,p93,478,100,bodytext,,
+NULL,p93,479,100,bodytext,,
+NULL,p93,480,100,bodytext,,
+NULL,p93,481,100,bodytext,,
+NULL,p93,482,100,bodytext,,
+NULL,p93,483,100,bodytext,,
+NULL,p93,484,100,bodytext,,
+NULL,p93,485,100,bodytext,,
+NULL,p93,486,100,bodytext,,
+NULL,p93,487,100,bodytext,,
+NULL,p93,488,4,subhead,Buddhaguṇakathā,佛陀的种种谈说
+NULL,p93,489,100,bodytext,,
+NULL,p93,490,100,bodytext,,
+NULL,p93,491,100,bodytext,,
+NULL,p93,492,100,bodytext,,
+NULL,p93,493,100,bodytext,,
+NULL,p93,494,100,bodytext,,
+NULL,p93,495,100,bodytext,,
+NULL,p93,496,100,bodytext,,
+NULL,p93,497,100,bodytext,,
+NULL,p93,498,100,bodytext,,
+NULL,p93,499,100,bodytext,,
+NULL,p93,500,100,bodytext,,
+NULL,p93,501,100,bodytext,,
+NULL,p93,502,100,bodytext,,
+NULL,p93,503,100,bodytext,,
+NULL,p93,504,100,bodytext,,
+NULL,p93,505,100,bodytext,,
+NULL,p93,506,100,bodytext,,
+NULL,p93,507,100,bodytext,,
+NULL,p93,508,100,bodytext,,
+NULL,p93,509,100,bodytext,,
+NULL,p93,510,100,bodytext,,
+NULL,p93,511,100,bodytext,,
+NULL,p93,512,100,bodytext,,
+NULL,p93,513,100,bodytext,,
+NULL,p93,514,100,bodytext,,
+NULL,p93,515,100,bodytext,,
+NULL,p93,516,100,bodytext,,
+NULL,p93,517,100,bodytext,,
+NULL,p93,518,100,bodytext,,
+NULL,p93,519,100,bodytext,,
+NULL,p93,520,4,subhead,Soṇadaṇḍaparivitakko,犬杖的深思
+NULL,p93,521,100,bodytext,,
+NULL,p93,522,100,bodytext,,
+NULL,p93,523,100,bodytext,,
+NULL,p93,524,4,subhead,Brāhmaṇapaññatti,婆罗门的安立
+NULL,p93,525,100,bodytext,,
+NULL,p93,526,100,bodytext,,
+NULL,p93,527,100,bodytext,,
+NULL,p93,528,100,bodytext,,
+NULL,p93,529,100,bodytext,,
+NULL,p93,530,100,bodytext,,
+NULL,p93,531,100,bodytext,,
+NULL,p93,532,100,bodytext,,
+NULL,p93,533,100,bodytext,,
+NULL,p93,534,100,bodytext,,
+NULL,p93,535,4,subhead,Sīlapaññākathā,戒、慧的谈说
+NULL,p93,536,100,bodytext,,
+NULL,p93,537,100,bodytext,,
+NULL,p93,538,4,subhead,Soṇadaṇḍaupāsakattapaṭivedanā,犬杖-作为优婆塞的陈述
+NULL,p93,539,100,bodytext,,
+NULL,p93,540,100,bodytext,,
+NULL,p93,541,100,bodytext,,
+NULL,p93,542,100,bodytext,,
+NULL,p93,543,100,centered,,
+NULL,p93,544,2,chapter,5. Kūṭadantasuttaṃ,5、古得旦得经
+NULL,p93,545,4,subhead,Khāṇumatakabrāhmaṇagahapatikā,柯奴玛得的婆罗门、屋主
+NULL,p93,546,100,bodytext,,
+NULL,p93,547,100,bodytext,,
+NULL,p93,548,100,bodytext,,
+NULL,p93,549,100,bodytext,,
+NULL,p93,550,100,bodytext,,
+NULL,p93,551,100,bodytext,,
+NULL,p93,552,100,bodytext,,
+NULL,p93,553,4,subhead,Kūṭadantaguṇakathā,古得旦得的种种谈说
+NULL,p93,554,100,bodytext,,
+NULL,p93,555,100,bodytext,,
+NULL,p93,556,100,bodytext,,
+NULL,p93,557,100,bodytext,,
+NULL,p93,558,100,bodytext,,
+NULL,p93,559,100,bodytext,,
+NULL,p93,560,100,bodytext,,
+NULL,p93,561,100,bodytext,,
+NULL,p93,562,100,bodytext,,
+NULL,p93,563,100,bodytext,,
+NULL,p93,564,100,bodytext,,
+NULL,p93,565,100,bodytext,,
+NULL,p93,566,100,bodytext,,
+NULL,p93,567,100,bodytext,,
+NULL,p93,568,4,subhead,Buddhaguṇakathā,佛陀的种种谈说
+NULL,p93,569,100,bodytext,,
+NULL,p93,570,100,bodytext,,
+NULL,p93,571,100,bodytext,,
+NULL,p93,572,100,bodytext,,
+NULL,p93,573,100,bodytext,,
+NULL,p93,574,100,bodytext,,
+NULL,p93,575,100,bodytext,,
+NULL,p93,576,100,bodytext,,
+NULL,p93,577,100,bodytext,,
+NULL,p93,578,100,bodytext,,
+NULL,p93,579,100,bodytext,,
+NULL,p93,580,100,bodytext,,
+NULL,p93,581,100,bodytext,,
+NULL,p93,582,100,bodytext,,
+NULL,p93,583,100,bodytext,,
+NULL,p93,584,100,bodytext,,
+NULL,p93,585,100,bodytext,,
+NULL,p93,586,100,bodytext,,
+NULL,p93,587,100,bodytext,,
+NULL,p93,588,100,bodytext,,
+NULL,p93,589,100,bodytext,,
+NULL,p93,590,100,bodytext,,
+NULL,p93,591,100,bodytext,,
+NULL,p93,592,100,bodytext,,
+NULL,p93,593,100,bodytext,,
+NULL,p93,594,100,bodytext,,
+NULL,p93,595,100,bodytext,,
+NULL,p93,596,100,bodytext,,
+NULL,p93,597,100,bodytext,,
+NULL,p93,598,100,bodytext,,
+NULL,p93,599,100,bodytext,,
+NULL,p93,600,4,subhead,Mahāvijitarājayaññakathā,(暂缺)
+NULL,p93,601,100,bodytext,,
+NULL,p93,602,100,bodytext,,
+NULL,p93,603,100,bodytext,,
+NULL,p93,604,100,bodytext,,
+NULL,p93,605,100,bodytext,,
+NULL,p93,606,4,subhead,Catuparikkhāraṃ,四个资助
+NULL,p93,607,100,bodytext,,
+NULL,p93,608,4,subhead,Aṭṭha parikkhārā,八个资助
+NULL,p93,609,100,bodytext,,
+NULL,p93,610,4,subhead,Catuparikkhāraṃ,四个资助
+NULL,p93,611,100,bodytext,,
+NULL,p93,612,4,subhead,Tisso vidhā,三种
+NULL,p93,613,100,bodytext,,
+NULL,p93,614,4,subhead,Dasa ākārā,十相
+NULL,p93,615,100,bodytext,,
+NULL,p93,616,4,subhead,Soḷasa ākārā,十六相
+NULL,p93,617,100,bodytext,,
+NULL,p93,618,100,bodytext,,
+NULL,p93,619,100,bodytext,,
+NULL,p93,620,100,bodytext,,
+NULL,p93,621,100,bodytext,,
+NULL,p93,622,100,bodytext,,
+NULL,p93,623,100,bodytext,,
+NULL,p93,624,100,bodytext,,
+NULL,p93,625,100,bodytext,,
+NULL,p93,626,100,bodytext,,
+NULL,p93,627,100,bodytext,,
+NULL,p93,628,100,bodytext,,
+NULL,p93,629,4,subhead,Niccadānaanukulayaññaṃ,经常性施物-随家牲祭
+NULL,p93,630,100,bodytext,,
+NULL,p93,631,100,bodytext,,
+NULL,p93,632,100,bodytext,,
+NULL,p93,633,100,bodytext,,
+NULL,p93,634,100,bodytext,,
+NULL,p93,635,100,bodytext,,
+NULL,p93,636,100,bodytext,,
+NULL,p93,637,100,bodytext,,
+NULL,p93,638,100,bodytext,,
+NULL,p93,639,100,bodytext,,
+NULL,p93,640,100,bodytext,,
+NULL,p93,641,100,bodytext,,
+NULL,p93,642,100,bodytext,,
+NULL,p93,643,100,bodytext,,
+NULL,p93,644,100,bodytext,,
+NULL,p93,645,100,bodytext,,
+NULL,p93,646,100,bodytext,,
+NULL,p93,647,100,bodytext,,
+NULL,p93,648,100,bodytext,,
+NULL,p93,649,100,bodytext,,
+NULL,p93,650,100,bodytext,,
+NULL,p93,651,100,bodytext,,
+NULL,p93,652,4,subhead,Kūṭadantaupāsakattapaṭivedanā,古得旦得-作为优婆塞的陈述
+NULL,p93,653,100,bodytext,,
+NULL,p93,654,4,subhead,Sotāpattiphalasacchikiriyā,入流果的作证
+NULL,p93,655,100,bodytext,,
+NULL,p93,656,100,bodytext,,
+NULL,p93,657,100,bodytext,,
+NULL,p93,658,100,bodytext,,
+NULL,p93,659,100,bodytext,,
+NULL,p93,660,100,centered,,
+NULL,p93,661,2,chapter,6. Mahālisuttaṃ,6、摩诃里经
+NULL,p93,662,4,subhead,Brāhmaṇadūtavatthu,婆罗门使者的事
+NULL,p93,663,100,bodytext,,
+NULL,p93,664,100,bodytext,,
+NULL,p93,665,4,subhead,Oṭṭhaddhalicchavīvatthu,(暂缺)
+NULL,p93,666,100,bodytext,,
+NULL,p93,667,100,bodytext,,
+NULL,p93,668,100,bodytext,,
+NULL,p93,669,100,bodytext,,
+NULL,p93,670,100,bodytext,,
+NULL,p93,671,4,subhead,Ekaṃsabhāvitasamādhi,修习一边之定
+NULL,p93,672,100,bodytext,,
+NULL,p93,673,100,bodytext,,
+NULL,p93,674,100,bodytext,,
+NULL,p93,675,100,bodytext,,
+NULL,p93,676,100,bodytext,,
+NULL,p93,677,100,bodytext,,
+NULL,p93,678,100,bodytext,,
+NULL,p93,679,100,bodytext,,
+NULL,p93,680,4,subhead,Catuariyaphalaṃ,四种圣者之果
+NULL,p93,681,100,bodytext,,
+NULL,p93,682,100,bodytext,,
+NULL,p93,683,100,bodytext,,
+NULL,p93,684,100,bodytext,,
+NULL,p93,685,4,subhead,Ariyaaṭṭhaṅgikamaggo,八支圣道
+NULL,p93,686,100,bodytext,,
+NULL,p93,687,100,bodytext,,
+NULL,p93,688,4,subhead,Dvepabbajitavatthu,二位出家者的事
+NULL,p93,689,100,bodytext,,
+NULL,p93,690,100,bodytext,,
+NULL,p93,691,100,centered,,
+NULL,p93,692,2,chapter,7. Jāliyasuttaṃ,7、若里亚经
+NULL,p93,693,4,subhead,Dvepabbajitavatthu,二位出家者的事
+NULL,p93,694,100,bodytext,,
+NULL,p93,695,100,bodytext,,
+NULL,p93,696,100,bodytext,,
+NULL,p93,697,100,centered,,
+NULL,p93,698,2,chapter,8. Mahāsīhanādasuttaṃ,8、狮子吼大经
+NULL,p93,699,4,subhead,Acelakassapavatthu,裸体迦叶的事
+NULL,p93,700,100,bodytext,,
+NULL,p93,701,100,bodytext,,
+NULL,p93,702,100,bodytext,,
+NULL,p93,703,100,bodytext,,
+NULL,p93,704,100,bodytext,,
+NULL,p93,705,4,subhead,Samanuyuñjāpanakathā,审问的谈说
+NULL,p93,706,100,bodytext,,
+NULL,p93,707,100,bodytext,,
+NULL,p93,708,100,bodytext,,
+NULL,p93,709,100,bodytext,,
+NULL,p93,710,100,bodytext,,
+NULL,p93,711,100,bodytext,,
+NULL,p93,712,100,bodytext,,
+NULL,p93,713,100,bodytext,,
+NULL,p93,714,4,subhead,Ariyo aṭṭhaṅgiko maggo,八支圣道
+NULL,p93,715,100,bodytext,,
+NULL,p93,716,4,subhead,Tapopakkamakathā,苦行着手者的谈说
+NULL,p93,717,100,bodytext,,
+NULL,p93,718,100,bodytext,,
+NULL,p93,719,100,bodytext,,
+NULL,p93,720,4,subhead,Tapopakkamaniratthakathā,无利益的苦行着手者的谈说
+NULL,p93,721,100,bodytext,,
+NULL,p93,722,100,bodytext,,
+NULL,p93,723,100,bodytext,,
+NULL,p93,724,100,bodytext,,
+NULL,p93,725,100,bodytext,,
+NULL,p93,726,100,bodytext,,
+NULL,p93,727,100,bodytext,,
+NULL,p93,728,100,bodytext,,
+NULL,p93,729,100,bodytext,,
+NULL,p93,730,100,bodytext,,
+NULL,p93,731,100,bodytext,,
+NULL,p93,732,100,bodytext,,
+NULL,p93,733,100,bodytext,,
+NULL,p93,734,100,bodytext,,
+NULL,p93,735,100,bodytext,,
+NULL,p93,736,100,bodytext,,
+NULL,p93,737,100,bodytext,,
+NULL,p93,738,100,bodytext,,
+NULL,p93,739,100,bodytext,,
+NULL,p93,740,100,bodytext,,
+NULL,p93,741,100,bodytext,,
+NULL,p93,742,4,subhead,Sīlasamādhipaññāsampadā,戒定慧具足
+NULL,p93,743,100,bodytext,,
+NULL,p93,744,100,bodytext,,
+NULL,p93,745,100,bodytext,,
+NULL,p93,746,100,bodytext,,
+NULL,p93,747,100,bodytext,,
+NULL,p93,748,100,bodytext,,
+NULL,p93,749,4,subhead,Sīhanādakathā,狮子吼的谈说
+NULL,p93,750,100,bodytext,,
+NULL,p93,751,100,bodytext,,
+NULL,p93,752,100,bodytext,,
+NULL,p93,753,100,bodytext,,
+NULL,p93,754,100,bodytext,,
+NULL,p93,755,100,bodytext,,
+NULL,p93,756,100,bodytext,,
+NULL,p93,757,4,subhead,Titthiyaparivāsakathā,外道别住的谈说
+NULL,p93,758,100,bodytext,,
+NULL,p93,759,100,bodytext,,
+NULL,p93,760,100,bodytext,,
+NULL,p93,761,100,centered,,
+NULL,p93,762,2,chapter,9. Poṭṭhapādasuttaṃ,9、玻得播达经
+NULL,p93,763,4,subhead,Poṭṭhapādaparibbājakavatthu,游行者玻得播达的事
+NULL,p93,764,100,bodytext,,
+NULL,p93,765,100,bodytext,,
+NULL,p93,766,100,bodytext,,
+NULL,p93,767,100,bodytext,,
+NULL,p93,768,100,bodytext,,
+NULL,p93,769,100,bodytext,,
+NULL,p93,770,4,subhead,Abhisaññānirodhakathā,增上想灭的谈说
+NULL,p93,771,100,bodytext,,
+NULL,p93,772,100,bodytext,,
+NULL,p93,773,100,bodytext,,
+NULL,p93,774,100,bodytext,,
+NULL,p93,775,100,bodytext,,
+NULL,p93,776,4,subhead,Sahetukasaññuppādanirodhakathā,想生灭有因的谈说
+NULL,p93,777,100,bodytext,,
+NULL,p93,778,100,bodytext,,
+NULL,p93,779,100,bodytext,,
+NULL,p93,780,100,bodytext,,
+NULL,p93,781,100,bodytext,,
+NULL,p93,782,100,bodytext,,
+NULL,p93,783,100,bodytext,,
+NULL,p93,784,100,bodytext,,
+NULL,p93,785,100,bodytext,,
+NULL,p93,786,100,bodytext,,
+NULL,p93,787,100,bodytext,,
+NULL,p93,788,100,bodytext,,
+NULL,p93,789,4,subhead,Saññāattakathā,想-真我的谈说
+NULL,p93,790,100,bodytext,,
+NULL,p93,791,100,bodytext,,
+NULL,p93,792,100,bodytext,,
+NULL,p93,793,100,bodytext,,
+NULL,p93,794,100,bodytext,,
+NULL,p93,795,100,bodytext,,
+NULL,p93,796,100,bodytext,,
+NULL,p93,797,100,bodytext,,
+NULL,p93,798,100,bodytext,,
+NULL,p93,799,100,bodytext,,
+NULL,p93,800,100,bodytext,,
+NULL,p93,801,100,bodytext,,
+NULL,p93,802,4,subhead,Cittahatthisāriputtapoṭṭhapādavatthu,质多象舍利弗与玻得播达的事
+NULL,p93,803,100,bodytext,,
+NULL,p93,804,100,bodytext,,
+NULL,p93,805,100,bodytext,,
+NULL,p93,806,100,bodytext,,
+NULL,p93,807,4,subhead,Ekaṃsikadhammo,明确法
+NULL,p93,808,100,bodytext,,
+NULL,p93,809,100,bodytext,,
+NULL,p93,810,100,bodytext,,
+NULL,p93,811,100,bodytext,,
+NULL,p93,812,100,bodytext,,
+NULL,p93,813,100,bodytext,,
+NULL,p93,814,100,bodytext,,
+NULL,p93,815,100,bodytext,,
+NULL,p93,816,100,bodytext,,
+NULL,p93,817,100,bodytext,,
+NULL,p93,818,100,bodytext,,
+NULL,p93,819,100,bodytext,,
+NULL,p93,820,100,bodytext,,
+NULL,p93,821,100,bodytext,,
+NULL,p93,822,100,bodytext,,
+NULL,p93,823,100,bodytext,,
+NULL,p93,824,100,bodytext,,
+NULL,p93,825,100,bodytext,,
+NULL,p93,826,4,subhead,Tayo attapaṭilābhā,三种真我取得
+NULL,p93,827,100,bodytext,,
+NULL,p93,828,100,bodytext,,
+NULL,p93,829,100,bodytext,,
+NULL,p93,830,100,bodytext,,
+NULL,p93,831,100,bodytext,,
+NULL,p93,832,100,bodytext,,
+NULL,p93,833,100,bodytext,,
+NULL,p93,834,100,bodytext,,
+NULL,p93,835,100,bodytext,,
+NULL,p93,836,100,bodytext,,
+NULL,p93,837,100,bodytext,,
+NULL,p93,838,100,bodytext,,
+NULL,p93,839,100,bodytext,,
+NULL,p93,840,100,bodytext,,
+NULL,p93,841,100,bodytext,,
+NULL,p93,842,100,bodytext,,
+NULL,p93,843,100,bodytext,,
+NULL,p93,844,100,bodytext,,
+NULL,p93,845,100,bodytext,,
+NULL,p93,846,100,bodytext,,
+NULL,p93,847,100,bodytext,,
+NULL,p93,848,4,subhead,Cittahatthisāriputtaupasampadā,质多象舍利弗受具足戒
+NULL,p93,849,100,bodytext,,
+NULL,p93,850,100,bodytext,,
+NULL,p93,851,100,centered,,
+NULL,p93,852,2,chapter,10. Subhasuttaṃ,10、苏玻经
+NULL,p93,853,4,subhead,Subhamāṇavavatthu,学生婆罗门苏玻的事
+NULL,p93,854,100,bodytext,,
+NULL,p93,855,100,bodytext,,
+NULL,p93,856,100,bodytext,,
+NULL,p93,857,100,bodytext,,
+NULL,p93,858,100,bodytext,,
+NULL,p93,859,100,bodytext,,
+NULL,p93,860,100,bodytext,,
+NULL,p93,861,100,bodytext,,
+NULL,p93,862,4,subhead,Sīlakkhandho,戒蕴
+NULL,p93,863,100,bodytext,,
+NULL,p93,864,100,bodytext,,
+NULL,p93,865,100,bodytext,,
+NULL,p93,866,100,bodytext,,
+NULL,p93,867,100,bodytext,,
+NULL,p93,868,100,bodytext,,
+NULL,p93,869,100,bodytext,,
+NULL,p93,870,4,subhead,Samādhikkhandho,定蕴
+NULL,p93,871,100,bodytext,,
+NULL,p93,872,100,bodytext,,
+NULL,p93,873,100,bodytext,,
+NULL,p93,874,100,bodytext,,
+NULL,p93,875,100,bodytext,,
+NULL,p93,876,100,bodytext,,
+NULL,p93,877,100,bodytext,,
+NULL,p93,878,100,bodytext,,
+NULL,p93,879,100,bodytext,,
+NULL,p93,880,100,bodytext,,
+NULL,p93,881,100,bodytext,,
+NULL,p93,882,100,bodytext,,
+NULL,p93,883,100,bodytext,,
+NULL,p93,884,100,bodytext,,
+NULL,p93,885,100,bodytext,,
+NULL,p93,886,100,bodytext,,
+NULL,p93,887,100,bodytext,,
+NULL,p93,888,100,bodytext,,
+NULL,p93,889,100,bodytext,,
+NULL,p93,890,100,bodytext,,
+NULL,p93,891,100,bodytext,,
+NULL,p93,892,100,bodytext,,
+NULL,p93,893,100,bodytext,,
+NULL,p93,894,100,bodytext,,
+NULL,p93,895,4,subhead,Paññākkhandho,慧蕴
+NULL,p93,896,100,bodytext,,
+NULL,p93,897,100,bodytext,,
+NULL,p93,898,100,bodytext,,
+NULL,p93,899,100,bodytext,,
+NULL,p93,900,100,bodytext,,
+NULL,p93,901,100,bodytext,,
+NULL,p93,902,100,bodytext,,
+NULL,p93,903,100,bodytext,,
+NULL,p93,904,100,bodytext,,
+NULL,p93,905,100,bodytext,,
+NULL,p93,906,100,bodytext,,
+NULL,p93,907,100,bodytext,,
+NULL,p93,908,100,bodytext,,
+NULL,p93,909,100,bodytext,,
+NULL,p93,910,100,bodytext,,
+NULL,p93,911,100,bodytext,,
+NULL,p93,912,100,bodytext,,
+NULL,p93,913,100,bodytext,,
+NULL,p93,914,100,centered,,
+NULL,p93,915,2,chapter,11. Kevaṭṭasuttaṃ,11、给哇得经
+NULL,p93,916,4,subhead,Kevaṭṭagahapatiputtavatthu,屋主之子给哇得的事
+NULL,p93,917,100,bodytext,,
+NULL,p93,918,100,bodytext,,
+NULL,p93,919,100,bodytext,,
+NULL,p93,920,4,subhead,Iddhipāṭihāriyaṃ,神通神变
+NULL,p93,921,100,bodytext,,
+NULL,p93,922,100,bodytext,,
+NULL,p93,923,100,bodytext,,
+NULL,p93,924,100,bodytext,,
+NULL,p93,925,100,bodytext,,
+NULL,p93,926,100,bodytext,,
+NULL,p93,927,4,subhead,Ādesanāpāṭihāriyaṃ,记心神变
+NULL,p93,928,100,bodytext,,
+NULL,p93,929,100,bodytext,,
+NULL,p93,930,100,bodytext,,
+NULL,p93,931,100,bodytext,,
+NULL,p93,932,4,subhead,Anusāsanīpāṭihāriyaṃ,教诫神变
+NULL,p93,933,100,bodytext,,
+NULL,p93,934,100,bodytext,,
+NULL,p93,935,100,bodytext,,
+NULL,p93,936,4,subhead,Bhūtanirodhesakabhikkhuvatthu,比丘寻求存在的灭的事
+NULL,p93,937,100,bodytext,,
+NULL,p93,938,100,bodytext,,
+NULL,p93,939,100,bodytext,,
+NULL,p93,940,100,bodytext,,
+NULL,p93,941,100,bodytext,,
+NULL,p93,942,100,bodytext,,
+NULL,p93,943,100,bodytext,,
+NULL,p93,944,100,bodytext,,
+NULL,p93,945,100,bodytext,,
+NULL,p93,946,100,bodytext,,
+NULL,p93,947,100,bodytext,,
+NULL,p93,948,100,bodytext,,
+NULL,p93,949,100,bodytext,,
+NULL,p93,950,100,bodytext,,
+NULL,p93,951,4,subhead,Tīradassisakuṇupamā,寻岸鸟的譬喻
+NULL,p93,952,100,bodytext,,
+NULL,p93,953,100,bodytext,,
+NULL,p93,954,100,gatha1,,
+NULL,p93,955,100,gatha2,,
+NULL,p93,956,100,gathalast,,
+NULL,p93,957,100,bodytext,,
+NULL,p93,958,100,gatha1,,
+NULL,p93,959,100,gathalast,,
+NULL,p93,960,100,gatha1,,
+NULL,p93,961,100,gatha2,,
+NULL,p93,962,100,gathalast,,
+NULL,p93,963,100,bodytext,,
+NULL,p93,964,100,centered,,
+NULL,p93,965,2,chapter,12. Lohiccasuttaṃ,12、罗希者经
+NULL,p93,966,4,subhead,Lohiccabrāhmaṇavatthu,罗希者婆罗门的事
+NULL,p93,967,100,bodytext,,
+NULL,p93,968,100,bodytext,,
+NULL,p93,969,100,bodytext,,
+NULL,p93,970,100,bodytext,,
+NULL,p93,971,100,bodytext,,
+NULL,p93,972,100,bodytext,,
+NULL,p93,973,100,bodytext,,
+NULL,p93,974,100,bodytext,,
+NULL,p93,975,100,bodytext,,
+NULL,p93,976,4,subhead,Lohiccabrāhmaṇānuyogo,罗希者婆罗门的实行
+NULL,p93,977,100,bodytext,,
+NULL,p93,978,100,bodytext,,
+NULL,p93,979,100,bodytext,,
+NULL,p93,980,100,bodytext,,
+NULL,p93,981,100,bodytext,,
+NULL,p93,982,100,bodytext,,
+NULL,p93,983,4,subhead,Tayo codanārahā,三种适合呵责者
+NULL,p93,984,100,bodytext,,
+NULL,p93,985,100,bodytext,,
+NULL,p93,986,100,bodytext,,
+NULL,p93,987,4,subhead,Nacodanārahasatthu,不适合呵责的大师
+NULL,p93,988,100,bodytext,,
+NULL,p93,989,100,bodytext,,
+NULL,p93,990,100,bodytext,,
+NULL,p93,991,100,centered,,
+NULL,p93,992,2,chapter,13. Tevijjasuttaṃ,13、三明经
+NULL,p93,993,100,bodytext,,
+NULL,p93,994,100,bodytext,,
+NULL,p93,995,100,bodytext,,
+NULL,p93,996,100,bodytext,,
+NULL,p93,997,4,subhead,Maggāmaggakathā,道、非道的谈说
+NULL,p93,998,100,bodytext,,
+NULL,p93,999,100,bodytext,,
+NULL,p93,1000,100,bodytext,,
+NULL,p93,1001,100,bodytext,,
+NULL,p93,1002,4,subhead,Vāseṭṭhamāṇavānuyogo,学生婆罗门袜谢德的实行
+NULL,p93,1003,100,bodytext,,
+NULL,p93,1004,100,bodytext,,
+NULL,p93,1005,100,bodytext,,
+NULL,p93,1006,100,bodytext,,
+NULL,p93,1007,100,bodytext,,
+NULL,p93,1008,100,bodytext,,
+NULL,p93,1009,100,bodytext,,
+NULL,p93,1010,100,bodytext,,
+NULL,p93,1011,100,bodytext,,
+NULL,p93,1012,100,bodytext,,
+NULL,p93,1013,100,bodytext,,
+NULL,p93,1014,100,bodytext,,
+NULL,p93,1015,100,bodytext,,
+NULL,p93,1016,100,bodytext,,
+NULL,p93,1017,100,bodytext,,
+NULL,p93,1018,100,bodytext,,
+NULL,p93,1019,100,bodytext,,
+NULL,p93,1020,4,subhead,Janapadakalyāṇīupamā,地方上美女的譬喻
+NULL,p93,1021,100,bodytext,,
+NULL,p93,1022,100,bodytext,,
+NULL,p93,1023,100,bodytext,,
+NULL,p93,1024,100,bodytext,,
+NULL,p93,1025,100,bodytext,,
+NULL,p93,1026,100,bodytext,,
+NULL,p93,1027,4,subhead,Nisseṇīupamā,阶梯的譬喻
+NULL,p93,1028,100,bodytext,,
+NULL,p93,1029,100,bodytext,,
+NULL,p93,1030,100,bodytext,,
+NULL,p93,1031,100,bodytext,,
+NULL,p93,1032,100,bodytext,,
+NULL,p93,1033,100,bodytext,,
+NULL,p93,1034,4,subhead,Aciravatīnadīupamā,阿致罗筏底河的譬喻
+NULL,p93,1035,100,bodytext,,
+NULL,p93,1036,100,bodytext,,
+NULL,p93,1037,100,bodytext,,
+NULL,p93,1038,100,bodytext,,
+NULL,p93,1039,100,bodytext,,
+NULL,p93,1040,100,bodytext,,
+NULL,p93,1041,100,bodytext,,
+NULL,p93,1042,100,bodytext,,
+NULL,p93,1043,100,bodytext,,
+NULL,p93,1044,100,bodytext,,
+NULL,p93,1045,100,bodytext,,
+NULL,p93,1046,100,bodytext,,
+NULL,p93,1047,4,subhead,Saṃsandanakathā,合流的谈说
+NULL,p93,1048,100,bodytext,,
+NULL,p93,1049,100,bodytext,,
+NULL,p93,1050,100,bodytext,,
+NULL,p93,1051,100,bodytext,,
+NULL,p93,1052,100,bodytext,,
+NULL,p93,1053,100,bodytext,,
+NULL,p93,1054,100,bodytext,,
+NULL,p93,1055,100,bodytext,,
+NULL,p93,1056,100,bodytext,,
+NULL,p93,1057,4,subhead,Brahmalokamaggadesanā,梵天世界之道的教导
+NULL,p93,1058,100,bodytext,,
+NULL,p93,1059,100,bodytext,,
+NULL,p93,1060,100,bodytext,,
+NULL,p93,1061,100,bodytext,,
+NULL,p93,1062,100,bodytext,,
+NULL,p93,1063,100,bodytext,,
+NULL,p93,1064,100,bodytext,,
+NULL,p93,1065,100,bodytext,,
+NULL,p93,1066,100,bodytext,,
+NULL,p93,1067,100,centered,,
+NULL,p93,1068,100,centered,,
+NULL,p93,1069,100,bodytext,,
+NULL,p93,1070,100,gatha1,,
+NULL,p93,1071,100,gatha2,,
+NULL,p93,1072,100,gatha3,,
+NULL,p93,1073,100,gathalast,,
+NULL,p93,1074,100,centered,,
+"","","","","","",""

+ 1560 - 0
pali_title/94_zh-cn.csv

@@ -0,0 +1,1560 @@
+id,book,par_num,100,class,title,text
+NULL,p94,1,100,centered,,
+NULL,p94,2,100,nikaya,,
+NULL,p94,3,1,book,Mahāvaggapāḷi,大品
+NULL,p94,4,2,chapter,1. Mahāpadānasuttaṃ,14、譬喻大经
+NULL,p94,5,4,subhead,Pubbenivāsapaṭisaṃyuttakathā,与前世住处有关的谈说
+NULL,p94,6,100,bodytext,,
+NULL,p94,7,100,bodytext,,
+NULL,p94,8,100,bodytext,,
+NULL,p94,9,100,bodytext,,
+NULL,p94,10,100,bodytext,,
+NULL,p94,11,100,bodytext,,
+NULL,p94,12,100,bodytext,,
+NULL,p94,13,100,bodytext,,
+NULL,p94,14,100,bodytext,,
+NULL,p94,15,100,bodytext,,
+NULL,p94,16,100,bodytext,,
+NULL,p94,17,100,bodytext,,
+NULL,p94,18,100,bodytext,,
+NULL,p94,19,100,bodytext,,
+NULL,p94,20,100,bodytext,,
+NULL,p94,21,100,bodytext,,
+NULL,p94,22,100,bodytext,,
+NULL,p94,23,100,bodytext,,
+NULL,p94,24,100,bodytext,,
+NULL,p94,25,100,bodytext,,
+NULL,p94,26,100,bodytext,,
+NULL,p94,27,100,bodytext,,
+NULL,p94,28,100,bodytext,,
+NULL,p94,29,100,bodytext,,
+NULL,p94,30,100,bodytext,,
+NULL,p94,31,100,bodytext,,
+NULL,p94,32,100,bodytext,,
+NULL,p94,33,100,bodytext,,
+NULL,p94,34,100,bodytext,,
+NULL,p94,35,100,bodytext,,
+NULL,p94,36,100,bodytext,,
+NULL,p94,37,100,bodytext,,
+NULL,p94,38,4,subhead,Bodhisattadhammatā,菩萨常法
+NULL,p94,39,100,bodytext,,
+NULL,p94,40,100,bodytext,,
+NULL,p94,41,100,bodytext,,
+NULL,p94,42,100,bodytext,,
+NULL,p94,43,100,bodytext,,
+NULL,p94,44,100,bodytext,,
+NULL,p94,45,100,bodytext,,
+NULL,p94,46,100,bodytext,,
+NULL,p94,47,100,bodytext,,
+NULL,p94,48,100,bodytext,,
+NULL,p94,49,100,bodytext,,
+NULL,p94,50,100,bodytext,,
+NULL,p94,51,100,bodytext,,
+NULL,p94,52,100,bodytext,,
+NULL,p94,53,100,bodytext,,
+NULL,p94,54,100,bodytext,,
+NULL,p94,55,4,subhead,Dvattiṃsamahāpurisalakkhaṇā,三十二大丈夫相
+NULL,p94,56,100,bodytext,,
+NULL,p94,57,100,bodytext,,
+NULL,p94,58,100,bodytext,,
+NULL,p94,59,100,bodytext,,
+NULL,p94,60,100,bodytext,,
+NULL,p94,61,100,bodytext,,
+NULL,p94,62,100,bodytext,,
+NULL,p94,63,100,bodytext,,
+NULL,p94,64,100,bodytext,,
+NULL,p94,65,100,bodytext,,
+NULL,p94,66,100,bodytext,,
+NULL,p94,67,100,bodytext,,
+NULL,p94,68,100,bodytext,,
+NULL,p94,69,100,bodytext,,
+NULL,p94,70,100,bodytext,,
+NULL,p94,71,100,bodytext,,
+NULL,p94,72,100,bodytext,,
+NULL,p94,73,100,bodytext,,
+NULL,p94,74,100,bodytext,,
+NULL,p94,75,100,bodytext,,
+NULL,p94,76,100,bodytext,,
+NULL,p94,77,100,bodytext,,
+NULL,p94,78,100,bodytext,,
+NULL,p94,79,100,bodytext,,
+NULL,p94,80,100,bodytext,,
+NULL,p94,81,100,bodytext,,
+NULL,p94,82,100,bodytext,,
+NULL,p94,83,100,bodytext,,
+NULL,p94,84,100,bodytext,,
+NULL,p94,85,100,bodytext,,
+NULL,p94,86,100,bodytext,,
+NULL,p94,87,100,bodytext,,
+NULL,p94,88,100,bodytext,,
+NULL,p94,89,100,bodytext,,
+NULL,p94,90,100,bodytext,,
+NULL,p94,91,4,subhead,Vipassīsamaññā,毗婆尸的称呼
+NULL,p94,92,100,bodytext,,
+NULL,p94,93,100,bodytext,,
+NULL,p94,94,100,bodytext,,
+NULL,p94,95,100,bodytext,,
+NULL,p94,96,100,bodytext,,
+NULL,p94,97,100,bodytext,,
+NULL,p94,98,100,centered,,
+NULL,p94,99,4,subhead,Jiṇṇapuriso,老年人
+NULL,p94,100,100,bodytext,,
+NULL,p94,101,100,bodytext,,
+NULL,p94,102,100,bodytext,,
+NULL,p94,103,100,bodytext,,
+NULL,p94,104,4,subhead,Byādhitapuriso,病人
+NULL,p94,105,100,bodytext,,
+NULL,p94,106,100,bodytext,,
+NULL,p94,107,100,bodytext,,
+NULL,p94,108,100,bodytext,,
+NULL,p94,109,100,bodytext,,
+NULL,p94,110,4,subhead,Kālaṅkatapuriso,死人
+NULL,p94,111,100,bodytext,,
+NULL,p94,112,100,bodytext,,
+NULL,p94,113,100,bodytext,,
+NULL,p94,114,100,bodytext,,
+NULL,p94,115,4,subhead,Pabbajito,出家
+NULL,p94,116,100,bodytext,,
+NULL,p94,117,100,bodytext,,
+NULL,p94,118,100,bodytext,,
+NULL,p94,119,4,subhead,Bodhisattapabbajjā,菩萨出家
+NULL,p94,120,100,bodytext,,
+NULL,p94,121,4,subhead,Mahājanakāyaanupabbajjā,大群众跟随出家
+NULL,p94,122,100,bodytext,,
+NULL,p94,123,100,bodytext,,
+NULL,p94,124,100,bodytext,,
+NULL,p94,125,4,subhead,Bodhisattaabhiniveso,菩萨-上安住
+NULL,p94,126,100,bodytext,,
+NULL,p94,127,100,bodytext,,
+NULL,p94,128,100,bodytext,,
+NULL,p94,129,100,bodytext,,
+NULL,p94,130,100,bodytext,,
+NULL,p94,131,100,bodytext,,
+NULL,p94,132,100,bodytext,,
+NULL,p94,133,100,bodytext,,
+NULL,p94,134,100,bodytext,,
+NULL,p94,135,100,bodytext,,
+NULL,p94,136,100,bodytext,,
+NULL,p94,137,100,bodytext,,
+NULL,p94,138,100,bodytext,,
+NULL,p94,139,100,bodytext,,
+NULL,p94,140,100,bodytext,,
+NULL,p94,141,100,bodytext,,
+NULL,p94,142,100,bodytext,,
+NULL,p94,143,100,bodytext,,
+NULL,p94,144,100,bodytext,,
+NULL,p94,145,100,bodytext,,
+NULL,p94,146,100,bodytext,,
+NULL,p94,147,100,bodytext,,
+NULL,p94,148,100,bodytext,,
+NULL,p94,149,100,bodytext,,
+NULL,p94,150,100,bodytext,,
+NULL,p94,151,100,bodytext,,
+NULL,p94,152,100,centered,,
+NULL,p94,153,4,subhead,Brahmayācanakathā,梵天劝请的谈说
+NULL,p94,154,100,bodytext,,
+NULL,p94,155,100,bodytext,,
+NULL,p94,156,100,gatha1,,
+NULL,p94,157,100,gathalast,,
+NULL,p94,158,100,gatha1,,
+NULL,p94,159,100,gathalast,,
+NULL,p94,160,100,bodytext,,
+NULL,p94,161,100,bodytext,,
+NULL,p94,162,100,bodytext,,
+NULL,p94,163,100,gatha1,,
+NULL,p94,164,100,gathalast,,
+NULL,p94,165,100,gatha1,,
+NULL,p94,166,100,gathalast,,
+NULL,p94,167,100,bodytext,,
+NULL,p94,168,100,bodytext,,
+NULL,p94,169,100,bodytext,,
+NULL,p94,170,100,bodytext,,
+NULL,p94,171,100,gatha1,,
+NULL,p94,172,100,gathalast,,
+NULL,p94,173,100,gatha1,,
+NULL,p94,174,100,gatha2,,
+NULL,p94,175,100,gatha3,,
+NULL,p94,176,100,gatha2,,
+NULL,p94,177,100,gatha3,,
+NULL,p94,178,100,gathalast,,
+NULL,p94,179,100,bodytext,,
+NULL,p94,180,100,gatha1,,
+NULL,p94,181,100,gatha2,,
+NULL,p94,182,100,gatha3,,
+NULL,p94,183,100,gathalast,,
+NULL,p94,184,100,bodytext,,
+NULL,p94,185,4,subhead,Aggasāvakayugaṃ,最上双弟子
+NULL,p94,186,100,bodytext,,
+NULL,p94,187,100,bodytext,,
+NULL,p94,188,100,bodytext,,
+NULL,p94,189,100,bodytext,,
+NULL,p94,190,100,bodytext,,
+NULL,p94,191,100,bodytext,,
+NULL,p94,192,4,subhead,Mahājanakāyapabbajjā,大群众的出家
+NULL,p94,193,100,bodytext,,
+NULL,p94,194,100,bodytext,,
+NULL,p94,195,100,bodytext,,
+NULL,p94,196,100,bodytext,,
+NULL,p94,197,4,subhead,Purimapabbajitānaṃ dhammābhisamayo,最初出家者的现观
+NULL,p94,198,100,bodytext,,
+NULL,p94,199,100,bodytext,,
+NULL,p94,200,100,bodytext,,
+NULL,p94,201,100,bodytext,,
+NULL,p94,202,4,subhead,Cārikāanujānanaṃ,允许游行
+NULL,p94,203,100,bodytext,,
+NULL,p94,204,100,bodytext,,
+NULL,p94,205,100,bodytext,,
+NULL,p94,206,100,bodytext,,
+NULL,p94,207,100,bodytext,,
+NULL,p94,208,100,bodytext,,
+NULL,p94,209,100,bodytext,,
+NULL,p94,210,100,gatha1,,
+NULL,p94,211,100,gatha2,,
+NULL,p94,212,100,gatha3,,
+NULL,p94,213,100,gathalast,,
+NULL,p94,214,100,gatha1,,
+NULL,p94,215,100,gathalast,,
+NULL,p94,216,100,gatha1,,
+NULL,p94,217,100,gatha2,,
+NULL,p94,218,100,gathalast,,
+NULL,p94,219,4,subhead,Devatārocanaṃ,天神的告示
+NULL,p94,220,100,bodytext,,
+NULL,p94,221,100,bodytext,,
+NULL,p94,222,100,bodytext,,
+NULL,p94,223,100,bodytext,,
+NULL,p94,224,100,bodytext,,
+NULL,p94,225,100,bodytext,,
+NULL,p94,226,100,bodytext,,
+NULL,p94,227,100,bodytext,,
+NULL,p94,228,100,centered,,
+NULL,p94,229,2,chapter,2. Mahānidānasuttaṃ,15、大因缘经
+NULL,p94,230,4,subhead,Paṭiccasamuppādo,缘起
+NULL,p94,231,100,bodytext,,
+NULL,p94,232,100,bodytext,,
+NULL,p94,233,100,bodytext,,
+NULL,p94,234,100,bodytext,,
+NULL,p94,235,100,bodytext,,
+NULL,p94,236,100,bodytext,,
+NULL,p94,237,100,bodytext,,
+NULL,p94,238,100,bodytext,,
+NULL,p94,239,100,bodytext,,
+NULL,p94,240,100,bodytext,,
+NULL,p94,241,100,bodytext,,
+NULL,p94,242,100,bodytext,,
+NULL,p94,243,100,bodytext,,
+NULL,p94,244,100,bodytext,,
+NULL,p94,245,100,bodytext,,
+NULL,p94,246,100,bodytext,,
+NULL,p94,247,100,bodytext,,
+NULL,p94,248,100,bodytext,,
+NULL,p94,249,100,bodytext,,
+NULL,p94,250,100,bodytext,,
+NULL,p94,251,100,bodytext,,
+NULL,p94,252,100,bodytext,,
+NULL,p94,253,100,bodytext,,
+NULL,p94,254,100,bodytext,,
+NULL,p94,255,100,bodytext,,
+NULL,p94,256,100,bodytext,,
+NULL,p94,257,100,bodytext,,
+NULL,p94,258,100,bodytext,,
+NULL,p94,259,100,bodytext,,
+NULL,p94,260,100,bodytext,,
+NULL,p94,261,4,subhead,Attapaññatti,真我之安立
+NULL,p94,262,100,bodytext,,
+NULL,p94,263,100,bodytext,,
+NULL,p94,264,100,bodytext,,
+NULL,p94,265,100,bodytext,,
+NULL,p94,266,100,bodytext,,
+NULL,p94,267,4,subhead,Naattapaññatti,真我之不安立
+NULL,p94,268,100,bodytext,,
+NULL,p94,269,100,bodytext,,
+NULL,p94,270,100,bodytext,,
+NULL,p94,271,100,bodytext,,
+NULL,p94,272,100,bodytext,,
+NULL,p94,273,4,subhead,Attasamanupassanā,真我之认为
+NULL,p94,274,100,bodytext,,
+NULL,p94,275,100,bodytext,,
+NULL,p94,276,100,bodytext,,
+NULL,p94,277,100,bodytext,,
+NULL,p94,278,100,bodytext,,
+NULL,p94,279,100,bodytext,,
+NULL,p94,280,4,subhead,Satta viññāṇaṭṭhiti,七识住
+NULL,p94,281,100,bodytext,,
+NULL,p94,282,100,bodytext,,
+NULL,p94,283,4,subhead,Aṭṭha vimokkhā,(暂缺)
+NULL,p94,284,100,bodytext,,
+NULL,p94,285,100,bodytext,,
+NULL,p94,286,100,centered,,
+NULL,p94,287,2,chapter,3. Mahāparinibbānasuttaṃ,16、大般涅槃经
+NULL,p94,288,100,bodytext,,
+NULL,p94,289,100,bodytext,,
+NULL,p94,290,4,subhead,Vassakārabrāhmaṇo,作雨者婆罗门
+NULL,p94,291,100,bodytext,,
+NULL,p94,292,4,subhead,Rājaaparihāniyadhammā,国王-不衰退法
+NULL,p94,293,100,bodytext,,
+NULL,p94,294,100,bodytext,,
+NULL,p94,295,100,bodytext,,
+NULL,p94,296,100,bodytext,,
+NULL,p94,297,100,bodytext,,
+NULL,p94,298,100,centered,,
+NULL,p94,299,100,bodytext,,
+NULL,p94,300,100,bodytext,,
+NULL,p94,301,100,bodytext,,
+NULL,p94,302,100,bodytext,,
+NULL,p94,303,4,subhead,Bhikkhuaparihāniyadhammā,比丘-不衰退法
+NULL,p94,304,100,bodytext,,
+NULL,p94,305,100,bodytext,,
+NULL,p94,306,100,bodytext,,
+NULL,p94,307,100,bodytext,,
+NULL,p94,308,100,bodytext,,
+NULL,p94,309,100,bodytext,,
+NULL,p94,310,100,bodytext,,
+NULL,p94,311,100,bodytext,,
+NULL,p94,312,100,bodytext,,
+NULL,p94,313,100,bodytext,,
+NULL,p94,314,100,bodytext,,
+NULL,p94,315,100,bodytext,,
+NULL,p94,316,100,bodytext,,
+NULL,p94,317,100,bodytext,,
+NULL,p94,318,100,bodytext,,
+NULL,p94,319,100,bodytext,,
+NULL,p94,320,100,bodytext,,
+NULL,p94,321,100,bodytext,,
+NULL,p94,322,100,bodytext,,
+NULL,p94,323,100,bodytext,,
+NULL,p94,324,100,bodytext,,
+NULL,p94,325,100,bodytext,,
+NULL,p94,326,100,bodytext,,
+NULL,p94,327,100,bodytext,,
+NULL,p94,328,100,bodytext,,
+NULL,p94,329,100,bodytext,,
+NULL,p94,330,100,bodytext,,
+NULL,p94,331,100,bodytext,,
+NULL,p94,332,100,bodytext,,
+NULL,p94,333,100,bodytext,,
+NULL,p94,334,100,bodytext,,
+NULL,p94,335,100,bodytext,,
+NULL,p94,336,100,bodytext,,
+NULL,p94,337,100,bodytext,,
+NULL,p94,338,100,bodytext,,
+NULL,p94,339,100,bodytext,,
+NULL,p94,340,4,subhead,Sāriputtasīhanādo,舍利弗的狮子吼
+NULL,p94,341,100,bodytext,,
+NULL,p94,342,100,bodytext,,
+NULL,p94,343,100,bodytext,,
+NULL,p94,344,100,bodytext,,
+NULL,p94,345,100,bodytext,,
+NULL,p94,346,100,bodytext,,
+NULL,p94,347,100,bodytext,,
+NULL,p94,348,4,subhead,Dussīlaādīnavā,破戒(坏品德)的过患
+NULL,p94,349,100,bodytext,,
+NULL,p94,350,100,bodytext,,
+NULL,p94,351,100,bodytext,,
+NULL,p94,352,100,bodytext,,
+NULL,p94,353,100,bodytext,,
+NULL,p94,354,100,bodytext,,
+NULL,p94,355,4,subhead,Sīlavanttaānisaṃsā,持戒(有品德)的效益
+NULL,p94,356,100,bodytext,,
+NULL,p94,357,100,bodytext,,
+NULL,p94,358,100,bodytext,,
+NULL,p94,359,100,bodytext,,
+NULL,p94,360,100,bodytext,,
+NULL,p94,361,100,bodytext,,
+NULL,p94,362,4,subhead,Pāṭaliputtanagaramāpanaṃ,华氏城的建筑
+NULL,p94,363,100,bodytext,,
+NULL,p94,364,100,bodytext,,
+NULL,p94,365,100,bodytext,,
+NULL,p94,366,100,gatha1,,
+NULL,p94,367,100,gathalast,,
+NULL,p94,368,100,gatha1,,
+NULL,p94,369,100,gathalast,,
+NULL,p94,370,100,gatha1,,
+NULL,p94,371,100,gathalast,,
+NULL,p94,372,100,bodytext,,
+NULL,p94,373,100,bodytext,,
+NULL,p94,374,100,gatha1,,
+NULL,p94,375,100,gathalast,,
+NULL,p94,376,100,centered,,
+NULL,p94,377,4,subhead,Ariyasaccakathā,圣谛的谈说
+NULL,p94,378,100,bodytext,,
+NULL,p94,379,100,bodytext,,
+NULL,p94,380,100,gatha1,,
+NULL,p94,381,100,gathalast,,
+NULL,p94,382,100,gatha1,,
+NULL,p94,383,100,gathalast,,
+NULL,p94,384,100,bodytext,,
+NULL,p94,385,4,subhead,Anāvattidhammasambodhiparāyaṇā,不还者与以正觉为彼岸
+NULL,p94,386,100,bodytext,,
+NULL,p94,387,100,bodytext,,
+NULL,p94,388,4,subhead,Dhammādāsadhammapariyāyā,法镜法门
+NULL,p94,389,100,bodytext,,
+NULL,p94,390,100,bodytext,,
+NULL,p94,391,100,bodytext,,
+NULL,p94,392,100,bodytext,,
+NULL,p94,393,100,bodytext,,
+NULL,p94,394,100,bodytext,,
+NULL,p94,395,100,bodytext,,
+NULL,p94,396,100,bodytext,,
+NULL,p94,397,100,bodytext,,
+NULL,p94,398,100,bodytext,,
+NULL,p94,399,100,bodytext,,
+NULL,p94,400,100,bodytext,,
+NULL,p94,401,4,subhead,Ambapālīgaṇikā,艺妓蓭婆巴利
+NULL,p94,402,100,bodytext,,
+NULL,p94,403,100,bodytext,,
+NULL,p94,404,100,bodytext,,
+NULL,p94,405,100,bodytext,,
+NULL,p94,406,4,subhead,Veḷuvagāmavassūpagamanaṃ,在木瓜树村进入雨季安居
+NULL,p94,407,100,bodytext,,
+NULL,p94,408,100,bodytext,,
+NULL,p94,409,100,bodytext,,
+NULL,p94,410,100,centered,,
+NULL,p94,411,4,subhead,Nimittobhāsakathā,征相与暗示的谈说
+NULL,p94,412,100,bodytext,,
+NULL,p94,413,100,bodytext,,
+NULL,p94,414,4,subhead,Mārayācanakathā,魔请求的谈说
+NULL,p94,415,100,bodytext,,
+NULL,p94,416,100,bodytext,,
+NULL,p94,417,100,bodytext,,
+NULL,p94,418,100,bodytext,,
+NULL,p94,419,100,bodytext,,
+NULL,p94,420,100,bodytext,,
+NULL,p94,421,4,subhead,Āyusaṅkhāraossajjanaṃ,寿行的舍弃
+NULL,p94,422,100,bodytext,,
+NULL,p94,423,100,gatha1,,
+NULL,p94,424,100,gathalast,,
+NULL,p94,425,4,subhead,Mahābhūmicālahetu,大地震的原因
+NULL,p94,426,100,bodytext,,
+NULL,p94,427,100,bodytext,,
+NULL,p94,428,100,bodytext,,
+NULL,p94,429,100,bodytext,,
+NULL,p94,430,100,bodytext,,
+NULL,p94,431,100,bodytext,,
+NULL,p94,432,100,bodytext,,
+NULL,p94,433,100,bodytext,,
+NULL,p94,434,100,bodytext,,
+NULL,p94,435,100,bodytext,,
+NULL,p94,436,4,subhead,Aṭṭha parisā,八众
+NULL,p94,437,100,bodytext,,
+NULL,p94,438,4,subhead,Aṭṭha abhibhāyatanāni,八胜处
+NULL,p94,439,100,bodytext,,
+NULL,p94,440,100,bodytext,,
+NULL,p94,441,100,bodytext,,
+NULL,p94,442,100,bodytext,,
+NULL,p94,443,100,bodytext,,
+NULL,p94,444,100,bodytext,,
+NULL,p94,445,100,bodytext,,
+NULL,p94,446,100,bodytext,,
+NULL,p94,447,4,subhead,Aṭṭha vimokkhā,八解脱
+NULL,p94,448,100,bodytext,,
+NULL,p94,449,100,bodytext,,
+NULL,p94,450,100,bodytext,,
+NULL,p94,451,100,bodytext,,
+NULL,p94,452,100,bodytext,,
+NULL,p94,453,100,bodytext,,
+NULL,p94,454,100,bodytext,,
+NULL,p94,455,100,bodytext,,
+NULL,p94,456,100,bodytext,,
+NULL,p94,457,4,subhead,Ānandayācanakathā,阿难请求的谈说
+NULL,p94,458,100,bodytext,,
+NULL,p94,459,100,bodytext,,
+NULL,p94,460,100,bodytext,,
+NULL,p94,461,100,bodytext,,
+NULL,p94,462,100,bodytext,,
+NULL,p94,463,100,bodytext,,
+NULL,p94,464,100,bodytext,,
+NULL,p94,465,100,bodytext,,
+NULL,p94,466,100,bodytext,,
+NULL,p94,467,100,bodytext,,
+NULL,p94,468,100,bodytext,,
+NULL,p94,469,100,gatha1,,
+NULL,p94,470,100,gathalast,,
+NULL,p94,471,100,gatha1,,
+NULL,p94,472,100,gathalast,,
+NULL,p94,473,100,gatha1,,
+NULL,p94,474,100,gathalast,,
+NULL,p94,475,100,centered,,
+NULL,p94,476,4,subhead,Nāgāpalokitaṃ,龙象回顾
+NULL,p94,477,100,bodytext,,
+NULL,p94,478,100,bodytext,,
+NULL,p94,479,100,gatha1,,
+NULL,p94,480,100,gathalast,,
+NULL,p94,481,100,gatha1,,
+NULL,p94,482,100,gathalast,,
+NULL,p94,483,100,bodytext,,
+NULL,p94,484,4,subhead,Catumahāpadesakathā,四大法教
+NULL,p94,485,100,bodytext,,
+NULL,p94,486,100,bodytext,,
+NULL,p94,487,100,bodytext,,
+NULL,p94,488,100,bodytext,,
+NULL,p94,489,100,bodytext,,
+NULL,p94,490,100,bodytext,,
+NULL,p94,491,4,subhead,Kammāraputtacundavatthu,铁匠之子纯陀的事
+NULL,p94,492,100,bodytext,,
+NULL,p94,493,100,bodytext,,
+NULL,p94,494,100,bodytext,,
+NULL,p94,495,100,gatha1,,
+NULL,p94,496,100,gathalast,,
+NULL,p94,497,100,gatha1,,
+NULL,p94,498,100,gatha2,,
+NULL,p94,499,100,gatha3,,
+NULL,p94,500,100,gathalast,,
+NULL,p94,501,4,subhead,Pānīyāharaṇaṃ,取水
+NULL,p94,502,100,bodytext,,
+NULL,p94,503,100,bodytext,,
+NULL,p94,504,100,bodytext,,
+NULL,p94,505,4,subhead,Pukkusamallaputtavatthu,末罗人之子晡古色的事
+NULL,p94,506,100,bodytext,,
+NULL,p94,507,100,bodytext,,
+NULL,p94,508,100,bodytext,,
+NULL,p94,509,100,bodytext,,
+NULL,p94,510,100,bodytext,,
+NULL,p94,511,100,bodytext,,
+NULL,p94,512,100,bodytext,,
+NULL,p94,513,100,gatha1,,
+NULL,p94,514,100,gathalast,,
+NULL,p94,515,100,bodytext,,
+NULL,p94,516,100,bodytext,,
+NULL,p94,517,100,gatha1,,
+NULL,p94,518,100,gatha2,,
+NULL,p94,519,100,gatha3,,
+NULL,p94,520,100,gathalast,,
+NULL,p94,521,100,gatha1,,
+NULL,p94,522,100,gatha2,,
+NULL,p94,523,100,gatha3,,
+NULL,p94,524,100,gathalast,,
+NULL,p94,525,100,gatha1,,
+NULL,p94,526,100,gatha2,,
+NULL,p94,527,100,gatha3,,
+NULL,p94,528,100,gathalast,,
+NULL,p94,529,100,gatha1,,
+NULL,p94,530,100,gathalast,,
+NULL,p94,531,100,bodytext,,
+NULL,p94,532,100,gatha1,,
+NULL,p94,533,100,gatha2,,
+NULL,p94,534,100,gatha3,,
+NULL,p94,535,100,gathalast,,
+NULL,p94,536,100,centered,,
+NULL,p94,537,4,subhead,Yamakasālā,双沙罗树
+NULL,p94,538,100,bodytext,,
+NULL,p94,539,100,bodytext,,
+NULL,p94,540,100,bodytext,,
+NULL,p94,541,4,subhead,Upavāṇatthero,优波哇那上座
+NULL,p94,542,100,bodytext,,
+NULL,p94,543,100,bodytext,,
+NULL,p94,544,100,bodytext,,
+NULL,p94,545,100,bodytext,,
+NULL,p94,546,4,subhead,Catusaṃvejanīyaṭṭhānāni,四个能激起宗教信仰心之处
+NULL,p94,547,100,bodytext,,
+NULL,p94,548,100,bodytext,,
+NULL,p94,549,100,bodytext,,
+NULL,p94,550,4,subhead,Ānandapucchākathā,阿难问题的谈说
+NULL,p94,551,100,bodytext,,
+NULL,p94,552,100,bodytext,,
+NULL,p94,553,100,bodytext,,
+NULL,p94,554,4,subhead,Thūpārahapuggalo,值得领受塔的人
+NULL,p94,555,100,bodytext,,
+NULL,p94,556,100,bodytext,,
+NULL,p94,557,100,bodytext,,
+NULL,p94,558,100,bodytext,,
+NULL,p94,559,100,bodytext,,
+NULL,p94,560,4,subhead,Ānandaacchariyadhammo,阿难的未曾有法
+NULL,p94,561,100,bodytext,,
+NULL,p94,562,100,bodytext,,
+NULL,p94,563,100,bodytext,,
+NULL,p94,564,100,bodytext,,
+NULL,p94,565,4,subhead,Mahāsudassanasuttadesanā,大善见经的教导
+NULL,p94,566,100,bodytext,,
+NULL,p94,567,100,bodytext,,
+NULL,p94,568,100,bodytext,,
+NULL,p94,569,4,subhead,Mallānaṃ vandanā,末罗人的礼拜
+NULL,p94,570,100,bodytext,,
+NULL,p94,571,4,subhead,Subhaddaparibbājakavatthu,游行者须跋陀的事
+NULL,p94,572,100,bodytext,,
+NULL,p94,573,100,bodytext,,
+NULL,p94,574,100,bodytext,,
+NULL,p94,575,100,gatha1,,
+NULL,p94,576,100,gatha2,,
+NULL,p94,577,100,gatha3,,
+NULL,p94,578,100,gathalast,,
+NULL,p94,579,100,gatha1,,
+NULL,p94,580,100,gathalast,,
+NULL,p94,581,100,bodytext,,
+NULL,p94,582,100,bodytext,,
+NULL,p94,583,100,bodytext,,
+NULL,p94,584,100,centered,,
+NULL,p94,585,4,subhead,Tathāgatapacchimavācā,如来最后的话
+NULL,p94,586,100,bodytext,,
+NULL,p94,587,100,bodytext,,
+NULL,p94,588,100,bodytext,,
+NULL,p94,589,4,subhead,Parinibbutakathā,般涅槃的谈说
+NULL,p94,590,100,bodytext,,
+NULL,p94,591,100,bodytext,,
+NULL,p94,592,100,bodytext,,
+NULL,p94,593,100,bodytext,,
+NULL,p94,594,100,gatha1,,
+NULL,p94,595,100,gatha2,,
+NULL,p94,596,100,gathalast,,
+NULL,p94,597,100,bodytext,,
+NULL,p94,598,100,gatha1,,
+NULL,p94,599,100,gathalast,,
+NULL,p94,600,100,bodytext,,
+NULL,p94,601,100,gatha1,,
+NULL,p94,602,100,gathalast,,
+NULL,p94,603,100,gatha1,,
+NULL,p94,604,100,gathalast,,
+NULL,p94,605,100,bodytext,,
+NULL,p94,606,100,gatha1,,
+NULL,p94,607,100,gathalast,,
+NULL,p94,608,100,bodytext,,
+NULL,p94,609,100,bodytext,,
+NULL,p94,610,100,bodytext,,
+NULL,p94,611,100,bodytext,,
+NULL,p94,612,4,subhead,Buddhasarīrapūjā,世尊遗体供养
+NULL,p94,613,100,bodytext,,
+NULL,p94,614,100,bodytext,,
+NULL,p94,615,100,bodytext,,
+NULL,p94,616,100,bodytext,,
+NULL,p94,617,100,bodytext,,
+NULL,p94,618,100,bodytext,,
+NULL,p94,619,100,bodytext,,
+NULL,p94,620,4,subhead,Mahākassapattheravatthu,大迦叶的事
+NULL,p94,621,100,bodytext,,
+NULL,p94,622,100,bodytext,,
+NULL,p94,623,100,bodytext,,
+NULL,p94,624,100,bodytext,,
+NULL,p94,625,100,bodytext,,
+NULL,p94,626,4,subhead,Sarīradhātuvibhājanaṃ,遗骨的分配
+NULL,p94,627,100,bodytext,,
+NULL,p94,628,100,bodytext,,
+NULL,p94,629,100,bodytext,,
+NULL,p94,630,100,bodytext,,
+NULL,p94,631,100,bodytext,,
+NULL,p94,632,100,bodytext,,
+NULL,p94,633,100,bodytext,,
+NULL,p94,634,100,bodytext,,
+NULL,p94,635,100,bodytext,,
+NULL,p94,636,100,gatha1,,
+NULL,p94,637,100,gatha2,,
+NULL,p94,638,100,gatha3,,
+NULL,p94,639,100,gathalast,,
+NULL,p94,640,100,gatha1,,
+NULL,p94,641,100,gatha2,,
+NULL,p94,642,100,gatha3,,
+NULL,p94,643,100,gathalast,,
+NULL,p94,644,100,bodytext,,
+NULL,p94,645,100,bodytext,,
+NULL,p94,646,4,subhead,Dhātuthūpapūjā,遗骨塔的尊敬
+NULL,p94,647,100,bodytext,,
+NULL,p94,648,100,bodytext,,
+NULL,p94,649,100,gathalast,,
+NULL,p94,650,100,gatha1,,
+NULL,p94,651,100,gathalast,,
+NULL,p94,652,100,gatha1,,
+NULL,p94,653,100,gatha2,,
+NULL,p94,654,100,gatha3,,
+NULL,p94,655,100,gathalast,,
+NULL,p94,656,100,gatha1,,
+NULL,p94,657,100,gatha2,,
+NULL,p94,658,100,gatha3,,
+NULL,p94,659,100,gathalast,,
+NULL,p94,660,100,gatha1,,
+NULL,p94,661,100,gathalast,,
+NULL,p94,662,100,centered,,
+NULL,p94,663,2,chapter,4. Mahāsudassanasuttaṃ,17、大善见经
+NULL,p94,664,100,bodytext,,
+NULL,p94,665,100,bodytext,,
+NULL,p94,666,4,subhead,Kusāvatīrājadhānī,咕萨瓦帝王都
+NULL,p94,667,100,bodytext,,
+NULL,p94,668,100,bodytext,,
+NULL,p94,669,4,subhead,Cakkaratanaṃ,轮宝
+NULL,p94,670,100,bodytext,,
+NULL,p94,671,100,bodytext,,
+NULL,p94,672,100,bodytext,,
+NULL,p94,673,4,subhead,Hatthiratanaṃ,象宝
+NULL,p94,674,100,bodytext,,
+NULL,p94,675,4,subhead,Assaratanaṃ,马宝
+NULL,p94,676,100,bodytext,,
+NULL,p94,677,4,subhead,Maṇiratanaṃ,珠宝
+NULL,p94,678,100,bodytext,,
+NULL,p94,679,4,subhead,Itthiratanaṃ,女宝
+NULL,p94,680,100,bodytext,,
+NULL,p94,681,4,subhead,Gahapatiratanaṃ,屋主宝
+NULL,p94,682,100,bodytext,,
+NULL,p94,683,4,subhead,Pariṇāyakaratanaṃ,主兵臣宝
+NULL,p94,684,100,bodytext,,
+NULL,p94,685,100,bodytext,,
+NULL,p94,686,4,subhead,Catuiddhisamannāgato,具备四种成就
+NULL,p94,687,100,bodytext,,
+NULL,p94,688,100,bodytext,,
+NULL,p94,689,100,bodytext,,
+NULL,p94,690,100,bodytext,,
+NULL,p94,691,100,bodytext,,
+NULL,p94,692,4,subhead,Dhammapāsādapokkharaṇī,达摩宫殿的莲花池
+NULL,p94,693,100,bodytext,,
+NULL,p94,694,100,bodytext,,
+NULL,p94,695,100,bodytext,,
+NULL,p94,696,100,bodytext,,
+NULL,p94,697,100,bodytext,,
+NULL,p94,698,100,bodytext,,
+NULL,p94,699,100,bodytext,,
+NULL,p94,700,100,bodytext,,
+NULL,p94,701,100,bodytext,,
+NULL,p94,702,100,bodytext,,
+NULL,p94,703,100,bodytext,,
+NULL,p94,704,100,bodytext,,
+NULL,p94,705,100,bodytext,,
+NULL,p94,706,100,bodytext,,
+NULL,p94,707,100,bodytext,,
+NULL,p94,708,100,bodytext,,
+NULL,p94,709,100,bodytext,,
+NULL,p94,710,100,bodytext,,
+NULL,p94,711,100,centered,,
+NULL,p94,712,4,subhead,Jhānasampatti,到达禅
+NULL,p94,713,100,bodytext,,
+NULL,p94,714,100,bodytext,,
+NULL,p94,715,100,bodytext,,
+NULL,p94,716,100,bodytext,,
+NULL,p94,717,4,subhead,Caturāsīti nagarasahassādi,八万四千城市
+NULL,p94,718,100,bodytext,,
+NULL,p94,719,100,bodytext,,
+NULL,p94,720,4,subhead,Subhaddādeviupasaṅkamanaṃ,善吉祥皇后到来
+NULL,p94,721,100,bodytext,,
+NULL,p94,722,100,bodytext,,
+NULL,p94,723,100,bodytext,,
+NULL,p94,724,100,bodytext,,
+NULL,p94,725,100,bodytext,,
+NULL,p94,726,100,bodytext,,
+NULL,p94,727,100,bodytext,,
+NULL,p94,728,4,subhead,Brahmalokūpagamaṃ,往梵天世界
+NULL,p94,729,100,bodytext,,
+NULL,p94,730,100,bodytext,,
+NULL,p94,731,100,bodytext,,
+NULL,p94,732,100,bodytext,,
+NULL,p94,733,100,bodytext,,
+NULL,p94,734,100,gatha1,,
+NULL,p94,735,100,gathalast,,
+NULL,p94,736,100,centered,,
+NULL,p94,737,2,chapter,5. Janavasabhasuttaṃ,18、人牛王经
+NULL,p94,738,4,subhead,Nātikiyādibyākaraṇaṃ,在那低葛的记说等等
+NULL,p94,739,100,bodytext,,
+NULL,p94,740,100,bodytext,,
+NULL,p94,741,100,bodytext,,
+NULL,p94,742,4,subhead,Ānandaparikathā,阿难的委婉谈说
+NULL,p94,743,100,bodytext,,
+NULL,p94,744,100,bodytext,,
+NULL,p94,745,100,bodytext,,
+NULL,p94,746,100,bodytext,,
+NULL,p94,747,4,subhead,Janavasabhayakkho,人牛王夜叉
+NULL,p94,748,100,bodytext,,
+NULL,p94,749,100,bodytext,,
+NULL,p94,750,100,gatha1,,
+NULL,p94,751,100,gathalast,,
+NULL,p94,752,100,bodytext,,
+NULL,p94,753,4,subhead,Devasabhā,诸天会堂
+NULL,p94,754,100,bodytext,,
+NULL,p94,755,100,gatha1,,
+NULL,p94,756,100,gathalast,,
+NULL,p94,757,100,gatha1,,
+NULL,p94,758,100,gathalast,,
+NULL,p94,759,100,gatha1,,
+NULL,p94,760,100,gathalast,,
+NULL,p94,761,100,gatha1,,
+NULL,p94,762,100,gathalast,,
+NULL,p94,763,100,bodytext,,
+NULL,p94,764,100,gatha1,,
+NULL,p94,765,100,gathalast,,
+NULL,p94,766,100,bodytext,,
+NULL,p94,767,100,gatha1,,
+NULL,p94,768,100,gathalast,,
+NULL,p94,769,4,subhead,Sanaṅkumārakathā,常童子的谈说
+NULL,p94,770,100,bodytext,,
+NULL,p94,771,100,bodytext,,
+NULL,p94,772,100,bodytext,,
+NULL,p94,773,100,gatha1,,
+NULL,p94,774,100,gathalast,,
+NULL,p94,775,100,gatha1,,
+NULL,p94,776,100,gathalast,,
+NULL,p94,777,100,gatha1,,
+NULL,p94,778,100,gathalast,,
+NULL,p94,779,100,gatha1,,
+NULL,p94,780,100,gathalast,,
+NULL,p94,781,100,bodytext,,
+NULL,p94,782,100,bodytext,,
+NULL,p94,783,100,bodytext,,
+NULL,p94,784,100,gatha1,,
+NULL,p94,785,100,gathalast,,
+NULL,p94,786,100,gatha1,,
+NULL,p94,787,100,gathalast,,
+NULL,p94,788,100,bodytext,,
+NULL,p94,789,4,subhead,Bhāvitaiddhipādo,所修习的神足
+NULL,p94,790,100,bodytext,,
+NULL,p94,791,100,bodytext,,
+NULL,p94,792,4,subhead,Tividho okāsādhigamo,三种到达的空间
+NULL,p94,793,100,bodytext,,
+NULL,p94,794,100,bodytext,,
+NULL,p94,795,100,bodytext,,
+NULL,p94,796,4,subhead,Catusatipaṭṭhānaṃ,四念住
+NULL,p94,797,100,bodytext,,
+NULL,p94,798,4,subhead,Satta samādhiparikkhārā,七个定的资助
+NULL,p94,799,100,bodytext,,
+NULL,p94,800,100,bodytext,,
+NULL,p94,801,100,gatha1,,
+NULL,p94,802,100,gathalast,,
+NULL,p94,803,100,bodytext,,
+NULL,p94,804,100,bodytext,,
+NULL,p94,805,100,bodytext,,
+NULL,p94,806,100,centered,,
+NULL,p94,807,2,chapter,6. Mahāgovindasuttaṃ,19、大总管经
+NULL,p94,808,100,bodytext,,
+NULL,p94,809,4,subhead,Devasabhā,诸天会堂
+NULL,p94,810,100,bodytext,,
+NULL,p94,811,100,bodytext,,
+NULL,p94,812,100,bodytext,,
+NULL,p94,813,100,gatha1,,
+NULL,p94,814,100,gathalast,,
+NULL,p94,815,100,gatha1,,
+NULL,p94,816,100,gathalast,,
+NULL,p94,817,100,gatha1,,
+NULL,p94,818,100,gathalast,,
+NULL,p94,819,100,gatha1,,
+NULL,p94,820,100,gathalast,,
+NULL,p94,821,100,bodytext,,
+NULL,p94,822,4,subhead,Aṭṭha yathābhuccavaṇṇā,八种如实称赞
+NULL,p94,823,100,bodytext,,
+NULL,p94,824,100,bodytext,,
+NULL,p94,825,100,bodytext,,
+NULL,p94,826,100,bodytext,,
+NULL,p94,827,100,bodytext,,
+NULL,p94,828,100,bodytext,,
+NULL,p94,829,100,bodytext,,
+NULL,p94,830,100,bodytext,,
+NULL,p94,831,100,bodytext,,
+NULL,p94,832,100,bodytext,,
+NULL,p94,833,100,gatha1,,
+NULL,p94,834,100,gathalast,,
+NULL,p94,835,100,bodytext,,
+NULL,p94,836,100,gatha1,,
+NULL,p94,837,100,gathalast,,
+NULL,p94,838,4,subhead,Sanaṅkumārakathā,常童子的谈说
+NULL,p94,839,100,bodytext,,
+NULL,p94,840,100,bodytext,,
+NULL,p94,841,100,gatha1,,
+NULL,p94,842,100,gathalast,,
+NULL,p94,843,100,gatha1,,
+NULL,p94,844,100,gathalast,,
+NULL,p94,845,100,gatha1,,
+NULL,p94,846,100,gathalast,,
+NULL,p94,847,100,gatha1,,
+NULL,p94,848,100,gathalast,,
+NULL,p94,849,100,bodytext,,
+NULL,p94,850,4,subhead,Aṭṭha yathābhuccavaṇṇā,八种如实称赞
+NULL,p94,851,100,bodytext,,
+NULL,p94,852,100,bodytext,,
+NULL,p94,853,100,bodytext,,
+NULL,p94,854,100,bodytext,,
+NULL,p94,855,100,bodytext,,
+NULL,p94,856,100,bodytext,,
+NULL,p94,857,100,bodytext,,
+NULL,p94,858,100,bodytext,,
+NULL,p94,859,100,bodytext,,
+NULL,p94,860,100,bodytext,,
+NULL,p94,861,4,subhead,Govindabrāhmaṇavatthu,总管婆罗门的事
+NULL,p94,862,100,bodytext,,
+NULL,p94,863,4,subhead,Mahāgovindavatthu,大总管的事
+NULL,p94,864,100,bodytext,,
+NULL,p94,865,4,subhead,Rajjasaṃvibhajanaṃ,统治权的分享
+NULL,p94,866,100,bodytext,,
+NULL,p94,867,100,bodytext,,
+NULL,p94,868,100,bodytext,,
+NULL,p94,869,100,bodytext,,
+NULL,p94,870,100,gathalast,,
+NULL,p94,871,100,gatha1,,
+NULL,p94,872,100,gathalast,,
+NULL,p94,873,100,bodytext,,
+NULL,p94,874,100,gatha1,,
+NULL,p94,875,100,gathalast,,
+NULL,p94,876,100,centered,,
+NULL,p94,877,4,subhead,Kittisaddaabbhuggamanaṃ,(暂缺)
+NULL,p94,878,100,bodytext,,
+NULL,p94,879,100,bodytext,,
+NULL,p94,880,100,bodytext,,
+NULL,p94,881,100,bodytext,,
+NULL,p94,882,100,bodytext,,
+NULL,p94,883,100,bodytext,,
+NULL,p94,884,100,bodytext,,
+NULL,p94,885,4,subhead,Brahmunā sākacchā,梵天的交谈
+NULL,p94,886,100,bodytext,,
+NULL,p94,887,100,gatha1,,
+NULL,p94,888,100,gathalast,,
+NULL,p94,889,100,gatha1,,
+NULL,p94,890,100,gathalast,,
+NULL,p94,891,100,gatha1,,
+NULL,p94,892,100,gathalast,,
+NULL,p94,893,100,gatha1,,
+NULL,p94,894,100,gatha2,,
+NULL,p94,895,100,gathalast,,
+NULL,p94,896,100,bodytext,,
+NULL,p94,897,100,gatha1,,
+NULL,p94,898,100,gatha2,,
+NULL,p94,899,100,gatha3,,
+NULL,p94,900,100,gathalast,,
+NULL,p94,901,100,gatha1,,
+NULL,p94,902,100,gatha2,,
+NULL,p94,903,100,gatha3,,
+NULL,p94,904,100,gatha2,,
+NULL,p94,905,100,gathalast,,
+NULL,p94,906,100,bodytext,,
+NULL,p94,907,100,gatha1,,
+NULL,p94,908,100,gatha2,,
+NULL,p94,909,100,gatha3,,
+NULL,p94,910,100,gathalast,,
+NULL,p94,911,100,gatha1,,
+NULL,p94,912,100,gatha2,,
+NULL,p94,913,100,gatha3,,
+NULL,p94,914,100,gatha2,,
+NULL,p94,915,100,gatha3,,
+NULL,p94,916,100,gathalast,,
+NULL,p94,917,100,bodytext,,
+NULL,p94,918,4,subhead,Reṇurājaāmantanā,雷奴国王的宣说
+NULL,p94,919,100,bodytext,,
+NULL,p94,920,100,gatha1,,
+NULL,p94,921,100,gathalast,,
+NULL,p94,922,100,gatha1,,
+NULL,p94,923,100,gatha2,,
+NULL,p94,924,100,gathalast,,
+NULL,p94,925,100,gatha1,,
+NULL,p94,926,100,gathalast,,
+NULL,p94,927,100,gatha1,,
+NULL,p94,928,100,gathalast,,
+NULL,p94,929,100,gatha1,,
+NULL,p94,930,100,gathalast,,
+NULL,p94,931,100,gatha1,,
+NULL,p94,932,100,gathalast,,
+NULL,p94,933,100,gatha1,,
+NULL,p94,934,100,gathalast,,
+NULL,p94,935,100,gatha1,,
+NULL,p94,936,100,gatha2,,
+NULL,p94,937,100,gathalast,,
+NULL,p94,938,100,bodytext,,
+NULL,p94,939,4,subhead,Cha khattiyaāmantanā,六位刹帝利的宣说
+NULL,p94,940,100,bodytext,,
+NULL,p94,941,100,bodytext,,
+NULL,p94,942,100,gatha1,,
+NULL,p94,943,100,gathalast,,
+NULL,p94,944,100,gatha1,,
+NULL,p94,945,100,gathalast,,
+NULL,p94,946,100,bodytext,,
+NULL,p94,947,100,bodytext,,
+NULL,p94,948,100,bodytext,,
+NULL,p94,949,100,bodytext,,
+NULL,p94,950,100,bodytext,,
+NULL,p94,951,100,bodytext,,
+NULL,p94,952,4,subhead,Brāhmaṇamahāsālādīnaṃ āmantanā,富有的婆罗门等的宣说
+NULL,p94,953,100,bodytext,,
+NULL,p94,954,4,subhead,Bhariyānaṃ āmantanā,妻子们的宣说
+NULL,p94,955,100,bodytext,,
+NULL,p94,956,4,subhead,Mahāgovindapabbajjā,大总管的出家
+NULL,p94,957,100,bodytext,,
+NULL,p94,958,100,bodytext,,
+NULL,p94,959,100,bodytext,,
+NULL,p94,960,100,bodytext,,
+NULL,p94,961,100,bodytext,,
+NULL,p94,962,100,bodytext,,
+NULL,p94,963,100,bodytext,,
+NULL,p94,964,100,centered,,
+NULL,p94,965,2,chapter,7. Mahāsamayasuttaṃ,20、大集会经
+NULL,p94,966,100,bodytext,,
+NULL,p94,967,100,bodytext,,
+NULL,p94,968,100,gatha1,,
+NULL,p94,969,100,gathalast,,
+NULL,p94,970,100,bodytext,,
+NULL,p94,971,100,gatha1,,
+NULL,p94,972,100,gathalast,,
+NULL,p94,973,100,bodytext,,
+NULL,p94,974,100,gatha1,,
+NULL,p94,975,100,gathalast,,
+NULL,p94,976,100,bodytext,,
+NULL,p94,977,100,gatha1,,
+NULL,p94,978,100,gathalast,,
+NULL,p94,979,4,subhead,Devatāsannipātā,天神的集合
+NULL,p94,980,100,bodytext,,
+NULL,p94,981,100,bodytext,,
+NULL,p94,982,100,gatha1,,
+NULL,p94,983,100,gathalast,,
+NULL,p94,984,100,gatha1,,
+NULL,p94,985,100,gathalast,,
+NULL,p94,986,100,gatha1,,
+NULL,p94,987,100,gathalast,,
+NULL,p94,988,100,gatha1,,
+NULL,p94,989,100,gathalast,,
+NULL,p94,990,100,gatha1,,
+NULL,p94,991,100,gathalast,,
+NULL,p94,992,100,gatha1,,
+NULL,p94,993,100,gathalast,,
+NULL,p94,994,100,gatha1,,
+NULL,p94,995,100,gathalast,,
+NULL,p94,996,100,gatha1,,
+NULL,p94,997,100,gathalast,,
+NULL,p94,998,100,bodytext,,
+NULL,p94,999,100,gatha2,,
+NULL,p94,1000,100,gathalast,,
+NULL,p94,1001,100,gatha1,,
+NULL,p94,1002,100,gatha2,,
+NULL,p94,1003,100,gathalast,,
+NULL,p94,1004,100,gatha1,,
+NULL,p94,1005,100,gatha2,,
+NULL,p94,1006,100,gathalast,,
+NULL,p94,1007,100,gatha1,,
+NULL,p94,1008,100,gatha2,,
+NULL,p94,1009,100,gathalast,,
+NULL,p94,1010,100,gatha1,,
+NULL,p94,1011,100,gatha2,,
+NULL,p94,1012,100,gathalast,,
+NULL,p94,1013,100,gatha1,,
+NULL,p94,1014,100,gatha2,,
+NULL,p94,1015,100,gathalast,,
+NULL,p94,1016,100,bodytext,,
+NULL,p94,1017,100,gathalast,,
+NULL,p94,1018,100,gatha1,,
+NULL,p94,1019,100,gatha2,,
+NULL,p94,1020,100,gathalast,,
+NULL,p94,1021,100,gatha1,,
+NULL,p94,1022,100,gathalast,,
+NULL,p94,1023,100,gatha1,,
+NULL,p94,1024,100,gatha2,,
+NULL,p94,1025,100,gathalast,,
+NULL,p94,1026,100,gatha1,,
+NULL,p94,1027,100,gathalast,,
+NULL,p94,1028,100,gatha1,,
+NULL,p94,1029,100,gatha2,,
+NULL,p94,1030,100,gathalast,,
+NULL,p94,1031,100,gatha1,,
+NULL,p94,1032,100,gathalast,,
+NULL,p94,1033,100,gatha1,,
+NULL,p94,1034,100,gatha2,,
+NULL,p94,1035,100,gathalast,,
+NULL,p94,1036,100,gatha1,,
+NULL,p94,1037,100,gathalast,,
+NULL,p94,1038,100,gatha1,,
+NULL,p94,1039,100,gathalast,,
+NULL,p94,1040,100,bodytext,,
+NULL,p94,1041,100,gathalast,,
+NULL,p94,1042,100,gatha1,,
+NULL,p94,1043,100,gathalast,,
+NULL,p94,1044,100,gatha1,,
+NULL,p94,1045,100,gathalast,,
+NULL,p94,1046,100,gatha1,,
+NULL,p94,1047,100,gathalast,,
+NULL,p94,1048,100,bodytext,,
+NULL,p94,1049,100,gathalast,,
+NULL,p94,1050,100,gatha1,,
+NULL,p94,1051,100,gathalast,,
+NULL,p94,1052,100,gatha1,,
+NULL,p94,1053,100,gathalast,,
+NULL,p94,1054,100,gatha1,,
+NULL,p94,1055,100,gathalast,,
+NULL,p94,1056,100,bodytext,,
+NULL,p94,1057,100,gathalast,,
+NULL,p94,1058,100,gatha1,,
+NULL,p94,1059,100,gathalast,,
+NULL,p94,1060,100,gatha1,,
+NULL,p94,1061,100,gatha2,,
+NULL,p94,1062,100,gathalast,,
+NULL,p94,1063,100,bodytext,,
+NULL,p94,1064,100,gathalast,,
+NULL,p94,1065,100,gatha1,,
+NULL,p94,1066,100,gathalast,,
+NULL,p94,1067,100,gatha1,,
+NULL,p94,1068,100,gathalast,,
+NULL,p94,1069,100,gatha1,,
+NULL,p94,1070,100,gathalast,,
+NULL,p94,1071,100,gatha1,,
+NULL,p94,1072,100,gathalast,,
+NULL,p94,1073,100,gatha1,,
+NULL,p94,1074,100,gathalast,,
+NULL,p94,1075,100,gatha1,,
+NULL,p94,1076,100,gathalast,,
+NULL,p94,1077,100,gatha1,,
+NULL,p94,1078,100,gathalast,,
+NULL,p94,1079,100,gatha1,,
+NULL,p94,1080,100,gatha2,,
+NULL,p94,1081,100,gathalast,,
+NULL,p94,1082,100,gatha1,,
+NULL,p94,1083,100,gathalast,,
+NULL,p94,1084,100,gatha1,,
+NULL,p94,1085,100,gathalast,,
+NULL,p94,1086,100,gatha1,,
+NULL,p94,1087,100,gatha2,,
+NULL,p94,1088,100,gathalast,,
+NULL,p94,1089,100,gatha1,,
+NULL,p94,1090,100,gathalast,,
+NULL,p94,1091,100,gatha1,,
+NULL,p94,1092,100,gathalast,,
+NULL,p94,1093,100,gatha1,,
+NULL,p94,1094,100,gathalast,,
+NULL,p94,1095,100,gatha1,,
+NULL,p94,1096,100,gatha2,,
+NULL,p94,1097,100,gathalast,,
+NULL,p94,1098,100,gatha1,,
+NULL,p94,1099,100,gatha2,,
+NULL,p94,1100,100,gathalast,,
+NULL,p94,1101,100,gatha1,,
+NULL,p94,1102,100,gatha2,,
+NULL,p94,1103,100,gathalast,,
+NULL,p94,1104,100,gatha1,,
+NULL,p94,1105,100,gathalast,,
+NULL,p94,1106,100,gatha1,,
+NULL,p94,1107,100,gathalast,,
+NULL,p94,1108,100,bodytext,,
+NULL,p94,1109,100,gathalast,,
+NULL,p94,1110,100,gatha1,,
+NULL,p94,1111,100,gathalast,,
+NULL,p94,1112,100,gatha1,,
+NULL,p94,1113,100,gathalast,,
+NULL,p94,1114,100,bodytext,,
+NULL,p94,1115,100,gathalast,,
+NULL,p94,1116,100,gatha1,,
+NULL,p94,1117,100,gathalast,,
+NULL,p94,1118,100,gatha1,,
+NULL,p94,1119,100,gathalast,,
+NULL,p94,1120,100,gatha1,,
+NULL,p94,1121,100,gathalast,,
+NULL,p94,1122,100,bodytext,,
+NULL,p94,1123,100,gathalast,,
+NULL,p94,1124,100,gatha1,,
+NULL,p94,1125,100,gatha2,,
+NULL,p94,1126,100,gathalast,,
+NULL,p94,1127,100,gatha1,,
+NULL,p94,1128,100,gathalast,,
+NULL,p94,1129,100,centered,,
+NULL,p94,1130,2,chapter,8. Sakkapañhasuttaṃ,21、帝释所问经
+NULL,p94,1131,100,bodytext,,
+NULL,p94,1132,100,bodytext,,
+NULL,p94,1133,100,bodytext,,
+NULL,p94,1134,100,bodytext,,
+NULL,p94,1135,4,subhead,Pañcasikhagītagāthā,五髻的歌唱偈颂
+NULL,p94,1136,100,bodytext,,
+NULL,p94,1137,100,gatha1,,
+NULL,p94,1138,100,gathalast,,
+NULL,p94,1139,100,gatha1,,
+NULL,p94,1140,100,gathalast,,
+NULL,p94,1141,100,gatha1,,
+NULL,p94,1142,100,gathalast,,
+NULL,p94,1143,100,gatha1,,
+NULL,p94,1144,100,gathalast,,
+NULL,p94,1145,100,gatha1,,
+NULL,p94,1146,100,gathalast,,
+NULL,p94,1147,100,gatha1,,
+NULL,p94,1148,100,gathalast,,
+NULL,p94,1149,100,gatha1,,
+NULL,p94,1150,100,gathalast,,
+NULL,p94,1151,100,gatha1,,
+NULL,p94,1152,100,gathalast,,
+NULL,p94,1153,100,gatha1,,
+NULL,p94,1154,100,gathalast,,
+NULL,p94,1155,100,gatha1,,
+NULL,p94,1156,100,gathalast,,
+NULL,p94,1157,100,gatha1,,
+NULL,p94,1158,100,gathalast,,
+NULL,p94,1159,100,gatha1,,
+NULL,p94,1160,100,gathalast,,
+NULL,p94,1161,100,gatha1,,
+NULL,p94,1162,100,gathalast,,
+NULL,p94,1163,100,gatha1,,
+NULL,p94,1164,100,gathalast,,
+NULL,p94,1165,100,bodytext,,
+NULL,p94,1166,100,gatha1,,
+NULL,p94,1167,100,gathalast,,
+NULL,p94,1168,100,gatha1,,
+NULL,p94,1169,100,gathalast,,
+NULL,p94,1170,100,bodytext,,
+NULL,p94,1171,4,subhead,Sakkūpasaṅkama,帝释前往
+NULL,p94,1172,100,bodytext,,
+NULL,p94,1173,100,bodytext,,
+NULL,p94,1174,100,bodytext,,
+NULL,p94,1175,100,bodytext,,
+NULL,p94,1176,4,subhead,Gopakavatthu,守护者之事
+NULL,p94,1177,100,bodytext,,
+NULL,p94,1178,100,bodytext,,
+NULL,p94,1179,100,gatha2,,
+NULL,p94,1180,100,gatha3,,
+NULL,p94,1181,100,gathalast,,
+NULL,p94,1182,100,gatha1,,
+NULL,p94,1183,100,gatha2,,
+NULL,p94,1184,100,gatha3,,
+NULL,p94,1185,100,gathalast,,
+NULL,p94,1186,100,gatha1,,
+NULL,p94,1187,100,gatha2,,
+NULL,p94,1188,100,gatha3,,
+NULL,p94,1189,100,gathalast,,
+NULL,p94,1190,100,gatha1,,
+NULL,p94,1191,100,gatha2,,
+NULL,p94,1192,100,gatha3,,
+NULL,p94,1193,100,gathalast,,
+NULL,p94,1194,100,gatha1,,
+NULL,p94,1195,100,gatha2,,
+NULL,p94,1196,100,gatha3,,
+NULL,p94,1197,100,gathalast,,
+NULL,p94,1198,100,gatha1,,
+NULL,p94,1199,100,gatha2,,
+NULL,p94,1200,100,gatha3,,
+NULL,p94,1201,100,gathalast,,
+NULL,p94,1202,100,gatha1,,
+NULL,p94,1203,100,gatha2,,
+NULL,p94,1204,100,gatha3,,
+NULL,p94,1205,100,gathalast,,
+NULL,p94,1206,100,gatha1,,
+NULL,p94,1207,100,gatha2,,
+NULL,p94,1208,100,gatha3,,
+NULL,p94,1209,100,gathalast,,
+NULL,p94,1210,100,gatha1,,
+NULL,p94,1211,100,gatha2,,
+NULL,p94,1212,100,gatha3,,
+NULL,p94,1213,100,gathalast,,
+NULL,p94,1214,100,gatha1,,
+NULL,p94,1215,100,gatha2,,
+NULL,p94,1216,100,gatha3,,
+NULL,p94,1217,100,gathalast,,
+NULL,p94,1218,100,gatha1,,
+NULL,p94,1219,100,gatha2,,
+NULL,p94,1220,100,gatha3,,
+NULL,p94,1221,100,gathalast,,
+NULL,p94,1222,100,gatha1,,
+NULL,p94,1223,100,gatha2,,
+NULL,p94,1224,100,gatha3,,
+NULL,p94,1225,100,gathalast,,
+NULL,p94,1226,100,gatha1,,
+NULL,p94,1227,100,gatha2,,
+NULL,p94,1228,100,gatha3,,
+NULL,p94,1229,100,gathalast,,
+NULL,p94,1230,100,gatha1,,
+NULL,p94,1231,100,gatha2,,
+NULL,p94,1232,100,gatha3,,
+NULL,p94,1233,100,gathalast,,
+NULL,p94,1234,100,gatha1,,
+NULL,p94,1235,100,gatha2,,
+NULL,p94,1236,100,gatha3,,
+NULL,p94,1237,100,gathalast,,
+NULL,p94,1238,100,gatha1,,
+NULL,p94,1239,100,gatha2,,
+NULL,p94,1240,100,gatha3,,
+NULL,p94,1241,100,gathalast,,
+NULL,p94,1242,100,gatha1,,
+NULL,p94,1243,100,gatha2,,
+NULL,p94,1244,100,gatha3,,
+NULL,p94,1245,100,gathalast,,
+NULL,p94,1246,100,gatha1,,
+NULL,p94,1247,100,gatha2,,
+NULL,p94,1248,100,gatha3,,
+NULL,p94,1249,100,gathalast,,
+NULL,p94,1250,100,gatha1,,
+NULL,p94,1251,100,gatha2,,
+NULL,p94,1252,100,gatha3,,
+NULL,p94,1253,100,gathalast,,
+NULL,p94,1254,100,bodytext,,
+NULL,p94,1255,100,bodytext,,
+NULL,p94,1256,100,gatha1,,
+NULL,p94,1257,100,gathalast,,
+NULL,p94,1258,100,centered,,
+NULL,p94,1259,100,bodytext,,
+NULL,p94,1260,100,bodytext,,
+NULL,p94,1261,100,bodytext,,
+NULL,p94,1262,100,bodytext,,
+NULL,p94,1263,100,bodytext,,
+NULL,p94,1264,100,bodytext,,
+NULL,p94,1265,100,bodytext,,
+NULL,p94,1266,100,bodytext,,
+NULL,p94,1267,100,bodytext,,
+NULL,p94,1268,4,subhead,Vedanākammaṭṭhānaṃ,受之业处
+NULL,p94,1269,100,bodytext,,
+NULL,p94,1270,100,bodytext,,
+NULL,p94,1271,100,bodytext,,
+NULL,p94,1272,100,bodytext,,
+NULL,p94,1273,100,bodytext,,
+NULL,p94,1274,4,subhead,Pātimokkhasaṃvaro,巴帝摩卡自制
+NULL,p94,1275,100,bodytext,,
+NULL,p94,1276,100,bodytext,,
+NULL,p94,1277,100,bodytext,,
+NULL,p94,1278,100,bodytext,,
+NULL,p94,1279,100,bodytext,,
+NULL,p94,1280,100,bodytext,,
+NULL,p94,1281,4,subhead,Indriyasaṃvaro,根自制
+NULL,p94,1282,100,bodytext,,
+NULL,p94,1283,100,bodytext,,
+NULL,p94,1284,100,bodytext,,
+NULL,p94,1285,100,bodytext,,
+NULL,p94,1286,100,bodytext,,
+NULL,p94,1287,100,bodytext,,
+NULL,p94,1288,100,bodytext,,
+NULL,p94,1289,100,bodytext,,
+NULL,p94,1290,100,bodytext,,
+NULL,p94,1291,100,bodytext,,
+NULL,p94,1292,100,bodytext,,
+NULL,p94,1293,100,bodytext,,
+NULL,p94,1294,100,bodytext,,
+NULL,p94,1295,100,bodytext,,
+NULL,p94,1296,4,subhead,Somanassapaṭilābhakathā,获得喜悦说
+NULL,p94,1297,100,bodytext,,
+NULL,p94,1298,100,bodytext,,
+NULL,p94,1299,100,bodytext,,
+NULL,p94,1300,100,gatha1,,
+NULL,p94,1301,100,gathalast,,
+NULL,p94,1302,100,bodytext,,
+NULL,p94,1303,100,gatha1,,
+NULL,p94,1304,100,gathalast,,
+NULL,p94,1305,100,bodytext,,
+NULL,p94,1306,100,gatha1,,
+NULL,p94,1307,100,gathalast,,
+NULL,p94,1308,100,bodytext,,
+NULL,p94,1309,100,gatha1,,
+NULL,p94,1310,100,gathalast,,
+NULL,p94,1311,100,bodytext,,
+NULL,p94,1312,100,gatha1,,
+NULL,p94,1313,100,gathalast,,
+NULL,p94,1314,100,bodytext,,
+NULL,p94,1315,100,gatha1,,
+NULL,p94,1316,100,gathalast,,
+NULL,p94,1317,100,bodytext,,
+NULL,p94,1318,100,bodytext,,
+NULL,p94,1319,100,bodytext,,
+NULL,p94,1320,100,gathalast,,
+NULL,p94,1321,100,gatha1,,
+NULL,p94,1322,100,gathalast,,
+NULL,p94,1323,100,gatha1,,
+NULL,p94,1324,100,gathalast,,
+NULL,p94,1325,100,gatha1,,
+NULL,p94,1326,100,gathalast,,
+NULL,p94,1327,100,gatha1,,
+NULL,p94,1328,100,gathalast,,
+NULL,p94,1329,100,gatha1,,
+NULL,p94,1330,100,gathalast,,
+NULL,p94,1331,100,gatha1,,
+NULL,p94,1332,100,gathalast,,
+NULL,p94,1333,100,gatha1,,
+NULL,p94,1334,100,gathalast,,
+NULL,p94,1335,100,gatha1,,
+NULL,p94,1336,100,gathalast,,
+NULL,p94,1337,100,bodytext,,
+NULL,p94,1338,100,bodytext,,
+NULL,p94,1339,100,bodytext,,
+NULL,p94,1340,100,centered,,
+NULL,p94,1341,2,chapter,9. Mahāsatipaṭṭhānasuttaṃ,22、大念住经
+NULL,p94,1342,100,bodytext,,
+NULL,p94,1343,4,subhead,Uddeso,总说
+NULL,p94,1344,100,bodytext,,
+NULL,p94,1345,100,bodytext,,
+NULL,p94,1346,100,centered,,
+NULL,p94,1347,4,subhead,Kāyānupassanā ānāpānapabbaṃ,随观身‧入出息节
+NULL,p94,1348,100,bodytext,,
+NULL,p94,1349,100,bodytext,,
+NULL,p94,1350,100,centered,,
+NULL,p94,1351,4,subhead,Kāyānupassanā iriyāpathapabbaṃ,随观身‧威仪路径(方法)节
+NULL,p94,1352,100,bodytext,,
+NULL,p94,1353,100,centered,,
+NULL,p94,1354,4,subhead,Kāyānupassanā sampajānapabbaṃ,随观身‧正知节
+NULL,p94,1355,100,bodytext,,
+NULL,p94,1356,100,centered,,
+NULL,p94,1357,4,subhead,Kāyānupassanā paṭikūlamanasikārapabbaṃ,随观身‧厌拒作意节
+NULL,p94,1358,100,bodytext,,
+NULL,p94,1359,100,bodytext,,
+NULL,p94,1360,100,bodytext,,
+NULL,p94,1361,100,centered,,
+NULL,p94,1362,4,subhead,Kāyānupassanā dhātumanasikārapabbaṃ,随观身‧四界作意节
+NULL,p94,1363,100,bodytext,,
+NULL,p94,1364,100,bodytext,,
+NULL,p94,1365,100,bodytext,,
+NULL,p94,1366,100,centered,,
+NULL,p94,1367,4,subhead,Kāyānupassanā navasivathikapabbaṃ,随观身‧九墓地节
+NULL,p94,1368,100,bodytext,,
+NULL,p94,1369,100,bodytext,,
+NULL,p94,1370,100,bodytext,,
+NULL,p94,1371,100,bodytext,,
+NULL,p94,1372,100,bodytext,,
+NULL,p94,1373,100,bodytext,,
+NULL,p94,1374,100,bodytext,,
+NULL,p94,1375,100,centered,,
+NULL,p94,1376,100,centered,,
+NULL,p94,1377,4,subhead,Vedanānupassanā,随观受
+NULL,p94,1378,100,bodytext,,
+NULL,p94,1379,100,centered,,
+NULL,p94,1380,4,subhead,Cittānupassanā,随观心
+NULL,p94,1381,100,bodytext,,
+NULL,p94,1382,100,centered,,
+NULL,p94,1383,4,subhead,Dhammānupassanā nīvaraṇapabbaṃ,随观法‧盖节
+NULL,p94,1384,100,bodytext,,
+NULL,p94,1385,100,bodytext,,
+NULL,p94,1386,100,bodytext,,
+NULL,p94,1387,100,bodytext,,
+NULL,p94,1388,100,bodytext,,
+NULL,p94,1389,100,bodytext,,
+NULL,p94,1390,100,bodytext,,
+NULL,p94,1391,100,centered,,
+NULL,p94,1392,4,subhead,Dhammānupassanā khandhapabbaṃ,随观法‧蕴节
+NULL,p94,1393,100,bodytext,,
+NULL,p94,1394,100,centered,,
+NULL,p94,1395,4,subhead,Dhammānupassanā āyatanapabbaṃ,随观法‧处节
+NULL,p94,1396,100,bodytext,,
+NULL,p94,1397,100,bodytext,,
+NULL,p94,1398,100,bodytext,,
+NULL,p94,1399,100,bodytext,,
+NULL,p94,1400,100,bodytext,,
+NULL,p94,1401,100,bodytext,,
+NULL,p94,1402,100,bodytext,,
+NULL,p94,1403,100,bodytext,,
+NULL,p94,1404,100,centered,,
+NULL,p94,1405,4,subhead,Dhammānupassanā bojjhaṅgapabbaṃ,随观法‧觉支节
+NULL,p94,1406,100,bodytext,,
+NULL,p94,1407,100,bodytext,,
+NULL,p94,1408,100,bodytext,,
+NULL,p94,1409,100,bodytext,,
+NULL,p94,1410,100,bodytext,,
+NULL,p94,1411,100,bodytext,,
+NULL,p94,1412,100,bodytext,,
+NULL,p94,1413,100,bodytext,,
+NULL,p94,1414,100,centered,,
+NULL,p94,1415,4,subhead,Dhammānupassanā saccapabbaṃ,随观法‧谛节
+NULL,p94,1416,100,bodytext,,
+NULL,p94,1417,100,centered,,
+NULL,p94,1418,4,subhead,Dukkhasaccaniddeso,苦谛的说明
+NULL,p94,1419,100,bodytext,,
+NULL,p94,1420,100,bodytext,,
+NULL,p94,1421,100,bodytext,,
+NULL,p94,1422,100,bodytext,,
+NULL,p94,1423,100,bodytext,,
+NULL,p94,1424,100,bodytext,,
+NULL,p94,1425,100,bodytext,,
+NULL,p94,1426,100,bodytext,,
+NULL,p94,1427,100,bodytext,,
+NULL,p94,1428,100,bodytext,,
+NULL,p94,1429,100,bodytext,,
+NULL,p94,1430,100,bodytext,,
+NULL,p94,1431,100,bodytext,,
+NULL,p94,1432,4,subhead,Samudayasaccaniddeso,集谛的说明
+NULL,p94,1433,100,bodytext,,
+NULL,p94,1434,100,bodytext,,
+NULL,p94,1435,100,bodytext,,
+NULL,p94,1436,100,bodytext,,
+NULL,p94,1437,100,bodytext,,
+NULL,p94,1438,100,bodytext,,
+NULL,p94,1439,100,bodytext,,
+NULL,p94,1440,100,bodytext,,
+NULL,p94,1441,100,bodytext,,
+NULL,p94,1442,100,bodytext,,
+NULL,p94,1443,100,bodytext,,
+NULL,p94,1444,100,bodytext,,
+NULL,p94,1445,4,subhead,Nirodhasaccaniddeso,灭谛的说明
+NULL,p94,1446,100,bodytext,,
+NULL,p94,1447,100,bodytext,,
+NULL,p94,1448,100,bodytext,,
+NULL,p94,1449,100,bodytext,,
+NULL,p94,1450,100,bodytext,,
+NULL,p94,1451,100,bodytext,,
+NULL,p94,1452,100,bodytext,,
+NULL,p94,1453,100,bodytext,,
+NULL,p94,1454,100,bodytext,,
+NULL,p94,1455,100,bodytext,,
+NULL,p94,1456,100,bodytext,,
+NULL,p94,1457,100,bodytext,,
+NULL,p94,1458,4,subhead,Maggasaccaniddeso,道谛的说明
+NULL,p94,1459,100,bodytext,,
+NULL,p94,1460,100,bodytext,,
+NULL,p94,1461,100,bodytext,,
+NULL,p94,1462,100,bodytext,,
+NULL,p94,1463,100,bodytext,,
+NULL,p94,1464,100,bodytext,,
+NULL,p94,1465,100,bodytext,,
+NULL,p94,1466,100,bodytext,,
+NULL,p94,1467,100,bodytext,,
+NULL,p94,1468,100,bodytext,,
+NULL,p94,1469,100,bodytext,,
+NULL,p94,1470,100,centered,,
+NULL,p94,1471,100,bodytext,,
+NULL,p94,1472,100,bodytext,,
+NULL,p94,1473,100,bodytext,,
+NULL,p94,1474,100,bodytext,,
+NULL,p94,1475,100,centered,,
+NULL,p94,1476,2,chapter,10. Pāyāsisuttaṃ,23、波亚西经
+NULL,p94,1477,100,bodytext,,
+NULL,p94,1478,4,subhead,Pāyāsirājaññavatthu,波亚西亲王之事
+NULL,p94,1479,100,bodytext,,
+NULL,p94,1480,100,bodytext,,
+NULL,p94,1481,100,bodytext,,
+NULL,p94,1482,100,bodytext,,
+NULL,p94,1483,4,subhead,Natthikavādo,虚无论
+NULL,p94,1484,100,bodytext,,
+NULL,p94,1485,4,subhead,Candimasūriyaupamā,日月的譬喻
+NULL,p94,1486,100,bodytext,,
+NULL,p94,1487,100,bodytext,,
+NULL,p94,1488,4,subhead,Coraupamā,盗贼的譬喻
+NULL,p94,1489,100,bodytext,,
+NULL,p94,1490,100,bodytext,,
+NULL,p94,1491,4,subhead,Gūthakūpapurisaupamā,粪坑男子的譬喻
+NULL,p94,1492,100,bodytext,,
+NULL,p94,1493,100,bodytext,,
+NULL,p94,1494,100,bodytext,,
+NULL,p94,1495,4,subhead,Tāvatiṃsadevaupamā,三十三天的譬喻
+NULL,p94,1496,100,bodytext,,
+NULL,p94,1497,4,subhead,Jaccandhaupamā,天生盲者的譬喻
+NULL,p94,1498,100,bodytext,,
+NULL,p94,1499,100,bodytext,,
+NULL,p94,1500,100,bodytext,,
+NULL,p94,1501,4,subhead,Gabbhinīupamā,孕妇的譬喻
+NULL,p94,1502,100,bodytext,,
+NULL,p94,1503,100,bodytext,,
+NULL,p94,1504,100,bodytext,,
+NULL,p94,1505,4,subhead,Supinakaupamā,梦的譬喻
+NULL,p94,1506,100,bodytext,,
+NULL,p94,1507,100,bodytext,,
+NULL,p94,1508,4,subhead,Santattaayoguḷaupamā,晒热铁球的譬喻
+NULL,p94,1509,100,bodytext,,
+NULL,p94,1510,100,bodytext,,
+NULL,p94,1511,4,subhead,Saṅkhadhamaupamā,吹法螺者的譬喻
+NULL,p94,1512,100,bodytext,,
+NULL,p94,1513,100,bodytext,,
+NULL,p94,1514,100,bodytext,,
+NULL,p94,1515,4,subhead,Aggikajaṭilaupamā,结发拜火者的譬喻
+NULL,p94,1516,100,bodytext,,
+NULL,p94,1517,100,bodytext,,
+NULL,p94,1518,100,bodytext,,
+NULL,p94,1519,100,bodytext,,
+NULL,p94,1520,4,subhead,Dve satthavāhaupamā,二位商队主的譬喻
+NULL,p94,1521,100,bodytext,,
+NULL,p94,1522,100,bodytext,,
+NULL,p94,1523,100,bodytext,,
+NULL,p94,1524,100,bodytext,,
+NULL,p94,1525,100,bodytext,,
+NULL,p94,1526,100,bodytext,,
+NULL,p94,1527,4,subhead,Gūthabhārikaupamā,担粪者的譬喻
+NULL,p94,1528,100,bodytext,,
+NULL,p94,1529,100,bodytext,,
+NULL,p94,1530,4,subhead,Akkhadhuttakaupamā,赌徒的譬喻
+NULL,p94,1531,100,bodytext,,
+NULL,p94,1532,100,gatha1,,
+NULL,p94,1533,100,gathalast,,
+NULL,p94,1534,100,bodytext,,
+NULL,p94,1535,100,bodytext,,
+NULL,p94,1536,4,subhead,Sāṇabhārikaupamā,担麻者的譬喻
+NULL,p94,1537,100,bodytext,,
+NULL,p94,1538,100,bodytext,,
+NULL,p94,1539,100,bodytext,,
+NULL,p94,1540,100,bodytext,,
+NULL,p94,1541,4,subhead,Saraṇagamanaṃ,归依
+NULL,p94,1542,100,bodytext,,
+NULL,p94,1543,100,bodytext,,
+NULL,p94,1544,4,subhead,Yaññakathā,牲祭的谈说
+NULL,p94,1545,100,bodytext,,
+NULL,p94,1546,100,bodytext,,
+NULL,p94,1547,4,subhead,Uttaramāṇavavatthu,更优秀的青年徒弟之事
+NULL,p94,1548,100,bodytext,,
+NULL,p94,1549,100,bodytext,,
+NULL,p94,1550,4,subhead,Pāyāsidevaputto,波亚西天子
+NULL,p94,1551,100,bodytext,,
+NULL,p94,1552,100,bodytext,,
+NULL,p94,1553,100,centered,,
+NULL,p94,1554,100,centered,,
+NULL,p94,1555,100,bodytext,,
+NULL,p94,1556,100,gatha1,,
+NULL,p94,1557,100,gatha2,,
+NULL,p94,1558,100,gathalast,,
+NULL,p94,1559,100,centered,,