summaryrefslogtreecommitdiff
path: root/testset/abw/2c51f832d5add5b509e3cc9454547c82.abw
blob: d6c4b4a0e468c05f31bb572088b16213ca199551 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
<?xml version="1.0"?>
<abiword xmlns="http://www.abisource.com/awml.dtd" xmlns:awml="http://www.abisource.com/awml.dtd" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fileformat="1.1" props="dom-dir:ltr; document-footnote-restart-section:0; document-endnote-type:numeric; document-endnote-place-enddoc:1; document-endnote-initial:1; lang:en-US; document-endnote-restart-section:0; document-footnote-restart-page:0; document-footnote-type:numeric; document-footnote-initial:1; document-endnote-place-endsection:0" template="false" version="2.6.0" xid-max="1747" xml:space="preserve">
<!-- ======================================================================== -->
<!-- This file is an AbiWord document.                                        -->
<!-- AbiWord is a free, Open Source word processor.                           -->
<!-- More information about AbiWord is available at http://www.abisource.com/ -->
<!-- You should not edit this file by hand.                                   -->
<!-- ======================================================================== -->

<metadata>
<m key="dc.format">application/x-abiword</m>
<m key="abiword.generator">AbiWord</m>
</metadata>
<history edit-time="0" last-saved="1191871323" uid="bf834640-75d3-11dc-8c9f-f715157f785a" version="1">
<version auto="0" id="1" started="1191871323" top-xid="1747" uid="bfdd0d10-75d3-11dc-8c9f-f715157f785a"/>
</history>
<pagesize height="297.000000" orientation="portrait" page-scale="1.000000" pagetype="A4" units="mm" width="210.000000"/>
<section props="page-margin-right:1.2000in; page-margin-left:1.5000in; columns:1" xid="1">
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="2"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="3"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="4"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="5"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="6"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="7"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="8"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="9"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:16pt; font-style:normal">The Asian Classics Institute</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="10"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="11"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="12"><c props="font-weight:bold; color:#000000; font-family:TmsRmnAD; font-size:14pt; font-style:normal">Contemplations on the Practice of Giving and Taking (Tong Len)</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="13"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="14"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="15"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:italic">Table of Contents</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="16"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="17"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="18"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">Prayers</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="19"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="20"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Offering the Mandala	1</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="21"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="22"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Refuge and The Wish	2</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="23"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="24"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Dedication of the Goodness of a Deed	3</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="25"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="26"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">A Buddhist Grace	4</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="27"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="28"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="29"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">Contemplations on the Practice of Giving and Taking (Tong Len)</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="30"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="31"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Contemplation One 	5</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="32"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Where does the practice of giving and taking fit into the Buddhist path?</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="33"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="34"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Contemplation Two	11</c></p>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="35"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">How does the practice of giving and taking relate to developing love and compassion?</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="36"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="37"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Contemplation Three	16</c></p>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="38"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">On the benefits of meditating upon love and compassion</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="39"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="40"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Contemplation Four	19</c></p>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="41"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">The original text on the practice of giving and taking, from the </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Offering to Lamas (Lama Chupa) </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">of the First Panchen Lama</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="42"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="43"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Contemplation Five	24</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="44"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Which goes first, giving or taking? </c></p>
</section>
<section props="page-margin-right:1.2000in; page-margin-left:1.5000in; columns:1" xid="45">
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="46"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="47"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Contemplation Six	26</c></p>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="48"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">An explanation of the practice of giving and taking in the first reference from the </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Offering to Lamas</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"> </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="49"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="50"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Contemplation Seven	29</c></p>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="51"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">An explanation of the practice of giving and taking in the second reference from the </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Offering to Lamas</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"> </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="52"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="53"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Contemplation Eight	33</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="54"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">More on the breath in the practice of giving and taking </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="55"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="56"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Contemplation Nine	43</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="57"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Whose suffering do we take?</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="58"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="59"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Contemplation Ten	48</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="60"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Additional details of the visualization</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="61"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="62"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Contemplation Eleven	50</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="63"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">What is it that we give? </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="64"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="65"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Contemplation Twelve	55</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="66"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">On how giving and taking works, and doesn't work</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="67"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="68"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="69"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">Additional readings</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="70"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="71"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">A selection from </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">The Garden; </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Chapter IX: Compassion	60</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="72"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="73"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">The Six Preliminaries to Meditation, and the Seven Ingredients	82</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="74"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="75"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="76"/>
</section>
<section props="page-margin-right:1.2000in; page-margin-left:1.5000in; columns:1" xid="77">
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="78"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"><pbr/></c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF04;&#xF05;&#xF0D; &#xF0D;&#xF58;&#xF4E;&#xF4C;&#xF63;&#xF0D; &#xF0D;   </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="79"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">mandel</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="80"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="81"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF0D;&#xF66;&#xF0B;&#xF42;&#xF5E;&#xF72;&#xF0B;&#xF66;&#xFA4;&#xF7C;&#xF66;&#xF0B;&#xF40;&#xFB1;&#xF72;&#xF66;&#xF0B;&#xF56;&#xFB1;&#xF74;&#xF42;&#xF66;&#xF0B;&#xF64;&#xF72;&#xF44;&#xF0B;&#xF58;&#xF7A;&#xF0B;&#xF4F;&#xF7C;&#xF42;&#xF0B;&#xF56;&#xF40;&#xFB2;&#xF58;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="82"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:italic">sashi pukyi jukshing metok tram,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="83"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="84"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF0D;&#xF62;&#xF72;&#xF0B;&#xF62;&#xF56;&#xF0B;&#xF42;&#xFB3;&#xF72;&#xF44;&#xF0B;&#xF56;&#xF5E;&#xF72;&#xF0B;&#xF49;&#xF72;&#xF0B;&#xF5F;&#xFB3;&#xF66;&#xF0B;&#xF56;&#xF62;&#xF92;&#xFB1;&#xF53;&#xF0B;&#xF54;&#xF0B;&#xF60;&#xF51;&#xF72;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="85"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:italic">rirab lingshi nyinde gyenpa di,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="86"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="87"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF0D;&#xF66;&#xF44;&#xF66;&#xF0B;&#xF62;&#xF92;&#xFB1;&#xF66;&#xF0B;&#xF5E;&#xF72;&#xF44;&#xF0B;&#xF51;&#xF74;&#xF0B;&#xF51;&#xF58;&#xF72;&#xF42;&#xF66;&#xF0B;&#xF4F;&#xF7A;&#xF0B;&#xF51;&#xF56;&#xF74;&#xF63;&#xF0B;&#xF56;&#xF62;&#xF0B;&#xF56;&#xF42;&#xFB1;&#xF72;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="88"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:italic">sangye shingdu mikte ulwar gyi,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="89"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="90"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF0D;&#xF60;&#xF42;&#xFB2;&#xF7C;&#xF0B;&#xF40;&#xF74;&#xF53;&#xF0B;&#xF62;&#xFA3;&#xF58;&#xF0B;&#xF51;&#xF42;&#xF0B;&#xF5E;&#xF72;&#xF44;&#xF0B;&#xF63;&#xF0B;&#xF66;&#xFA4;&#xFB1;&#xF7C;&#xF51;&#xF0B;&#xF54;&#xF62;&#xF0B;&#xF64;&#xF7C;&#xF42;  &#xF0D;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="91"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:italic">drokun namdak shingla chupar shok.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="92"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="93"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF0D;&#xF68;&#xF72;&#xF0B;&#xF51;&#xF7E;&#xF0B;&#xF42;&#xF74;&#xF0B;&#xF62;&#xF74;&#xF0B;&#xF62;&#xF4F;&#xF53;&#xF0B;&#xF58;&#xF4E;&#xF4C;&#xF0B;&#xF63;&#xF0B;&#xF40;&#xF7E;&#xF0B;&#xF53;&#xF72;&#xF0B;&#x429;&#xF71;-&#xF4F;-&#xF61;&#xF0B;&#xF58;&#xF72;&#xF0D; &#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="94"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:italic">Idam guru ratna mandalakam niryatayami.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="95"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="96"><c props="font-weight:bold; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Offering the Mandala</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="97"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="98"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Here is the great Earth,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="99"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Filled with the smell of incense,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="100"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Covered with a blanket of flowers,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="101"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="102"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The Great Mountain,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="103"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The Four Continents,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="104"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Wearing a jewel</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="105"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Of the Sun, and Moon.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="106"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="107"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">In my mind I make them</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="108"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The Paradise of a Buddha,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="109"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">And offer it all to You.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="110"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="111"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">By this deed</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="112"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">May every living being</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="113"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Experience</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="114"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The Pure World.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="115"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="116"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:italic">Idam guru ratna mandalakam niryatayami.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="117"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:italic"><pbr/></c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF04;&#xF05;&#xF0D; &#xF0D;&#xF66;&#xF90;&#xFB1;&#xF56;&#xF66;&#xF0B;&#xF60;&#xF42;&#xFB2;&#xF7C;&#xF0B;&#xF66;&#xF7A;&#xF58;&#xF66;&#xF0B;&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;&#xF0D; &#xF0D;   </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="118"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">kyabdro semkye</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="119"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="120"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF0D;&#xF66;&#xF44;&#xF66;&#xF0B;&#xF62;&#xF92;&#xFB1;&#xF66;&#xF0B;&#xF46;&#xF7C;&#xF66;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF5A;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF40;&#xFB1;&#xF72;&#xF0B;&#xF58;&#xF46;&#xF7C;&#xF42;&#xF0B;&#xF62;&#xFA3;&#xF58;&#xF66;&#xF0B;&#xF63;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="121"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:italic">sangye chudang tsokyi choknam la,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="122"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="123"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="124"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF0D;&#xF56;&#xFB1;&#xF44;&#xF0B;&#xF46;&#xF74;&#xF56;&#xF0B;&#xF56;&#xF62;&#xF0B;&#xF51;&#xF74;&#xF0B;&#xF56;&#xF51;&#xF42;&#xF0B;&#xF53;&#xF72;&#xF0B;&#xF66;&#xF90;&#xFB1;&#xF56;&#xF66;&#xF0B;&#xF66;&#xF74;&#xF0B;&#xF58;&#xF46;&#xF72;&#xF66;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="125"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:italic">jangchub bardu dakni kyabsu chi,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="126"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="127"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="128"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF0D;&#xF56;&#xF51;&#xF42;&#xF0B;&#xF42;&#xF72;&#xF66;&#xF0B;&#xF66;&#xFA6;&#xFB1;&#xF72;&#xF53;&#xF0B;&#xF66;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF56;&#xF42;&#xFB1;&#xF72;&#xF66;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF56;&#xF66;&#xF7C;&#xF51;&#xF0B;&#xF53;&#xF58;&#xF66;&#xF0B;&#xF40;&#xFB1;&#xF72;&#xF66;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="129"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:italic">dakki jinsok gyipay sunam kyi,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="130"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="131"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="132"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF0D;&#xF60;&#xF42;&#xFB2;&#xF7C;&#xF0B;&#xF63;&#xF0B;&#xF55;&#xF53;&#xF0B;&#xF55;&#xFB1;&#xF72;&#xF62;&#xF0B;&#xF66;&#xF44;&#xF66;&#xF0B;&#xF62;&#xF92;&#xFB1;&#xF66;&#xF0B;&#xF60;&#xF42;&#xFB2;&#xF74;&#xF56;&#xF0B;&#xF54;&#xF62;&#xF0B;&#xF64;&#xF7C;&#xF42;  &#xF0D;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="133"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:italic">drola penchir sangye druppar shok.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="134"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="135"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="136"><c props="font-weight:bold; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Refuge and The Wish</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="137"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="138"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">I go for refuge</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="139"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">To the Buddha, Dharma, and Sangha</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="140"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Until I achieve enlightenment.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="141"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="142"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">By the power</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="143"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Of the goodness that I do</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="144"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">In giving and the rest,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="145"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="146"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">May I reach Buddhahood</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="147"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">For the sake</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="148"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Of every living being.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="149"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal"><pbr/></c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF04;&#xF05;&#xF0D; &#xF0D;&#xF56;&#xF66;&#xF94;&#xF7C;&#xF0B;&#xF56;&#xF0D; &#xF0D;   </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="150"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:italic">ngowa</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="151"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="152"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="153"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF0D;&#xF51;&#xF42;&#xF7A;&#xF0B;&#xF56;&#xF0B;&#xF60;&#xF51;&#xF72;&#xF0B;&#xF61;&#xF72;&#xF66;&#xF0B;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF0B;&#xF56;&#xF7C;&#xF0B;&#xF40;&#xF74;&#xF53;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="154"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:italic">gewa diyi kyewo kun,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="155"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="156"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="157"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF0D;&#xF56;&#xF66;&#xF7C;&#xF51;&#xF0B;&#xF53;&#xF58;&#xF66;&#xF0B;&#xF61;&#xF7A;&#xF0B;&#xF64;&#xF7A;&#xF66;&#xF0B;&#xF5A;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF62;&#xFAB;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF64;&#xF72;&#xF44;&#xF0B;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="158"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:italic">sunam yeshe tsok-dzok shing,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="159"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="160"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="161"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF0D;&#xF56;&#xF66;&#xF7C;&#xF51;&#xF0B;&#xF53;&#xF58;&#xF66;&#xF0B;&#xF61;&#xF7A;&#xF0B;&#xF64;&#xF7A;&#xF66;&#xF0B;&#xF63;&#xF66;&#xF0B;&#xF56;&#xFB1;&#xF74;&#xF44;&#xF0B;&#xF56;&#xF60;&#xF72;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="162"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:italic">sunam yeshe lejung way,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="163"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="164"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="165"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF0D;&#xF51;&#xF58;&#xF0B;&#xF54;&#xF0B;&#xF66;&#xF90;&#xF74;&#xF0B;&#xF42;&#xF49;&#xF72;&#xF66;&#xF0B;&#xF60;&#xF50;&#xF7C;&#xF56;&#xF0B;&#xF54;&#xF62;&#xF0B;&#xF64;&#xF7C;&#xF42;  &#xF0D;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="166"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:italic">dampa kunyi topar shok.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="167"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="168"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="169"><c props="font-weight:bold; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Dedication of the Goodness of a Deed</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="170"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="171"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">By the goodness</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="172"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Of what I have just done</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="173"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">May all beings</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="174"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="175"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Complete the collection</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="176"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Of merit and wisdom,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="177"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="178"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">And thus gain the two</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="179"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Ultimate bodies</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="180"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">That merit and wisdom make.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="181"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal"><pbr/></c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF04;&#xF05;&#xF0D; &#xF0D;&#xF58;&#xF46;&#xF7C;&#xF51;&#xF0B;&#xF54;&#xF0D; &#xF0D;    </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="182"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">chupa</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="183"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="184"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF0D;&#xF66;&#xF9F;&#xF7C;&#xF53;&#xF0B;&#xF54;&#xF0B;&#xF56;&#xFB3;&#xF0B;&#xF58;&#xF7A;&#xF51;&#xF0B;&#xF66;&#xF44;&#xF66;&#xF0B;&#xF62;&#xF92;&#xFB1;&#xF66;&#xF0B;&#xF62;&#xF72;&#xF53;&#xF0B;&#xF54;&#xF7C;&#xF0B;&#xF46;&#xF7A;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="185"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:italic"> tonpa lame sanggye rinpoche,</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">	</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="186"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF0D;&#xF66;&#xF90;&#xFB1;&#xF7C;&#xF56;&#xF0B;&#xF54;&#xF0B;&#xF56;&#xFB3;&#xF0B;&#xF58;&#xF7A;&#xF51;&#xF0B;&#xF51;&#xF58;&#xF0B;&#xF46;&#xF7C;&#xF66;&#xF0B;&#xF62;&#xF72;&#xF53;&#xF0B;&#xF54;&#xF7C;&#xF0B;&#xF46;&#xF7A;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="187"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:italic"> kyoppa lame damchu rinpoche,</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">	</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="188"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF0D;&#xF60;&#xF51;&#xFB2;&#xF7A;&#xF53;&#xF0B;&#xF54;&#xF0B;&#xF56;&#xFB3;&#xF0B;&#xF58;&#xF7A;&#xF51;&#xF0B;&#xF51;&#xF42;&#xF7A;&#xF0B;&#xF60;&#xF51;&#xF74;&#xF53;&#xF0B;&#xF62;&#xF72;&#xF53;&#xF0B;&#xF54;&#xF7C;&#xF0B;&#xF46;&#xF7A;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="189"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:italic"> drenpa lame gendun rinpoche,</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">	</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="190"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF0D;&#xF66;&#xF90;&#xFB1;&#xF56;&#xF66;&#xF0B;&#xF42;&#xF53;&#xF66;&#xF0B;&#xF51;&#xF40;&#xF7C;&#xF53;&#xF0B;&#xF58;&#xF46;&#xF7C;&#xF42;&#xF0B;&#xF42;&#xF66;&#xF74;&#xF58;&#xF0B;&#xF63;&#xF0B;&#xF58;&#xF46;&#xF7C;&#xF51;&#xF0B;&#xF54;&#xF0B;&#xF60;&#xF56;&#xF74;&#xF63;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="191"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal"> </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:italic">kyabne konchok sumla chupa bul.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="192"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="193"><c props="font-weight:bold; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">A Buddhist Grace</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="194"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="195"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">I offer this</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="196"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">To the Teacher</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="197"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Higher than any other,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="198"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The precious Buddha.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="199"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="200"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">I offer this</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="201"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">To the protection</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="202"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Higher than any other,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="203"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The precious Dharma.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="204"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="205"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">I offer this</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="206"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">To the guides</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="207"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Higher than any other,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="208"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The precious Sangha.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="209"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="210"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">I offer this</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="211"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">To the places of refuge,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="212"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">To the Three Jewels,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="213"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Rare and supreme.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="214"/>
</section>
<section props="page-margin-right:1.2000in; page-margin-left:1.5000in; columns:1" xid="215">
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="216"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal"><pbr/></c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="217"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="218"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="219"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="220"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="221"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="222"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="223"><c props="font-weight:bold; color:#000000; font-family:PalatinoDI; font-size:14pt; font-style:normal">The Asian Classics Institute</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="224"><c props="font-weight:bold; color:#000000; font-family:PalatinoDI; font-size:14pt; font-style:normal">Contemplations on the Practice of Giving and Taking (Tong Len)</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="225"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="226"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="227"><c props="font-weight:bold; color:#000000; font-family:PalatinoDI; font-size:13pt; font-style:normal">Contemplation One</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.5000in" xid="228"><c props="font-weight:bold; color:#000000; font-family:PalatinoDI; font-size:13pt; font-style:normal">Where does the practice of giving and taking</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="229"><c props="font-weight:bold; color:#000000; font-family:PalatinoDI; font-size:13pt; font-style:normal">fit into the Buddhist path?</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="230"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="231"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">To answer this question we turn first to a topical outline of the most famous source for the teachings on giving and taking; that is, </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">An Offering to Lamas, the Indivisible Union of Bliss and Voidness,</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic"> by the First Panchen Lama, Lobsang Chukyi Gyaltsen (1567?-1662).  The outline itself was composed by Ngulchu Dharma Bhadra (1772-1851), an important figure in the lineage of teachings of the Angel of Diamond (Vajra Yogini).</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="232"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="233"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Here we see in outline form the place that our practice takes within the steps of the path to Buddhahood: the </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">lam-rim.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="234"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="235"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF42;&#xF66;&#xF74;&#xF58;-&#xF54;-&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF66;-&#xF56;&#xF74;-&#xF46;&#xF7A;&#xF53;-&#xF54;&#xF7C;&#xF60;&#xF72;-&#xF63;&#xF58;-&#xF63;-&#xF56;&#xFB3;&#xF7C;-&#xF66;&#xFA6;&#xFB1;&#xF7C;&#xF44;-&#xF5A; &#xF63;-&#xF63;-&#xF42;&#xF49;&#xF72;&#xF66;/ [s]&#xF56;&#xFB1;&#xF44;-&#xF46; &#xF56;-&#xF62;&#xFB1;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-&#xF5A; &#xF63;-&#xF51;&#xF44;./ &#xF66;&#xF7A;&#xF58;&#xF66;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-&#xF53;&#xF66;-&#xF66;&#xFA4;&#xFB1;&#xF7C;&#xF51;-&#xF54;-[t]&#xF63;-&#xF66;&#xFB3;&#xF7C;&#xF56;-&#xF5A; &#xF63;-&#xF63;&#xF7C;/ /&#xF51;&#xF44;-&#xF54;&#xF7C;-&#xF63;-&#xF42;&#xF49;&#xF72;&#xF66;/ &#xF66;&#xF7A;&#xF58;&#xF66;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-&#xF40;&#xFB1;&#xF72;-&#xF62;&#xF92;&#xFB1;&#xF74;-&#xF63;-&#xF66;&#xFB3;&#xF7C;&#xF56;-[t]&#xF5A; &#xF63;-&#xF51;&#xF44;./ &#xF66;&#xF7A;&#xF58;&#xF66;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-&#xF51;&#xF44;&#xF7C;&#xF66;-&#xF63;-&#xF66;&#xFB3;&#xF7C;&#xF56;-&#xF5A; &#xF63;-&#xF63;&#xF7C;/ /&#xF51;&#xF44;-&#xF54;&#xF7C;-&#xF63;-&#xF42;&#xF66;&#xF74;&#xF58;/ [t]&#xF63;&#xF58;-&#xF42;&#xFB1;&#xF72;-&#xF62;&#xFA9;-&#xF56;-&#xF66;&#xF99;&#xF72;&#xF44;-&#xF62;&#xF97;&#xF7A;-&#xF46;&#xF7A;&#xF53;-&#xF54;&#xF7C;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-&#xF5A; &#xF63;/ &#xF56;&#xF51;&#xF42;-&#xF42;&#xF5E;&#xF53;-[t]&#xF58;&#xF49;&#xF58;-&#xF56;&#xF62;&#xF97;&#xF7A;-&#xF56;&#xF66;&#xF92;&#xF7C;&#xF58;-&#xF5A; &#xF63;/ &#xF56;&#xFB3;&#xF7C;-&#xF66;&#xFA6;&#xFB1;&#xF7C;&#xF44;-&#xF42;&#xF72;-&#xF51;&#xF7C;&#xF53;-&#xF5A;&#xF53;-&#xF63;&#xFB7;&#xF42;-&#xF58;-&#xF56;&#xF66;&#xF9F;&#xF53;-[t]&#xF54;&#xF60;&#xF7C;/ &#xF42;&#xF49;&#xF72;&#xF66;-&#xF54;-&#xF63;-&#xF42;&#xF66;&#xF74;&#xF58;/ &#xF56;&#xF51;&#xF42;-&#xF42;&#xF5E;&#xF53;-&#xF58;&#xF49;&#xF58;-&#xF54;-&#xF56;&#xF66;&#xF92;&#xF7C;&#xF58;-&#xF5A; &#xF63;/ &#xF56;&#xF51;&#xF42;-[t]&#xF42;&#xF5E;&#xF53;-&#xF56;&#xF62;&#xF97;&#xF7A;-&#xF56;-&#xF56;&#xF66;&#xF92;&#xF7C;&#xF58;-&#xF5A; &#xF63;/ &#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF56;&#xFB1;-&#xF5A; &#xF63;-&#xF63;&#xF7C;/ /&#xF42;&#xF49;&#xF72;&#xF66;-&#xF54;-&#xF63;-[t]&#xF56;&#xF5E;&#xF72;/ &#xF56;&#xF51;&#xF42;-&#xF42;&#xF45;&#xF7A;&#xF66;-&#xF60;&#xF5B;&#xF72;&#xF53;-&#xF42;&#xFB1;&#xF72;-&#xF66;&#xF90;&#xFB1;&#xF7C;&#xF53;/ &#xF42;&#xF5E;&#xF53;-&#xF42;&#xF45;&#xF7A;&#xF66;-&#xF60;&#xF5B;&#xF72;&#xF53;-&#xF42;&#xFB1;&#xF72;-&#xF61;&#xF7C;&#xF53;-&#xF4F;&#xF53;/ [s]&#xF66;&#xF90;&#xFB1;&#xF7C;&#xF53;-&#xF61;&#xF7C;&#xF53;-&#xF42;&#xFB1;&#xF72;-&#xF51;&#xF7C;&#xF53;-&#xF56;&#xF66;&#xFA1; -&#xF56;/ &#xF56;&#xF51;&#xF42;-&#xF42;&#xF5E;&#xF53;-&#xF56;&#xF62;&#xF97;&#xF7A;-&#xF56;-&#xF51;&#xF44;&#xF7C;&#xF66;-&#xF66;&#xF7C;/ /&#xF42;&#xF66;&#xF74;&#xF58;-&#xF54;-[t]&#xF56;&#xFB3;&#xF7C;-&#xF66;&#xFA6;&#xFB1;&#xF7C;&#xF44;-&#xF42;&#xF72;-&#xF51;&#xF7C;&#xF53;-&#xF5A;&#xF53;-&#xF63;&#xFB7;&#xF42;-&#xF58;-&#xF56;&#xF66;&#xF9F;&#xF53;-&#xF54;-&#xF63;-&#xF42;&#xF66;&#xF74;&#xF58;/ &#xF56;&#xF66;&#xF58;-&#xF54;&#xF66;-[t]&#xF62;&#xF90;&#xFB1;&#xF7A;&#xF53;-&#xF44;&#xF53;-&#xF63;&#xF58;-&#xF88;&#xFB2;-&#xF56;&#xF66;&#xF92;&#xFB1;&#xF74;&#xF62;-&#xF5A; &#xF63;/ &#xF5A;&#xF7A;-&#xF42;&#xF45;&#xF72;&#xF42;-&#xF42;&#xF72;-&#xF49;&#xF58;&#xF66;-&#xF63;&#xF7A;&#xF53;-&#xF51;&#xF44;-&#xF56;&#xFB3;&#xF7C;-[t]&#xF60;&#xF56;&#xFB1;&#xF7C;&#xF44;&#xF66;-&#xF54;&#xF60;&#xF72;-&#xF5A;&#xF51;/ &#xF66;&#xFA6;&#xFB1;&#xF7C;&#xF62;-&#xF56;&#xF66;-&#xF62;&#xF90;&#xFB1;&#xF7A;&#xF53;-&#xF44;&#xF53;-&#xF63;&#xF58;-&#xF88;&#xFB2;-&#xF56;&#xF66;&#xF92;&#xFB1;&#xF74;&#xF62;-&#xF5A; &#xF63;-&#xF51;&#xF44;-[t]&#xF51;&#xF58;-&#xF5A;&#xF72;&#xF42;-&#xF56;&#xF66;&#xFB3;&#xF56;-&#xF54;&#xF60;&#xF7C;/ &#xF42;&#xF49;&#xF72;&#xF66;-&#xF54;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-&#xF51;&#xF44;&#xF7C;&#xF66;-&#xF63;-&#xF66;&#xFB3;&#xF7C;&#xF56;-&#xF5A; &#xF63;-&#xF63;-[t]&#xF42;&#xF49;&#xF72;&#xF66;/ &#xF66;&#xFA8;&#xF7C;&#xF53;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-&#xF5A; &#xF63;-&#xF51;&#xF44;./ &#xF60;&#xF47;&#xF74;&#xF42;-&#xF66;&#xFA1;&#xF7C;&#xF58;-&#xF63;&#xF7A;&#xF53;-&#xF5A; &#xF63;-&#xF63;&#xF7C;/ &#xF42;&#xF49;&#xF72;&#xF66;-&#xF54;-[t]&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-&#xF53;&#xF66;-&#xF66;&#xFA4;&#xFB1;&#xF7C;&#xF51;-&#xF54;-&#xF63;-&#xF66;&#xFB3;&#xF7C;&#xF56;-&#xF5A; &#xF63;-&#xF63;-&#xF51;&#xFB2;&#xF74;&#xF42;-/&#xF66;&#xFA6;&#xFB1;&#xF72;&#xF53;-&#xF54;-&#xF63;-&#xF66;&#xFB3;&#xF7C;&#xF56;-[t]&#xF5A; &#xF63;/ &#xF5A; &#xF63;-&#xF41;&#xFB2;&#xF72;&#xF58;&#xF66;-&#xF63;-&#xF66;&#xFB3;&#xF7C;&#xF56;-&#xF5A; &#xF63;/ &#xF56;&#xF5F;&#xF7C;&#xF51;-&#xF54;-&#xF63;-.../ &#xF56;&#xF62;&#xFA9;&#xF7C;&#xF53;-&#xF60;&#xF42;&#xFB2;&#xF74;&#xF66;-&#xF63;.-../ [s]&#xF56;&#xF66;&#xF58;-&#xF42;&#xF4F;&#xF53;-&#xF63;-.../ &#xF64;&#xF7A;&#xF66;-&#xF62;&#xF56;-&#xF63;-&#xF66;&#xFB3;&#xF7C;&#xF56;-&#xF5A; &#xF63;-&#xF63;&#xF7C;/ /&#xF51;&#xFB2;&#xF74;&#xF42;-&#xF54;-&#xF63;-&#xF42;&#xF66;&#xF74;&#xF58;/ &#xF58;&#xF49;&#xF58;-[t]&#xF42;&#xF5E;&#xF42;-&#xF53;&#xF58;-&#xF58;&#xF41;&#xF60;&#xF72;-&#xF62;&#xFA3;&#xF63;-&#xF60;&#xF56;&#xFB1;&#xF7C;&#xF62;/ &#xF62;&#xF97;&#xF7A;&#xF66;-&#xF50;&#xF7C;&#xF56;-&#xF66;&#xF92;&#xFB1;&#xF74;-&#xF58;&#xF60;&#xF72;----&#xF0D; &#xF51;&#xF56;&#xF74;-&#xF58;&#xF60;&#xF72;-&#xF63;&#xF9F;-[t]&#xF56;&#xF60;&#xF72;-&#xF41;&#xFB1;&#xF51;-&#xF46;&#xF7C;&#xF66;-&#xF66;&#xF7C;/ /&#xF42;&#xF49;&#xF72;&#xF66;-&#xF54;-&#xF62;&#xFA1;&#xF7C;-&#xF62;&#xF97;&#xF7A;-&#xF50;&#xF7A;&#xF42;-&#xF54;&#xF60;&#xF72;-&#xF63;&#xF58;-&#xF63;-&#xF56;&#xFB3;&#xF7C;-&#xF66;&#xFA6;&#xFB1;&#xF7C;&#xF44;-[t]&#xF5A; &#xF63;---</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="236"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">III. How to Train Ones Heart in the Path for Those of Greater Scope</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="237"/>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="238"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">A. How to develop the Wish for enlightenment (bodhichitta)</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="239"/>
<p props="margin-top:0.0000in; margin-left:1.5000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="240"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">1. How to train oneself in the things that cause the Wish</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="241"/>
<p props="margin-top:0.0000in; margin-left:2.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="242"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">a. How to develop the very root of the path: great compassion</c></p>
<p props="margin-top:0.0000in; margin-left:2.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="243"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">b. How to meditate on the practice of seeing oneself and others as equal, and then exchanging each other</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="244"/>
<p props="margin-top:0.0000in; margin-left:2.5000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="245"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">i. How to meditate on seeing onself and others as equal</c></p>
<p props="margin-top:0.0000in; margin-left:2.5000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="246"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">ii. How to meditate on exchanging oneself and others</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="247"/>
<p props="margin-top:0.0000in; margin-left:3.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="248"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">a) Problems that are caused by cherishing oneself</c></p>
<p props="margin-top:0.0000in; margin-left:3.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="249"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">b) Benefits that come from cherishing others</c></p>
</section>
<section props="page-margin-right:1.2000in; page-margin-left:1.5000in; columns:1" xid="250">
<p props="margin-top:0.0000in; margin-left:3.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="251"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">c) A summary of the problems and the benefits</c></p>
<p props="margin-top:0.0000in; margin-left:3.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="252"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">d) The actual practice of exchanging oneself and others</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="253"/>
<p props="margin-top:0.0000in; margin-left:2.5000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="254"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">iii. How to practice giving and taking</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="255"/>
<p props="margin-top:0.0000in; margin-left:2.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="256"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">c. A presentation of remaining points on the training of the mind</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="257"/>
<p props="margin-top:0.0000in; margin-left:2.5000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="258"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">i. How to use your attitude to transform bad circumstances into the path</c></p>
<p props="margin-top:0.0000in; margin-left:2.5000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="259"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">ii. How to turn this entire life into practice, and how to judge whether or not you've succeeded in training the mind</c></p>
<p props="margin-top:0.0000in; margin-left:2.5000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="260"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">iii. How to use your actions to transform bad circumstances into the path, and training oneself in the pledges</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="261"/>
<p props="margin-top:0.0000in; margin-left:1.5000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="262"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">2. How to train oneself in the Wish itself</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="263"/>
<p props="margin-top:0.0000in; margin-left:2.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="264"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">a. How to develop the Wish in the form of a prayer</c></p>
<p props="margin-top:0.0000in; margin-left:2.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="265"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">b. How to take the vow to act out the Wish</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="266"/>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="267"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">B. How to train oneself in the activities of a bodhisattva, once one has developed the Wish</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="268"/>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="269"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">1. How to train oneself in giving</c></p>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="270"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">2. How to train oneself in ethical living</c></p>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="271"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">3. How to train oneself in not getting angry</c></p>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="272"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">4. How to train oneself in joyful effort</c></p>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="273"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">5. How to train oneself in meditation</c></p>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="274"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">6. How to train oneself in wisdom</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="275"/>
<p props="margin-top:0.0000in; margin-left:2.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="276"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">a. The deep practice of empty space&#x2014;the period in meditation</c></p>
<p props="margin-top:0.0000in; margin-left:2.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="277"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">b. The deep practice of illusion&#x2014;the period afterwards</c></p>
<p props="margin-top:0.0000in; margin-left:2.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="278"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">c. Features of the view of the middle way</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="279"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="280"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Followed by "How to Train Ones Heart in the Path of the Way of the Diamond..."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="281"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="282"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">************</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="283"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="284"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">We often see the practice of giving and taking placed within the context of the teachings on exchanging oneself and others, as for example in the outline to </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">A Seven-Part Ritual including All the Essential Points for Collecting Goodness and Purifying Wrong, </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">composed by the first Changkya Rinpoche, Ngawang Lobsang Chunden (1642-1714), a former life of Pabongka Rinpoche:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="285"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic"> </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="286"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF50;&#xF7A;&#xF42;-&#xF54;-&#xF46;&#xF7A;&#xF53;-&#xF54;&#xF7C;&#xF62;-&#xF60;&#xF47;&#xF74;&#xF42;-&#xF54;&#xF60;&#xF72;-&#xF66;&#xF92;&#xF7C;-&#xF66;&#xFA4;&#xFB1;&#xF7C;&#xF51;-&#xF54;&#xF60;&#xF72;-&#xF62;&#xF9F;&#xF7A;&#xF53;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-&#xF5A; &#xF63;-&#xF63;/ [s]&#xF62;&#xF92;&#xFB1;&#xF74;-&#xF60;&#xF56;&#xFB2;&#xF66;-&#xF58;&#xF53;-&#xF44;&#xF42;-&#xF56;&#xF88;&#xFB2;&#xF53;-&#xF42;&#xFB1;&#xF72;-&#xF66;&#xF92;&#xF7C;-&#xF53;&#xF66;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-&#xF5A; &#xF63;/ &#xF56;&#xF51;&#xF42;-&#xF42;&#xF5E;&#xF53;-[t]&#xF58;&#xF49;&#xF58;-&#xF56;&#xF62;&#xF97;&#xF7A;&#xF60;&#xF72;-&#xF66;&#xF92;&#xF7C;-&#xF53;&#xF66;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-&#xF5A; &#xF63;-&#xF42;&#xF49;&#xF72;&#xF66;/ &#xF62;&#xF92;&#xFB1;&#xF74;-&#xF60;&#xF56;&#xFB2;&#xF66;-&#xF58;&#xF53;-&#xF44;&#xF42;-[t]&#xF56;&#xF88;&#xFB2;&#xF53;-&#xF42;&#xFB1;&#xF72;-&#xF66;&#xF92;&#xF7C;-&#xF53;&#xF66;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-&#xF5A; &#xF63;-&#xF63;/ &#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF63;-&#xF66;&#xF7A;&#xF58;&#xF66;-[t]&#xF66;&#xF99;&#xF7C;&#xF58;-&#xF54;&#xF62;-&#xF66;&#xF92;&#xFB2;&#xF74;&#xF56;-&#xF54;/ &#xF42;&#xF5E;&#xF53;-&#xF51;&#xF7C;&#xF53;-&#xF51;&#xF7C;&#xF53;-&#xF42;&#xF49;&#xF7A;&#xF62;-&#xF42;&#xFB1;&#xF72;-&#xF56;&#xFB3;&#xF7C;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-&#xF54;/ &#xF66;&#xF7A;&#xF58;&#xF66;-[t]&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-&#xF5A; &#xF63;-&#xF51;&#xF44;&#xF7C;&#xF66;-&#xF42;&#xF66;&#xF74;&#xF58;/ &#xF42;&#xF5E;&#xF53;-&#xF51;&#xF7C;&#xF53;-&#xF51;&#xF7C;&#xF53;-&#xF42;&#xF49;&#xF7A;&#xF62;-&#xF42;&#xFB1;&#xF72;-&#xF56;&#xFB3;&#xF7C;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-&#xF54;-[t]&#xF63;/ &#xF58;&#xF62;-&#xF64;&#xF7A;&#xF66;/ &#xF51;&#xFB2;&#xF72;&#xF53;-&#xF51;&#xFB2;&#xF53;/ &#xF51;&#xFB2;&#xF72;&#xF53;-&#xF56;&#xF5F;&#xF7C;/ /&#xF61;&#xF72;&#xF51;-&#xF60;&#xF7C;&#xF44;-&#xF42;&#xF72;-&#xF56;&#xFB1;&#xF58;&#xF66;-&#xF54;/ &#xF66;&#xF99;&#xF72;&#xF44;-&#xF62;&#xF97;&#xF7A;-[t]&#xF46;&#xF7A;&#xF53;-&#xF54;&#xF7C;/ /&#xF63;&#xFB7;&#xF42;-&#xF56;&#xF66;&#xF58;-&#xF62;&#xFA3;&#xF58;-&#xF51;&#xF42;-&#xF66;&#xF9F;&#xF7A;-&#xF51;&#xFB2;&#xF74;&#xF42; &#xF56;&#xF51;&#xF42;-&#xF42;&#xF5E;&#xF53;-&#xF58;&#xF49;&#xF58;-&#xF56;&#xF62;&#xF97;&#xF7A;&#xF60;&#xF72;-[t]&#xF66;&#xF92;&#xF7C;-&#xF53;&#xF66;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-&#xF5A; &#xF63;-&#xF63;/ &#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF66;&#xFA6;&#xFB1;&#xF7C;&#xF44;-&#xF56;-&#xF51;&#xF44;./ &#xF66;&#xF7A;&#xF58;&#xF66;-[t]&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-&#xF5A; &#xF63;-&#xF42;&#xF49;&#xF72;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="287"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">A. How to develop the Wish for enlightenment, which is the door for entering the greater way, and the basis for engaging in the deeds of the bodhisattva</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="288"/>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="289"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">1. Developing the Wish through the seven-step, cause-and-effect method</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="290"/>
<p props="margin-top:0.0000in; margin-left:1.5000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="291"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">a. Reaching a state of equal-mindedness towards all living beings</c></p>
<p props="margin-top:0.0000in; margin-left:1.5000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="292"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">b. Developing the state of mind wherein one strives to achieve the goals of others</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="293"/>
<p props="margin-top:0.0000in; margin-left:2.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="294"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">i. Recognizing them as your mother</c></p>
<p props="margin-top:0.0000in; margin-left:2.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="295"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">ii. Recalling their kindness</c></p>
<p props="margin-top:0.0000in; margin-left:2.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="296"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">iii. Repaying their kindness</c></p>
<p props="margin-top:0.0000in; margin-left:2.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="297"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">iv. The "beautiful" form of love</c></p>
<p props="margin-top:0.0000in; margin-left:2.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="298"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">v. Great compassion</c></p>
<p props="margin-top:0.0000in; margin-left:2.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="299"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">vi. Personal responsibility</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="300"/>
<p props="margin-top:0.0000in; margin-left:1.5000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="301"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">c. How the Wish is actually developed</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="302"/>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="303"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">2. Developing the Wish through the practice of exchanging oneself and others</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="304"/>
<p props="margin-top:0.0000in; margin-left:1.5000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="305"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">a. The practice of giving and taking</c></p>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="306"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">b. How the Wish is developed</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="307"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="308"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">The following section describing an extraordinary combination of the two methods of reaching the Wish for Enlightenment, comes from </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">A Detailed Outline of the "Dissection" Instruction for the Steps of the Path to Buddhahood.  </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">A copy of this text was found in the personal library of Kyabje Trijang Rinpoche, tutor of His Holiness, the present Dalai Lama.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="309"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="310"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF42;&#xF45;&#xF72;&#xF42;-&#xF62;&#xFB1;-&#xF51;&#xFB2;&#xF72;&#xF63;-&#xF4F;&#xF7A;-&#xF66;&#xF90;&#xFB1;&#xF7C;&#xF44;-&#xF5A; &#xF63;-&#xF63;-&#xF56;&#xF45; -&#xF42;&#xF66;&#xF74;&#xF58;/ &#xF56;&#xF4F;&#xF44;-&#xF66;&#xF99;&#xF7C;&#xF58;&#xF66;/ &#xF58;&#xF62;-&#xF64;&#xF7A;&#xF66;/ [s]&#xF51;&#xFB2;&#xF72;&#xF53;-&#xF51;&#xFB2;&#xF53;/ &#xF51;&#xFB2;&#xF72;&#xF53;-&#xF42;&#xF5F;&#xF7C;/ &#xF56;&#xF51;&#xF42;-&#xF42;&#xF5E;&#xF53;-&#xF58;&#xF49;&#xF58;-&#xF54;/ &#xF62;&#xF44;-&#xF42;&#xF45;&#xF7A;&#xF66;-&#xF60;&#xF5B;&#xF72;&#xF53;-&#xF42;&#xFB1;&#xF72;-[t]&#xF66;&#xF90;&#xFB1;&#xF7C;&#xF53;-&#xF66;&#xF92;&#xF7C;-&#xF88;&#xFB2;-&#xF58;-&#xF53;&#xF66;-&#xF56;&#xF66;&#xF58;-&#xF54;/ &#xF42;&#xF5E;&#xF53;-&#xF42;&#xF45;&#xF7A;&#xF66;-&#xF60;&#xF5B;&#xF72;&#xF53;-&#xF42;&#xFB1;&#xF72;-&#xF61;&#xF7C;&#xF53;-&#xF4F;&#xF53;-&#xF66;&#xF92;&#xF7C;-&#xF88;&#xFB2;-[t]&#xF58;-&#xF53;&#xF66;-&#xF56;&#xF66;&#xF58;-&#xF54;/ &#xF42;&#xF5E;&#xF53;-&#xF42;&#xF45;&#xF7A;&#xF66;-&#xF54;&#xF62;-&#xF60;&#xF5B;&#xF72;&#xF53;-&#xF60;&#xF7C;&#xF66;-&#xF54;&#xF60;&#xF72;-&#xF62;&#xF92;&#xFB1;&#xF74;-&#xF58;&#xF5A;&#xF53;/ &#xF56;&#xF51;&#xF42;-[t]&#xF42;&#xF5E;&#xF53;-&#xF56;&#xF62;&#xF97;&#xF7A;-&#xF56;-&#xF51;&#xF44;&#xF7C;&#xF66;/ &#xF66;&#xF99;&#xF72;&#xF44;-&#xF62;&#xF97;&#xF7A;&#xF60;&#xF72;-&#xF51;&#xF58;&#xF72;&#xF42;&#xF66;-&#xF54;-&#xF62;&#xFA9;&#xF63;-&#xF88;&#xFB2;-&#xF56;&#xF4F;&#xF7C;&#xF53;-&#xF53;&#xF66;-&#xF63;&#xF7A;&#xF53;-&#xF54;/ [s]&#xF56;&#xFB1;&#xF58;&#xF66;-&#xF54;&#xF60;&#xF72;-&#xF51;&#xF58;&#xF72;&#xF42;&#xF66;-&#xF54;-&#xF62;&#xFA9;&#xF63;-&#xF88;&#xFB2;-&#xF56;&#xF4F;&#xF7C;&#xF53;-&#xF53;&#xF66;-&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF56;/ &#xF63;&#xFB7;&#xF42;-&#xF56;&#xF66;&#xF58;/ &#xF66;&#xF7A;&#xF58;&#xF66;-[t]&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-&#xF51;&#xF44;&#xF7C;&#xF66;-&#xF56;&#xF45;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF66;&#xF90;&#xFB1;&#xF7C;&#xF44;-&#xF5A; &#xF63;-&#xF63;&#xF7C;/ [s]</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="311"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">There are thirteen steps to the instructions on how to carry out the combined practice:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="312"/>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="313"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">(1) Equanimity towards all beings.</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="314"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">(2) Recognizing them as your mother.</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="315"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">(3) Recalling all their kindness.</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="316"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">(4) Deciding to repay their kindness.</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="317"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">(5) Seeing yourself and others as equal.</c></p>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="318"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">(6) Contemplating, from many different angles, the problems of cherishing yourself</c></p>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="319"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">(7) Contemplating, from many different angles, the advantages of cherishing others</c></p>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="320"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">(8) Reasons why it is very right to cherish others</c></p>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="321"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">(9) The actual practice of exchanging yourself and others</c></p>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="322"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">(10) The practice of taking, accompished by focusing on the category of compassion</c></p>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="323"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">(11) The practice of giving, accomplished by focusing on the category of love</c></p>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="324"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">(12) Personal responsibility</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="325"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">(13) The actual Wish for enlightenment.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="326"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="327"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"><pbr/> </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="328"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="329"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="330"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="331"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="332"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="333"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="334"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">Contemplation Two</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="335"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">How does the practice of giving and taking relate</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="336"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">to developing love and compassion?</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="337"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="338"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">The practice of giving and taking has a distinct relationship to developing the qualities of love and compassion.  We hear first from the</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"> Sun for Helping Others, a Work of Instruction on the Lineage through which the Mental Training Tradition has Been Taught, </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">composed by the first Changkya Rinpoche:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="339"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="340"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">	/&#xF56;&#xF51;&#xF42;-&#xF56;&#xF51;&#xF7A;-&#xF42;&#xF5E;&#xF53;-&#xF42;&#xFB1;&#xF72;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF51;&#xF42;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="341"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[t]/&#xF61;&#xF44;-&#xF51;&#xF42;-&#xF56;&#xF62;&#xF97;&#xF7A;-&#xF56;&#xF62;-&#xF58;-&#xF56;&#xFB1;&#xF66;-&#xF53;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="342"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF66;&#xF44;&#xF66;-&#xF62;&#xF92;&#xFB1;&#xF66;-&#xF49;&#xF72;&#xF51;-&#xF88;&#xFB2;-&#xF58;&#xF72;-&#xF42;&#xFB2;&#xF74;&#xF56;-&#xF45;&#xF72;&#xF44;./</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="343"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF60;&#xF41;&#xF7C;&#xF62;-&#xF56;-&#xF53;-&#xF61;&#xF44;-&#xF56;&#xF51;&#xF7A;-&#xF56;-&#xF58;&#xF7A;&#xF51;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="344"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Suppose you fail to exchange perfectly</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="345"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Your happiness and the pain of others;</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="346"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">You'll never achieve then enlightenment,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="347"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Nor find any happiness here in life.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="348"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="349"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF5E;&#xF7A;&#xF66;-&#xF66;&#xF7C;-&#xF51;&#xF7A;&#xF66;-&#xF53;-&#xF51;-&#xF63;&#xF9F;-&#xF61;&#xF72;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="350"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]	/&#xF42;&#xF45;&#xF7A;&#xF66;-&#xF60;&#xF5B;&#xF72;&#xF53;-&#xF61;&#xF63;-&#xF56;&#xF62;-&#xF60;&#xF51;&#xF7C;&#xF62;-&#xF56;&#xF60;&#xF72;-&#xF56;&#xFB3;&#xF7C;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="351"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF42;&#xF49;&#xF72;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF51;&#xF58;&#xF72;&#xF42;&#xF66;-&#xF54;-&#xF42;&#xF7C;-&#xF56;&#xF62;&#xF97;&#xF7A;&#xF66;-&#xF4F;&#xF7A;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="352"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF62;&#xF44;-&#xF49;&#xF72;&#xF51;-&#xF61;&#xF63;-&#xF56;&#xF62;-&#xF56;&#xF7C;&#xF62;-&#xF56;&#xFB1;-&#xF5E;&#xF72;&#xF44;./</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="353"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF42;&#xF5E;&#xF53;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF42;&#xF45;&#xF7A;&#xF66;-&#xF54;&#xF62;-&#xF42;&#xF5F;&#xF74;&#xF44;-&#xF56;&#xFB1;-&#xF66;&#xF9F;&#xF7A;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="354"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Thus it says, and so we must take</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="355"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Our cherishing and our ignoring,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="356"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And reverse the objects they hold:</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="357"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">The one we ignore should be ourselves,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="358"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And the one we cherish all others.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="359"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="360"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">	/&#xF51;&#xF7A;-&#xF66;&#xF90;&#xF51;-&#xF88;&#xFB2;-&#xF61;&#xF44;-&#xF66;&#xFA4;&#xFB1;&#xF7C;&#xF51;-&#xF60;&#xF47;&#xF74;&#xF42;-&#xF63;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="361"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]	/&#xF56;&#xF51;&#xF42;-&#xF53;&#xF72;-&#xF56;&#xF51;&#xF7A;-&#xF51;&#xF44;-&#xF56;&#xFB2;&#xF63;-&#xF42;&#xFB1;&#xF72;&#xF66;-&#xF4F;&#xF7A;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="362"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF42;&#xF5E;&#xF53;-&#xF42;&#xFB1;&#xF72;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF56;&#xF51;&#xF42;-&#xF63;-&#xF66;&#xFA6;&#xFB1;&#xF7C;&#xF62;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="363"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">The</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic"> Bodhisattva's Way</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"> says the same:</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="364"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Take the happiness from yourself,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="365"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And give yourself others' pain."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="366"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="367"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s][s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">	/&#xF5E;&#xF7A;&#xF66;-&#xF66;&#xF7C;-&#xF42;&#xF49;&#xF72;&#xF66;-&#xF54;-&#xF42;&#xF5E;&#xF53;-&#xF51;&#xF7C;&#xF53;-&#xF51;&#xF7C;&#xF53;-&#xF42;&#xF49;&#xF7A;&#xF62;-&#xF42;&#xFB1;&#xF72;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="368"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]	/&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF66;&#xFA6;&#xFB1;&#xF7C;&#xF44;-&#xF51;&#xF44;&#xF7C;&#xF66;-&#xF63;-&#xF51;&#xF44;&#xF7C;&#xF66;-&#xF42;&#xF5E;&#xF72;&#xF60;&#xF72;-&#xF42;&#xF53;&#xF66;-&#xF66;&#xF90;&#xF56;&#xF66;-&#xF51;&#xF44;./</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="369"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF62;&#xF97;&#xF7A;&#xF66;-&#xF51;&#xF44;-&#xF50;&#xF74;&#xF53;-&#xF58;&#xF5A;&#xF58;&#xF66;-&#xF66;&#xF90;&#xF56;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF49;&#xF58;&#xF66;-&#xF63;&#xF7A;&#xF53;-&#xF42;&#xF49;&#xF72;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="370"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">The second part is actually training the mind by striving</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="371"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">For others' goals, and comes in two sections: practicing</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="372"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">During the actual session, then after and inbetween times. </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="373"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="374"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">	/&#xF51;&#xF44;-&#xF54;&#xF7C;-&#xF63;-&#xF61;&#xF44;-&#xF42;&#xF49;&#xF72;&#xF66;-&#xF4F;&#xF7A;-&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF56;-&#xF61;&#xF72;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="375"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF66;&#xF92;&#xF7C;-&#xF53;&#xF66;-&#xF56;&#xFB1;&#xF58;&#xF66;-&#xF54;-&#xF56;&#xF66;&#xF92;&#xF7C;&#xF58;-&#xF51;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF54;-&#xF61;&#xF72;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="376"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF66;&#xF92;&#xF7C;-&#xF53;&#xF66;-&#xF66;&#xF99;&#xF72;&#xF44;-&#xF62;&#xF97;&#xF7A;-&#xF56;&#xF66;&#xF92;&#xF7C;&#xF58;-&#xF54;&#xF60;&#xF7C;-&#xF51;&#xF44;-&#xF54;&#xF7C;-&#xF53;&#xF72;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="377"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF42;&#xF49;&#xF72;&#xF66;-&#xF54;&#xF7C;-&#xF66;&#xFA4;&#xF7A;&#xF63;-&#xF58;&#xF62;-&#xF66;&#xFA6;&#xFB1;&#xF44;-&#xF5E;&#xF7A;&#xF66;-&#xF42;&#xF66;&#xF74;&#xF44;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="378"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">The first of these has two as well: </c><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">practicing giving</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="379"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">For the meditation on love, and practicing taking for</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="380"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">The meditation upon compassion.</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">  The first is described</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="381"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">In the words, "Alternate the two, of giving and taking."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="382"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="383"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">***************</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="384"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="385"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">The First Panchen Lama also describes the connection between the practice of giving and taking, and compassion:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="386"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="387"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">	/&#xF60;&#xF51;&#xF72;-&#xF63;&#xF9F;&#xF62;-&#xF66;&#xF90;&#xFB1;&#xF7A;-&#xF60;&#xF46;&#xF72;-&#xF61;&#xF72;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="388"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]	/&#xF58;&#xF7A;-&#xF60;&#xF7C;&#xF56;&#xF66;-&#xF56;&#xF5F;&#xF7C;&#xF51;-&#xF51;&#xF40;&#xF60;-&#xF60;&#xF51;&#xFB2;&#xF66;-&#xF58;&#xF53;&#xF62;-&#xF56;&#xF60;&#xF72;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="389"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF41;&#xF58;&#xF66;-&#xF42;&#xF66;&#xF74;&#xF58;-&#xF60;&#xF41;&#xF7C;&#xF62;-&#xF56;-&#xF61;&#xF72;-&#xF42;&#xF53;&#xF66;-&#xF63;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="390"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF5E;&#xF7A;-&#xF63;&#xF7C;&#xF42;-&#xF61;&#xF44;-&#xF61;&#xF44;-&#xF62;&#xF44;-&#xF66;&#xF92;&#xF7C;&#xF58;&#xF66;-&#xF64;&#xF72;&#xF42;</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="391"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Meditate for yourself to find an attitude of disgust</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="392"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">For this world of cyclic life, three realms where every one of us</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="393"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Is tortured as though in a pit of fire no one could ever bear,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="394"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Suffering in just this way the pains of birth and death.</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="395"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="396"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">	/&#xF62;&#xF44;-&#xF49;&#xF58;&#xF66;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF63;-&#xF51;&#xF54;&#xF42;&#xF66;-&#xF4F;&#xF7A;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="397"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF58;&#xF62;-&#xF42;&#xFB1; &#xF62;-&#xF49;&#xF58;-&#xF50;&#xF42;-&#xF42;&#xF72;-&#xF60;&#xF42;&#xFB2;&#xF7C;-&#xF63;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="398"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF66;&#xF99;&#xF72;&#xF44;-&#xF62;&#xF97;&#xF7A;-&#xF56;&#xF45;&#xF7C;&#xF66;-&#xF58;&#xF72;&#xF53;-&#xF88;&#xFB2;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-&#xF63;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="399"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF66;&#xFA4;&#xF7A;&#xF63;-&#xF58;-&#xF62;&#xF74;-&#xF66;&#xF90;&#xFB1;&#xF7C;&#xF44;&#xF66;-&#xF64;&#xF72;&#xF42;</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="400"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Look at the miserable state of your own pain, and try to guess from it</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="401"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">How all your mothers, pitiful living beings, must suffer the same;</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="402"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Develop in this way a state of genuine compassion,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="403"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And practice constantly giving and taking, alternating the two.</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">  </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="404"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="405"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">	/&#xF58;-&#xF51;&#xF42;-&#xF66;&#xF90;&#xFB1;&#xF7A;-&#xF60;&#xF46;&#xF72;-&#xF61;&#xF72;-&#xF60;&#xF55;&#xFB2;&#xF74;&#xF63;-&#xF60;&#xF41;&#xF7C;&#xF62;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="406"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF62;&#xF9F;&#xF7C;&#xF42;-&#xF54;&#xF66;-&#xF56;&#xF4F;&#xF42;&#xF66;-&#xF59;&#xF58;-&#xF63;&#xF66;-&#xF42;&#xF5E;&#xF53;-&#xF54;&#xF60;&#xF72;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="407"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF42;&#xFB2;&#xF74;&#xF56;-&#xF62;&#xF92;&#xFB1;&#xF74;-&#xF62;&#xFA1;&#xF74;&#xF63;-&#xF59;&#xF58;-&#xF61;&#xF44;-&#xF58;&#xF7A;&#xF51;-&#xF54;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="408"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF58;-&#xF60;&#xF47;&#xF72;&#xF42;&#xF66;-&#xF46;&#xF7C;&#xF66;-&#xF49;&#xF72;&#xF51;-&#xF44;&#xF44;-&#xF66;&#xF90;&#xFB1;&#xF74;&#xF62;-&#xF5E;&#xF7C;&#xF42;</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="409"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">This huge machine that runs our birth and death as impure things</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="410"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Is something that's created by our projections, and nothing more:</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="411"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">It has in it not a single atom of existing some other way&#x2014;</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="412"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Throw yourself then into the realm of the real, pure fearlessness.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="413"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="414"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">***************</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="415"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="416"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">He also gives compassion as a reason to practice giving and taking:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="417"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="418"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF42;&#xF5E;&#xF53;-&#xF61;&#xF44;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF61;&#xF7C;&#xF53;-&#xF4F;&#xF53;-&#xF53;&#xF72;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="419"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF66;&#xF90;&#xFB1;&#xF7C;-&#xF56;&#xF66;-&#xF51;&#xFB2;&#xF7A;&#xF42;&#xF66;-&#xF54;-&#xF66;&#xF7A;&#xF63;-&#xF56;&#xF62;-&#xF56;&#xFB1;&#xF7A;&#xF51;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="420"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF60;&#xF41;&#xF7C;&#xF62;-&#xF56;-&#xF54;-&#xF63;-&#xF66;&#xF99;&#xF72;&#xF44;-&#xF62;&#xF97;&#xF7A;-&#xF66;&#xF90;&#xFB1;&#xF7A;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="421"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF66;&#xFA1;&#xF72;&#xF42;-&#xF63;-&#xF60;&#xF5B;&#xF7A;&#xF58;-&#xF5E;&#xF72;&#xF44;-&#xF51;&#xF42;&#xF7A;-&#xF63;-&#xF51;&#xF42;&#xF60;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="422"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF5E;&#xF7A;&#xF66;-&#xF42;&#xF66;&#xF74;&#xF44;&#xF66;-&#xF54;-&#xF63;&#xF9F;&#xF62;/ &#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF51;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF51;&#xF44;./ &#xF60;&#xF41;&#xF7C;&#xF62;-&#xF56;-&#xF54;-&#xF63;-[t]&#xF66;&#xF99;&#xF72;&#xF44;-&#xF62;&#xF97;&#xF7A;-&#xF51;&#xF44;./ &#xF56;&#xF66;&#xF58;-&#xF54;-&#xF51;&#xF7A;&#xF66;-&#xF42;&#xFB2;&#xF53;-&#xF53;&#xF66;-&#xF56;&#xF66;&#xFB3;&#xF44;&#xF66;-&#xF54;&#xF60;&#xF72;-&#xF5A;&#xF7C;&#xF42;&#xF66;-&#xF42;&#xF66;&#xF7C;&#xF42;-[t]&#xF66;&#xF92;&#xFB2;&#xF72;&#xF56;-&#xF66;&#xFA6;&#xFB1;&#xF7C;&#xF44;-&#xF42;&#xF72;-&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF63;-&#xF60;&#xF56;&#xF51;-&#xF54;&#xF62;-&#xF58;&#xF5B;&#xF7C;&#xF51;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="423"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Remember the verse that goes,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="424"/>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="425"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Suffering moreover does have certain benefits:</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="426"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">It gives you sadness that wipes away your arrogance,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="427"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And teaches you compassion for those caught in the circle;</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="428"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">You start to avoid bad deeds, and learn to take joy in good.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="429"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="430"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">The point here is that you should learn to take on suffering happily, and gain compassion for those who are caught in the cycle of suffering.  </c><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And with this motivation you should make great efforts in the practice of giving and taking, so that you can amass great positive spiritual energy, and purify yourself of spiritual obstacles.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="431"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="432"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">***************</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="433"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="434"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">The Mongol Buddhist master named Namka Pel, in his </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Mental Training of the Rays of the Sun, </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">repeats the connection between giving and taking, and love and compassion; he then relates the importance of considering the benefits of each:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="435"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="436"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF51;&#xF44;-&#xF54;&#xF7C;-&#xF63;-&#xF42;&#xF49;&#xF72;&#xF66;/ &#xF56;&#xFB1;&#xF58;&#xF66;-&#xF54;-&#xF56;&#xF66;&#xF92;&#xF7C;&#xF58;-&#xF54;-&#xF51;&#xF44;./ &#xF66;&#xF99;&#xF72;&#xF44;-&#xF62;&#xF97;&#xF7A;-&#xF56;&#xF66;&#xF92;&#xF7C;&#xF58;-&#xF54;&#xF60;&#xF7C;/ [s]/&#xF51;&#xF44;-&#xF54;&#xF7C;-&#xF53;&#xF72;/ &#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF42;&#xF49;&#xF72;&#xF66;-&#xF54;&#xF7C;-&#xF66;&#xFA4;&#xF7A;&#xF63;-&#xF58;&#xF62;-&#xF66;&#xFA6;&#xFB1;&#xF44;./ /&#xF5E;&#xF7A;&#xF66;-&#xF42;&#xF66;&#xF74;&#xF44;&#xF66;-&#xF4F;&#xF7A;/ [s]&#xF63;&#xF74;&#xF66;-&#xF63;&#xF7C;&#xF44;&#xF66;-&#xF66;&#xFA4;&#xFB1;&#xF7C;&#xF51;-&#xF51;&#xF42;&#xF7A;-&#xF62;&#xFA9;-&#xF42;&#xF5E;&#xF53;-&#xF63;-&#xF56;&#xF4F;&#xF44;-&#xF56;&#xF60;&#xF72;-&#xF66;&#xF92;&#xF7C;-&#xF53;&#xF66;-&#xF56;&#xFB1;&#xF58;&#xF66;-&#xF54;-[t]&#xF56;&#xF66;&#xF92;&#xF7C;&#xF58;-&#xF54;-&#xF63;/ &#xF50;&#xF7C;&#xF42;-&#xF58;&#xF62;-&#xF55;&#xF53;-&#xF61;&#xF7C;&#xF53;-&#xF56;&#xF66;&#xF58;&#xF66;-&#xF53;-&#xF66;&#xFA4;&#xFB2;&#xF7C;-&#xF56;- &#xFB2;&#xF42;&#xF66;-&#xF51;&#xFB2;&#xF42;-[t]&#xF66;&#xF90;&#xFB1;&#xF7A;-&#xF56;&#xF62;-&#xF60;&#xF42;&#xFB1; &#xF62;-&#xF56;&#xF66;-&#xF55;&#xF53;-&#xF61;&#xF7C;&#xF53;-&#xF53;&#xF72;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="437"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">The first point, [how to undertake the actual practice,] has two sections: meditating on love, and meditating on compassion.  </c><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">The first is described in the lines that talk about "practicing giving and taking alternately"&#x2014;which is to say, we should meditate upon love by giving away our bodies, our possessions, and our stores of good karma to other people.</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">  Our joy in doing so will be much more powerful if first of all we think carefully upon the benefits of love, and so here is a description of these benefits. </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="438"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"><pbr/></c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="439"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="440"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="441"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="442"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="443"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="444"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="445"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">Contemplation Three</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="446"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">On the benefits of meditating upon love and compassion</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="447"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="448"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Namka Pel continues his text with the benefits of meditating upon love and compassion, in the context of practicing the meditation on giving and taking:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="449"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="450"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF4F;&#xF72;&#xF44;-&#xF44;&#xF7A;-&#xF60;&#xF5B;&#xF72;&#xF53;-&#xF62;&#xF92;&#xFB1;&#xF63;-&#xF54;&#xF7C;-&#xF63;&#xF66;/ &#xF56;&#xFB1;&#xF7A;-&#xF56;-&#xF41;&#xFB2;&#xF42;-&#xF41;&#xFB2;&#xF72;&#xF42;-&#xF51;&#xF40;&#xFB2;&#xF72;&#xF42;&#xF66;-&#xF54;&#xF60;&#xF72;-&#xF5E;&#xF72;&#xF44;-[t]&#xF51;&#xF42;-&#xF53;/ /&#xF58;&#xF46;&#xF7C;&#xF51;-&#xF54;-&#xF62;&#xFA3;&#xF58;-&#xF58;&#xF44;-&#xF51;&#xF54;&#xF42;-&#xF58;&#xF7A;&#xF51;-&#xF47;&#xF72;-&#xF66;&#xF99;&#xF7A;&#xF51;-&#xF54;/ /&#xF66;&#xF90;&#xFB1;&#xF7A;-&#xF58;&#xF46;&#xF7C;&#xF42;-[t]&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF63;-&#xF51;&#xF7A;-&#xF61;&#xF72;&#xF66;-&#xF62;&#xF9F;&#xF42;-&#xF58;&#xF46;&#xF7C;&#xF51;-&#xF54;&#xF66;/ /&#xF56;&#xFB1;&#xF58;&#xF66;-&#xF54;&#xF60;&#xF72;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF42;&#xFB2;&#xF44;&#xF66;-&#xF51;&#xF44;-[t]&#xF46;&#xF62;-&#xF58;&#xF72;-&#xF55;&#xF7C;&#xF51;/ /&#xF45;&#xF7A;&#xF66;-&#xF51;&#xF44;&#xF7C;&#xF66;-&#xF54;&#xF7C;-&#xF62;&#xF92;&#xFB1;-&#xF46;&#xF7A;-&#xF56;&#xF66;-&#xF61;&#xF74;&#xF63;-&#xF58;&#xF50;&#xF62;-&#xF50;&#xF74;&#xF42;-&#xF54;&#xF60;&#xF72;-[t]&#xF5E;&#xF72;&#xF44;-&#xF63;/ &#xF88;&#xFB2;&#xF66;-&#xF62;&#xF9F;&#xF42;-&#xF62;&#xFB1;-&#xF58;&#xF46;&#xF7C;&#xF51;-&#xF54;-&#xF56;&#xFB1;&#xF7A;&#xF51;-&#xF54;-&#xF63;&#xF66;-&#xF56;&#xF66;&#xF7C;&#xF51;-&#xF53;&#xF58;&#xF66;-&#xF46;&#xF7A;&#xF66;-&#xF46;&#xF7A;-[t]&#xF56;&#xF62;-&#xF42;&#xF66;&#xF74;&#xF44;&#xF66;-..</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="451"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">The </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">King of Concentration</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"> says,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="452"/>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="453"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Suppose you travelled to a galaxy crowded with billions on billions</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="454"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Of pure paradises, and took an infinite number of different offerings</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="455"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And sat forever presenting them always to those highest of beings;</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="456"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Never could it equal a fraction of the good of thoughts of love.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="457"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="458"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">The point here is that the state of mind called "love" represents much greater good karma than the act of taking vast material wealth and making offerings on a constant basis to the most infinitely holy beings who could ever receive them . . .</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="459"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="460"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">**************</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="461"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="462"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">In his </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Sun for Helping Others,</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic"> the first Changkya Rinpoche quotes the benefits of love mentioned by the realized being Nagarjuna himself:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="463"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="464"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF60;&#xF51;&#xF72;-&#xF63;-&#xF56;&#xFB1;&#xF58;&#xF66;-&#xF54;-&#xF56;&#xF66;&#xF92;&#xF7C;&#xF58;-&#xF54;&#xF60;&#xF72;-&#xF55;&#xF53;-&#xF61;&#xF7C;&#xF53;-&#xF53;&#xF72;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="465"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF62;&#xF72;&#xF53;-&#xF54;&#xF7C;-&#xF46;&#xF7A;-&#xF61;&#xF72;-&#xF60;&#xF55;&#xFB2;&#xF7A;&#xF44;-&#xF56;&#xF62;-&#xF60;&#xF51;&#xF72;-&#xF66;&#xF90;&#xF51;-&#xF42;&#xF66;&#xF74;&#xF44;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="466"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Here then are the benefits of meditating on love;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="467"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Remember now the words in the </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">String of Jewels</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"> that go this way:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="468"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="469"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF62;&#xFAB;&#xF72;&#xF60;&#xF74;-&#xF5A;&#xF7C;&#xF66;-&#xF66;&#xF74;&#xF58;-&#xF56;&#xF62;&#xF92;&#xFB1;&#xF60;&#xF72;-&#xF41;-&#xF5F;&#xF66;-&#xF51;&#xF42;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="470"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[t]/&#xF49;&#xF72;&#xF53;-&#xF62;&#xF7A;-&#xF88;&#xFB2;&#xF66;-&#xF42;&#xF66;&#xF74;&#xF58;-&#xF66;&#xFA6;&#xFB1;&#xF72;&#xF53;-&#xF54;&#xF66;-&#xF40;&#xFB1;&#xF44;./</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="471"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF56;&#xFB1;&#xF58;&#xF66;-&#xF54;-&#xF61;&#xF74;&#xF51;-&#xF59;&#xF58;-&#xF50;&#xF44;-&#xF42;&#xF45;&#xF72;&#xF42;-&#xF42;&#xF72;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="472"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[t]/&#xF56;&#xF66;&#xF7C;&#xF51;-&#xF53;&#xF58;&#xF66;-&#xF51;&#xF42;-&#xF42;&#xF72;-&#xF46;&#xF62;-&#xF58;&#xF72;-&#xF55;&#xF7C;&#xF51;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="473"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Suppose that every single day you three times went and made</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="474"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Some offering of delectable food in three hundred silver cups;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="475"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">The merit that you performed this way would never equal even</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="476"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">A fraction of the good you get from a moment, an instant, of love.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="477"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="478"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF63;&#xFB7;-&#xF58;&#xF72;-&#xF56;&#xFB1;&#xF58;&#xF66;-&#xF54;&#xF62;-&#xF60;&#xF42;&#xFB1; &#xF62;-&#xF56;-&#xF51;&#xF44;./</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="479"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF51;&#xF7A;-&#xF51;&#xF42;-&#xF40;&#xFB1;&#xF44;-&#xF53;&#xF72;-&#xF66;&#xFB2;&#xF74;&#xF44;-&#xF56;-&#xF51;&#xF44;./</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="480"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF61;&#xF72;&#xF51;-&#xF56;&#xF51;&#xF7A;-&#xF56;-&#xF51;&#xF44;-&#xF56;&#xF51;&#xF7A;-&#xF58;&#xF44;-&#xF51;&#xF44;./</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="481"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF88;&#xFB2;&#xF42;-&#xF51;&#xF44;-&#xF58;&#xF5A;&#xF7C;&#xF53;-&#xF42;&#xFB1;&#xF72;&#xF66;-&#xF42;&#xF53;&#xF7C;&#xF51;-&#xF58;&#xF7A;&#xF51;-&#xF51;&#xF44;./</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="482"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">The gods above and men as well all take you as their friend;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="483"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And so too do they undertake forever to protect you;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="484"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Your mind is always contented and you've pleasures of many kinds,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="485"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Never can you ever be harmed by poisons or any weapon. </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="486"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="487"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF60;&#xF56;&#xF51;-&#xF54;-&#xF58;&#xF7A;&#xF51;-&#xF54;&#xF62;-&#xF51;&#xF7C;&#xF53;-&#xF60;&#xF50;&#xF7C;&#xF56;-&#xF51;&#xF44;./</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="488"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF5A;&#xF44;&#xF66;-&#xF54;&#xF60;&#xF72;-&#xF60;&#xF47;&#xF72;&#xF42;-&#xF62;&#xF9F;&#xF7A;&#xF53;-&#xF66;&#xF90;&#xFB1;&#xF7A;-&#xF60;&#xF42;&#xFB1; &#xF62;-&#xF4F;&#xF7A;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="489"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF42;&#xF63;-&#xF4F;&#xF7A;-&#xF42;&#xFB2;&#xF7C;&#xF63;-&#xF56;&#xF62;-&#xF58;-&#xF42;&#xFB1; &#xF62;-&#xF40;&#xFB1;&#xF44;./</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="490"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF56;&#xFB1;&#xF58;&#xF66;-&#xF46;&#xF7C;&#xF66;-&#xF61;&#xF7C;&#xF53;-&#xF4F;&#xF53;-&#xF56;&#xF62;&#xF92;&#xFB1;&#xF51;-&#xF60;&#xF50;&#xF7C;&#xF56;-&#xF54;&#xF7C;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="491"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Everything you undertake you succeed at without any effort,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="492"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And afterwards you take your birth in the World of the Pure.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="493"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Even should you fail to achieve your liberation,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="494"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Still you find the eight fine qualities of the Loving One.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="495"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="496"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF5E;&#xF7A;&#xF66;-&#xF42;&#xF66;&#xF74;&#xF44;&#xF66;-&#xF44;&#xF7A;&#xF66;-&#xF53;-&#xF62;&#xF44;-&#xF49;&#xF72;&#xF51;-&#xF40;&#xFB1;&#xF72;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="497"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF63;&#xF74;&#xF66;-&#xF51;&#xF44;-&#xF63;&#xF7C;&#xF44;&#xF66;-&#xF66;&#xFA4;&#xFB1;&#xF7C;&#xF51;-&#xF51;&#xF42;&#xF7A;-&#xF62;&#xFA9;-&#xF62;&#xFA3;&#xF58;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="498"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-&#xF42;&#xFB2;&#xF53;-&#xF63;-&#xF63;&#xF7A;&#xF42;&#xF66;-&#xF56;&#xF4F;&#xF44;-&#xF56;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="499"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF51;&#xF7A;-&#xF51;&#xF42;-&#xF55;&#xF53;-&#xF56;&#xF51;&#xF7A;-&#xF58;-&#xF63;&#xF74;&#xF66;-&#xF51;&#xF44;./</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="500"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF63;&#xF94;&#xF53;-&#xF54;&#xF62;-&#xF42;&#xFB1; &#xF62;-&#xF45;&#xF72;&#xF42;-&#xF66;&#xF99;&#xF58;-&#xF54;-&#xF61;&#xF72;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="501"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF56;&#xFB1;&#xF58;&#xF66;-&#xF54;-&#xF46;&#xF7A;&#xF53;-&#xF54;&#xF7C;-&#xF56;&#xF66;&#xF92;&#xF7C;&#xF58;-&#xF54;&#xF62;-&#xF56;&#xFB1;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="502"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Once you've come to see the truth of all these words, then go</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="503"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And give away for every living being your very body,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="504"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">All of your possessions, and what virtue you may have;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="505"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Go and meditate upon the state of greatest love,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="506"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">On thoughts wherein you wish that all of them may always have</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="507"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Every kind of happiness and help that there could be.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="508"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="509"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"><pbr/></c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="510"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="511"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="512"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="513"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="514"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="515"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="516"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">Contemplation Four</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="517"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">The original text on the practice of giving and taking,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="518"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">from the </c><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:italic">Offering to Lamas (Lama Chupa)</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="519"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">of the First Panchen Lama</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="520"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="521"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Perhaps the most famous source for the practice of giving and taking as it is currently followed is the </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Offering to Lamas (Lama Chupa) </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">of the First Panchen Lama.  There are two important verses for the practice; we present them here in bold with some of the other verses near them, in order to show the context.  The first of the two verses  is considered so vital that in modern Tibetan monasteries it is repeated three times whenever the </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Offering</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic"> is recited in the assembly of monks. </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="522"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="523"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF55;&#xFB2;-&#xF58;&#xF7C;-&#xF59;&#xF58;-&#xF61;&#xF44;-&#xF58;&#xF72;-&#xF60;&#xF51;&#xF7C;&#xF51;-&#xF45;&#xF72;&#xF44;./</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="524"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF56;&#xF51;&#xF7A;-&#xF63;-&#xF53;&#xF58;-&#xF61;&#xF44;-&#xF46;&#xF7C;&#xF42;-&#xF64;&#xF7A;&#xF66;-&#xF58;&#xF7A;&#xF51;-&#xF54;&#xF62;-&#xF53;&#xF72;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="525"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF56;&#xF51;&#xF42;-&#xF51;&#xF44;-&#xF42;&#xF5E;&#xF53;-&#xF63;-&#xF41;&#xFB1;&#xF51;-&#xF54;&#xF62;-&#xF61;&#xF7C;&#xF51;-&#xF58;&#xF72;&#xF53;-&#xF5E;&#xF7A;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="526"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF42;&#xF5E;&#xF53;-&#xF56;&#xF51;&#xF7A;-&#xF51;&#xF42;&#xF60;-&#xF56;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-&#xF54;&#xF62;-&#xF56;&#xFB1;&#xF72;&#xF53;-&#xF42;&#xFB1;&#xF72;&#xF66;-&#xF62;&#xFB3;&#xF7C;&#xF56;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="527"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">There is no one who desires even the slightest kind of suffering;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="528"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">There is no one who ever feels they have enough of happiness.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="529"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Please give me Your blessing to tell myself then that there is no difference</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="530"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Between myself and others: teach me joy in their happiness.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="531"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="532"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF62;&#xF44;-&#xF49;&#xF72;&#xF51;-&#xF42;&#xF45;&#xF7A;&#xF66;-&#xF54;&#xF62;-&#xF60;&#xF5B;&#xF72;&#xF53;-&#xF54;&#xF60;&#xF72;-&#xF42;&#xF45;&#xF7C;&#xF44;-&#xF53;&#xF51;-&#xF60;&#xF51;&#xF72;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="533"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF58;&#xF72;-&#xF60;&#xF51;&#xF7C;&#xF51;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-&#xF54;&#xF60;&#xF72;-&#xF62;&#xF92;&#xFB1;&#xF74;&#xF62;-&#xF58;&#xF50;&#xF7C;&#xF44;-&#xF53;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="534"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF63;&#xF7A;-&#xF63;&#xF53;-&#xF56;&#xF51;&#xF66;-&#xF63;-&#xF60;&#xF41;&#xF7C;&#xF53;-&#xF88;&#xFB2;-&#xF56;&#xF5F;&#xF74;&#xF44;-&#xF56;&#xFB1;&#xF66;-&#xF4F;&#xF7A;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="535"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF56;&#xF51;&#xF42;-&#xF60;&#xF5B;&#xF72;&#xF53;-&#xF42;&#xF51;&#xF7C;&#xF53;-&#xF46;&#xF7A;&#xF53;-&#xF60;&#xF47;&#xF7C;&#xF58;&#xF66;-&#xF54;&#xF62;-&#xF56;&#xFB1;&#xF72;&#xF53;-&#xF42;&#xFB1;&#xF72;&#xF66;-&#xF62;&#xFB3;&#xF7C;&#xF56;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="536"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Help me to see that this chronic disease of cherishing only myself</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="537"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Is the very cause that brings me all the suffering I wish to avoid;</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="538"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Please give me Your blessing to lay the blame properly, and then learn to despise,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="539"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And finally smash this greatest demon, holding that things have some nature.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="540"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="541"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF58;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF42;&#xF45;&#xF7A;&#xF66;-&#xF56;&#xF5F;&#xF74;&#xF44;-&#xF56;&#xF51;&#xF7A;-&#xF63;-&#xF60;&#xF42;&#xF7C;&#xF51;-&#xF54;&#xF60;&#xF72;-&#xF56;&#xFB3;&#xF7C;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="542"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF58;&#xF50;&#xF60;-&#xF61;&#xF66;-&#xF61;&#xF7C;&#xF53;-&#xF4F;&#xF53;-&#xF60;&#xF56;&#xFB1; &#xF44;-&#xF56;&#xF60;&#xF72;-&#xF66;&#xF92;&#xF7C;&#xF62;-&#xF58;&#xF50;&#xF7C;&#xF44;-&#xF53;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="543"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF60;&#xF42;&#xFB2;&#xF7C;-&#xF56;-&#xF60;&#xF51;&#xF72;-&#xF51;&#xF42;-&#xF56;&#xF51;&#xF42;-&#xF42;&#xF72;-&#xF51;&#xF42;&#xFB2;&#xF62;-&#xF63;&#xF44;&#xF66;-&#xF40;&#xFB1;&#xF44;./</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="544"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF66;&#xFB2;&#xF7C;&#xF42;-&#xF63;&#xF66;-&#xF42;&#xF45;&#xF7A;&#xF66;-&#xF54;&#xF62;-&#xF60;&#xF5B;&#xF72;&#xF53;-&#xF54;&#xF62;-&#xF56;&#xFB1;&#xF72;&#xF53;-&#xF42;&#xFB1;&#xF72;&#xF66;-&#xF62;&#xFB3;&#xF7C;&#xF56;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="545"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Help me to see that cherishing mothers, the thought to bring them to happiness,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="546"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Is the doorway for me to develop within me high qualities without limit;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="547"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Please give me Your blessing to cherish all beings more than my life itself,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="548"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Even should every one of them come as my enemy to attack me.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="549"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="550"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF58;&#xF51;&#xF7C;&#xF62;-&#xF53;-&#xF56;&#xFB1;&#xF72;&#xF66;-&#xF54;-&#xF62;&#xF44;-&#xF51;&#xF7C;&#xF53;-&#xF41;&#xF7C;-&#xF53;-&#xF51;&#xF44;./</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="551"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF50;&#xF74;&#xF56;-&#xF51;&#xF56;&#xF44;-&#xF42;&#xF5E;&#xF53;-&#xF51;&#xF7C;&#xF53;-&#xF60;&#xF56;&#xF60;-&#xF5E;&#xF72;&#xF42;-&#xF58;&#xF5B;&#xF51;-&#xF54;-&#xF61;&#xF72;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="552"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF66;&#xF90;&#xFB1;&#xF7C;&#xF53;-&#xF51;&#xF44;-&#xF61;&#xF7C;&#xF53;-&#xF4F;&#xF53;-&#xF51;&#xF56;&#xFB1;&#xF7A;-&#xF56;-&#xF62;&#xF9F;&#xF7C;&#xF42;&#xF66;-&#xF54;&#xF60;&#xF72;-&#xF56;&#xFB3;&#xF7C;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="553"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF56;&#xF51;&#xF42;-&#xF42;&#xF5E;&#xF53;-&#xF58;&#xF49;&#xF58;-&#xF56;&#xF62;&#xF97;&#xF7A;-&#xF85;&#xFB2;&#xF66;-&#xF54;&#xF62;-&#xF56;&#xFB1;&#xF72;&#xF53;-&#xF42;&#xFB1;&#xF72;&#xF66;-&#xF62;&#xFB3;&#xF7C;&#xF56;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="554"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">To put it briefly, children seek only to do what helps themselves,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="555"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">While the Able Lords instead act only to do what is good for others;</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="556"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Please give me Your blessing to see the problems and benefits that come from each one,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="557"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And thus learn to see myself and others as equal, and then exchange us.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="558"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="559"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF62;&#xF44;-&#xF49;&#xF72;&#xF51;-&#xF42;&#xF45;&#xF7A;&#xF66;-&#xF60;&#xF5B;&#xF72;&#xF53;-&#xF62;&#xF92;&#xF74;&#xF51;-&#xF54;-&#xF42;&#xFB2;&#xF53;-&#xF42;&#xFB1;&#xF72;-&#xF66;&#xF92;&#xF7C;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="560"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF58;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF42;&#xF45;&#xF7A;&#xF66;-&#xF60;&#xF5B;&#xF72;&#xF53;-&#xF61;&#xF7C;&#xF53;-&#xF4F;&#xF53;-&#xF42;&#xFB2;&#xF53;-&#xF42;&#xFB1;&#xF72;-&#xF42;&#xF5E;&#xF72;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="561"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF51;&#xF7A;-&#xF55;&#xFB1;&#xF72;&#xF62;-&#xF56;&#xF51;&#xF42;-&#xF42;&#xF5E;&#xF53;-&#xF56;&#xF62;&#xF97;&#xF7A;-&#xF56;&#xF60;&#xF72;-&#xF62;&#xFA3;&#xF63;-&#xF60;&#xF56;&#xFB1;&#xF7C;&#xF62;-&#xF63;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="562"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF49;&#xF58;&#xF66;-&#xF63;&#xF7A;&#xF53;-&#xF66;&#xF99;&#xF72;&#xF44;-&#xF54;&#xF7C;&#xF62;-&#xF56;&#xFB1;&#xF7A;&#xF51;-&#xF54;&#xF62;-&#xF56;&#xFB1;&#xF72;&#xF53;-&#xF42;&#xFB1;&#xF72;&#xF66;-&#xF62;&#xFB3;&#xF7C;&#xF56;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="563"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Cherishing myself alone is the door to every trouble,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="564"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Cherishing my mothers the door to every spiritual quality;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="565"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Please give me Your blessing then to make the practice of exchanging</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="566"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Myself and others the very heart of all my spiritual life.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="567"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="568"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF51;&#xF7A;&#xF66;-&#xF53;-&#xF62;&#xF97;&#xF7A;-&#xF56;&#xF59; &#xF53;-&#xF56;&#xFB3;-&#xF58;-&#xF50;&#xF74;&#xF42;&#xF66;-&#xF62;&#xF97;&#xF7A;-&#xF45;&#xF53;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="569"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s][s]</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic"> dena jetsun lama thukje chen,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="570"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF58;-&#xF42;&#xFB1; &#xF62;-&#xF60;&#xF42;&#xFB2;&#xF7C;-&#xF56;&#xF60;&#xF72;-&#xF66;&#xFA1;&#xF72;&#xF42;-&#xF66;&#xF92;&#xFB2;&#xF72;&#xF56;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF42;&#xFB2;&#xF53;/[s]</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="571"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic"> magyur droway dikdrip dukngel kun,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="572"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF58;-&#xF63;&#xF74;&#xF66;-&#xF51;-&#xF63;&#xF9F;-&#xF56;&#xF51;&#xF42;-&#xF63;-&#xF66;&#xFA8;&#xF72;&#xF53;-&#xF54;-&#xF51;&#xF44;./</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="573"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic"> malu data dakla minpa dang,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="574"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF56;&#xF51;&#xF42;-&#xF42;&#xF72;-&#xF56;&#xF51;&#xF7A;-&#xF51;&#xF42;&#xF7A;-&#xF42;&#xF5E;&#xF53;-&#xF63;-&#xF56;&#xF4F;&#xF44;-&#xF56;-&#xF61;&#xF72;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="575"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"> </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">dakki dege shenla tangwa yi,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="576"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF60;&#xF42;&#xFB2;&#xF7C;-&#xF42;&#xFB2;&#xF53;-&#xF56;&#xF51;&#xF7A;-&#xF51;&#xF44;-&#xF63;&#xF94;&#xF53;-&#xF54;&#xF62;-&#xF56;&#xFB1;&#xF72;&#xF53;-&#xF42;&#xFB1;&#xF72;&#xF66;-&#xF62;&#xFB3;&#xF7C;&#xF56;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="577"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic"> drokun dedang denpar jin gyi lob.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="578"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="579"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And then, my high, holy Lama, Lord of All Compassion,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="580"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Give me your blessing please so all the pain of mother beings,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="581"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Their bad deeds and their obstacles, may ripen now on me,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="582"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And so I may now give them all my good and happiness,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="583"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And in this way assure that each one has all happiness.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="584"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="585"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF66;&#xFA3;&#xF7C;&#xF51;-&#xF56;&#xF45; &#xF51;-&#xF66;&#xFA1;&#xF72;&#xF42;-&#xF54;&#xF60;&#xF72;-&#xF60;&#xF56;&#xFB2;&#xF66;-&#xF56;&#xF74;&#xF66;-&#xF61;&#xF7C;&#xF44;&#xF66;-&#xF42;&#xF44;-&#xF66;&#xF9F;&#xF7A;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="586"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF58;&#xF72;-&#xF60;&#xF51;&#xF7C;&#xF51;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF46;&#xF62;-&#xF63;&#xF9F;&#xF62;-&#xF56;&#xF56;&#xF66;-&#xF42;&#xFB1; &#xF62;-&#xF40;&#xFB1;&#xF44;./</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="587"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF63;&#xF66;-&#xF44;&#xF53;-&#xF60;&#xF56;&#xFB2;&#xF66;-&#xF56;&#xF74;-&#xF5F;&#xF51;-&#xF54;&#xF60;&#xF72;-&#xF62;&#xF92;&#xFB1;&#xF74;&#xF62;-&#xF58;&#xF50;&#xF7C;&#xF44;-&#xF53;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="588"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF62;&#xF90;&#xFB1;&#xF7A;&#xF53;-&#xF44;&#xF53;-&#xF63;&#xF58;-&#xF88;&#xFB2;-&#xF63;&#xF7C;&#xF44;&#xF66;-&#xF54;&#xF62;-&#xF56;&#xFB1;&#xF72;&#xF53;-&#xF42;&#xFB1;&#xF72;&#xF66;-&#xF62;&#xFB3;&#xF7C;&#xF56;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="589"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">If the world around me and those upon it overflow with the fruits of the wrong</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="590"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">I have done before, and a shower of pain, the things I hate, falls on me,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="591"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Give me Your blessing to see it still as finishing all the results</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="592"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Of my own bad deeds, to turn bad circumstances into the path.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="593"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="594"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF58;&#xF51;&#xF7C;&#xF62;-&#xF53;-&#xF56;&#xF5F;&#xF44;-&#xF44;&#xF53;-&#xF66;&#xFA3;&#xF44;-&#xF56;-&#xF45;&#xF72;-&#xF64;&#xF62;-&#xF61;&#xF44;./</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="595"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF46;&#xF7C;&#xF66;-&#xF42;&#xFB2;&#xF53;-&#xF66;&#xF99;&#xF72;&#xF44;-&#xF54;&#xF7C;-&#xF66;&#xF9F;&#xF7C;&#xF56;&#xF66;-&#xF63;&#xF94;&#xF60;&#xF72;-&#xF49;&#xF58;&#xF66;-&#xF63;&#xF7A;&#xF53;-&#xF42;&#xFB1;&#xF72;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="596"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF56;&#xFB1;&#xF44;-&#xF46; &#xF56;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF42;&#xF49;&#xF72;&#xF66;-&#xF60;&#xF55;&#xF7A;&#xF63;-&#xF56;&#xF60;&#xF72;-&#xF63;&#xF58;-&#xF56;&#xF66;&#xF92;&#xFB1;&#xF74;&#xF62;-&#xF4F;&#xF7A;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="597"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF61;&#xF72;&#xF51;-&#xF56;&#xF51;&#xF7A;-&#xF60;&#xF56;&#xF60;-&#xF5E;&#xF72;&#xF42;-&#xF56;&#xF66;&#xF92;&#xF7C;&#xF58;-&#xF54;&#xF62;-&#xF56;&#xFB1;&#xF72;&#xF53;-&#xF42;&#xFB1;&#xF72;&#xF66;-&#xF62;&#xFB3;&#xF7C;&#xF56;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="598"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Help me then, in brief, to take whatever appears in my life,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="599"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">The good or bad, and use the practice of five different powers</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="600"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">To turn it into a path for increasing the two forms of the Wish</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="601"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">For enlightenment: give me Your blessing then to feel nothing but joy.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="602"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="603"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF66;&#xFA6;&#xFB1;&#xF7C;&#xF62;-&#xF56;-&#xF56;&#xF5E;&#xF72;-&#xF51;&#xF44;-&#xF63;&#xF94;&#xF53;-&#xF54;&#xF60;&#xF72;-&#xF50;&#xF56;&#xF66;-&#xF58;&#xF41;&#xF66;-&#xF40;&#xFB1;&#xF72;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="604"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF60;&#xF55;&#xFB2;&#xF63;-&#xF63;-&#xF42;&#xF44;-&#xF50;&#xF74;&#xF42;-&#xF66;&#xF92;&#xF7C;&#xF58;-&#xF63;-&#xF66;&#xFA6;&#xFB1;&#xF7C;&#xF62;-&#xF56;-&#xF51;&#xF44;./</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="605"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF56;&#xFB3;&#xF7C;-&#xF66;&#xFA6;&#xFB1;&#xF7C;&#xF44;-&#xF51;&#xF58;-&#xF5A;&#xF72;&#xF42;-&#xF56;&#xF66;&#xFB3;&#xF56;-&#xF56;&#xFB1;&#xF60;&#xF72;-&#xF49;&#xF58;&#xF66;-&#xF63;&#xF7A;&#xF53;-&#xF42;&#xFB1;&#xF72;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="606"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]/&#xF51;&#xF63;-&#xF60;&#xF56;&#xFB1;&#xF7C;&#xF62;-&#xF51;&#xF7C;&#xF53;-&#xF46;&#xF7A;&#xF53;-&#xF56;&#xFB1;&#xF7A;&#xF51;-&#xF54;&#xF62;-&#xF56;&#xFB1;&#xF72;&#xF53;-&#xF42;&#xFB1;&#xF72;&#xF66;-&#xF62;&#xFB3;&#xF7C;&#xF56;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="607"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Help me to find the skillful means with the four applications</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="608"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">To make on the spot whatever happens to me a part of my practice;</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="609"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Please give me Your blessing to follow the trainings of the mind, and my pledges,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="610"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And the various rules of life to bring my leisure and fortune great meaning.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="611"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="612"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">The four applications are methods to apply the problems that befall us to our practice, as follows: using them to fill ourselves with the power of good deeds; to purify ourselves of the power of bad deeds; as an "offering to demons" in the sense of thanking all who have done us harm, and who have thus inspired us to practice more seriously; and for presenting gifts to the protectors of the Dharma&#x2014;then asking them to do their work successfully.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="613"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="614"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF62;&#xFB3;&#xF74;&#xF44;-&#xF63;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7C;&#xF53;-&#xF54;&#xF60;&#xF72;-&#xF60;&#xF55;&#xFB2;&#xF74;&#xF63;-&#xF60;&#xF51;&#xF7A;&#xF42;&#xF66;-&#xF45;&#xF53;/ [s]/&#xF56;&#xFB1;&#xF58;&#xF66;-&#xF51;&#xF44;-&#xF66;&#xF99;&#xF72;&#xF44;-&#xF62;&#xF97;&#xF7A;-&#xF63;&#xFB7;&#xF42;-&#xF54;&#xF60;&#xF72;-&#xF56;&#xF66;&#xF58;-&#xF54;-&#xF61;&#xF72;&#xF66;/ [s]/&#xF60;&#xF42;&#xFB2;&#xF7C;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF66;&#xFB2;&#xF72;&#xF51;-&#xF58;&#xF5A;&#xF7C;-&#xF46;&#xF7A;-&#xF63;&#xF66;-&#xF66;&#xF92;&#xFB2;&#xF7C;&#xF63;-&#xF56;&#xF60;&#xF72;-&#xF55;&#xFB1;&#xF72;&#xF62;/ [s]/&#xF56;&#xFB1;&#xF44;-&#xF46; &#xF56;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF49;&#xF72;&#xF51;-&#xF60;&#xF56;&#xFB1;&#xF7C;&#xF44;&#xF66;-&#xF54;&#xF62;-&#xF56;&#xFB1;&#xF72;&#xF53;-&#xF42;&#xFB1;&#xF72;&#xF66;-&#xF62;&#xFB3;&#xF7C;&#xF56;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="615"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Help me to find both love and compassion, and personal responsibility,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="616"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">With the crane machine of giving and taking, which ride upon the wind.</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="617"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Please give me Your blessing to devote myself to learning</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="618"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">the Wish for enlightenment,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="619"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">So I can use these thoughts to save all beings from the sea of the cycle.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="620"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"><pbr/></c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="621"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="622"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="623"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="624"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="625"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="626"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="627"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">Contemplation Five</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="628"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">Which goes first, giving or taking?</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal"> </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="629"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="630"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Pabongka Rinpoche (1878-1941), in his famed text on the steps to Buddhahood entitled </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">A Gift of Liberation</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic"> </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Thrust into Our Hands, </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">discusses the question of whether we should practice giving first, or taking first:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="631"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="632"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF63;&#xF94;-&#xF54;-&#xF51;&#xF7A;-&#xF63;-&#xF56;&#xF62;&#xF9F;&#xF7A;&#xF53;-&#xF53;&#xF66;-&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF56;&#xF66;&#xF92;&#xF7C;&#xF58;-&#xF5A; &#xF63;-&#xF53;&#xF72;/ &#xF66;&#xF99;&#xF72;&#xF44;-&#xF62;&#xF97;&#xF7A;&#xF60;&#xF72;-[t]&#xF51;&#xF58;&#xF72;&#xF42;&#xF66;-&#xF54;-&#xF62;&#xFA9;&#xF63;-&#xF88;&#xFB2;-&#xF56;&#xF4F;&#xF7C;&#xF53;-&#xF53;&#xF66;-&#xF63;&#xF7A;&#xF53;-&#xF54;-&#xF51;&#xF44;./ &#xF56;&#xFB1;&#xF58;&#xF66;-&#xF54;&#xF60;&#xF72;-&#xF51;&#xF58;&#xF72;&#xF42;&#xF66;-&#xF54;-[t]&#xF62;&#xFA9;&#xF63;-&#xF88;&#xFB2;-&#xF56;&#xF4F;&#xF7C;&#xF53;-&#xF53;&#xF66;-&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF56;-&#xF66;&#xFA6;&#xFB1;&#xF44;-&#xF56;-&#xF66;&#xF9F;&#xF7A;/ &#xF62;&#xFA9;-&#xF56;&#xF62;/ &#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-[t]&#xF42;&#xF49;&#xF72;&#xF66;-&#xF54;&#xF7C;-&#xF66;&#xFA4;&#xF7A;&#xF63;-&#xF58;&#xF62;-&#xF66;&#xFA6;&#xFB1;&#xF44;./ /&#xF5E;&#xF7A;&#xF66;-&#xF42;&#xF66;&#xF74;&#xF44;&#xF66;-&#xF63;/ &#xF60;&#xF51;&#xF72;-&#xF53;&#xF72;-&#xF66;&#xF94;-&#xF58;&#xF60;&#xF72;-&#xF56;&#xF66;&#xF58;-&#xF54;-[t]&#xF51;&#xF7A;-&#xF49;&#xF72;&#xF51;-&#xF42;&#xF7C;&#xF44;-&#xF60;&#xF55;&#xF7A;&#xF63;-&#xF88;&#xFB2;-&#xF56;&#xFB1;&#xF7A;&#xF51;-&#xF54;&#xF60;&#xF7C;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="633"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Here is the fifth point, which is using this practice [that is, exchanging oneself and others] as a basis for the meditation on giving and taking.  We practice taking by concentrating on the object of our compassion, and we practice giving by concentrating on the object of our love.  Remember the root text [of the </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Mental Training in Seven Points</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">], where it says, "Alternate the two, of giving and taking."  The point is that this  practice of giving and taking brings the attitude of exchanging self and others to new heights.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="634"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="635"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF56;-&#xF51;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF54;-&#xF42;&#xF49;&#xF72;&#xF66;-&#xF63;&#xF66;-&#xF66;&#xF94;-&#xF58;-&#xF66;&#xF94;&#xF7C;&#xF53;-&#xF88;&#xFB2;-&#xF56;&#xFB1;&#xF7A;&#xF51;-&#xF54;&#xF62;-[t]&#xF41;&#xFB2;&#xF72;&#xF51;-&#xF61;&#xF72;&#xF42;-&#xF58;&#xF44;-&#xF54;&#xF7C;-&#xF63;&#xF66;-&#xF60;&#xF56;&#xFB1; &#xF44;-&#xF61;&#xF44;./ &#xF63;&#xF42;-&#xF63;&#xF7A;&#xF53;-&#xF63;-&#xF55;&#xFB1;&#xF72;-&#xF58;-&#xF66;&#xF94;&#xF7C;&#xF53;-&#xF88;&#xFB2;-[t]&#xF56;&#xFB1;-&#xF5E;&#xF72;&#xF44;./ &#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF56;-&#xF58;&#xF72;-&#xF56;&#xFB1;&#xF7A;&#xF51;-&#xF54;&#xF62;-&#xF63;&#xF7A;&#xF53;-&#xF54;-&#xF42;&#xF45;&#xF72;&#xF42;-&#xF54;&#xF74;-&#xF56;&#xFB1;&#xF7A;&#xF51;-&#xF54;&#xF60;&#xF44;-&#xF62;&#xF74;&#xF44;./ [s]&#xF51;&#xF44;-&#xF54;&#xF7C;&#xF62;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF58;-&#xF56;&#xFB3;&#xF44;&#xF66;-&#xF53;-&#xF56;&#xF51;&#xF7A;-&#xF56;-&#xF56;&#xF4F;&#xF44;-&#xF61;&#xF44;-&#xF58;&#xF72;-&#xF55;&#xF53;-[t]&#xF54;&#xF66;-&#xF66;&#xF99;&#xF72;&#xF44;-&#xF62;&#xF97;&#xF7A;&#xF60;&#xF72;-&#xF51;&#xF58;&#xF72;&#xF42;&#xF66;-&#xF54;-&#xF62;&#xFA9;&#xF63;-&#xF88;&#xFB2;-&#xF56;&#xF4F;&#xF7C;&#xF53;-&#xF53;&#xF66;-&#xF58;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-&#xF50;&#xF58;&#xF66;-[t]&#xF45;&#xF51;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF51;&#xF44;-&#xF56;&#xFB2;&#xF63;-&#xF56;&#xF62;-&#xF56;&#xFB1;-&#xF66;&#xF99;&#xF58;-&#xF54;&#xF60;&#xF72;-&#xF66;&#xF99;&#xF72;&#xF44;-&#xF62;&#xF97;&#xF7A;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-[t]&#xF53;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="636"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Now there are a lot of books of instruction which say that&#x2014;of the two steps, giving and taking&#x2014;we should do the former one first.  In actual practice though we should carry out the latter one first; and it is also allowable to do taking alone, without the giving.  Think about it though&#x2014;unless we take their sufferings first, it doesn't do much good for us to give them our happiness.  So first we should concentrate on the step of compassion: we should try to develop the compassionate state of mind where we say, "May I free all living beings from their pain."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="637"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"><pbr/></c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="638"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="639"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="640"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="641"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="642"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="643"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="644"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">Contemplation Six</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="645"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">An explanation of the practice of giving and taking</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="646"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">in the first reference from the </c><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:italic">Offering to Lamas</c><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal"> </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="647"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="648"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">The following explanation of the practice of giving and taking comes from a commentary upon the first of the two verses in the </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Offering to Lamas</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic"> which treat the meditation.  The commentary is again by Ngulchu Dharma Bhadra, and is entitled </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"The Fulfilment of Every Hope of Those with the Fortune Endowed by Virtue," consisting of Notes to a Teaching upon the Practices of Transfer and Confession, as found in the "Offering to Lamas, the Indivisible Union of Bliss and Voidness."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="649"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="650"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF42;&#xF66;&#xF74;&#xF58;-&#xF54;-&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF56;&#xFB1;-&#xF5A; &#xF63;-&#xF53;&#xF72;/ &#xF51;&#xF7A;&#xF66;-&#xF53;-&#xF62;&#xF97;&#xF7A;-&#xF56;&#xF59; &#xF53;/ &#xF5E;&#xF7A;&#xF66;-&#xF66;&#xF7C;&#xF42;&#xF66;-&#xF5A;&#xF72;&#xF42;-[t]&#xF62;&#xF90;&#xF44;-&#xF63;&#xF94;-&#xF4F;&#xF7A;/ &#xF62;&#xF97;&#xF7A;-&#xF62;&#xF9F;-&#xF55;&#xF74;&#xF42;-&#xF54;&#xF66;-&#xF51;&#xF58;&#xF72;&#xF42;&#xF66;-&#xF66;&#xF90;&#xF7C;&#xF62;-&#xF60;&#xF51;&#xF72;-&#xF64;&#xF72;&#xF53;-&#xF62;&#xFB1;-&#xF42;&#xF63;-&#xF46;&#xF7A;-[t]&#xF56;&#xF60;&#xF72;-&#xF55;&#xFB1;&#xF72;&#xF62;-&#xF5A;&#xF72;&#xF42;-&#xF62;&#xF90;&#xF44;-&#xF51;&#xF44;-&#xF54;&#xF7C;-&#xF60;&#xF51;&#xF72;-&#xF56;&#xF45; &#xF42;-&#xF46;&#xF7C;&#xF42;-&#xF54;-&#xF62;&#xF97;&#xF7A;-&#xF46;&#xF7C;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF62;&#xF92;&#xFB1;&#xF63;-[t]&#xF58;&#xF5A;&#xF53;-&#xF63;-&#xF39;&#xFB2;&#xF66;-&#xF53;&#xF66;-&#xF42;&#xF53;&#xF44;-&#xF56;-&#xF66;&#xF9F;&#xF7A;-&#xF62;&#xF97;&#xF7A;&#xF66;-&#xF66;&#xF74;-&#xF42;&#xF53;&#xF44;-&#xF56;&#xF60;&#xF72;-&#xF56;&#xF40;&#xF60;-&#xF61;&#xF72;&#xF53;-&#xF63;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="651"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Here is the third point, which is how to do the practice of giving and taking.  This is found in the five-line verse that begins with the words, "And then my high, holy Lama..."  The great Takpukpa understood that this particular subject was of the highest importance, and so he requested [the author, the First Panchen Lama] Chukyi Gyaltsen to allow him to add the first line.  He was granted this permission, and so this line we can categorize as that type of sacred speech which is called "granted."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="652"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="653"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF49;&#xF58;&#xF66;-&#xF63;&#xF7A;&#xF53;-&#xF47;&#xF72;-&#xF63;&#xF9F;&#xF62;-&#xF56;&#xFB1;-&#xF56;&#xF60;&#xF72;-&#xF5A; &#xF63;-&#xF53;&#xF72;-&#xF62;&#xF44;-&#xF42;&#xF72;-&#xF58;&#xF50;&#xF60;-&#xF66;&#xF90;&#xF7C;&#xF62;-&#xF88;&#xFB2;-&#xF66;&#xFB3;&#xF62;-&#xF61;&#xF44;-[t]&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF42;&#xF66;&#xF63;-&#xF56;&#xF4F;&#xF56;-&#xF63;/ &#xF51;&#xF7A;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF62;&#xF92;&#xFB1;&#xF74;&#xF60;&#xF72;-&#xF63;&#xF66;-&#xF66;&#xFA1;&#xF72;&#xF42;-&#xF54;-[t]&#xF51;&#xF44;./ &#xF60;&#xF56;&#xFB2;&#xF66;-&#xF56;&#xF74;&#xF60;&#xF72;-&#xF63;&#xF66;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="654"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF51;-&#xF63;&#xF9F;-&#xF56;&#xF51;&#xF42;-&#xF63;-&#xF66;&#xFA8;&#xF72;&#xF53;-[t]&#xF54;&#xF62;-&#xF42;&#xF66;&#xF7C;&#xF63;-&#xF56;-&#xF56;&#xF4F;&#xF56;-&#xF53;&#xF66;/ [s]</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="655"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Here is how we actually carry the practice out.  Visualize, once again, every living being, surrounding you.  Make a sincere supplication that all their karma&#x2014;either in the form of the karma that causes pain, that is, bad deeds; or in the form of the karma that results as pain, that is, pain itself&#x2014;should ripen, at this very moment, upon you yourself.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="656"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="657"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF66;&#xF99;&#xF72;&#xF44;-&#xF42;&#xF62;-&#xF66;&#xFA1;&#xF72;&#xF42;-&#xF66;&#xF92;&#xFB2;&#xF72;&#xF56;-&#xF51;&#xF44;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF42;&#xFB1;&#xF72;-[t]&#xF44;&#xF7C;-&#xF56;&#xF7C;-&#xF60;&#xF7C;&#xF51;-&#xF53;&#xF42;-&#xF54;&#xF7C;&#xF60;&#xF72;-&#xF62;&#xFA3;&#xF58;-&#xF54;&#xF62;-&#xF61;&#xF7C;&#xF51;-&#xF54;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF53;&#xF42;-&#xF63;&#xF94; &#xF62;-&#xF42;&#xFB1;&#xF72;&#xF66;-[t]&#xF56;&#xFB1; &#xF44;-&#xF56;-&#xF62;&#xF44;-&#xF42;&#xF72;-&#xF66;&#xF99;&#xF72;&#xF44;-&#xF42;&#xF62;-&#xF56;&#xF51;&#xF42;-&#xF60;&#xF5B;&#xF72;&#xF53;-&#xF42;&#xFB1;&#xF72;-&#xF44;&#xF7C;-&#xF56;&#xF7C;-&#xF58;&#xF62;-&#xF58;&#xF7A;&#xF60;&#xF72;-&#xF62;&#xFA3;&#xF58;-[t]&#xF54;&#xF62;-&#xF42;&#xF66;&#xF63;-&#xF56;-&#xF63;-&#xF50;&#xF72;&#xF58;-&#xF54;&#xF66;-&#xF51;&#xF7A;-&#xF53;&#xF42;-&#xF50;&#xF74;&#xF58;-&#xF42;&#xFB1;&#xF72;&#xF66;-&#xF66;&#xF7C;&#xF44;./ &#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-&#xF62;&#xFA3;&#xF58;&#xF66;-[t]&#xF40;&#xFB1;&#xF72;-&#xF66;&#xFA1;&#xF72;&#xF42;-&#xF66;&#xF92;&#xFB2;&#xF72;&#xF56;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF51;&#xF44;-&#xF56;&#xF45;&#xF66;-&#xF54;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF51;&#xF42;-&#xF53;&#xF66;-&#xF66;&#xF90;&#xFB1;-[t]&#xF66;&#xF44;&#xF66;-&#xF40;&#xFB1;&#xF72;&#xF66;-&#xF66;&#xF7C;&#xF44;-&#xF56;&#xF62;-&#xF56;&#xF66;&#xF58;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="658"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Visualize black light in the hearts of all these beings; think that the light consists of their bad deeds, and spiritual obstacles, along with all their different sufferings.  See it all come out of these beings in a stream of black, and entering into yourself, into your heart, to a flame there which represents your tendency to grasp that things have some self-nature of their own.  Then see everything blink out into pitch black, and after that see  all the bad deeds and obstacles and pains of the beings totally removed, and disappearing in a wisp of smoke.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="659"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="660"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF51;&#xF7A;-&#xF53;&#xF66;-&#xF62;&#xF44;-&#xF42;&#xF72;&#xF66;-&#xF88;&#xFB2;&#xF66;-&#xF42;&#xF66;&#xF74;&#xF58;-&#xF88;&#xFB2;-&#xF56;&#xF66;&#xF42;&#xF66;-&#xF54;&#xF60;&#xF72;-&#xF56;&#xF51;&#xF7A;-&#xF51;&#xF42;&#xF7A;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF60;&#xF7C;&#xF51;-&#xF51;&#xF40;&#xF62;-[t]&#xF54;&#xF7C;&#xF60;&#xF72;-&#xF62;&#xFA3;&#xF58;-&#xF54;&#xF62;-&#xF66;&#xF7C;&#xF44;-&#xF53;&#xF66;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF63;-&#xF41;&#xFB1;&#xF56;-&#xF54;&#xF66;-&#xF51;&#xF7A;-[t]&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF56;&#xF51;&#xF7A;-&#xF56;-&#xF55;&#xF74;&#xF53;-&#xF66;&#xF74;&#xF58;-&#xF5A;&#xF7C;&#xF42;&#xF66;-&#xF54;-&#xF51;&#xF44;-&#xF63;&#xF94;&#xF53;-&#xF54;&#xF62;-&#xF56;&#xF66;&#xF58;-&#xF58;&#xF7C;/ [s]</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="661"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Next visualize the happiness and good karma that you yourself have collected, are collecting, and will collect during the past, present, and future, all as white light.  Send this light out to enwrap all living beings, and think to yourself that it brings them perfect and total happiness.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="662"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="663"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">After describing the practice in additional detail, as outlined further on, Ngulchu Dharma Bhadra gives more notes on how to incorporate the meditation into ones practice:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="664"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="665"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF53;-&#xF63;-&#xF49;&#xF58;&#xF66;-&#xF63;&#xF7A;&#xF53;-&#xF66;&#xF99;&#xF72;&#xF44;-&#xF54;&#xF7C;&#xF62;-&#xF56;&#xFB1;&#xF7A;&#xF51;-&#xF53;-&#xF62;&#xF97;&#xF7A;-&#xF56;&#xF59; &#xF53;-&#xF44;&#xF42;-[t]&#xF51;&#xF56;&#xF44;-&#xF62;&#xFA1;&#xF7C;-&#xF62;&#xF97;&#xF7A;&#xF60;&#xF72;-&#xF55;&#xFB1;&#xF42;-&#xF56;&#xF5E;&#xF7A;&#xF66;-&#xF63;&#xF9F;&#xF62;/ &#xF50;&#xF7C;&#xF42;-&#xF58;&#xF62;-&#xF66;&#xF90;&#xFB1;&#xF56;&#xF66;-&#xF60;&#xF42;&#xFB2;&#xF7C;-&#xF66;&#xF7A;&#xF58;&#xF66;-[t]&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-&#xF56;&#xFB1;/ &#xF51;&#xF7A;-&#xF53;&#xF66;-&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF66;&#xF92;&#xF7C;&#xF58;-&#xF63;/ &#xF56;&#xF51;&#xF42;-&#xF42;&#xF72;-&#xF56;&#xF66;&#xF58;-&#xF54;&#xF60;&#xF72;-&#xF66;&#xF9F;&#xF7C;&#xF56;&#xF66;-&#xF51;&#xF42;-[t]&#xF51;&#xF44;./ &#xF5E;&#xF7A;&#xF66;-&#xF66;&#xF7C;&#xF42;&#xF66;-&#xF40;&#xFB1;&#xF72;&#xF66;-&#xF56;&#xF51;&#xF7A;&#xF53;-&#xF66;&#xF9F;&#xF7C;&#xF56;&#xF66;-&#xF56;&#xF62;&#xF97;&#xF7C;&#xF51;/ &#xF51;&#xF7A;-&#xF53;&#xF66;-&#xF56;&#xF66;&#xF92;&#xF7C;&#xF58;-&#xF56;&#xFB1;-&#xF66;&#xF92;&#xF7C;&#xF58;-[t]&#xF56;&#xFB1;&#xF7A;&#xF51;-&#xF63;-&#xF66;&#xF7C;&#xF42;&#xF66;-&#xF54;&#xF60;&#xF72;-&#xF46;&#xF7C;&#xF66;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF62;&#xF44;-&#xF56;&#xF5E;&#xF72;&#xF53;-&#xF42;&#xFB1;&#xF72;&#xF66;-&#xF42;&#xFB2;&#xF74;&#xF56;-&#xF54;-&#xF58;&#xF7A;&#xF51;-&#xF54;&#xF60;&#xF72;-[t]&#xF44;&#xF7A;&#xF66;-&#xF64;&#xF7A;&#xF66;-&#xF51;&#xFB2;&#xF44;&#xF66;-&#xF53;&#xF66;-..</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="666"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">If you plan to make the meditation on giving and taking the central point of your practice, you can follow the custom of the venerable Ngawang Dorje.  First go through the process of going for refuge and bringing up the Wish for enlightenment.  After that, do the meditation on giving and taking.  Next make the prayer that your meditation actually come true, by the power of truth, with the lines that include, "By the pureness of the power of my intentions..."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="667"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="668"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[The full prayer here reads:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="669"/>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="670"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">By the pureness of the power of my intentions,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="671"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">By the power of the blessings of Those Gone Thus,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="672"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">By the powers of the realm of emptiness,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="673"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">May all the goals that I may have,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="674"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And all my wishes, whatever they be,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="675"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Come true, with perfect ease.]</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="676"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="677"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">After this, bring up in your mind the clear conviction that no object in the universe has any nature of its own: not the object being meditated upon, nor the person meditating upon it, nor anything else at all.  And then [continue with certain special practices, followed by a final dedication and prayer]. </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="678"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"><pbr/></c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="679"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="680"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="681"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="682"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="683"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="684"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="685"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">Contemplation Seven</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="686"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">An explanation of the practice of giving and taking</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="687"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">in the second reference from the </c><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:italic">Offering to Lamas</c><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal"> </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="688"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="689"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Later in his same commentary, Ngulchu Dharma Bhadra discusses the second reference to the practice of giving and taking from the </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Offering to Lamas:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="690"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="691"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF42;&#xF49;&#xF72;&#xF66;-&#xF54;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-&#xF51;&#xF44;&#xF7C;&#xF66;-&#xF63;-&#xF66;&#xFB3;&#xF7C;&#xF56;-&#xF5A; &#xF63;-&#xF63;-&#xF42;&#xF49;&#xF72;&#xF66;/ &#xF66;&#xFA8;&#xF7C;&#xF53;-&#xF66;&#xF7A;&#xF58;&#xF66;-[t]&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-&#xF5A; &#xF63;-&#xF51;&#xF44;./ &#xF60;&#xF47;&#xF74;&#xF42;-&#xF66;&#xFA1;&#xF7C;&#xF58;-&#xF63;&#xF7A;&#xF53;-&#xF5A; &#xF63;-&#xF63;&#xF7C;/ /&#xF51;&#xF44;-&#xF54;&#xF7C;-&#xF53;&#xF72;/ &#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-[t]&#xF62;&#xFB3;&#xF74;&#xF44;-&#xF63;/ &#xF5E;&#xF7A;&#xF66;-&#xF66;&#xF7C;&#xF42;&#xF66;-&#xF42;&#xF45;&#xF72;&#xF42;-&#xF66;&#xF9F;&#xF7A;/ &#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF62;&#xFB3;&#xF74;&#xF44;-&#xF63;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7C;&#xF53;-&#xF54;&#xF66;-&#xF53;&#xF72;-[t]&#xF62;&#xFB3;&#xF74;&#xF44;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF60;&#xF47;&#xF74;&#xF42;-&#xF54;-&#xF42;&#xF45;&#xF72;&#xF42;-&#xF54;&#xF60;&#xF72;-&#xF42;&#xF53;&#xF51;-&#xF40;&#xFB1;&#xF72;&#xF66;-&#xF56;&#xFB1;&#xF44;-&#xF46; &#xF56;-&#xF40;&#xFB1;&#xF72;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF66;&#xF90;&#xFB1;&#xF7A;-[t]&#xF66;&#xFB3;-&#xF63;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="692"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Here is the second part, which is how to train oneself in the Wish for enlightenment itself.  Here there are two points: how to develop the Wish in the form of a prayer, and how to take the vow for the Wish in the form of action.  The first of these is expressed in the one verse from the </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Offering to Lamas</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"> which includes the words, "giving and taking, which ride upon the wind."  Now if one lets the practice of giving and taking "ride upon the wind," it is actually easier to develop the Wish for enlightenment; this is because of the crucial point that the mind and the inner winds travel in tandem.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="693"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="694"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF60;&#xF55;&#xFB2;&#xF74;&#xF63;-&#xF60;&#xF51;&#xF7A;&#xF42;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF51;&#xF7C;&#xF53;-&#xF53;&#xF72;-&#xF64;&#xF72;&#xF44;-&#xF56;&#xF5F;&#xF7C;-&#xF58;&#xF41;&#xF66;-&#xF54;&#xF66;-&#xF58;&#xF41;&#xF62;-&#xF66;&#xF9F;&#xF7A;&#xF44;-&#xF60;&#xF7C;&#xF42;-&#xF88;&#xFB2;-[t]&#xF58;-&#xF56;&#xF62;&#xFA9;&#xF7A;&#xF42;&#xF66;-&#xF54;&#xF60;&#xF72;-&#xF60;&#xF7C;&#xF42;-&#xF41;&#xF44;-&#xF42;&#xF72;-&#xF40;-&#xF56;&#xF62;-&#xF60;&#xF51;&#xF7A;&#xF42;&#xF66;-&#xF62;&#xF92;&#xFB1;&#xF56;-&#xF54;&#xF60;&#xF72;-&#xF60;&#xF55;&#xFB2;&#xF74;&#xF63;-&#xF42;&#xFB1;&#xF72;&#xF66;-[t]&#xF66;&#xF9F;&#xF7A;&#xF44;-&#xF41;&#xF44;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF40;&#xFB1;&#xF44;-&#xF60;&#xF51;&#xFB2;&#xF7C;&#xF44;&#xF66;-&#xF54;-&#xF63;&#xF9F;&#xF62;/ &#xF62;&#xF92;&#xFB1;&#xF74;-&#xF60;&#xF56;&#xFB2;&#xF66;-&#xF58;&#xF53;-&#xF44;&#xF42;-[t]&#xF56;&#xF88;&#xFB2;&#xF53;-&#xF42;&#xFB1;&#xF72;-&#xF58;&#xF62;-&#xF64;&#xF7A;&#xF66;-&#xF63;-&#xF58;&#xFB1;&#xF7C;&#xF44;-&#xF56;-&#xF50;&#xF7C;&#xF53;-&#xF54;&#xF60;&#xF72;-&#xF42;&#xF53;&#xF51;-&#xF40;&#xFB1;&#xF72;&#xF66;-&#xF56;&#xFB1;&#xF44;-&#xF46; &#xF56;-[t]&#xF40;&#xFB1;&#xF72;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF56;&#xF62;-&#xF62;&#xF72;&#xF58;-&#xF56;&#xF5E;&#xF72;&#xF53;-&#xF66;&#xF90;&#xFB1;&#xF7A;-&#xF56;&#xF60;&#xF7C;/ [s]</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="695"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Here are some notes on the unusual Tibetan word </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">truldek,</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"> found here in this verse of the </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Offering.</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">  Think of a master craftsman who is constructing a building that rises high into the sky, with many floors.  He fashions a special machine (</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">trul</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">) which can act as a crane (</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">dek</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">) to bring materials up to the top of the pillars of the ground floor, which then allows him to complete the next floor up, and so on.  It's the same with the seven-step, cause-and-effect method for developing the Wish for enlightenment: gaining fluency in the first step, recognizing that all beings have been our mothers, is a key that allows us to achieve the next step, and so on all the way up to the Wish itself.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="696"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="697"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF62;&#xFB3;&#xF74;&#xF44;-&#xF63;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7C;&#xF53;-&#xF5A; &#xF63;-&#xF53;&#xF72;-&#xF42;&#xF5E;&#xF53;-&#xF66;&#xF94;&#xF62;-&#xF51;&#xF44;-&#xF60;&#xF51;&#xFB2;-&#xF56;-&#xF63;/ &#xF62;&#xF44;-&#xF42;&#xF72;-[t]&#xF66;&#xFA3;-&#xF42;[u]&#xF61;&#xF66;-&#xF53;&#xF66;-&#xF62;&#xFB3;&#xF74;&#xF44;-&#xF55;&#xFB1;&#xF72;&#xF62;-&#xF60;&#xF56;&#xF74;&#xF51;-&#xF54;-&#xF51;&#xF44;-&#xF58;&#xF49;&#xF58;-&#xF88;&#xFB2;-&#xF62;&#xF44;-&#xF42;&#xF72;-&#xF56;&#xF51;&#xF7A;-[t]&#xF51;&#xF42;&#xF7A;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF60;&#xF7C;&#xF51;-&#xF51;&#xF40;&#xF62;-&#xF54;&#xF7C;&#xF60;&#xF72;-&#xF62;&#xFA3;&#xF58;-&#xF54;&#xF62;-&#xF66;&#xF7C;&#xF44;-&#xF56;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF40;&#xFB1;&#xF72;-[t]&#xF66;&#xFA3;-&#xF42;[u]&#xF61;&#xF7C;&#xF53;-&#xF53;&#xF66;-&#xF39;&#xFB2;&#xF42;&#xF66;-&#xF4F;&#xF7A;-&#xF56;&#xF51;&#xF7A;-&#xF56;-&#xF51;&#xF44;-&#xF63;&#xF94;&#xF53;-&#xF54;&#xF62;-&#xF56;&#xF66;&#xF58;-&#xF63;-&#xF56;&#xFB1;&#xF58;&#xF66;-&#xF54;-[t]&#xF51;&#xF44;./ &#xF61;&#xF44;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF60;&#xF41;&#xF7C;&#xF62;-&#xF56;-&#xF51;&#xF44;-&#xF44;&#xF53;-&#xF66;&#xF7C;&#xF44;-&#xF42;&#xF72;-[t]&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF42;&#xFB1;&#xF72;&#xF66;-&#xF58;&#xF53;&#xF62;-&#xF5A; &#xF63;-&#xF56;&#xF66;&#xF58;-&#xF63;-&#xF51;&#xF7A;-&#xF63;&#xF9F;-&#xF56;&#xF74;&#xF60;&#xF72;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF51;&#xF44;-[t]&#xF66;&#xFA1;&#xF72;&#xF42;-&#xF54;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF60;&#xF7C;&#xF51;-&#xF53;&#xF42;-&#xF54;&#xF7C;&#xF60;&#xF72;-&#xF62;&#xFA3;&#xF58;-&#xF54;&#xF62;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF66;&#xFA3;-[t]&#xF42;[u]&#xF61;&#xF66;-&#xF53;&#xF66;-&#xF50;&#xF7C;&#xF53;/ &#xF62;&#xFB3;&#xF74;&#xF44;-&#xF53;&#xF44;-&#xF88;&#xFB2;-&#xF62;&#xF94;&#xF74;&#xF56;-&#xF54;-&#xF51;&#xF44;-&#xF58;&#xF49;&#xF58;-&#xF88;&#xFB2;-&#xF62;&#xF44;-[t]&#xF42;&#xF72;-&#xF66;&#xFA3;-&#xF42;[u]&#xF61;&#xF7C;&#xF53;-&#xF53;&#xF66;-&#xF39;&#xFB2;&#xF42;&#xF66;-&#xF4F;&#xF7A;-&#xF66;&#xF99;&#xF72;&#xF44;-&#xF42;&#xF60;&#xF72;-&#xF56;&#xF51;&#xF42;-&#xF60;&#xF5B;&#xF72;&#xF53;-&#xF56;&#xF45;&#xF7C;&#xF58;-&#xF54;&#xF62;-&#xF56;&#xF66;&#xF58;-[t]&#xF63;-&#xF66;&#xF99;&#xF72;&#xF44;-&#xF62;&#xF97;&#xF7A;-&#xF56;&#xF66;&#xF92;&#xF7C;&#xF58;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="698"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">As for how to let this meditation "ride on the wind," follow first the steps we mentioned earlier [in the explanation of the first reference, found above].  Then picture all your own happiness and good deeds in the form of white light.  Send it out together with your breath when you exhale, from your right nostril, to every living being.  See it entering their left nostrils, and think to yourself that they are now filled with happiness.  Meditate thus upon love.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="699"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="700"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Contemplate next upon how all these living beings are tormented by the sufferings of cyclic life, and the three lower realms.  Picture their suffering, and all their bad deeds, as black light, and see it issuing out of their right nostrils.  When you inhale then, see this blackness entering into you together with the air, through your left nostril&#x2014;and imagine that it has destroyed, within your heart, the tendency to grasp to things as having some self-nature.  Meditate thus on compassion.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="701"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF51;&#xF7A;-&#xF53;&#xF66;-&#xF60;&#xF51;&#xF72;-&#xF63;&#xF9F;&#xF62;-&#xF60;&#xF42;&#xFB2;&#xF74;&#xF56;-&#xF54;-&#xF66;&#xF90;&#xF63;-&#xF56;-&#xF56;&#xF5F;&#xF44;-&#xF66;&#xF99;&#xF58;-&#xF88;&#xFB2;-&#xF51;&#xF42;&#xF60;-&#xF56;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-[t]&#xF54;&#xF60;&#xF72;-&#xF58;&#xF50;&#xF62;-&#xF56;&#xF51;&#xF7A;-&#xF66;&#xF9F;&#xF7C;&#xF44;-&#xF63;-&#xF58;&#xF49;&#xF58;-&#xF54;&#xF62;-&#xF56;&#xF5E;&#xF42; /&#xF51;&#xF7A;-&#xF63;&#xF66;-&#xF63;&#xF94;&#xF44;-&#xF56;-&#xF53;-&#xF51;&#xF7A;-[t]&#xF53;&#xF72;-&#xF62;&#xF44;-&#xF42;&#xF72;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF40;&#xFB1;&#xF72;&#xF66;-&#xF56;&#xF45;&#xF7C;&#xF66;-&#xF54;-&#xF59;&#xF58;-&#xF61;&#xF72;&#xF53;-&#xF54;&#xF66;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-[t]&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF51;&#xF44;-&#xF56;&#xFB2;&#xF63;-&#xF5E;&#xF72;&#xF44;-&#xF56;&#xF51;&#xF7A;-&#xF56;-&#xF51;&#xF44;-&#xF63;&#xF94;&#xF53;-&#xF54;-&#xF5E;&#xF72;&#xF42;-&#xF44;&#xF66;-[t]&#xF56;&#xFB1;&#xF60;&#xF7C;-&#xF66;&#xF99;&#xF58;-&#xF54;&#xF60;&#xF72;-&#xF63;&#xFB7;&#xF42;-&#xF56;&#xF66;&#xF58;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;/ &#xF66;&#xFB3;&#xF62;-&#xF61;&#xF44;-&#xF62;&#xF44;-&#xF63;-&#xF51;&#xF7A;-&#xF63;&#xF9F;-&#xF56;&#xF74;&#xF60;&#xF72;-[t]&#xF85;&#xFB2;&#xF66;-&#xF54;-&#xF61;&#xF7C;&#xF51;-&#xF58;&#xF7A;&#xF51;-&#xF56;&#xF62;&#xF9F;&#xF42;&#xF66;-&#xF54;-&#xF53;-&#xF42;&#xF5E;&#xF53;-&#xF51;&#xF7C;&#xF53;-&#xF63;&#xF9F;-&#xF56;&#xF5E;&#xF42;-&#xF62;&#xF44;-&#xF51;&#xF7C;&#xF53;-[t]&#xF61;&#xF44;-&#xF58;&#xF50;&#xF62;-&#xF58;-&#xF55;&#xFB1;&#xF72;&#xF53;-&#xF54;&#xF66;-&#xF51;-&#xF63;&#xF9F;-&#xF85;&#xFB2;&#xF66;-&#xF54;-&#xF58;&#xF7A;&#xF51;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="702"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Bring up in your heart then a feeling of joy, thinking how very fortunate you are to have undertaken this practice.  Finally then enter into deep meditation on </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">detong.  </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">When you come out of this meditation, bring up in your heart that state of personal responsibility where you say to yourself, "Every living being must be freed from every form of suffering, and must come to have every form of happiness.  I myself will assure that they do."  Realize too that this is possible because everything here is only a construction of your own mind.  Next go back and examine yourself, to see whether or not you presently possess any capacity to actually bring about this goal.  You will soon realize that for the present you have failed to realize even your own goals, much less achieve the capacity to help others achieve theirs.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="703"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="704"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF85;&#xFB2;&#xF66;-&#xF54;-&#xF66;&#xF74;-&#xF63;-&#xF61;&#xF7C;&#xF51;-&#xF53;-&#xF61;&#xF44;-&#xF51;&#xF42;-&#xF54;&#xF62;-&#xF62;&#xFAB;&#xF7C;&#xF42;&#xF66;-&#xF54;&#xF60;&#xF72;-&#xF66;&#xF44;&#xF66;-&#xF62;&#xF92;&#xFB1;&#xF66;-&#xF63;-&#xF61;&#xF7C;&#xF51;-[t]&#xF54;&#xF66;/ &#xF56;&#xF51;&#xF42;-&#xF42;&#xF72;&#xF66;-&#xF58;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF66;&#xFB2;&#xF72;&#xF51;-&#xF54;&#xF60;&#xF72;-&#xF62;&#xF92;&#xFB1;-&#xF58;&#xF5A;&#xF7C;-&#xF60;&#xF51;&#xF72;-&#xF63;&#xF66;-[t]&#xF56;&#xF66;&#xF92;&#xFB2;&#xF63;-&#xF56;&#xF60;&#xF72;-&#xF55;&#xFB1;&#xF72;&#xF62;-&#xF88;&#xFB2;-&#xF5E;&#xF7A;&#xF66;-&#xF42;&#xF5E;&#xF53;-&#xF51;&#xF7C;&#xF53;-&#xF51;&#xF7C;&#xF53;-&#xF42;&#xF49;&#xF7A;&#xF62;-&#xF51;&#xF44;./ &#xF62;&#xFAB;&#xF7C;&#xF42;&#xF66;-&#xF54;&#xF60;&#xF72;-[t]&#xF66;&#xF44;&#xF66;-&#xF62;&#xF92;&#xFB1;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF42;&#xF7C;-&#xF60;&#xF55;&#xF44;-&#xF50;&#xF7C;&#xF56;-&#xF53;-&#xF45;&#xF72;-&#xF58;-&#xF62;&#xF74;&#xF44;-&#xF66;&#xF99;&#xF58;-&#xF88;&#xFB2;-&#xF56;&#xFB1;&#xF44;-[t]&#xF46; &#xF56;-&#xF51;&#xF7C;&#xF53;-&#xF42;&#xF49;&#xF7A;&#xF62;-&#xF4F;&#xF7A;-&#xF66;&#xFA8;&#xF7C;&#xF53;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF59;&#xF58;-&#xF54;&#xF7C;-&#xF56;-&#xF51;&#xF44;./ &#xF51;&#xF7A;-&#xF63;&#xF9F;&#xF62;-&#xF56;&#xFB1;&#xF60;&#xF7C;-[t]&#xF66;&#xF99;&#xF58;-&#xF54;&#xF60;&#xF72;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF60;&#xF51;&#xF72;-&#xF61;&#xF44;-&#xF58;&#xF72;-&#xF56;&#xF4F;&#xF44;-&#xF56;&#xF62;-&#xF56;&#xF5F;&#xF74;&#xF44;-&#xF56;&#xF62;-&#xF56;&#xFB1;&#xF60;&#xF7C;-&#xF66;&#xF99;&#xF58;-&#xF54;&#xF60;&#xF72;-[t]&#xF51;&#xF58;-&#xF56;&#xF45;&#xF60;-&#xF45;&#xF53;-&#xF53;&#xF72;-&#xF66;&#xFA8;&#xF7C;&#xF53;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF58;&#xF5A;&#xF53;-&#xF49;&#xF72;&#xF51;-&#xF54;-&#xF66;&#xF9F;&#xF7A;-&#xF51;&#xF7A;-&#xF63;&#xF9F;&#xF62;-&#xF66;&#xF90;&#xFB1;&#xF7A;-&#xF56;&#xF62;-[t]&#xF56;&#xFB1;&#xF72;&#xF53;-&#xF42;&#xFB1;&#xF72;&#xF66;-&#xF62;&#xFB3;&#xF7C;&#xF56;&#xF66;/ &#xF5E;&#xF7A;&#xF66;-&#xF66;&#xF7C;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="705"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Reflect then on the question of whether there is anyone who does have this capacity already.  The answer is that a fully enlightened Buddha does.  And so you should go on to bring up in your heart the aspiration to achieve the goals of all other beings, saying "I will do it in order to free all of my mothers, every living being, from this ocean of cyclic suffering."  And bring up too then the aspiration to reach Buddhahood, thinking, "How wonderful it would be if I could achieve the state of total enlightenment myself!"</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="706"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="707"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">This latter state of mind is only approaching the Wish for enlightenment in the form of a prayer; go further then and try to develop the definitive version of the Wish in this same form.  This is where you make a pledge to yourself, saying "I will moreover forever keep, and never give up, that state of mind that says, 'I will do it!'"  The verse then is requesting that the Lamas grant you Their blessing to be able to reach this Wish.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="708"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"><pbr/></c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="709"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="710"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="711"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="712"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="713"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="714"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="715"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">Contemplation Eight</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="716"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">More on the breath in the practice of giving and taking</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal"> </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="717"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="718"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Perhaps the most famous early source on the practice of giving and taking is the "mental training" </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">(lojong)</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic"> text entitled the </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Mental Training in Seven Points,</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic"> written by the bodhisattva Tokme Sangpo (1295-1369).  Here are the two relevant lines, which already mention how the meditation involves the breath:</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">  </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="719"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="720"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF42;&#xF49;&#xF72;&#xF66;-&#xF54;&#xF7C;-&#xF66;&#xFA4;&#xF7A;&#xF63;-&#xF58;&#xF62;-&#xF66;&#xFA6;&#xFB1;&#xF44;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="721"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]    /&#xF51;&#xF7A;-&#xF49;&#xF72;&#xF51;-&#xF62;&#xFB3;&#xF74;&#xF44;-&#xF63;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7C;&#xF53;-&#xF4F;&#xF7A;-&#xF56;&#xFB1;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="722"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Alternate the two, of giving and taking;</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="723"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Let these same ride on the wind.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="724"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="725"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="726"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Pabongka Rinpoche, in his famed </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Gift of Liberation,</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic"> begins his explanation of the practice from these same lines:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="727"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="728"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF51;&#xF7A;-&#xF42;&#xF49;&#xF72;&#xF66;-&#xF62;&#xFB3;&#xF74;&#xF44;-&#xF63;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7C;&#xF53;-&#xF54;&#xF62;-&#xF56;&#xFB1;/ /&#xF5E;&#xF7A;&#xF66;-&#xF54;-&#xF63;&#xF9F;&#xF62;-&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF42;&#xFB1;&#xF72;-[t]&#xF51;&#xF58;&#xF72;&#xF42;&#xF66;-&#xF54;-&#xF45; &#xF44;-&#xF5F;&#xF51;-&#xF60;&#xF56;&#xFB1;&#xF7C;&#xF44;&#xF66;-&#xF54;&#xF60;&#xF72;-&#xF5A;&#xF7A;-&#xF51;&#xF56;&#xF74;&#xF42;&#xF66;-&#xF55;&#xFB1;&#xF72;&#xF62;-&#xF60;&#xF42;&#xFB2;&#xF7C;-&#xF66;&#xF90;&#xF56;&#xF66;-&#xF42;&#xF4F;&#xF7C;&#xF44;-[t]&#xF56;-&#xF51;&#xF44;./ &#xF53;&#xF44;-&#xF88;&#xFB2;-&#xF60;&#xF47;&#xF74;&#xF42;-&#xF54;-&#xF53;-&#xF63;&#xF7A;&#xF53;-&#xF54;-&#xF51;&#xF44;-&#xF66;&#xFA6;&#xFB1;&#xF62;/ [s]</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="729"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Remember the line that says we should "Let these two ride on the wind."  The point is that, when you are doing some practice of the visualization of giving and taking, you should relate the giving to when the breath is passing out, and the taking to when the breath is entering in.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="730"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="731"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]&#xF62;&#xFB3;&#xF74;&#xF44;-&#xF63;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7C;&#xF53;-&#xF54;-&#xF60;&#xF51;&#xF72;-&#xF51;&#xF44;-&#xF54;&#xF7C;&#xF62;-&#xF58;&#xF72;-&#xF85;&#xFB2;&#xF66;-&#xF40;&#xFB1;&#xF44;./ &#xF61;&#xF44;-&#xF61;&#xF44;-&#xF42;&#xF7C;&#xF58;&#xF66;-[t]&#xF53;&#xF66;-&#xF62;&#xFB3;&#xF74;&#xF44;-&#xF63;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7C;&#xF53;-&#xF53;-&#xF62;&#xFB3;&#xF74;&#xF44;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF60;&#xF47;&#xF74;&#xF42;-&#xF54;-&#xF42;&#xF45;&#xF72;&#xF42;-&#xF54;&#xF66;-&#xF56;&#xF51;&#xF42;-&#xF42;&#xF5E;&#xF53;-[t]&#xF58;&#xF49;&#xF58;-&#xF56;&#xF62;&#xF97;&#xF7A;&#xF60;&#xF72;-&#xF56;&#xFB1;&#xF44;-&#xF46; &#xF56;-&#xF40;&#xFB1;&#xF72;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF66;&#xF90;&#xFB1;&#xF7A;-&#xF66;&#xFB3;-&#xF56;&#xF60;&#xF72;-&#xF60;&#xF55;&#xFB2;&#xF74;&#xF63;-&#xF60;&#xF51;&#xF7A;&#xF42;&#xF66;-&#xF46;&#xF7A;&#xF53;-[t]&#xF54;&#xF7C;-&#xF61;&#xF72;&#xF53;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="732"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">You may not be able to accomplish this "riding on the wind" at the beginning.  But if you practice it over and over again, you will get it to ride; and since the inner winds and the mind move in tandem, you will find it quite easy to bring up in your heart the Wish for enlightenment wherein you exchange yourself and others.  As such, this practice is like a great crane machine.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="733"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="734"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF60;&#xF51;&#xF72;-&#xF53;&#xF72;-&#xF66;&#xF94;&#xF42;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF66;&#xF90;&#xF56;&#xF66;-&#xF53;&#xF66;-&#xF56;&#xF64;&#xF51;-&#xF54;&#xF60;&#xF72;-&#xF62;&#xFA1;&#xF7C;-&#xF62;&#xF97;&#xF7A;&#xF60;&#xF72;-&#xF56;&#xF5F;&#xFB3;&#xF66;-&#xF54;-&#xF51;&#xF44;.&#xF46;-[t]&#xF60;&#xF51;&#xFB2;-&#xF5E;&#xF72;&#xF44;./ &#xF58;&#xF41;&#xF66;-&#xF42;&#xFB2;&#xF74;&#xF56;-&#xF62;&#xF97;&#xF7A;&#xF66;-&#xF62;&#xF97;&#xF7A;-&#xF56;&#xFB3;-&#xF58;&#xF62;/ &#xF58;&#xF42;&#xF7C;&#xF53;-&#xF54;&#xF7C;-&#xF41;&#xFB1;&#xF7C;&#xF51;-&#xF40;&#xFB1;&#xF72;-&#xF5E;&#xF63;-[t]&#xF42;&#xFB1;&#xF72;-&#xF51;&#xF56;&#xF74;&#xF42;&#xF66;-&#xF59;&#xF58;-&#xF61;&#xF44;./ /&#xF58;&#xF50;&#xF60;-&#xF51;&#xF42;-&#xF60;&#xF42;&#xFB2;&#xF7C;-&#xF63;-&#xF66;&#xFA8;&#xF53;-&#xF54;&#xF60;&#xF72;-&#xF62;&#xF92;&#xFB1;&#xF74;&#xF62;-&#xF60;&#xF42;&#xFB1; &#xF62;-&#xF53;/ [s]/&#xF5E;&#xF7A;&#xF66;-&#xF66;&#xF7C;&#xF42;&#xF66;-&#xF56;&#xF66;&#xF9F;&#xF7C;&#xF51;-&#xF54;-&#xF58;&#xF5B;&#xF51;-&#xF54;&#xF60;&#xF44;-&#xF60;&#xF51;&#xF72;-&#xF63;-&#xF51;&#xF42;&#xF7C;&#xF44;&#xF66;-&#xF54;-&#xF62;&#xF7A;&#xF51;/ &#xF60;&#xF51;&#xF72;-&#xF51;&#xF42;-&#xF63;-[t]&#xF58;&#xF53;-&#xF44;&#xF42;-&#xF42;&#xF5E;&#xF53;-&#xF61;&#xF44;-&#xF61;&#xF7C;&#xF51;-&#xF58;&#xF7C;&#xF51;/ &#xF62;&#xF92;&#xFB1;&#xF74;&#xF53;-&#xF88;&#xFB2;-&#xF46;&#xF42;&#xF66;-&#xF58;&#xF7A;&#xF51;-&#xF58;&#xF72;-&#xF56;&#xFB1;&#xF7A;&#xF51;-&#xF54;&#xF60;&#xF72;-[t]&#xF62;&#xF72;&#xF42;&#xF66;-&#xF63;-&#xF60;&#xF46;&#xF51;-&#xF88;&#xFB2;-&#xF58;&#xF72;-&#xF62;&#xF74;&#xF44;-&#xF42;&#xF66;&#xF74;&#xF44;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="735"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">This meditation, by the way, has some parallels in the practice of the "recitation of diamond," which is part of the secret teachings.  This is also the point that the great Kedrup has in mind in his famed lines of praise, addressed to our Lord Lama [Je Tsongkapa]:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="736"/>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="737"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">A single puff of breath from Your holy lips, O Savior,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="738"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Brings soothing benefit to limitless beings.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="739"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="740"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">There are many books of instruction on these points, but it would be improper for me to explain them to an audience that was not following the practice of desirelessness on a regular basis.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="741"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="742"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="743"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Some indication of the ultimate power of the practice is imparted in a very special praise of Pabongka Rinpoche himself, written by his devoted disciple, Kyabje Trijang Rinpoche&#x2014;tutor to His Holiness the XIVth Dalai Lama, and Root Lama of our own Root Lama, Khen Rinpoche Geshe Lobsang Tharchin:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="744"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="745"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF58;&#xF51;&#xF7C;&#xF62;-&#xF53;-&#xF56;&#xF5E;&#xF72;-&#xF56;&#xF62;&#xF92;&#xFB1;-&#xF54;-&#xF63;&#xF66;/ &#xF66;&#xF44;&#xF66;-&#xF62;&#xF92;&#xFB1;&#xF66;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF42;[u]&#xF61;&#xF7C;-&#xF56;-&#xF53;&#xF72;/ [s]/&#xF62;&#xF92;&#xFB1;&#xF74;-&#xF58;&#xF7A;&#xF51;-&#xF60;&#xF42;&#xF60;-&#xF61;&#xF44;-&#xF61;&#xF7C;&#xF51;-&#xF58;&#xF72;&#xF53;-&#xF4F;&#xF7A;/ /&#xF51;&#xF56;&#xF74;&#xF42;&#xF66;-&#xF40;&#xFB1;&#xF44;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF63;-[t]&#xF53;&#xF72;/ /&#xF66;&#xFA8;&#xF53;-&#xF66;&#xFB3;&#xF51;-&#xF41;&#xF7C;-&#xF53;&#xF62;-&#xF61;&#xF44;-&#xF51;&#xF42;-&#xF60;&#xF56;&#xFB1; &#xF44;./ /&#xF5E;&#xF7A;&#xF66;-&#xF42;&#xF66;&#xF74;&#xF44;&#xF66;-&#xF54;-&#xF63;&#xF9F;&#xF62;/ &#xF66;&#xF90; -[t]&#xF42;&#xF66;&#xF74;&#xF44;-&#xF50;&#xF74;&#xF42;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF58;&#xF5B;&#xF51;-&#xF54;-&#xF62;&#xF92;&#xFB1;-&#xF46;&#xF7A;-&#xF56;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF66;&#xFA8;&#xF7C;&#xF66;-&#xF45;&#xF72;/ &#xF58;&#xF5B;&#xF51;-&#xF54;&#xF60;&#xF72;-[t]&#xF46;-&#xF55;&#xFB2;-&#xF58;&#xF7C;-&#xF50;-&#xF53;-&#xF51;&#xF56;&#xF74;&#xF42;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF62;&#xF92;&#xFB1;&#xF74;-&#xF56;-&#xF5A; &#xF53;-&#xF46;&#xF51;-&#xF40;&#xFB1;&#xF44;-&#xF42;&#xF5E;&#xF53;-[t]&#xF51;&#xF7C;&#xF53;-&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF51;&#xF44;./ &#xF42;&#xFB2;&#xF42;&#xF66;-&#xF66;&#xF9F;&#xF7C;&#xF44;-&#xF85; [n]-&#xF51;&#xF60;&#xF72;-&#xF66;&#xF92;&#xFB2;-&#xF51;&#xF56;&#xFB1;&#xF44;&#xF66;-&#xF58;-&#xF56;&#xF45;&#xF7C;&#xF66;-[t]&#xF66;&#xF94;&#xF42;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF42;&#xF51;&#xF44;&#xF66;-&#xF66;&#xF74;-&#xF5F;&#xFB3;&#xF7C;&#xF66;-&#xF54;-&#xF66;&#xF7C;&#xF42;&#xF66;-&#xF42;&#xF66;&#xF44;-&#xF56;-&#xF56;&#xF66;&#xF58;-&#xF42;&#xFB1;&#xF72;&#xF66;-&#xF58;&#xF72;-&#xF41;&#xFB1;&#xF56;-[t]&#xF54;&#xF60;&#xF72;-&#xF66;&#xF90; -&#xF42;&#xF66;&#xF74;&#xF44;-&#xF50;&#xF74;&#xF42;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF61;&#xF7C;&#xF53;-&#xF4F;&#xF53;-&#xF58;&#xF50;&#xF60;-&#xF51;&#xF42;-&#xF53;&#xF72;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="746"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">To summarize, we can recall the lines from the </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Four Hundred Verses</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"> [of Master Arya Deva, c. 200 AD] which say:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="747"/>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="748"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">The Buddhas never move the slightest twitch</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="749"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Unless it serves great purpose;</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="750"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Even the slightest breath from their lips</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="751"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Is but sheer help to living kind.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="752"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="753"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">So there's absolutely no need for me to mention here those major far-reaching, sacred deeds of His holy body, speech, and mind; even the slightest fraction of His high actions represent infinite and inconceivable secret qualities of divine actions, words, and thoughts&#x2014;and this is true even down to the way He breathes, constantly practicing giving and taking for the benefit of all others, constantly repeating the song of the utterance of emptiness, a spontaneous hymn of the holy sound of </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">nada.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="754"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="755"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF47;&#xF72;-&#xF66;&#xF90;&#xF51;-&#xF88;&#xFB2;-&#xF61;&#xF44;-&#xF51;&#xF54;&#xF63;-&#xF63;&#xF94;&#xF53;-&#xF5F;&#xFB3;-&#xF56;&#xF66;/ &#xF53;&#xF58;-&#xF58;&#xF41;&#xF60;-&#xF58;&#xF7A;&#xF51;-&#xF54;&#xF66;-&#xF60;&#xF51;&#xF56;-&#xF46;&#xF42;&#xF66;-[t]&#xF63;&#xF94;&#xF7C;&#xF42;-&#xF54;&#xF62;-&#xF58;&#xF72;-&#xF60;&#xF42;&#xFB1; &#xF62;-&#xF4F;&#xF7A;/ /&#xF60;&#xF51;&#xF72;&#xF62;-&#xF53;&#xF72;-&#xF62;&#xF44;-&#xF58;&#xF50;&#xF74;-&#xF5F;&#xF51;-&#xF54;&#xF66;-&#xF63;&#xF94;&#xF7C;&#xF42;-&#xF54;&#xF62;-&#xF60;&#xF42;&#xFB1; &#xF62;-&#xF51;&#xF7A;-[t]&#xF56;&#xF5E;&#xF72;&#xF53;/ /&#xF66;&#xFB3;&#xF7C;&#xF56;-&#xF58;-&#xF51;&#xF44;-&#xF56;&#xF45;&#xF66;-&#xF66;&#xF44;&#xF66;-&#xF62;&#xF92;&#xFB1;&#xF66;-&#xF66;&#xFB2;&#xF66;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF66;&#xF44;&#xF66;-&#xF62;&#xF92;&#xFB1;&#xF66;-[t]&#xF40;&#xFB1;&#xF72;/ /&#xF61;&#xF7C;&#xF53;-&#xF4F;&#xF53;-&#xF58;&#xF41;&#xF60;-&#xF63;&#xF9F;&#xF62;-&#xF58;&#xF50;&#xF60;-&#xF61;&#xF66;-&#xF58;-&#xF56;&#xF62;&#xF97;&#xF7C;&#xF51;-&#xF63;&#xF94;&#xF7C;&#xF42;-&#xF54;&#xF62;-&#xF60;&#xF42;&#xFB1; &#xF62;/ /&#xF5E;&#xF7A;&#xF66;-[t]&#xF58;&#xF41;&#xF60;-&#xF63;&#xF94;&#xF72;&#xF44;-&#xF51;&#xF56;&#xF44;-&#xF54;&#xF7C;-&#xF53;&#xF58;-&#xF58;&#xF41;&#xF62;-&#xF56;&#xF42;&#xFB2;&#xF7C;&#xF51;-&#xF54;-&#xF53;/ &#xF53;&#xF58;-&#xF5E;&#xF72;&#xF42;-&#xF53;-[t]&#xF62;&#xF44;-&#xF42;&#xF72;-&#xF42;&#xF64;&#xF7C;&#xF42;-&#xF62;&#xFA9;&#xF63;-&#xF5F;&#xF51;-&#xF53;&#xF66;-&#xF55;&#xFB1;&#xF72;&#xF62;-&#xF63;&#xF7C;&#xF42;-&#xF54;-&#xF63;&#xF66;-&#xF53;&#xF58;-&#xF58;&#xF41;&#xF60;-&#xF5F;&#xF51;-&#xF51;&#xF7A;-[t]&#xF63;&#xF94;&#xF7C;&#xF42;-&#xF54;&#xF62;-&#xF58;&#xF72;-&#xF60;&#xF42;&#xFB1; &#xF62;-&#xF56;-&#xF56;&#xF5E;&#xF72;&#xF53;/ &#xF66;&#xF44;&#xF66;-&#xF62;&#xF92;&#xFB1;&#xF66;-&#xF42;&#xF45;&#xF72;&#xF42;-&#xF42;&#xF72;-&#xF61;&#xF7C;&#xF53;-&#xF4F;&#xF53;-&#xF66;&#xF44;&#xF66;-[t]&#xF62;&#xF92;&#xFB1;&#xF66;-&#xF66;&#xFB2;&#xF66;-&#xF51;&#xF44;-&#xF56;&#xF45;&#xF66;-&#xF54;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF40;&#xFB1;&#xF72;&#xF66;-&#xF56;&#xF66;&#xF90;&#xF63;-&#xF54;-&#xF62;&#xF92;&#xFB1;-&#xF58;&#xF5A;&#xF7C;&#xF60;&#xF72;-&#xF56;&#xF62;-[t]&#xF56;&#xF62;&#xF97;&#xF7C;&#xF51;-&#xF40;&#xFB1;&#xF44;-&#xF62;&#xFAB;&#xF7C;&#xF42;&#xF66;-&#xF54;&#xF62;-&#xF58;&#xF72;-&#xF85;&#xFB2;&#xF66;-&#xF54;&#xF62;-&#xF42;&#xF66;&#xF74;&#xF44;&#xF66;-&#xF54;-&#xF63;&#xF9F;&#xF62;-&#xF66;&#xF44;&#xF66;-&#xF62;&#xF92;&#xFB1;&#xF66;-[t]&#xF53;&#xF44;-&#xF55;&#xF53;-&#xF5A; &#xF53;-&#xF41;&#xF7C;-&#xF53;&#xF60;&#xF72;-&#xF66;&#xF7C;-&#xF66;&#xF7C;-&#xF62;&#xF44;-&#xF62;&#xF72;&#xF42;-&#xF54;&#xF60;&#xF72;-&#xF61;&#xF7A;-&#xF64;&#xF7A;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF66;&#xFA4;&#xFB1;&#xF7C;&#xF51;-&#xF61;&#xF74;&#xF63;-[t]&#xF63;&#xF66;/ &#xF56;&#xF51;&#xF42;-&#xF63;&#xF9F;-&#xF56;&#xF74;&#xF60;&#xF72;-&#xF5A; &#xF62;-&#xF58;&#xF50;&#xF7C;&#xF44;-&#xF42;&#xF72;-&#xF66;&#xF90;&#xFB1;&#xF7A;-&#xF56;&#xF7C;&#xF60;&#xF72;-&#xF56;&#xF66;&#xF58;-&#xF56;&#xF62;&#xF97;&#xF7C;&#xF51;-&#xF40;&#xFB1;&#xF72;-&#xF61;&#xF74;&#xF63;-&#xF63;&#xF66;-[t]&#xF60;&#xF51;&#xF66;-&#xF64;&#xF72;&#xF44;./</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="756"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Along these same lines, the glorious Chandra Kirti has said,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="757"/>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="758"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">It's not as if the Winged Ones ever turn back</c></p>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="759"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">because there's no more sky to fly in;</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="760"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Rather they return in their flight across it because</c></p>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="761"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">their own strength is exhausted.</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="762"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">It's the same when the noble children and the Buddhas, together</c></p>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="763"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">with disciples, attempt to describe the qualities</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="764"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Of a single Buddha; they're infinite as the sky,</c></p>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="765"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">unspeakable, so they turn back from the attempt.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="766"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="767"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">This is a reference to the great </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">garuda</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"> birds, who start off on a journey across the sky.  At some point in their passage the strength of their wings is exhausted, and they find that they must turn back.  But it's not as if they reverse their flight because the sky itself has somehow run out.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="768"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="769"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Suppose now that "Buddhas" and the noble children of Buddhas&#x2014;that is, bodhisattvas&#x2014;were all to attempt to bespeak the fine qualities of even a single Buddha.  [The first "Buddhas" here refers to practitioners of the lower way known as "self-made Buddhas," and "disciples" refers to other practitioners of the lower way commonly called "listeners."]  They could never succeed in doing so fully, even if they tried for the same number of eons as there are drops of water in the ocean.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="770"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="771"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">These are things that only Buddhas can see between each other, objects that only their discriminating wisdom can touch.  They are completely beyond the ability of people like you and I, people who are "short-sighted" and have yet to see emptiness directly, to ever describe in words, or even imagine in our thoughts. </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="772"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="773"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="774"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Changkya Rinpoche further describes the process of the breath in his commentary on the tradition of mental training in the following lines:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="775"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="776"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF66;&#xFA8;&#xF7C;&#xF53;-&#xF63;&#xF58;-&#xF56;&#xF88;&#xFB2;&#xF53;-&#xF56;&#xF45; -&#xF56;-&#xF63;&#xF66;-&#xF40;&#xFB1;&#xF44;./ /&#xF66;&#xF90;&#xFB1;&#xF7A;-&#xF56;&#xF7C;-&#xF49;&#xF7C;&#xF53;-&#xF58;&#xF7C;&#xF44;&#xF66;-&#xF88;&#xFB2;&#xF42;-&#xF42;&#xF72;&#xF66;-[t]&#xF51;&#xF40;&#xFB2;&#xF74;&#xF42;&#xF66;-&#xF54;-&#xF61;&#xF72;&#xF66;/ /&#xF58;&#xF72;-&#xF51;&#xF42;&#xF7A;-&#xF45; &#xF44;-&#xF5F;&#xF51;-&#xF58;&#xF46;&#xF72;&#xF66;-&#xF54;-&#xF42;&#xF44;-&#xF63;&#xF42;&#xF66;-&#xF54;/ /&#xF51;&#xF7A;-&#xF61;&#xF72;&#xF66;-[t]&#xF56;&#xF51;&#xF42;-&#xF53;&#xF72;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-&#xF51;&#xF58;&#xFB1;&#xF63;-&#xF56;-&#xF53;&#xF72;/ /&#xF42;&#xF44;-&#xF61;&#xF44;-&#xF62;&#xF74;&#xF44;-&#xF56;-&#xF42;&#xF45;&#xF72;&#xF42;-&#xF62;&#xFB1;-&#xF63;&#xF9F; &#xF44;-[t]&#xF61;&#xF44;-&#xF66;&#xFB3;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="777"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">The </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Prayer of Seventy</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"> too says,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="778"/>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="779"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Think of even the tiniest bit of the negative karma that comes</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="780"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">To those who are caught in the turmoil of the poison of mental affliction;</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="781"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Any single act like this would be enough to throw me</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="782"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">With the greatest ease into the realms of hell below.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="783"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="784"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF60;&#xF42;&#xFB2;&#xF7C;-&#xF56;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF42;&#xF44;-&#xF61;&#xF44;-&#xF62;&#xF74;&#xF44;./ /&#xF51;&#xF7A;-&#xF42;&#xFB2;&#xF53;-&#xF56;&#xF51;&#xF42;-&#xF42;&#xF72;&#xF66;-[t]&#xF51;&#xF44;-&#xF88;&#xFB2;-&#xF56;&#xFB3;&#xF44;-&#xF56;&#xF62;-&#xF56;&#xF42;&#xFB1;&#xF72;/ /&#xF60;&#xF47;&#xF72;&#xF42;-&#xF62;&#xF9F;&#xF7A;&#xF53;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF53;&#xF72;-&#xF58;&#xF46;&#xF7C;&#xF42;-&#xF62;&#xFB1;-&#xF56;&#xF51;&#xF7A;-&#xF56;-&#xF61;&#xF72;/ /&#xF5A;&#xF72;&#xF58;-[t]&#xF53;&#xF66;-&#xF62;&#xF9F;&#xF42;-&#xF62;&#xFB1;-&#xF51;&#xF42;&#xF7A;-&#xF56;-&#xF56;&#xFB1;&#xF7A;&#xF51;-&#xF42;&#xFB1; &#xF62;-&#xF45;&#xF72;&#xF42; /&#xF5E;&#xF7A;&#xF66;-&#xF42;&#xF66;&#xF74;&#xF44;&#xF66;-&#xF51;&#xF7A;-&#xF63;&#xF9F;&#xF62;-&#xF61;&#xF44;-&#xF51;&#xF44;-[t]&#xF61;&#xF44;-&#xF42;&#xF7C;&#xF58;&#xF66;-&#xF54;&#xF66;/	</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="785"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">I take upon myself, with greatest gladness, any and all</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="786"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Of the sufferings that each and every being must undergo.</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="787"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">May the hearts of all the world be filled with the very highest</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="788"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Of happiness, and may they always live in acts of virtue.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="789"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="790"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Meditate on these thoughts constantly.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="791"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="792"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF56;&#xFB1;&#xF44;-&#xF5A;&#xF7A;-&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF58;&#xF51;&#xF7C;&#xF62;-&#xF56;&#xF66;&#xFA1; &#xF66;-&#xF56;&#xF66;&#xF92;&#xF7C;&#xF58;-&#xF5A; &#xF63;-&#xF53;&#xF72;/ /&#xF51;&#xF7A;-&#xF42;&#xF49;&#xF72;&#xF66;-[t]&#xF62;&#xFB3;&#xF74;&#xF44;-&#xF63;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7C;&#xF53;-&#xF54;&#xF62;-&#xF56;&#xFB1;-&#xF5E;&#xF7A;&#xF66;-&#xF42;&#xF66;&#xF74;&#xF44;&#xF66;/ /&#xF51;&#xF7A;-&#xF61;&#xF44;-&#xF62;&#xF44;-&#xF42;&#xF72;-&#xF66;&#xFA3;-&#xF56;&#xF74;&#xF42;-[t]&#xF42;&#xF49;&#xF72;&#xF66;-&#xF53;&#xF66;-&#xF62;&#xFB3;&#xF74;&#xF44;./ /&#xF55;&#xFB1;&#xF72;&#xF62;-&#xF63;-&#xF60;&#xF42;&#xFB2;&#xF7C;-&#xF5A;&#xF7A;-&#xF63;&#xF74;&#xF66;-&#xF51;&#xF44;-&#xF63;&#xF7C;&#xF44;&#xF66;-&#xF66;&#xFA4;&#xFB1;&#xF7C;&#xF51;-&#xF51;&#xF44;./ [s]/&#xF51;&#xF42;&#xF7A;-&#xF56;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-&#xF42;&#xFB2;&#xF53;-&#xF63;-&#xF56;&#xF4F;&#xF44;-&#xF56;-&#xF61;&#xF72;&#xF66;/ /&#xF51;&#xF7A;-&#xF51;&#xF42;-&#xF5F;&#xF42;-&#xF58;&#xF7A;&#xF51;-&#xF56;&#xF51;&#xF7A;-&#xF56;-[t]&#xF58;&#xF50;&#xF62;-&#xF50;&#xF74;&#xF42;-&#xF51;&#xF44;./ /&#xF63;&#xF94;&#xF53;-&#xF54;&#xF62;-&#xF56;&#xF66;&#xF58;-&#xF5E;&#xF72;&#xF44;-&#xF53;&#xF44;-&#xF88;&#xFB2;-&#xF62;&#xF94;&#xF74;&#xF56;-&#xF54;&#xF60;&#xF72;-&#xF5A;&#xF7A;/ [s]/&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-&#xF42;&#xFB2;&#xF53;-&#xF42;&#xFB1;&#xF72;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF62;&#xF92;&#xFB1;&#xF74;-&#xF56;&#xF45;&#xF66;-&#xF62;&#xFA3;&#xF58;&#xF66;/ /&#xF62;&#xF44;-&#xF42;&#xF72;-&#xF66;&#xF99;&#xF72;&#xF44;-[t]&#xF42;&#xF72;-&#xF51;&#xF40;&#xFB1;&#xF72;&#xF63;-&#xF88;&#xFB2;-&#xF56;&#xFB3;&#xF44;&#xF66;-&#xF54;-&#xF61;&#xF72;&#xF66;/ /&#xF51;&#xF7A;-&#xF51;&#xF42;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF42;&#xFB2;&#xF53;-&#xF51;&#xF44;-&#xF56;&#xFB2;&#xF63;-&#xF56;&#xF62;-[t]&#xF56;&#xF66;&#xF58;/ /&#xF51;&#xF7A;-&#xF63;&#xF9F;&#xF62;-&#xF42;&#xF7C;&#xF58;-&#xF53;-&#xF62;&#xFB3;&#xF74;&#xF44;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF42;&#xF49;&#xF72;&#xF66;-&#xF54;&#xF7C;-&#xF53;&#xF72;/ /&#xF60;&#xF47;&#xF74;&#xF42;-&#xF54;-&#xF42;&#xF45;&#xF72;&#xF42;-&#xF54;&#xF66;-[t]&#xF42;&#xF5E;&#xF53;-&#xF88;&#xFB2;-&#xF58;&#xF72;-&#xF61;&#xF7A;&#xF44;&#xF66;-&#xF64;&#xF72;&#xF44;./ /&#xF51;&#xFB2;&#xF53;-&#xF64;&#xF7A;&#xF66;-&#xF63;&#xF94;&#xF53;-&#xF54;&#xF66;-&#xF66;&#xF9F;&#xF7C;&#xF56;&#xF66;-&#xF53;&#xF72;-&#xF46;&#xF7A;-&#xF56;&#xF62;-[t]&#xF42;&#xF66;&#xF74;&#xF44;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="793"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">When you want to do a meditation to master these points, here is a brief description of how to proceed, through the practice of giving and taking:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="794"/>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="795"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Remember the text that says to "let these two ride on the wind";</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="796"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">For this you take the breath that passes out of both your nostrils</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="797"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And give with it to every living being first your body,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="798"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And then all your possessions, followed by your virtuous acts.</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="799"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Imagine then that they have found the ultimate happiness,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="800"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Free of all impurity.  Now when you inhale your breath</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="801"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">See it coming with the pain and cause of pain for every</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="802"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Living being, deep into the center of your heart;</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="803"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Imagine then that they are free of every pain there is.</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="804"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">It's said that doing the practice in this way is especially powerful,</c></p>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="805"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">For the reason that&#x2014;because the mind and winds both move in tandem&#x2014;</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="806"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">You'll be able to avoid distraction, and keep tight recollection.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="807"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="808"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="809"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Here next are verses from the </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Abbreviation of the Essence, </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">a text on mental training, again by the first Changkya Rinpoche:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="810"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="811"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF51;-&#xF67;&#xFB2;&#xF72;&#xF63;-&#xF4F;&#xF7A;-&#xF51;&#xFB2;&#xF72;&#xF63;-&#xF53;-&#xF66;&#xFA3;-&#xF56;&#xF74;&#xF42;-&#xF42;&#xF72; /&#xF62;&#xFB3;&#xF74;&#xF44;-&#xF55;&#xF62;-&#xF63;-&#xF60;&#xF42;&#xFB2;&#xF7C;-&#xF5A;&#xF7A;-&#xF62;&#xF44;-&#xF62;&#xF92;&#xFB1;&#xF74;&#xF51;-[t]&#xF40;&#xFB1;&#xF72;/ /&#xF46;&#xF7C;&#xF66;-&#xF56;&#xF51;&#xF7A;-&#xF51;&#xF42;&#xF7A;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF60;&#xF42;&#xFB2;&#xF7C;-&#xF51;&#xFB2;&#xF74;&#xF42;-&#xF42;&#xF72; /&#xF58;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-&#xF42;&#xFB2;&#xF53;-&#xF63;-[t]&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF56;-&#xF51;&#xF44;./ /&#xF62;&#xFB3;&#xF74;&#xF44;-&#xF53;&#xF44;-&#xF88;&#xFB2;-&#xF62;&#xF92;&#xFB1;&#xF74;-&#xF5A;&#xF7A;-&#xF60;&#xF42;&#xFB2;&#xF7C;-&#xF42;&#xFB2;&#xF53;-&#xF42;&#xFB1;&#xF72;/ /&#xF66;&#xFA1;&#xF72;&#xF42;-&#xF66;&#xFA1; &#xF42;-[t]&#xF56;&#xF66;&#xF94;&#xF63;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF62;&#xF44;-&#xF63;-&#xF56;&#xFB3;&#xF44;&#xF66;/ /&#xF5A; &#xF63;-&#xF51;&#xF7A;-&#xF63;&#xF9F;&#xF60;&#xF72;-&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF62;&#xFA3;&#xF63;-[t]&#xF60;&#xF56;&#xFB1;&#xF7C;&#xF62;-&#xF42;&#xFB1;&#xF72;&#xF66;/ /&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF56;&#xFB1;&#xF44;-&#xF46; &#xF56;-&#xF58;&#xF46;&#xF7C;&#xF42;-&#xF63;-&#xF42;&#xF5E;&#xF7C;&#xF63;-&#xF56;&#xF62;-&#xF56;&#xFB1;/ /&#xF88;&#xFB2;&#xF66;-&#xF42;&#xF53;&#xF66;-[t]&#xF66;&#xF90;&#xF56;&#xF66;-&#xF47;&#xF72;-&#xF63;&#xF9F;&#xF62;-&#xF42;&#xFB1; &#xF62;-&#xF40;&#xFB1;&#xF44;-&#xF62;&#xF74;&#xF44;./ /&#xF66;&#xF90;&#xFB1;&#xF56;&#xF66;-&#xF56;&#xFB3;-&#xF58;-&#xF58;&#xF46;&#xF7C;&#xF42;-&#xF42;&#xF66;&#xF74;&#xF58;-&#xF66;&#xF99;&#xF72;&#xF44;-[t]&#xF63;-&#xF56;&#xF66;&#xF58;/ /&#xF50;&#xF56;&#xF66;-&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF42;&#xF49;&#xF72;&#xF66;-&#xF54;&#xF7C;-&#xF49;&#xF58;&#xF66;-&#xF66;&#xF74;-&#xF56;&#xFB3;&#xF44;&#xF66;/  /&#xF46;&#xF7C;&#xF66;-&#xF60;&#xF51;&#xF72;-&#xF60;&#xF51;&#xFB2;&#xF62;-[t]&#xF60;&#xF55;&#xFB2;&#xF51;-&#xF54;-&#xF66;&#xF90;&#xF63;-&#xF56;-&#xF56;&#xF5F;&#xF44;./ /&#xF51;&#xF7C;&#xF53;-&#xF47;&#xF72;-&#xF63;&#xF9F;&#xF62;-&#xF56;&#xF66;&#xF58;-&#xF56;&#xF5E;&#xF72;&#xF53;-&#xF63;&#xF7A;&#xF42;&#xF66;-&#xF60;&#xF42;&#xFB2;&#xF74;&#xF56;-&#xF54;&#xF62;/ [s]/&#xF66;&#xF90;&#xFB1;&#xF56;&#xF66;-&#xF58;&#xF46;&#xF7C;&#xF42;-&#xF42;&#xF66;&#xF74;&#xF58;-&#xF51;&#xF58;-&#xF54;&#xF66;-&#xF56;&#xFB1;&#xF72;&#xF53;-&#xF42;&#xFB1;&#xF72;&#xF66;-&#xF62;&#xFB3;&#xF7C;&#xF56;&#xF66;/ [s]</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="812"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Now</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="813"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">I'll put it all together for you;</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="814"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">See</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="815"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Your breath as it passes out,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="816"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Give</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="817"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">With it Dharma: happiness, good,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="818"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">To</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="819"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Every mother in six realms.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="820"/>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="821"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Then</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="822"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">When you breathe in take from every</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="823"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Being</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="824"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">All their bad deeds and their pain.</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="825"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Go</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="826"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Thus deep, give and also take,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="827"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Lose</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="828"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Your heart to this supreme Wish.	</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="829"/>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="830"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">When</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="831"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And wherever you may be</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="832"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Run</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="833"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">To your Lama and Three Jewels.</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="834"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Live</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="835"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">In this way, both give and take;</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="836"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Luck</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="837"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Amazing that I found this Dharma.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="838"/>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="839"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Grant</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="840"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Me your blessing holy Jewels,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="841"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Let</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="842"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Every Dharma wish come true.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="843"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="844"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="845"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">***************</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="846"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="847"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="848"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">The first Changkya Rinpoche describes the role of breath in the meditation of giving and taking as well in a work entitled, </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Entertainment for those of the Higher Way," being an Explanation of the Letter of Instruction known as the "Eight Verses," a Work of Advice on Practicing the Wish for Enlightenment composed by the Great Bodhisattva, Dorje Senge of Langri Tang:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="849"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="850"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF63;&#xF74;&#xF66;-&#xF66;&#xF7C;&#xF42;&#xF66;-&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF5A; &#xF63;-&#xF5E;&#xF72;-&#xF56;-&#xF63;&#xFB7;&#xF66;/ /&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-&#xF51;&#xF56;&#xF74;&#xF63;-&#xF5E;&#xF72;&#xF44;-&#xF60;&#xF55;&#xF7C;&#xF44;&#xF66;-&#xF54;-&#xF63;/ [s]/&#xF56;&#xF51;&#xF42;-&#xF53;&#xF72;-&#xF58;&#xF72;-&#xF5F;&#xF51;-&#xF42;&#xF4F;&#xF7A;&#xF62;-&#xF42;&#xFB1; &#xF62;-&#xF4F;&#xF7A;/ /&#xF61;&#xF7C;-&#xF56;&#xFB1;&#xF51;-&#xF58;&#xF41;&#xF7C;-&#xF51;&#xF56;&#xFB2;-&#xF66;&#xFA3;-&#xF5A;&#xF7C;&#xF42;&#xF66;-&#xF66;&#xF74;/ /&#xF58;&#xF88;&#xFB2;&#xF53;-[t]&#xF88;&#xFB2;-&#xF49;&#xF7A;-&#xF56;&#xF62;-&#xF42;&#xF53;&#xF66;-&#xF42;&#xFB1; &#xF62;-&#xF45;&#xF72;&#xF42; /&#xF5E;&#xF7A;&#xF66;-&#xF54;-&#xF63;&#xF9F;&#xF62;-&#xF62;&#xF7C;-&#xF58;&#xF7C;&#xF66;-&#xF54;-&#xF61;&#xF72;&#xF66;/ /&#xF62;&#xF44;-&#xF63;&#xF74;&#xF66;-&#xF61;&#xF72;&#xF51;-[t]&#xF56;&#xF5E;&#xF72;&#xF53;-&#xF53;&#xF7C;&#xF62;-&#xF56;&#xF74;-&#xF63;&#xF66;/ /&#xF66;&#xF7C;-&#xF66;&#xF7C;&#xF60;&#xF72;-&#xF60;&#xF51;&#xF7C;&#xF51;-&#xF51;&#xF56;&#xFB2;-&#xF66;&#xFA4;&#xFB2;&#xF74;&#xF63;-&#xF53;&#xF66;-&#xF42;&#xF4F;&#xF7C;&#xF44;./ /&#xF63;&#xF7A;&#xF53;-&#xF54;&#xF60;&#xF72;-&#xF5A; &#xF63;-&#xF61;&#xF44;-[t]&#xF58;&#xF7C;&#xF66;-&#xF54;-&#xF61;&#xF72;&#xF66;/ /&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF66;&#xFA1;&#xF72;&#xF42;-&#xF66;&#xFA1; &#xF42;-&#xF42;&#xFB2;&#xF53;/ /&#xF62;&#xF44;-&#xF42;&#xF72;-&#xF62;&#xF92;&#xFB1;&#xF74;&#xF51;-&#xF66;&#xF9F;&#xF7A;&#xF44;-[t]&#xF56;&#xFB1; &#xF44;-&#xF56;&#xF62;-&#xF56;&#xF66;&#xF58;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="851"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">On giving the body and such, Master Shantideva's said:</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="852"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"May I become a never-ending treasure to supply</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="853"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">The entire range of materials things that ever may be needed</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="854"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">To all those beings living in deep want and destitution,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="855"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Appearing right before them as the thing they most require."</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="856"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Use your ability, as he said then, make a sincere wish</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="857"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">That your body might become a wish-fulfilling gem:</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="858"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Practice giving, send forth to them whatever each may want.</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="859"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">As for the act of taking, go again and make a wish</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="860"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">That all the bad deeds and the suffering of all living beings</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="861"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Could come instead and ripen on nobody else but you.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="862"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="863"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s][h]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF51;-&#xF63;&#xF9F;-&#xF58;&#xF7C;&#xF66;-&#xF54;&#xF66;-&#xF66;&#xFA4;&#xFB1;&#xF7C;&#xF51;-&#xF54;&#xF60;&#xF72;-&#xF66;&#xF90;&#xF56;&#xF66;/ /&#xF42;&#xF44;-&#xF63;&#xF60;&#xF44;-&#xF58;&#xF7C;&#xF66;-&#xF54;-&#xF42;&#xF59;&#xF7C;-&#xF46;&#xF7A;-&#xF56;&#xF66;/ [s]/&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF51;&#xF58;&#xF72;&#xF42;&#xF66;-&#xF54;-&#xF60;&#xF51;&#xF72;-&#xF63;&#xF9F;&#xF62;-&#xF66;&#xFA6;&#xFB1;&#xF44;./ /&#xF62;&#xF44;-&#xF42;&#xF72;-&#xF66;&#xFA3;-&#xF56;&#xF74;&#xF42;-&#xF42;&#xF49;&#xF72;&#xF66;-&#xF53;&#xF66;-&#xF62;&#xFB3;&#xF74;&#xF44;./ [s]/&#xF55;&#xFB1;&#xF72;&#xF62;-&#xF63;-&#xF60;&#xF42;&#xFB2;&#xF7C;-&#xF5A;&#xF7A;-&#xF56;&#xF51;&#xF7A;-&#xF51;&#xF42;&#xF7A;-&#xF42;&#xFB2;&#xF53;/ /&#xF60;&#xF7C;&#xF51;-&#xF5F;&#xF7A;&#xF62;-&#xF51;&#xF40;&#xF62;-&#xF54;&#xF7C;&#xF60;&#xF72;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF54;-&#xF61;&#xF72;&#xF66;/ /&#xF62;&#xFB3;&#xF74;&#xF44;-[t]&#xF51;&#xF44;-&#xF60;&#xF42;&#xFB2;&#xF7C;&#xF42;&#xF66;-&#xF53;&#xF66;-&#xF55;&#xFB1;&#xF72;&#xF62;-&#xF66;&#xF7C;&#xF44;-&#xF56;/ /&#xF58;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF42;&#xFB2;&#xF53;-&#xF42;&#xFB1;&#xF72;-&#xF66;&#xFA3;-&#xF56;&#xF74;&#xF42;-&#xF53;&#xF66;/ /&#xF39;&#xFB2;&#xF42;&#xF66;-[t]&#xF54;&#xF66;-&#xF58;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF56;&#xF51;&#xF7A;-&#xF56;&#xF66;-&#xF5A;&#xF72;&#xF58;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="864"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">At our present level this is nothing more than wishing,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="865"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">But in everything we do, what we wish plays the major role;</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="866"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Practice then both giving and taking in the following way.</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="867"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">When the breath is going out, through both of the two nostrils</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="868"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Of your nose, see it in the form of some white light</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="869"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">That carries with it every happiness, and each good deed:</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="870"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Send them forward travelling in tandem with the breath.</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="871"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Imagine then they enter the nostrils of every mother being,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="872"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And fill up all these mothers of yours with every happiness.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="873"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="874"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF53;&#xF44;-&#xF88;&#xFB2;-&#xF60;&#xF47;&#xF74;&#xF42;-&#xF5A;&#xF7A;-&#xF58;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF40;&#xFB1;&#xF72;/ &#xF66;&#xFA1;&#xF72;&#xF42;-&#xF66;&#xF92;&#xFB2;&#xF72;&#xF56;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF47;&#xF72;-&#xF66;&#xF99;&#xF7A;&#xF51;-&#xF54;/ [s]/&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF60;&#xF7C;&#xF51;-&#xF5F;&#xF7A;&#xF62;-&#xF53;&#xF42;-&#xF54;&#xF7C;-&#xF61;&#xF72;/ /&#xF62;&#xFA3;&#xF58;-&#xF54;&#xF66;-&#xF58;-&#xF61;&#xF72;-&#xF66;&#xFA3;-&#xF56;&#xF74;&#xF42;-&#xF53;&#xF66;/ /&#xF50;&#xF7C;&#xF53;-&#xF53;&#xF66;-[t]&#xF62;&#xF44;-&#xF42;&#xF72;-&#xF66;&#xFA3;-&#xF56;&#xF74;&#xF42;-&#xF62;&#xFB1;/ /&#xF39;&#xFB2;&#xF42;&#xF66;-&#xF4F;&#xF7A;-&#xF62;&#xF44;-&#xF63;-&#xF66;&#xFA8;&#xF72;&#xF53;-&#xF54;&#xF62;-&#xF56;&#xF66;&#xF58;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="875"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">When the breath returns and enters in, imagine that</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="876"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">All the bad deeds and the spiritual obstacles there may be</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="877"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">In your mothers comes forth from their nostrils in the form</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="878"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Of rays of some black light that reaches to you, and then enters</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="879"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Into your own nostrils.  Think then to yourself that all</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="880"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Of what has come from them will ripen onto you instead.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="881"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="882"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s][h]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF51;&#xF7A;-&#xF63;&#xF9F;&#xF62;-&#xF62;&#xFB3;&#xF74;&#xF44;-&#xF63;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7C;&#xF53;-&#xF54;-&#xF61;&#xF72;/ /&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF58;&#xF7C;&#xF66;-&#xF54;&#xF66;-&#xF63;&#xF7A;&#xF42;&#xF66;-&#xF66;&#xFA6;&#xFB1;&#xF44;&#xF66;-&#xF53;/ [s]/&#xF62;&#xFB3;&#xF74;&#xF44;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF60;&#xF47;&#xF74;&#xF42;-&#xF54;-&#xF42;&#xF45;&#xF72;&#xF42;-&#xF54;&#xF60;&#xF72;-&#xF55;&#xFB1;&#xF72;&#xF62;/ /&#xF56;&#xF66;&#xF58;-&#xF54;- &#xFB2;&#xF42;&#xF66;-&#xF51;&#xFB2;&#xF42;-&#xF66;&#xF90;&#xFB1;&#xF7A;-&#xF66;&#xFB3;-&#xF42;&#xF66;&#xF74;&#xF44;&#xF66;/ [s][h]</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="883"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Suppose now that you're able to practice giving and taking in</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="884"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">This very way, making some strong wish to yourself as you do.</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="885"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Because of the fact that the mind and inner winds both move in tandem,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="886"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">It's easy, the scriptures say, for you to develop fierce good thoughts.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="887"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="888"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">***************</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="889"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="890"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">A final note on the connection between the breath and the practice of giving and taking appears in the </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Instructions of the Great Seal (the Mahamudra),</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic"> written again by the first Changkya Rinpoche around 1700:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="891"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="892"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF62;&#xFB3;&#xF74;&#xF44;-&#xF63;-&#xF66;&#xF7C;&#xF42;&#xF66;-&#xF56;&#xF5E;&#xF72;&#xF60;&#xF72;-&#xF66;&#xF90;&#xF56;&#xF66;-&#xF66;&#xF74;-&#xF56;&#xFB1;&#xF58;&#xF66;-&#xF66;&#xF99;&#xF72;&#xF44;-&#xF62;&#xF97;&#xF7A;-&#xF63;&#xFB7;&#xF42;-&#xF56;&#xF66;&#xF58;-[t]&#xF42;&#xFB1;&#xF72;&#xF66;-&#xF42;&#xFB2;&#xF53;-&#xF53;&#xF66;-&#xF56;&#xF66;&#xFB3;&#xF44;-&#xF66;&#xF9F;&#xF7A;-&#xF66;&#xFA3;-&#xF56;&#xF74;&#xF42;-&#xF42;[u]&#xF61;&#xF66;-&#xF53;&#xF66;-&#xF62;&#xFB3;&#xF74;&#xF44;-&#xF55;&#xFB1;&#xF72;&#xF62;-&#xF60;&#xF56;&#xF74;&#xF51;-&#xF54;-&#xF51;&#xF44;-[t]&#xF58;&#xF49;&#xF58;-&#xF88;&#xFB2;-&#xF62;&#xF44;-&#xF42;&#xF72;-&#xF56;&#xF51;&#xF7A;-&#xF51;&#xF42;&#xF7A;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF58;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF63;-[t]&#xF56;&#xF4F;&#xF44;-&#xF56;&#xF66;-&#xF51;&#xF7A;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF62;&#xF92;&#xFB1;&#xF74;&#xF51;-&#xF63;-&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF66;/[s][h]</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="893"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">When you reach the four lines with the part about "giving and taking that ride upon the wind," try first to bring up in your heart a motivation which includes thoughts of love, compassion, and personal responsibility.  Then breath out from your right nostril; while the breath goes out, imagine all your happiness and goodness going with it&#x2014;that is, give these things to all living beings, your mothers, and see them grow within their minds.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="894"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="895"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF66;&#xFA3;-&#xF56;&#xF74;&#xF42;-&#xF42;-[u]&#xF61;&#xF7C;&#xF53;-&#xF53;&#xF66;-&#xF53;&#xF44;-&#xF88;&#xFB2;-&#xF62;&#xF94;&#xF74;&#xF56;-&#xF54;-&#xF51;&#xF44;-&#xF58;&#xF49;&#xF58;-&#xF88;&#xFB2;-&#xF58;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-[t]&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF40;&#xFB1;&#xF72;-&#xF62;&#xF92;&#xFB1;&#xF74;&#xF51;-&#xF40;&#xFB1;&#xF72;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF62;&#xF92;&#xFB1;&#xF74;-&#xF56;&#xF45;&#xF66;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF5A; &#xF62;-[t]&#xF56;&#xFB3;&#xF44;&#xF66;-&#xF62;&#xF44;-&#xF62;&#xF92;&#xFB1;&#xF74;&#xF51;-&#xF42;&#xFB1;&#xF72;-&#xF62;&#xF44;-&#xF42;&#xF45;&#xF7A;&#xF66;-&#xF60;&#xF5B;&#xF72;&#xF53;-&#xF42;&#xFB1;&#xF72;-&#xF50;&#xF7C;&#xF42;-&#xF62;&#xFB1;-&#xF66;&#xFA4;&#xF74;&#xF44;&#xF66;-&#xF54;&#xF62;-&#xF56;&#xF66;&#xF58;-[t]&#xF54;&#xF60;&#xF72;-&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF42;&#xFB1;&#xF72;-&#xF58;&#xF53;-&#xF44;&#xF42;-&#xF56;&#xF66;&#xF92;&#xF7C;&#xF58;&#xF66;-&#xF54;&#xF60;&#xF72;-&#xF66;&#xF92;&#xF7C;-&#xF53;&#xF66;-&#xF42;&#xFB2;&#xF53;-&#xF62;&#xFAB;&#xF7C;&#xF56;-&#xF56;&#xFB1;&#xF44;-[t]&#xF46; &#xF56;-&#xF40;&#xFB1;&#xF72;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF66;&#xFA6;&#xFB1;&#xF44;./ [s][h]</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="896"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Breathe in then through your left nostril, and with the breath see yourself taking in all the sufferings of each mother, of every living being, along with all the causes that create this suffering.  Dump them all onto the tendency of cherishing yourself, that stays within  your own mind.  Use thus the instructions on the practice of giving and taking, in order to develop the "deceptive" form of the Wish for enlightenment.  [This is the same as what we normally think of as the Wish, as opposed to what is known as the "ultimate" Wish for enlightenment, which is actually a code-name for the direct perception of emptiness.]</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="897"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"><pbr/></c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="898"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="899"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="900"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="901"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="902"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="903"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="904"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">Contemplation Nine</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="905"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">Whose Suffering Do We Take?</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="906"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="907"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">There are details of the suffering that we take on during the practice of taking that can make the difference in whether our attempt is successful or not.  These are summarized by Pabongka Rinpoche in his famed </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Gift of Liberation:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="908"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="909"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF62;&#xF92;&#xFB1;&#xF66;-&#xF54;&#xF62;-&#xF53;/ &#xF5A;-&#xF51;&#xF58;&#xFB1;&#xF63;-&#xF56;&#xF60;&#xF72;-&#xF5A;-&#xF56;&#xF60;&#xF72;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF58;&#xF7A;-&#xF51;&#xF44;-&#xF56;&#xF45;&#xF66;-&#xF54;-[t]&#xF62;&#xF44;-&#xF42;&#xF72;-&#xF66;&#xF99;&#xF72;&#xF44;-&#xF42;&#xF62;-&#xF5A;-&#xF60;&#xF74;&#xF56;-&#xF40;&#xFB1;&#xF72;&#xF66;-&#xF42;&#xF45;&#xF7A;&#xF66;-&#xF60;&#xF5B;&#xF72;&#xF53;-&#xF60;&#xF42;&#xF7C;&#xF44;-&#xF54;&#xF7C;&#xF62;-&#xF50;&#xF72;&#xF58;-&#xF54;&#xF62;-&#xF56;&#xF66;&#xF58;/ &#xF51;&#xF7A;-[t]&#xF56;&#xF5E;&#xF72;&#xF53;-&#xF88;&#xFB2;-&#xF42;&#xFB2;&#xF44;-&#xF51;&#xF58;&#xFB1;&#xF63;-&#xF56;-&#xF51;&#xF44;./ &#xF61;&#xF72;-&#xF51;&#xFAD;&#xF42;&#xF66;/ &#xF88;&#xFB2;&#xF51;-&#xF60;&#xF42;&#xFB2;&#xF7C;/ &#xF63;&#xFB7;-&#xF58;&#xF72;&#xF53;/ &#xF58;&#xF72;-&#xF63;&#xFB7;-[t]&#xF66;&#xF7C;&#xF42;&#xF66;-&#xF53;&#xF66;-&#xF56;&#xFB1;&#xF44;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF66;-&#xF56;&#xF45; -&#xF54;-&#xF56;-&#xF58;&#xF53;-&#xF42;&#xFB1;&#xF72;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF51;&#xF44;./ &#xF66;&#xFA1;&#xF72;&#xF42;-&#xF66;&#xF92;&#xFB2;&#xF72;&#xF56;-[t]&#xF66;&#xF7C;&#xF42;&#xF66;-&#xF62;&#xF44;-&#xF66;&#xF9F;&#xF7A;&#xF44;-&#xF88;&#xFB2;-&#xF63;&#xF7A;&#xF53;-&#xF54;&#xF62;-&#xF56;&#xF66;&#xF58;&#xF66;-&#xF53;&#xF66;/ &#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF51;&#xF44;-&#xF56;&#xFB2;&#xF63;-&#xF5E;&#xF72;&#xF44;-[t]&#xF66;&#xFA1;&#xF72;&#xF42;-&#xF66;&#xF92;&#xFB2;&#xF72;&#xF56;-&#xF56;&#xFB1;&#xF44;-&#xF56;&#xF62;-&#xF58;&#xF7C;&#xF66;-&#xF54;-&#xF51;&#xF44;./ &#xF51;&#xF7A;-&#xF63;&#xF9F;&#xF62;-&#xF56;&#xF51;&#xF42;-&#xF63;-&#xF66;&#xFA8;&#xF72;&#xF53;-&#xF54;&#xF62;-&#xF42;&#xFB1; &#xF62;-&#xF45;&#xF72;&#xF42;-[t]&#xF45;&#xF7A;&#xF66;-&#xF40;&#xFB1;&#xF44;-&#xF66;&#xFA8;&#xF7C;&#xF53;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="910"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Here is a little more detail on the practice.  Imagine that the pain of the heat suffered by those in the hot hells, and in fact all the fire there itself, comes as a great mass of hotness into your heart, and melts into the devil who lives there: your own selfishness.  Then take all the sufferings, and all the bad deeds, and the spiritual obstacles and such that torment those in the cold hells, and craving spirits, and animals, and near-gods, and gods, and humans, and all the rest, all the way up to bodhisattvas at the tenth bodhisattva level.  Imagine that you have taken all their problems onto yourself; make a wish that they could be free of all pain, and that they could clean away from themselves all negative actions, and spiritual obstacles.  And make then a prayer, say to yourself, "May all these things come and ripen upon me instead."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="911"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="912"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">***************</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="913"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="914"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Pabongka Rinpoche, in the same text, also describes the correct progression of the practice, as follows: </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="915"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="916"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s][h]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF42;&#xF44;-&#xF5F;&#xF42;-&#xF42;&#xF72;-&#xF62;&#xF72;&#xF42;&#xF66;-&#xF63;-&#xF56;&#xFB3;&#xF7C;&#xF60;&#xF72;-&#xF85;&#xFB2;&#xF66;-&#xF54;-&#xF58;&#xF50;&#xF7C;-&#xF51;&#xF58;&#xF53;-&#xF45;&#xF53;-&#xF58;&#xF44;-&#xF56;&#xF66;-&#xF53;/ &#xF63;&#xF66;-[t]&#xF51;&#xF44;-&#xF54;&#xF7C;-&#xF56;-&#xF41;-&#xF45;&#xF72;&#xF42;-&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF66;&#xF92;&#xF7C;&#xF58;-&#xF54;-&#xF58;&#xF72;-&#xF85;&#xFB2;&#xF66;-&#xF54;&#xF60;&#xF44;-&#xF60;&#xF56;&#xFB1; &#xF44;-&#xF56;&#xF66;/ &#xF51;&#xF7A;-[t]&#xF63;&#xF9F;-&#xF56;&#xF74;&#xF60;&#xF72;-&#xF62;&#xF72;&#xF42;&#xF66;-&#xF63;/ &#xF63;&#xF7A;&#xF53;-&#xF54;&#xF60;&#xF72;-&#xF42;&#xF7C;-&#xF62;&#xF72;&#xF58;-&#xF62;&#xF44;-&#xF53;&#xF66;-&#xF56;&#xF62;&#xFA9;&#xF58;&#xF66;/ /&#xF5E;&#xF7A;&#xF66;-&#xF54;-&#xF63;&#xF9F;&#xF62;-&#xF62;&#xF44;-[t]&#xF63;-&#xF55;&#xFB1;&#xF72;-&#xF51;&#xFB2;&#xF7C;-&#xF60;&#xF7C;&#xF44;-&#xF62;&#xF92;&#xFB1;&#xF74;&#xF60;&#xF72;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF51;&#xF7A;-&#xF66;&#xF94;-&#xF51;&#xFB2;&#xF7C;-&#xF63;-&#xF63;&#xF7A;&#xF53;-&#xF45;&#xF72;&#xF44;-&#xF56;&#xF66;&#xF92;&#xF7C;&#xF58;/ [s]&#xF51;&#xF7A;-&#xF53;&#xF66;-&#xF66;&#xF44;-&#xF42;&#xF72;-&#xF51;&#xF7A;-&#xF51;&#xF7A;-&#xF62;&#xF72;&#xF44;-&#xF63;-&#xF63;&#xF7A;&#xF53;-&#xF54;-&#xF51;&#xF44;./ &#xF51;&#xF7A;-&#xF53;&#xF66;-&#xF5F;&#xFB3;-&#xF56;-&#xF62;&#xF97;&#xF7A;&#xF66;-&#xF58;&#xF60;&#xF72;-&#xF51;&#xF44;./ [s]&#xF63;&#xF7C;-&#xF62;&#xF97;&#xF7A;&#xF66;-&#xF58;&#xF60;&#xF72;-&#xF51;&#xF44;./ &#xF58;&#xF72;-&#xF5A;&#xF7A;-&#xF60;&#xF51;&#xF72;-&#xF51;&#xF44;./ &#xF66;&#xF90;&#xFB1;&#xF7A;-&#xF56;-&#xF55;&#xFB1;&#xF72;-&#xF58;/ &#xF5A;&#xF7A;-&#xF62;&#xF56;&#xF66;-&#xF42;&#xF4F;&#xF53;-&#xF51;&#xF44;./</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="917"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Various types of people have widely varying mental capacities for practice.  It even happens that there are some beginners who are unable to practice giving and taking at all.  For these kinds of people you should recall the line that says, "The proper order of taking is to start off from yourself."  The point here is that you should begin to clean beings of suffering through the process meditating, and taking upon yourself, first the pain that you anticipate might come to you yourself during the same afternoon, assuming that you are meditating in the morning.  Take then the suffering you will have to experience tomorrow by following the practice today.  Then take the pain you will have to endure during the entire next month, and then next year, and next over the entire remainder of your life.  Next take the suffering of your future life, and then lastly the pain of the entire string of all your lifetimes all together.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="918"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="919"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s][h]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF55;-&#xF58;/ &#xF49;&#xF7A;-&#xF60;&#xF56;&#xFB2;&#xF7A;&#xF63;/ &#xF56;&#xF62;-&#xF58;/ &#xF51;&#xF42;&#xFB2;-&#xF66;&#xF7C;&#xF42;&#xF66;-&#xF51;&#xF44;./ &#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF40;&#xFB1;&#xF72;-&#xF56;&#xF62;-[t]&#xF66;&#xFA6;&#xFB1;&#xF44;-&#xF66;&#xF9F;&#xF7A;/ &#xF66;&#xF94;-&#xF58;-&#xF66;&#xF94;-&#xF58;-&#xF63;-&#xF60;&#xF56;&#xFB1;&#xF7C;&#xF44;&#xF66;-&#xF54;-&#xF53;/ &#xF55;&#xFB1;&#xF72;-&#xF58;-&#xF55;&#xFB1;&#xF72;-&#xF58;-&#xF63;-[t]&#xF51;&#xF58;&#xF72;&#xF42;&#xF66;-&#xF54;-&#xF66;&#xFA4;&#xF7C;&#xF66;-&#xF40;&#xFB1;&#xF72;&#xF53;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF66;&#xFA1;&#xF72;&#xF42;-&#xF66;&#xF92;&#xFB2;&#xF72;&#xF56;-&#xF66;&#xF7C;&#xF42;&#xF66;-&#xF62;&#xF44;-&#xF66;&#xF9F;&#xF7A;&#xF44;-&#xF88;&#xFB2;-&#xF56;&#xFB3;&#xF44;./ [s]&#xF51;&#xF7A;-&#xF63;&#xF9F;&#xF62;-&#xF42;&#xF7C;-&#xF62;&#xF72;&#xF58;-&#xF60;&#xF51;&#xF72;-&#xF56;&#xF5E;&#xF72;&#xF53;-&#xF88;&#xFB2;-&#xF56;&#xFB1;&#xF66;-&#xF53;&#xF66;-&#xF66;&#xFA6;&#xFB1;&#xF7C;&#xF44;-&#xF51;&#xF42;&#xF7C;&#xF66;-&#xF40;&#xFB1;&#xF72;/ &#xF51;&#xF44;-&#xF54;&#xF7C;-&#xF53;&#xF66;-[t]&#xF51;&#xF42;&#xFB2;-&#xF66;&#xF7C;&#xF42;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF66;&#xFA1;&#xF72;&#xF42;-&#xF66;&#xFA1; &#xF42;-&#xF63;&#xF7A;&#xF53;-&#xF56;&#xFB3;&#xF7C;-&#xF58;&#xF72;-&#xF60;&#xF56;&#xFB1; &#xF44;./</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="920"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Then clean these problems from your own parents, and then from all those close to you, and next from those towards whom you are neutral; then continue with your enemies and the like, and finally from every living being that there is.  Each time you finish cleaning one group, then move your focus on to the next, and start again&#x2014;and keep moving on.  Take upon yourself all their sufferings;  their bad deeds, spiritual obstacles, and all the rest.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="921"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="922"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">You should practice the meditation in a gradual progression like this; don't try at first to take on the bad karma and pain of your enemies or the like, you won't be able to have the right feeling.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="923"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="924"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s][h]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF51;&#xF7A;&#xF66;-&#xF53;-&#xF66;&#xF90;&#xF56;&#xF66;-&#xF62;&#xF7A;&#xF62;-&#xF62;&#xF44;-&#xF53;&#xF66;-&#xF55;&#xF62;-&#xF56;&#xF62;&#xFA9;&#xF58;&#xF66;-&#xF53;&#xF66;-&#xF51;&#xF7A;-&#xF63;&#xF9F;&#xF62;-&#xF56;&#xF66;&#xF92;&#xF7C;&#xF58;/ &#xF66;&#xF90;&#xF56;&#xF66;-&#xF62;&#xF7A;&#xF62;-[t]&#xF51;&#xF58;&#xFB1;&#xF63;-&#xF56;-&#xF53;&#xF66;-&#xF56;&#xFB1;&#xF44;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF66;-&#xF56;&#xF45; -&#xF54;-&#xF56;&#xF60;&#xF72;-&#xF56;&#xF62;-&#xF51;&#xF44;./ &#xF66;&#xF90;&#xF56;&#xF66;-&#xF62;&#xF7A;&#xF62;-&#xF63;&#xF74;&#xF44;-&#xF54;&#xF60;&#xF72;-[t]&#xF55;&#xF74;-&#xF53;&#xF66;-&#xF58;&#xF62;-&#xF51;&#xF44;./ &#xF66;&#xF90;&#xF56;&#xF66;-&#xF62;&#xF7A;-&#xF58;&#xF51;&#xF60;-&#xF53;&#xF66;-&#xF61;&#xF62;-&#xF62;&#xF72;&#xF58;-&#xF60;&#xF51;&#xF7A;&#xF51;-&#xF40;&#xFB1;&#xF72;&#xF66;-&#xF51;&#xF7A;-&#xF63;&#xF9F;&#xF62;-&#xF56;&#xF66;&#xF92;&#xF7C;&#xF58;/ [s]&#xF50;-&#xF53;-&#xF41;&#xFB1;&#xF72;-&#xF63;-&#xF62;&#xFA1;&#xF7C;-&#xF56;&#xF62;&#xF92;&#xFB1;&#xF56;-&#xF56;&#xF60;&#xF72;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF5A; &#xF53;-&#xF56;&#xFB3;&#xF44;./ </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="925"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">We can say then that, on some occasions, you should start the practice with yourself and work on out to others.  On other occasions you should begin from the hells, and progress on up to those at the tenth bodhisattva level.  Sometimes you can start your meditation from the foothills of your land and work in steps down to the flatlands; then at other times begin with the flatlands and work gradually up to the foothills.  In the end you should learn to take on yourself any pain at all, all the way down to the suffering that a dog feels when someone throws a stone at it.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="926"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="927"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">***************</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="928"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="929"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">In his commentary on the </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Offering to Lamas, </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Ngulchu Dharma Bhadra describes the more subtle objects we take on ourselves with a bit more detail:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="930"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="931"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s][h]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF62;&#xF92;&#xFB1;&#xF66;-&#xF54;&#xF62;-&#xF56;&#xFB1;&#xF7A;&#xF51;-&#xF53;-&#xF63;&#xF7A;&#xF53;-&#xF54;&#xF60;&#xF72;-&#xF61;&#xF74;&#xF63;-&#xF63;-&#xF56;&#xFB3;-&#xF58;-&#xF53;&#xF72;-&#xF66;&#xF44;&#xF66;-&#xF62;&#xF92;&#xFB1;&#xF66;-&#xF51;&#xF44;&#xF7C;&#xF66;-&#xF61;&#xF72;&#xF53;-&#xF54;&#xF66;-[t]&#xF56;&#xFB3;-&#xF58;-&#xF51;&#xF44;-&#xF66;&#xF44;&#xF66;-&#xF62;&#xF92;&#xFB1;&#xF66;-&#xF63;-&#xF63;&#xF7A;&#xF53;-&#xF62;&#xF92;&#xFB1;&#xF74;-&#xF58;&#xF7A;&#xF51;-&#xF63;/ &#xF51;&#xF7A;-&#xF63;&#xF66;-&#xF42;&#xF5E;&#xF53;-&#xF54;-&#xF56;&#xFB1;&#xF44;-[t]&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF49;&#xF53;-&#xF62;&#xF44;-&#xF42;&#xF72;-&#xF64;&#xF7A;&#xF66;-&#xF66;&#xF92;&#xFB2;&#xF72;&#xF56;-&#xF55;&#xFB2;-&#xF58;&#xF7C;-&#xF5A; &#xF53;-&#xF46;&#xF51;-&#xF53;&#xF66;-&#xF51;&#xF58;&#xFB1;&#xF63;-&#xF56;&#xF60;&#xF72;-&#xF56;&#xF62;-[t]&#xF42;&#xFB1;&#xF72;-&#xF66;&#xFA1;&#xF72;&#xF42;-&#xF66;&#xF92;&#xFB2;&#xF72;&#xF56;-&#xF51;&#xF44;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF63;&#xF7A;&#xF53;-&#xF5E;&#xF72;&#xF44;./ </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="932"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Here is a bit more detail.  When we're talking about who it is we take from, remember that your Lamas are real Buddhas, and so there's nothing to take from Lamas and Buddhas.  You can though take on yourself all the bad deeds, and spiritual obstacles, and every kind of pain that is being experienced by anyone else at all&#x2014;so you can go all the way from the subtle obstacles to omniscience that we find among bodhisattvas, or listeners, or self-made buddhas, and work all the way down to the hells.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="933"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="934"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">***************</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="935"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="936"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Here lastly are comments by the same author, found in the </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Treasure House of Precious Jewels," being Notes to the "Dissection" Instruction for the Steps of the Path to Buddhahood entitled "Easy Path for Travelling to Omniscience":</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="937"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="938"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF51;&#xF7A;-&#xF61;&#xF44;-&#xF62;&#xF44;-&#xF42;&#xF45;&#xF7A;&#xF66;-&#xF60;&#xF5B;&#xF72;&#xF53;-&#xF41;&#xF7C;&#xF44;-&#xF53;-&#xF42;&#xF53;&#xF66;-&#xF55;&#xFB1;&#xF72;&#xF53;-&#xF46;&#xF51;-&#xF42;&#xF5E;&#xF53;-&#xF42;&#xF45;&#xF7A;&#xF66;-&#xF60;&#xF5B;&#xF72;&#xF53;-[t]&#xF42;&#xF66;&#xF62;-&#xF88;&#xFB2;-&#xF58;-&#xF66;&#xF90;&#xFB1;&#xF7A;-&#xF5E;&#xF72;&#xF44;-&#xF66;&#xFB3;&#xF62;-&#xF62;&#xF9F;&#xF7C;&#xF42;-&#xF54;-&#xF51;&#xF42;&#xF60;-&#xF62;&#xF56;-&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF66;-&#xF4F;&#xF7A;-&#xF42;&#xF5E;&#xF53;-&#xF42;&#xF45;&#xF7A;&#xF66;-&#xF60;&#xF5B;&#xF72;&#xF53;-[t]&#xF45; &#xF44;-&#xF5F;&#xF51;-&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF66;-&#xF40;&#xFB1;&#xF44;-&#xF62;&#xF92;&#xFB1;&#xF74;&#xF53;-&#xF60;&#xF50;&#xF74;&#xF53;-&#xF54;-&#xF63;-&#xF62;&#xF44;-&#xF42;&#xF45;&#xF7A;&#xF66;-&#xF60;&#xF5B;&#xF72;&#xF53;-&#xF42;&#xFB1;&#xF72;&#xF66;-&#xF56;&#xF62;-&#xF88;&#xFB2;-[t]&#xF42;&#xF45;&#xF7C;&#xF51;-&#xF54;&#xF66;-&#xF60;&#xF50;&#xF74;&#xF51;-&#xF58;&#xF72;-&#xF50;&#xF74;&#xF56;-&#xF54;&#xF62;-&#xF60;&#xF88;&#xFB2;&#xF42;-&#xF54;&#xF66;-&#xF62;&#xF44;-&#xF42;&#xF45;&#xF7A;&#xF66;-&#xF54;&#xF62;-&#xF56;&#xF5F;&#xF74;&#xF44;-&#xF53;&#xF66;-&#xF42;&#xF5E;&#xF53;-[t]&#xF61;&#xF63;-&#xF56;&#xF62;-&#xF60;&#xF51;&#xF7C;&#xF62;-&#xF56;&#xF60;&#xF72;-&#xF56;&#xFB3;&#xF7C;-&#xF66;&#xF90;&#xF51;-&#xF45;&#xF72;&#xF42;-&#xF40;&#xFB1;&#xF44;-&#xF58;&#xF72;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-&#xF66;&#xF99;&#xF58;-&#xF54;&#xF60;&#xF72;-&#xF5E;&#xF7A;-&#xF51;&#xF58;-[t]&#xF61;&#xF44;-&#xF61;&#xF44;-&#xF56;&#xFB1;-&#xF5E;&#xF72;&#xF44;./</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="939"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Now as long as you have deep within your breast the tendency to cherish yourself, there is no way you can have your initial experience of the opposite tendency, to cherish others; instead, you will fall victim once again to an onslaught of useless thoughts.  That is, even if you do manage to feel a tiny bit of the attitude where you cherish others, its flow will be interrupted by the tendency to cherish yourself, and you'll never be able to establish any real continuity.  Therefore you should make to yourself the following resolution, again and again: "I will never, for a single instant, allow myself the attitude where I cherish only myself and ignore the needs of others."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="940"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="941"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s][h]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF62;&#xF44;-&#xF61;&#xF63;-&#xF56;&#xF62;-&#xF51;&#xF7C;&#xF62;-&#xF53;&#xF66;-&#xF42;&#xF5E;&#xF53;-&#xF42;&#xF45;&#xF7A;&#xF66;-&#xF54;&#xF62;-&#xF56;&#xF5F;&#xF74;&#xF44;-&#xF66;&#xF9F;&#xF7A;-&#xF42;&#xF5E;&#xF53;-&#xF42;&#xFB1;&#xF72;-&#xF66;&#xFA1; &#xF42;-[t]&#xF56;&#xF66;&#xF94;&#xF63;-&#xF51;&#xF44;-&#xF66;&#xFA1;&#xF72;&#xF42;-&#xF54;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF56;&#xF51;&#xF42;-&#xF42;&#xF72;-&#xF62;&#xF92;&#xFB1;&#xF74;&#xF51;-&#xF66;&#xF9F;&#xF7A;&#xF44;-&#xF88;&#xFB2;-&#xF56;&#xFB3;&#xF44;-&#xF5E;&#xF7A;&#xF66;-[t]&#xF54;&#xF60;&#xF72;-&#xF66;&#xF90;&#xF56;&#xF66;-&#xF66;&#xF74;-&#xF42;&#xF5E;&#xF53;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF42;&#xFB1;&#xF72;&#xF66;-&#xF58;&#xF53;&#xF62;-&#xF5A; &#xF63;-&#xF56;&#xF66;&#xF58;-&#xF63;-&#xF66;&#xF99;&#xF72;&#xF44;-&#xF62;&#xF97;&#xF7A;-[t]&#xF56;&#xF66;&#xF92;&#xF7C;&#xF58;/ &#xF56;&#xF51;&#xF42;-&#xF42;&#xF72;-&#xF56;&#xF51;&#xF7A;-&#xF51;&#xF42;&#xF7A;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF42;&#xF5E;&#xF53;-&#xF63;-&#xF56;&#xF4F;&#xF44;-&#xF56;&#xF66;-&#xF5E;&#xF7A;&#xF66;-&#xF66;&#xF7C;&#xF42;&#xF66;-&#xF40;&#xFB1;&#xF72;-[t]&#xF5A;&#xF7A;/ &#xF42;&#xF5E;&#xF53;-&#xF56;&#xF51;&#xF7A;-&#xF56;&#xF66;-&#xF55;&#xF7C;&#xF44;&#xF66;-&#xF63;&#xF74;&#xF42;&#xF66;-&#xF56;&#xF66;&#xF58;-&#xF66;&#xF9F;&#xF7A;-&#xF56;&#xFB1;&#xF58;&#xF66;-&#xF54;-&#xF56;&#xF66;&#xF92;&#xF7C;&#xF58;/ &#xF51;&#xF7A;-&#xF51;&#xF42;-&#xF42;&#xF72;-&#xF5A;&#xF7A;-[t]&#xF50;&#xF7C;&#xF42;-&#xF58;&#xF62;-&#xF66;&#xF90;&#xFB1;&#xF7A;-&#xF51;&#xF40;&#xF60;-&#xF53;-&#xF62;&#xF44;-&#xF63;-&#xF55;&#xFB1;&#xF72;-&#xF51;&#xFB2;&#xF7C;-&#xF58;&#xFB1;&#xF7C;&#xF44;-&#xF60;&#xF42;&#xFB1; &#xF62;-&#xF42;&#xFB1;&#xF72;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-[t]&#xF51;&#xF44;./ &#xF66;&#xF44;-&#xF51;&#xF44;./ &#xF5F;&#xFB3;-&#xF56;-&#xF55;&#xFB1;&#xF72;-&#xF58;/ &#xF63;&#xF7C;-&#xF55;&#xFB1;&#xF72;-&#xF58;-&#xF66;&#xF7C;&#xF42;&#xF66;-&#xF63;-&#xF58;&#xFB1;&#xF7C;&#xF44;-&#xF60;&#xF42;&#xFB1; &#xF62;-&#xF42;&#xFB1;&#xF72;-[t]&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF56;&#xFB3;&#xF44;&#xF66;-&#xF63;/ &#xF51;&#xF7A;-&#xF53;&#xF66;-&#xF62;&#xF72;&#xF58;-&#xF42;&#xFB1;&#xF72;&#xF66;-&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF56;&#xFB1;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="942"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Think about the part that mentions, "I will ignore instead myself, and cherish all others; I will take upon myself all the sufferings and negative actions of others."  At this point you should meditate on compassion, thinking about how others are tormented by suffering.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="943"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="944"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Now think about the part where the text mentions, "By my act of giving away all my happiness and good deeds."  Here you should contemplate how deprived others are of any happiness, and thus meditate on love.  If at the beginning you find these attitudes difficult to bring up in your heart, then begin by taking on first the suffering that you yourself will be experiencing by this same afternoon.  Then take on the suffering you will have tomorrow, and then next month, and next year, and so on.  So in stages you can practice giving and taking.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="945"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="946"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s][h]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF61;&#xF44;-&#xF53;-&#xF51;&#xF58;&#xFB1;&#xF63;-&#xF56;-&#xF5A;-&#xF42;&#xFB2;&#xF44;-&#xF66;&#xF7C;&#xF42;&#xF66;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF46;&#xF7A;-&#xF62;&#xF72;&#xF58;-&#xF53;&#xF66;-&#xF56;&#xF62;&#xFA9;&#xF58;&#xF66;-[t]&#xF4F;&#xF7A;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF62;&#xF92;&#xFB1;&#xF74;-&#xF56;&#xF45;&#xF66;-&#xF51;&#xF44;-&#xF49;&#xF53;-&#xF62;&#xF44;-&#xF66;-&#xF56;&#xF45; &#xF60;&#xF72;-&#xF56;&#xFB1;&#xF44;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF62;&#xFA3;&#xF58;&#xF66;-[t]&#xF40;&#xFB1;&#xF72;-&#xF64;&#xF7A;&#xF66;-&#xF66;&#xF92;&#xFB2;&#xF72;&#xF56;-&#xF55;&#xFB2;-&#xF58;&#xF7C;-&#xF5A; &#xF53;-&#xF46;&#xF51;-&#xF66;&#xF7C;&#xF42;&#xF66;-&#xF66;&#xFA3;&#xF7C;&#xF51;-&#xF56;&#xF45; &#xF51;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF40;&#xFB1;&#xF72;-&#xF49;&#xF7A;&#xF66;-[t]&#xF66;&#xF90;&#xFB1;&#xF7C;&#xF53;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF56;&#xFB3;&#xF44;./ [s][h]</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="947"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Alternately you can begin with the greatest forms of suffering; for example, with the heat or cold in the hells, and take then upon yourself both the pain and its causes.  Work all the way up to the most subtle obstacles to omniscience contained in the minds of listeners, self-made buddhas, and bodhisattvas at the tenth level; take upon yourself all the problems that exist in both the world around you, and in all those who live together with you here.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="948"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"><pbr/></c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="949"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="950"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="951"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="952"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="953"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="954"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="955"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">Contemplation Ten</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="956"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">Additional details of the visualization</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="957"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="958"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">How the blackness leaves them</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="959"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="960"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">We follow now with a few short notes on other details of the meditation.  The first and second are found in the </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Gift of Liberation</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic"> by Pabongka Rinpoche:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="961"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="962"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF51;&#xF7A;&#xF60;&#xF72;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF66;&#xFA4;&#xF74;-&#xF42;&#xFB2;&#xF72;&#xF66;-&#xF66;&#xF90;&#xFB2;-&#xF56;&#xF5E;&#xF62;-&#xF56;-&#xF63;&#xF9F;&#xF62;-&#xF60;&#xF7C;&#xF51;-&#xF53;&#xF42;-&#xF54;&#xF7C;&#xF60;&#xF72;-[t]&#xF62;&#xFA3;&#xF58;-&#xF54;&#xF62;-&#xF62;&#xF44;-&#xF42;&#xF72;-&#xF66;&#xF99;&#xF72;&#xF44;-&#xF42;&#xF62;-&#xF42;&#xF45;&#xF7A;&#xF66;-&#xF60;&#xF5B;&#xF72;&#xF53;-&#xF63;-&#xF50;&#xF72;&#xF58;-&#xF54;&#xF62;-&#xF56;&#xF66;&#xF58;-&#xF5E;&#xF72;&#xF44;./ </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="963"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Peel all the suffering off of them as if you were shaving a hair off with a razor; see it come off in the form of black light, and imagine that it comes into your heart, and sinks into your tendency there of cherishing yourself.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="964"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="965"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="966"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">About how it feels</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="967"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="968"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s][h]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF56;&#xFB3;&#xF44;&#xF66;-&#xF54;-&#xF51;&#xF7A;-&#xF49;&#xF72;&#xF51;-&#xF40;&#xFB1;&#xF44;-&#xF61;&#xF63;-&#xF56;&#xF60;&#xF58;/ &#xF60;&#xF42;&#xFB2;&#xF58;-&#xF88;&#xFB2;-&#xF56;&#xF5E;&#xF42;-&#xF54;-&#xF63;&#xF9F;-&#xF56;&#xF74;-&#xF58;&#xF72;&#xF53;-&#xF54;&#xF62;/ [s]&#xF66;&#xF99;&#xF72;&#xF44;-&#xF42;&#xF72;-&#xF51;&#xF56;&#xF74;&#xF66;-&#xF66;&#xF74;-&#xF63;&#xF7A;&#xF53;/ &#xF51;&#xF7A;-&#xF51;&#xF42;-&#xF42;&#xF72;-&#xF5A;&#xF7A;-&#xF60;&#xF47;&#xF72;&#xF42;&#xF66;-&#xF44;&#xF44;-&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF66;-&#xF53;-&#xF63;&#xF7A;&#xF42;&#xF66;-&#xF54;-&#xF61;&#xF72;&#xF53;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="969"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Concentrate now on what you took from them.  You should never just let it fade away somewhere, or doing something like set it off to the side; rather, take it right into the very center of your heart.  If at this point you feel a touch of fear, it's a very good sign.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="970"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="971"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="972"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">On not trying to take your Lama's "suffering"</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal"> </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="973"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="974"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">The theme of not trying to take on any "suffering" from your Lama is repeated often in the teachings on giving and taking:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="975"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="976"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Ngulchu Dharma Bhadra, in the </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Treasure House of Precious Jewels," being Notes to the "Dissection" Instruction for the Steps of the Path to Buddhahood entitled "Easy Path for Travelling to Omniscience," </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">states:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="977"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="978"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s][h]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF56;&#xFB3;-&#xF58;-&#xF63;-&#xF66;&#xF44;&#xF66;-&#xF62;&#xF92;&#xFB1;&#xF66;-&#xF51;&#xF44;&#xF7C;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF60;&#xF88;&#xFB2;-&#xF64;&#xF7A;&#xF66;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-&#xF51;&#xF42;&#xF7C;&#xF66;-&#xF54;&#xF66;-&#xF56;&#xFB3;-&#xF58;-&#xF51;&#xF44;-[t]&#xF66;&#xF44;&#xF66;-&#xF62;&#xF92;&#xFB1;&#xF66;-&#xF63;-&#xF63;&#xF7A;&#xF53;-&#xF62;&#xF92;&#xFB1;&#xF74;-&#xF58;&#xF7A;&#xF51;-&#xF63;/ </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="979"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">You must always think of your Lama as an actual Buddha.  As such, there could never be anything to take from them in the first place.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="980"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="981"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Pabongka Rinpoche concurs:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="982"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="983"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF63;&#xF7A;&#xF53;-&#xF54;&#xF60;&#xF72;-&#xF66;&#xF90;&#xF56;&#xF66;-&#xF56;&#xFB3;-&#xF58;-&#xF51;&#xF44;-&#xF66;&#xF44;&#xF66;-&#xF62;&#xF92;&#xFB1;&#xF66;-&#xF42;&#xF49;&#xF72;&#xF66;-&#xF63;-&#xF63;&#xF7A;&#xF53;-&#xF88;&#xFB2;-&#xF58;&#xF7A;&#xF51;/ </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="984"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">When you do the taking part, there's nothing at all you could ever take from either your Lama or the Buddhas.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="985"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="986"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="987"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">In an extraordinary record of interviews with a number of his students, Ngulchu Dharma Bhadra discusses the point in some greater detail.  The section here is named, </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">A Demonstration of How those Texts which Describe a Method for the Expiation of the Wrong Deeds of One's Lama have No Authoritative Source:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="988"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="989"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF08;&#xF51;&#xF56;&#xFB2;-&#xF54;-&#xF62;&#xF44;-&#xF42;&#xF72;-&#xF56;&#xFB3;-&#xF58;&#xF60;&#xF72;-&#xF66;&#xFA1;&#xF72;&#xF42;-&#xF54;-&#xF66;&#xFA6;&#xFB1;&#xF7C;&#xF44;-&#xF51;&#xF58;&#xF72;&#xF42;&#xF66;-&#xF56;&#xF64;&#xF51;-&#xF54;&#xF60;&#xF72;-&#xF42;&#xF39;&#xFB2;&#xF44;-[t]&#xF41;&#xF74;&#xF44;&#xF66;-&#xF51;&#xF42;-&#xF5E;&#xF72;&#xF42;-&#xF58;-&#xF58;&#xF50;&#xF7C;&#xF44;-&#xF56;&#xF62;-&#xF58;-&#xF5F;&#xF51;/ &#xF56;&#xFB3;&#xF7C;-&#xF66;&#xFA6;&#xFB1;&#xF7C;&#xF44;-&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF66;&#xF90;&#xF56;&#xF66;-[t]&#xF56;&#xFB3;-&#xF58;-&#xF51;&#xF44;-&#xF66;&#xF44;&#xF66;-&#xF62;&#xF92;&#xFB1;&#xF66;-&#xF63;-&#xF66;&#xF90;&#xFB1;&#xF7C;&#xF53;-&#xF63;&#xF7A;&#xF53;-&#xF62;&#xF92;&#xFB1;&#xF74;-&#xF58;&#xF7A;&#xF51;-&#xF5A; &#xF63;-&#xF46;&#xF7A;-&#xF50;&#xF44;-&#xF88;&#xFB2;-[t]&#xF42;&#xF66;&#xF74;&#xF44;&#xF66;-&#xF54;&#xF66;-&#xF53;-&#xF56;&#xFB3;-&#xF58;&#xF60;&#xF72;-&#xF66;&#xFA1;&#xF72;&#xF42;-&#xF54;-&#xF66;&#xFA6;&#xFB1;&#xF7C;&#xF44;-&#xF5A; &#xF63;-&#xF58;-&#xF56;&#xFB1;&#xF66;-&#xF54;-&#xF63;&#xF7A;&#xF42;&#xF66;-&#xF60;&#xF51;&#xFB2;-&#xF66;&#xF99;&#xF58;-[t]&#xF63;&#xF42;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="990"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Here is the ninth point.  I see no authoritative source at all for those books that describe how to help your Lama purify himself or herself of negative karma.  We see all over the place, in all the sections of the mental training texts where they teach about giving and taking, how there are no problems at all you could ever take from your Lama or the Buddhas.  It seems to me better then if we make no attempt to help our Lamas purify themselves of any so-called "bad karma."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="991"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">  </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="992"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="993"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="994"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="995"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="996"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="997"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="998"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="999"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1000"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1001"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">Contemplation Eleven</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1002"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">What is it that we give?</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal"> </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1003"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1004"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">There is no shortage of exquisite descriptions in scripture for the things we send out to all living beings when we do the practice of giving.  The first selection here is taken again from the </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Treasure House of Precious Jewels,</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic"> by Ngulchu Dharma Bhadra:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1005"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1006"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF55;&#xF62;-&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF56;&#xF60;&#xF72;-&#xF5A;&#xF7A;-&#xF66;&#xF90;&#xFB1;&#xF56;&#xF66;-&#xF60;&#xF42;&#xFB2;&#xF7C;-&#xF51;&#xF44;-&#xF63;&#xF66;-&#xF60;&#xF56;&#xFB2;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF51;&#xF42;&#xF7A;-&#xF62;&#xFA9;-&#xF51;&#xF44;-[t]&#xF5F;&#xF42;-&#xF58;&#xF7A;&#xF51;-&#xF40;&#xFB1;&#xF72;-&#xF56;&#xF51;&#xF7A;-&#xF56;-&#xF62;&#xF44;-&#xF63;-&#xF58;&#xF7A;&#xF51;-&#xF40;&#xFB1;&#xF44;-&#xF61;&#xF7C;&#xF51;-&#xF54;&#xF62;-&#xF58;&#xF7C;&#xF66;-&#xF4F;&#xF7A;-&#xF44;&#xF53;-&#xF66;&#xF7C;&#xF44;-[t]&#xF42;&#xF66;&#xF74;&#xF58;-&#xF63;-&#xF56;&#xF4F;&#xF44;-&#xF56;&#xF66;-&#xF56;&#xF51;&#xF7A;-&#xF60;&#xF42;&#xFB2;&#xF7C;-&#xF50;&#xF7C;&#xF56;/ &#xF63;&#xF58;-&#xF56;&#xF66;&#xFB3;&#xF56;-&#xF54;-&#xF42;&#xF66;&#xF74;&#xF58;-&#xF42;&#xFB1;&#xF72;-&#xF51;&#xF42;&#xF7A;-&#xF62;&#xFA9;-[t]&#xF58;&#xF44;&#xF7C;&#xF53;-&#xF58;&#xF50;&#xF7C;&#xF60;&#xF72;-&#xF42;&#xF53;&#xF66;-&#xF63;-&#xF56;&#xF4F;&#xF44;-&#xF56;&#xF66;-&#xF50;&#xF62;-&#xF54;-&#xF50;&#xF7C;&#xF56;/ &#xF56;&#xFB1;&#xF44;-&#xF46; &#xF56;-&#xF40;&#xFB1;&#xF72;-&#xF66;&#xF7A;&#xF58;&#xF66;-[t]&#xF51;&#xF44;-&#xF62;&#xF92;&#xFB1;&#xF63;-&#xF66;&#xFB2;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF66;&#xFA4;&#xFB1;&#xF7C;&#xF51;-&#xF54;&#xF60;&#xF72;-&#xF51;&#xF42;&#xF7A;-&#xF62;&#xFA9;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF49;&#xF53;-&#xF62;&#xF44;-&#xF66;&#xF7C;&#xF42;&#xF66;-&#xF63;-[t]&#xF56;&#xF4F;&#xF44;-&#xF56;&#xF66;-&#xF66;&#xF44;&#xF66;-&#xF62;&#xF92;&#xFB1;&#xF66;-&#xF50;&#xF7C;&#xF56;-&#xF54;&#xF62;-&#xF56;&#xF66;&#xF58;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1007"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">When you do the practice of giving as you breathe out, think of the quantity of virtue you have in you from your acts of taking refuge, and observing the laws of karma and its consequences.  Also imagine that you have some immaculate happiness to give, even though at this point we have yet to gain any.  Do the act of giving all these, focusing on the those in the lower realms.  See them reaching the higher realms as a result.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1008"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1009"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Next take the quantity of virtue that you possess from following the path of the three trainings.  Give it out to those in the higher realms, and imagine that they have thereby achieved freedom.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1010"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1011"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Take finally the quantity of virtue you have from learning the Wish for enlightenment, and from following the way of life of the noble sons and daughters of the Buddhas.  Imagine that you have given this virtue away to people like the listeners and the self-made buddhas.  Imagine finally that this helps them reach Buddhahood itself.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1012"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1013"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF58;&#xF51;&#xF7C;&#xF62;-&#xF53;-&#xF66;&#xFA3;&#xF7C;&#xF51;-&#xF56;&#xF45; &#xF51;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF51;&#xF42;-&#xF54;-&#xF62;&#xF56;-&#xF60;&#xF56;&#xFB1;&#xF58;&#xF66;-&#xF60;&#xF56;&#xF60;-&#xF5E;&#xF72;&#xF42;-&#xF62;&#xFB1;-&#xF56;&#xF66;&#xF58;-[t]&#xF63;-&#xF62;&#xF44;-&#xF42;&#xF72;-&#xF63;&#xF74;&#xF66;-&#xF63;&#xF7C;&#xF44;&#xF66;-&#xF66;&#xFA4;&#xFB1;&#xF7C;&#xF51;-&#xF51;&#xF42;&#xF7A;-&#xF62;&#xFA9;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF40;&#xFB1;&#xF44;-&#xF58;&#xF46;&#xF7C;&#xF51;-&#xF66;&#xFA4;&#xFB2;&#xF72;&#xF53;-[t]&#xF58;&#xF50;&#xF60;-&#xF61;&#xF66;-&#xF54;&#xF60;&#xF72;-&#xF62;&#xFA3;&#xF58;-&#xF54;&#xF62;-&#xF66;&#xFA4;&#xFB2;&#xF74;&#xF63;-&#xF4F;&#xF7A;-&#xF55;&#xF74;&#xF63;-&#xF56;&#xF66;-&#xF62;&#xF92;&#xFB1;&#xF63;-&#xF56;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF50;&#xF74;&#xF42;&#xF66;-[t]&#xF62;&#xF92;&#xFB1;&#xF74;&#xF51;-&#xF63;-&#xF5F;&#xF42;-&#xF58;&#xF7A;&#xF51;-&#xF40;&#xFB1;&#xF72;-&#xF56;&#xF51;&#xF7A;-&#xF66;&#xF9F;&#xF7C;&#xF44;-&#xF42;&#xF66;&#xF62;-&#xF88;&#xFB2;-&#xF60;&#xF41;&#xFB2;&#xF74;&#xF44;&#xF66;-&#xF54;&#xF60;&#xF72;-&#xF58;&#xF7C;&#xF66;-&#xF54;-&#xF56;&#xFB1;&#xF66;-[t]&#xF63;-&#xF50;&#xF7C;&#xF42;-&#xF58;&#xF62;-&#xF56;&#xF66;&#xF58;-&#xF54;&#xF66;-&#xF66;&#xFA6;&#xFB1;&#xF7C;&#xF44;-&#xF5E;&#xF72;&#xF44;-&#xF45; &#xF44;-&#xF5F;&#xF51;-&#xF42;&#xF7C;&#xF58;&#xF66;-&#xF54;-&#xF53;-&#xF42;&#xF4F;&#xF7C;&#xF44;-[t]&#xF63;&#xF7A;&#xF53;-&#xF62;&#xFB3;&#xF74;&#xF44;-&#xF63;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7C;&#xF53;-&#xF56;&#xF5E;&#xF72;&#xF53;-&#xF88;&#xFB2;-&#xF56;&#xFB1;&#xF60;&#xF7C;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1014"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">To sum it all up, think to yourself that all the planet, and all the living beings contained by the planet, represent a veritable galaxy of total purity.  Emanate out all you possess&#x2014;your body, your material possessions, and the sum total of all the goodness you have ever done&#x2014;in the form of an infinite cloud of offerings.  Wish to yourself then that, as you present them, the victorious Buddhas could receive these offerings, and that they felt within them a fresh experience of the immaculate combination of bliss and voidness.  At the beginning do this only in your thoughts, and then&#x2014;when you have gotten used to it a little&#x2014;do it the way we do when we are letting the giving and taking ride upon the winds.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1015"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="1016"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">***************</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1017"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1018"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Pabongka Rinpoche, in his </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Gift of Liberation,</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic"> describes the giving as follows:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1019"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1020"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF56;&#xFB1;&#xF58;&#xF66;-&#xF54;&#xF60;&#xF72;-&#xF51;&#xF58;&#xF72;&#xF42;&#xF66;-&#xF54;-&#xF62;&#xFA9;&#xF63;-&#xF88;&#xFB2;-&#xF56;&#xF4F;&#xF7C;&#xF53;-&#xF53;&#xF66;-&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF56;-&#xF53;&#xF72;/ &#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-&#xF62;&#xFA3;&#xF58;&#xF66;-[t]&#xF51;&#xF7C;&#xF53;-&#xF66;&#xF92;&#xFB2;&#xF74;&#xF56;-&#xF54;&#xF60;&#xF72;-&#xF55;&#xFB1;&#xF72;&#xF62;/ /&#xF61;&#xF72;&#xF51;-&#xF56;&#xF5E;&#xF72;&#xF53;-&#xF42;&#xFB1;&#xF72;-&#xF53;&#xF72;-&#xF63;&#xF74;&#xF66;-&#xF66;&#xF74;-&#xF56;&#xF66;&#xF92;&#xFB1;&#xF74;&#xF62;/ /&#xF5E;&#xF7A;&#xF66;-&#xF51;&#xF44;./ [s]&#xF66;&#xFA1;&#xF7C;&#xF44;-&#xF56;&#xF40;&#xF7C;&#xF51;-&#xF51;&#xF44;./ &#xF62;&#xFA1;&#xF7C;-&#xF62;&#xF97;&#xF7A;-&#xF62;&#xF92;&#xFB1;&#xF63;-&#xF58;&#xF5A;&#xF53;-&#xF42;&#xFB1;&#xF72;-&#xF58;&#xF51;&#xF7C;-&#xF66;&#xF7C;&#xF42;&#xF66;-&#xF63;&#xF66;-&#xF40;&#xFB1;&#xF44;-&#xF63;&#xF74;&#xF66;-[t]&#xF63;&#xF7C;&#xF44;&#xF66;-&#xF66;&#xFA4;&#xFB1;&#xF7C;&#xF51;-&#xF66;&#xF7C;&#xF42;&#xF66;-&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF56;&#xF62;-&#xF42;&#xF66;&#xF74;&#xF44;&#xF66;-&#xF54;-&#xF56;&#xF5E;&#xF72;&#xF53;-&#xF62;&#xF44;-&#xF42;&#xF72;-&#xF63;&#xF74;&#xF66;-&#xF42;&#xF44;-&#xF60;&#xF51;&#xF7C;&#xF51;-[t]&#xF40;&#xFB1;&#xF72;-&#xF51;&#xF44;&#xF7C;&#xF66;-&#xF54;&#xF62;-&#xF66;&#xFA4;&#xFB2;&#xF74;&#xF63;-&#xF53;&#xF66;-&#xF66;&#xFA3;&#xF7C;&#xF51;-&#xF51;&#xF44;-&#xF56;&#xF45; &#xF51;-&#xF63;-&#xF56;&#xF4F;&#xF44;-&#xF56;&#xF66;/ [s]</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1021"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1022"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Here is how to do the practice of giving, by focusing upon the category of love.  Remember the text that says,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1023"/>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1024"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">In order to accomplish the goals of every living being,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1025"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Turn your body into the form of a wish-fulfilling jewel.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1026"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1027"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Sutras such as </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Stalks in Array</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"> and the </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Victory Banner of Diamond </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">also state that we should learn to give away our body and our possessions.  Here you turn your body into anything and everything that someone might want to have, and then send it out to the world, and to the people living in the world.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1028"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1029"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF51;&#xF44;-&#xF54;&#xF7C;&#xF62;-&#xF56;&#xF45; &#xF51;-&#xF40;&#xFB1;&#xF72;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-&#xF5A;-&#xF51;&#xF58;&#xFB1;&#xF63;-&#xF56;-&#xF63;&#xF9F;-&#xF56;&#xF74;&#xF62;-&#xF66;&#xFA6;&#xFB2;&#xF44;-&#xF46;&#xF62;-&#xF42;&#xFB1;&#xF72;-[t]&#xF62;&#xFA3;&#xF58;-&#xF54;&#xF62;-&#xF66;&#xFA4;&#xFB2;&#xF74;&#xF63;-&#xF4F;&#xF7A;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF66;&#xFA6;&#xFB1;&#xF44;./ &#xF63;&#xF74;&#xF66;-&#xF51;&#xF63;-&#xF60;&#xF56;&#xFB1;&#xF7C;&#xF62;-&#xF42;&#xFB1;&#xF72;-&#xF62;&#xF9F;&#xF7A;&#xF53;-&#xF88;&#xFB2;-[t]&#xF56;&#xF66;&#xF92;&#xFB1;&#xF74;&#xF62;-&#xF53;&#xF66;-&#xF51;&#xF7A;-&#xF60;&#xF50;&#xF7C;&#xF56;-&#xF54;&#xF62;-&#xF56;&#xFB1;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1030"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">First for example send out your body to the creatures of the hot hells, as a sweet, gentle rain; then picture that this rain has cleared away all their suffering.  Next change your body into one with all the leisure and fortune required for successful spiritual practice, and picture that they have attained it.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1031"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1032"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF51;&#xF7A;-&#xF53;&#xF66;-&#xF42;&#xF53;&#xF66;-&#xF51;&#xF44;-&#xF41;&#xF44;-&#xF56;&#xF62;&#xFA9;&#xF7A;&#xF42;&#xF66;-&#xF61;&#xF72;&#xF51;-&#xF88;&#xFB2;-&#xF60;&#xF7C;&#xF44;-&#xF56;&#xF62;-&#xF56;&#xF66;&#xF92;&#xFB1;&#xF74;&#xF62;-&#xF53;&#xF66;-&#xF56;&#xF4F;&#xF44;-[t]&#xF56;&#xF66;-&#xF51;&#xF7A;-&#xF63;-&#xF56;&#xF51;&#xF7A;-&#xF56;&#xF62;-&#xF63;&#xF7C;&#xF44;&#xF66;-&#xF66;&#xFA4;&#xFB1;&#xF7C;&#xF51;-&#xF54;-&#xF51;&#xF44;./ &#xF5F;&#xF66;-&#xF66;&#xF90;&#xF7C;&#xF58;-&#xF55;&#xF74;&#xF53;-&#xF5A;&#xF7C;&#xF42;&#xF66;-&#xF66;&#xF74;-[t]&#xF56;&#xF66;&#xF92;&#xFB1;&#xF74;&#xF62;-&#xF53;&#xF66;-&#xF56;&#xF4F;&#xF44;-&#xF56;&#xF66;-&#xF5A;&#xF72;&#xF58;-&#xF54;&#xF62;-&#xF56;&#xFB1;&#xF66;/ &#xF42;&#xF7C;&#xF66;-&#xF66;&#xF74;-&#xF56;&#xF66;&#xF92;&#xFB1;&#xF74;&#xF62;-&#xF53;&#xF66;-&#xF56;&#xF40;&#xF7C;&#xF53;/ &#xF51;&#xF42;&#xF7A;-&#xF56;&#xF60;&#xF72;-[t]&#xF56;&#xF64;&#xF7A;&#xF66;-&#xF42;&#xF49;&#xF7A;&#xF53;-&#xF88;&#xFB2;-&#xF56;&#xF66;&#xF92;&#xFB1;&#xF74;&#xF62;-&#xF53;&#xF66;-&#xF46;&#xF7C;&#xF66;-&#xF56;&#xF66;&#xF9F;&#xF53;-&#xF54;&#xF66;-&#xF60;&#xF5A;&#xF44;-&#xF62;&#xF92;&#xFB1;-&#xF63;-&#xF41;&#xF7C;&#xF51;-&#xF88;&#xFB2;-[t]&#xF56;&#xFB1;&#xF66;-&#xF54;&#xF62;-&#xF56;&#xF66;&#xF58;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1033"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Next turn your body into a beautiful place, with a lovely building upon it.  Give it then, and imagine that they enjoy these things.  Turn yourself into excellent food and beverage, and give that, imagining that they are filled to their hearts' content.  Turn into clothes, and let them wear you.  Imagine finally that you have turned into a Spiritual Guide, and that you teach them the Dharma, and thereby bring them to the state of enlightenment.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1034"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1035"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF51;&#xF7A;-&#xF53;&#xF66;-&#xF42;&#xFB2;&#xF44;-&#xF51;&#xF58;&#xFB1;&#xF63;-&#xF56;-&#xF63;-&#xF49;&#xF72;-&#xF60;&#xF7C;&#xF51;-&#xF51;&#xF44;-&#xF42;&#xF7C;&#xF66;-&#xF66;&#xF7C;&#xF42;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF62;&#xFA3;&#xF58;-&#xF54;/ &#xF61;&#xF72;-[t]&#xF51;&#xFAD;&#xF42;&#xF66;-&#xF63;-&#xF5F;&#xF66;-&#xF66;&#xF90;&#xF7C;&#xF58;-&#xF66;&#xF7C;&#xF42;&#xF66;-&#xF51;&#xF44;./ &#xF88;&#xFB2;&#xF51;-&#xF60;&#xF42;&#xFB2;&#xF7C;-&#xF63;-&#xF46;&#xF7C;&#xF66;-&#xF62;&#xF56;-&#xF62;&#xFB1;-&#xF62;&#xFA3;&#xF58;-&#xF60;&#xF56;&#xFB1;&#xF7A;&#xF51;-[t]&#xF40;&#xFB1;&#xF72;-&#xF64;&#xF7A;&#xF66;-&#xF62;&#xF56;/ &#xF63;&#xFB7;-&#xF58;&#xF72;&#xF53;-&#xF63;-&#xF42;&#xF7C;-&#xF46;/ &#xF63;&#xFB7;-&#xF63;-&#xF60;&#xF51;&#xF7C;&#xF51;-&#xF54;&#xF60;&#xF72;-&#xF61;&#xF7C;&#xF53;-&#xF4F;&#xF53;-&#xF63;&#xF94;/ &#xF58;&#xF72;-&#xF53;&#xF72;-[t]&#xF60;&#xF51;&#xF7C;&#xF51;-&#xF54;-&#xF46;&#xF7A;-&#xF56;&#xF66;-&#xF42;&#xF44;-&#xF63;-&#xF42;&#xF44;-&#xF60;&#xF51;&#xF7C;&#xF51;-&#xF88;&#xFB2;-&#xF56;&#xF66;&#xF92;&#xFB1;&#xF74;&#xF62;-&#xF53;&#xF66;-&#xF56;&#xF4F;&#xF44;./</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1036"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Then change yourself into sunlight, or clothes, or anything of the like, and give it away to those suffering in the cold hells.  For the tormented spirits, turn into food, drink, and the like and give it.  For animals turn yourself into the wisdom that is able to analyze things clearly.  For the near pleasure beings, turn to armor [since out of jealousy they are constantly battling the full pleasure beings]; and for the pleasure beings themselves become the five objects of the senses.  Humans are completely full of desire, and so for them just become whatever they may want at the time, and give it to them.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1037"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1038"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF51;&#xF7A;-&#xF56;&#xF5E;&#xF72;&#xF53;-&#xF88;&#xFB2;-&#xF63;&#xF7C;&#xF44;&#xF66;-&#xF66;&#xFA4;&#xFB1;&#xF7C;&#xF51;-&#xF42;&#xF49;&#xF72;&#xF66;-&#xF53;&#xF72;-&#xF60;&#xF51;&#xF72;-&#xF51;&#xF44;-&#xF55;&#xFB1;&#xF72;-&#xF58;-&#xF42;&#xF49;&#xF72;&#xF66;-&#xF58;-&#xF42;&#xF4F;&#xF7C;&#xF42;&#xF66;/ [s]&#xF60;&#xF51;&#xF66;-&#xF5A;&#xF62;-&#xF56;-&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF88;&#xFB2;-&#xF58;&#xF7A;&#xF51;/ &#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF56;&#xF60;&#xF72;-&#xF66;&#xF90;&#xF56;&#xF66;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF66;&#xF94;&#xF62;-[t]&#xF56;&#xF64;&#xF51;-&#xF54;-&#xF63;&#xF9F;&#xF62;-&#xF56;&#xF51;&#xF7A;-&#xF56;&#xF66;-&#xF55;&#xF7C;&#xF44;&#xF66;-&#xF63;&#xF74;&#xF66;-&#xF56;&#xF66;&#xF58;&#xF66;-&#xF53;&#xF66;-&#xF56;&#xFB1;&#xF58;&#xF66;-&#xF54;-&#xF42;&#xF59;&#xF7C;-&#xF56;&#xF7C;&#xF62;-[t]&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;-&#xF45;&#xF72;&#xF44;./ &#xF56;&#xFB3;&#xF7C;-&#xF66;&#xFA6;&#xFB1;&#xF7C;&#xF44;-&#xF42;&#xF72;-&#xF51;&#xF58;&#xF72;&#xF42;&#xF66;-&#xF54;-&#xF60;&#xF51;&#xF72;-&#xF49;&#xF72;&#xF51;-&#xF63;-&#xF50;&#xF74;&#xF42;&#xF66;-&#xF51;&#xF58;-&#xF42;&#xFB1;&#xF72;-&#xF42;&#xF59;&#xF7C;-[t]&#xF56;&#xF7C;&#xF62;-&#xF56;&#xFB1;&#xF7A;&#xF51;-&#xF51;&#xF42;&#xF7C;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1039"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Do the same with two different kinds of material possessions: you can only give away those of your current life and your future lives; the ones from your past lives cannot now be given away.  When you do the giving practice, think of all living beings as we talked about before.  Think of how they live, bereft of any happiness, and concentrate mainly on developing feelings of love.  You must try to make this single section of the mental training tradition the very heart of your practice.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1040"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="1041"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">***************</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1042"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1043"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Ngulchu Dharma Bhadra, finally, gives us a suggestion on how to succeed at the practice of giving, in the following note from his </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Fulfilment of Every Hope of Those with the Fortune Endowed by Virtue:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1044"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1045"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF56;&#xF60;&#xF72;-&#xF5A;&#xF7A;-&#xF5A;&#xF7C;&#xF51;-&#xF58;-&#xF63;-&#xF66;&#xF7C;&#xF42;&#xF66;-&#xF54;&#xF60;&#xF72;-&#xF56;&#xF5F;&#xF60;-&#xF56;&#xF62;&#xFB1;&#xF44;-&#xF46; &#xF44;-&#xF44;&#xF74;-&#xF53;&#xF66;-&#xF62;&#xF72;&#xF58;-[t]&#xF42;&#xFB1;&#xF72;&#xF66;-&#xF66;&#xF9F;&#xF7A;&#xF62;-&#xF56;&#xF60;&#xF72;-&#xF56;&#xF66;&#xF58;-&#xF66;&#xFA6;&#xFB1;&#xF7C;&#xF62;-&#xF47;&#xF72;-&#xF56;&#xF5F;&#xF44;-&#xF88;&#xFB2;-&#xF56;&#xF4F;&#xF44;-&#xF53;&#xF66;-&#xF58;&#xF50;&#xF62;-&#xF62;&#xF44;-&#xF42;&#xF72;-&#xF63;&#xF74;&#xF66;-[t]&#xF66;&#xFB2;&#xF7C;&#xF42;-&#xF40;&#xFB1;&#xF44;-&#xF42;&#xF4F;&#xF44;-&#xF56;&#xF62;-&#xF56;&#xFB1;-&#xF66;&#xF9F;&#xF7A;/ &#xF42;&#xF7C;&#xF58;&#xF66;-&#xF53;-&#xF66;&#xFB3;-&#xF56;&#xF62;-&#xF58;&#xF72;-&#xF60;&#xF42;&#xFB1; &#xF62;-&#xF56;&#xF60;&#xF72;/ /&#xF51;&#xF44;&#xF7C;&#xF66;-[t]&#xF51;&#xF7A;-&#xF42;&#xF44;-&#xF61;&#xF44;-&#xF61;&#xF7C;&#xF51;-&#xF58;-&#xF61;&#xF72;&#xF53;/ /&#xF5E;&#xF7A;&#xF66;-&#xF42;&#xF66;&#xF74;&#xF44;&#xF66;-&#xF66;&#xF7C;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1046"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">When you are learning how to do the giving practice, start out by giving away little things, things to eat and drink like vegetables or the like.  Make sure the thoughts you have as you give these small things, and the manner in which you present them, are as pure as possible.  In the end then you will find yourself capable of giving away even your own body and life.  As the famous lines go,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1047"/>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1048"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">There doesn't exist a single thing at all</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1049"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Which isn't easy once you're used to it.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1050"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"><pbr/></c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1051"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1052"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1053"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1054"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1055"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1056"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1057"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">Contemplation Twelve</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1058"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">On how giving and taking works, and doesn't work</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1059"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1060"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">The first Changkya Rinpoche, in his </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Entertainment for those of the Higher Way, </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">explains how the practice of giving and taking actually works, and how it doesn't work:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1061"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1062"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF51;&#xF7A;-&#xF63;&#xF9F;&#xF60;&#xF72;-&#xF56;&#xF66;&#xF58;-&#xF54;-&#xF66;&#xFA6;&#xFB1;&#xF44;-&#xF59;&#xF58;-&#xF42;&#xFB1;&#xF72;&#xF66;/ /&#xF42;&#xF5E;&#xF53;-&#xF63;-&#xF51;&#xF44;&#xF7C;&#xF66;-&#xF66;&#xF74;-&#xF55;&#xF53;-&#xF51;&#xF40;&#xF60;-[t]&#xF53;&#xF60;&#xF44;./ /&#xF56;&#xF66;&#xF58;-&#xF54;-&#xF66;&#xFA6;&#xFB1;&#xF7C;&#xF44;-&#xF56;-&#xF51;&#xF7C;&#xF53;-&#xF46;&#xF7A;-&#xF66;&#xF9F;&#xF7A;/ /&#xF60;&#xF55;&#xF42;&#xF66;-&#xF54;-&#xF40;&#xFB3;&#xF74;-&#xF61;&#xF72;&#xF66;-&#xF47;&#xF72;-&#xF66;&#xF90;&#xF51;-&#xF88;&#xFB2;/ [s]/&#xF42;&#xF5E;&#xF53;-&#xF55;&#xF53;-&#xF63;&#xF66;-&#xF63;-&#xF58;&#xF50;&#xF74;-&#xF58;&#xF7A;&#xF51;-&#xF40;&#xFB1;&#xF44;./ /&#xF51;&#xF7A;-&#xF61;&#xF72;-&#xF56;&#xF66;&#xF58;-&#xF54;-&#xF62;&#xF9F;&#xF42;-&#xF62;&#xFB1;-&#xF56;&#xFB1;/ [s]/&#xF42;&#xF44;-&#xF63;-&#xF51;&#xF7A;-&#xF53;&#xF72;-&#xF61;&#xF7C;&#xF51;-&#xF42;&#xFB1; &#xF62;-&#xF54;/ /&#xF51;&#xF7A;-&#xF63;-&#xF51;&#xF7A;-&#xF53;&#xF72;-&#xF51;&#xF7C;&#xF53;-&#xF42;&#xFB1;&#xF72;&#xF66;-&#xF39;&#xFB2;&#xF42;&#xF66;/ /&#xF45;&#xF7A;&#xF66;-&#xF51;&#xF44;-..</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1063"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">It's true that it is difficult to do any good for others directly </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1064"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Simply by practicing the way of thinking that we've described.</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1065"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Still it's very important to practice thinking in this way,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1066"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And this is shown in the words of the realized being, Nagarjuna:</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1067"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Even though it has no power to function to help others,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1068"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">One should nonetheless continue thinking this way always.</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1069"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Anyone who does maintain this kind of motivation</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1070"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Keeps within himself the power in its real form."	</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1071"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1072"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">[s]...&#xF5E;&#xF72;-&#xF56;-&#xF63;&#xFB7;-&#xF61;&#xF72;&#xF66;-&#xF40;&#xFB1;&#xF44;./ /&#xF42;&#xF63;-&#xF4F;&#xF7A;-&#xF60;&#xF42;&#xFB2;&#xF7C;-&#xF56;-&#xF51;&#xF56;&#xF74;&#xF63;-&#xF56;&#xF7C;&#xF62;-&#xF56;/ /&#xF66;&#xFA6;&#xFB1;&#xF72;&#xF53;-&#xF54;&#xF60;&#xF72;-&#xF55;-&#xF62;&#xF7C;&#xF63;-[t]&#xF55;&#xFB1;&#xF72;&#xF53;-&#xF61;&#xF72;&#xF53;-&#xF53;/ /&#xF51;-&#xF88;&#xFB2;&#xF44;-&#xF60;&#xF42;&#xFB2;&#xF7C;-&#xF56;&#xF40;&#xFB2;&#xF7A;&#xF53;-&#xF61;&#xF7C;&#xF51;-&#xF53;-&#xF66;&#xF94;&#xF7C;&#xF53;/ /&#xF66;&#xF90;&#xFB1;&#xF7C;&#xF56;-&#xF54;-&#xF47;&#xF72;-&#xF63;&#xF9F;&#xF62;-[t]&#xF55;-&#xF62;&#xF7C;&#xF63;-&#xF55;&#xFB1;&#xF72;&#xF53;/ /&#xF56;&#xF51;&#xF7C;&#xF42;-&#xF54;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF60;&#xF56;&#xFB2;&#xF66;-&#xF56;&#xF45;&#xF66;-&#xF4F;&#xF7A;/ /&#xF66;&#xF90;&#xFB1;&#xF7A;-&#xF56;&#xF7C;-&#xF42;&#xFB2;&#xF53;-&#xF63;-[t]&#xF56;&#xF4F;&#xF44;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF40;&#xFB1;&#xF72;&#xF66;/ /&#xF66;&#xFA6;&#xFB1;&#xF72;&#xF53;-&#xF54;&#xF60;&#xF72;-&#xF55;-&#xF62;&#xF7C;&#xF63;-&#xF55;&#xFB1;&#xF72;&#xF53;-&#xF42;&#xF66;&#xF74;&#xF44;&#xF66;-&#xF4F;&#xF7A;/ /&#xF51;&#xF7A;-&#xF63;&#xF9F;&#xF62;-&#xF51;&#xF7A;-&#xF53;&#xF72;-[t]&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF49;&#xF72;&#xF51;-&#xF51;&#xF7C;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1073"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Thus he spoke, and Master Shantideva said as well,</c></p>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1074"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"If the question of whether you've reached the perfection of giving is decided</c></p>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1075"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">From whether or not we've eradicated poverty in the world,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1076"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Then because we see around us now such beings in distress,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1077"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">How could anyone say the Protectors had reached this same perfection?</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1078"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1079"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF5E;&#xF7A;&#xF66;-&#xF66;&#xF7C;-&#xF51;&#xF7A;&#xF66;-&#xF53;-&#xF56;&#xF66;&#xF58;-&#xF54;-&#xF60;&#xF51;&#xF72;/ /&#xF51;&#xF58;-&#xF54;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF40;&#xFB1;&#xF72;&#xF66;-&#xF62;&#xF56;-&#xF56;&#xF66;&#xF94;&#xF42;&#xF66;-&#xF54;&#xF66;/ [s]/&#xF62;&#xF92;&#xFB1;&#xF74;&#xF53;-&#xF62;&#xFB1;-&#xF66;&#xFA6;&#xFB1;&#xF7C;&#xF44;-&#xF56;-&#xF42;&#xF53;&#xF51;-&#xF40;&#xFB1;&#xF72;-&#xF51;&#xF7C;&#xF53;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1080"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Thus he spoke, and so it is that the high and holy ones</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1081"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Have sung the highest praises of this very attitude.</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1082"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">It's of crucial significance then to practice it all the time.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1083"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1084"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF51;&#xF7A;-&#xF63;&#xF9F;&#xF62;-&#xF42;&#xFB2;&#xF53;-&#xF58;&#xF41;&#xFB1;&#xF7A;&#xF53;-&#xF50;&#xF7C;&#xF56;-&#xF56;&#xFB1;&#xF60;&#xF72;-&#xF55;&#xFB1;&#xF72;&#xF62;/ /&#xF56;&#xF66;&#xF7C;&#xF51;-&#xF53;&#xF58;&#xF66;-&#xF5A;&#xF7C;&#xF42;&#xF66;-&#xF46;&#xF7A;&#xF53;-&#xF63;&#xF7A;&#xF42;&#xF66;-[t]&#xF56;&#xF66;&#xF42;&#xF66;-&#xF54;/ /&#xF61;&#xF7A;-&#xF64;&#xF7A;&#xF66;-&#xF5A;&#xF7C;&#xF42;&#xF66;-&#xF40;&#xFB1;&#xF72;&#xF66;-&#xF5F;&#xF72;&#xF53;-&#xF51;&#xF42;&#xF7C;&#xF66;-&#xF4F;&#xF7A;/ /&#xF5E;&#xF72;-&#xF56;-&#xF63;&#xFB7;-&#xF61;&#xF72;&#xF66;-&#xF47;&#xF72;-&#xF66;&#xF90;&#xF51;-&#xF88;&#xFB2;/ [s]/&#xF61;&#xF53;-&#xF63;&#xF42;-&#xF60;&#xF51;&#xF72;-&#xF51;&#xF42;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF53;&#xF72;/ /&#xF50;&#xF74;&#xF56;-&#xF54;&#xF66;-&#xF64;&#xF7A;&#xF66;-&#xF62;&#xF56;-&#xF51;&#xF7C;&#xF53;-&#xF88;&#xFB2;-&#xF42;&#xF66;&#xF74;&#xF44;&#xF66;/ /&#xF51;&#xF7A;-[t]&#xF61;&#xF72;-&#xF55;&#xFB1;&#xF72;&#xF62;-&#xF53;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF51;&#xF42; /&#xF5E;&#xF72;-&#xF56;&#xF62;-&#xF60;&#xF51;&#xF7C;&#xF51;-&#xF54;&#xF66;-&#xF64;&#xF7A;&#xF66;-&#xF62;&#xF56;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1085"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Using this way we should take great care to amass a great collection</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1086"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Of good deeds for the purpose of reaching the state of knowing all;</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1087"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Remember too these deeds must be imbued with a mass of wisdom,</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1088"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">As the Master, Shantideva, has noted too in the following words:</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1089"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Every single one of all these various parts was spoken</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1090"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">By the Able Ones to be directed towards attaining wisdom.</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1091"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">This then is why all those who have any hope to put a stop</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1092"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">To all their suffering should attempt to develop this same wisdom."</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1093"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1094"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF45;&#xF7A;&#xF66;-&#xF54;&#xF66;-&#xF56;&#xFB1;&#xF44;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF55;&#xFB1;&#xF72;&#xF53;-&#xF51;&#xFB2;&#xF74;&#xF42;-&#xF66;&#xF7C;&#xF42;&#xF66;/ /&#xF50;&#xF56;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF61;&#xF53;-&#xF63;&#xF42;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-[t]&#xF53;&#xF72;/ /&#xF56;&#xF51;&#xF42;-&#xF58;&#xF7A;&#xF51;-&#xF62;&#xF9F;&#xF7C;&#xF42;&#xF66;-&#xF54;&#xF60;&#xF72;-&#xF64;&#xF7A;&#xF66;-&#xF62;&#xF56;-&#xF40;&#xFB1;&#xF72;&#xF66;/ /&#xF66;&#xF92;&#xFB2;&#xF72;&#xF56;-&#xF42;&#xF49;&#xF72;&#xF66;-&#xF66;&#xFA4;&#xF7C;&#xF44;-&#xF55;&#xFB1;&#xF72;&#xF62;-&#xF42;&#xF66;&#xF74;&#xF44;&#xF66;-[t]&#xF54;&#xF62;-&#xF56;&#xF64;&#xF51;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1095"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Thus did he speak, so take then all these parts that relate to method</c></p>
<p props="margin-top:0.0000in; margin-left:0.5000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1096"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Within the Wish for enlightenment, the six perfections and such,</c></p>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1097"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And use them with wisdom which sees nothing has a nature of its own,</c></p>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1098"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">To eliminate both the obstacles; thus were they spoken, is what he's saying.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1099"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="1100"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">***************</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1101"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1102"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Ngulchu Dharma Bhadra elsewhere notes how the practice of giving and taking, along with more advanced versions of the meditation, actually work.  The following is found in his </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Secret Treasure of the Angels," consisting of Notes on the Stages of Creation and Completion in the Secret Practice of the Holy Angel (Vajra Yogini) in the Tradition of Naropa:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1103"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1104"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF63;-&#xF51;&#xF44;&#xF7C;&#xF66;-&#xF66;&#xF74;-&#xF58;&#xF72;-&#xF55;&#xF53;-&#xF40;&#xFB1;&#xF44;-&#xF62;&#xF44;-&#xF42;&#xF72;-&#xF5A;&#xF7C;&#xF42;&#xF66;-&#xF58;&#xFB1; &#xF62;-&#xF88;&#xFB2;-[t]&#xF62;&#xFAB;&#xF7C;&#xF42;&#xF66;-&#xF53;&#xF66;-&#xF66;&#xF44;&#xF66;-&#xF62;&#xF92;&#xFB1;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF42;&#xF7C;-&#xF60;&#xF55;&#xF44;-&#xF50;&#xF7C;&#xF56;-&#xF63;/ &#xF51;&#xF7A;-&#xF53;&#xF66;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-[t]&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF63;&#xF60;&#xF44;-&#xF51;&#xF44;&#xF7C;&#xF66;-&#xF66;&#xF74;-&#xF55;&#xF53;-..</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1105"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">This practice cannot help living beings directly, but it does help you to assemble very quickly a great mass of goodness for yourself&#x2014;and this brings you to attain the state of Enlightenment.  Then you really are able to be of some direct help to every living being.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1106"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="1107"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">***************</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1108"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1109"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">The same Lama, in his </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Treasure House of Precious Jewels, </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">speaks further on the subject:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1110"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1111"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF51;&#xF7A;-&#xF53;&#xF66;-&#xF60;&#xF51;&#xF72;-&#xF53;&#xF72;-&#xF62;&#xF44;-&#xF42;&#xF72;&#xF66;-&#xF56;&#xF66;&#xF92;&#xF7C;&#xF58;&#xF66;-&#xF54;-&#xF59;&#xF58;-&#xF61;&#xF72;&#xF53;-&#xF42;&#xFB1;&#xF72;-&#xF51;&#xF44;&#xF7C;&#xF66;-&#xF66;&#xF74;-&#xF53;&#xF72;-&#xF62;&#xF44;-[t]&#xF42;&#xF5E;&#xF53;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF42;&#xFB1;&#xF72;&#xF66;-&#xF58;&#xF53;&#xF62;-&#xF56;&#xF5E;&#xF72;&#xF53;-&#xF54;-&#xF61;&#xF72;&#xF53;-&#xF54;&#xF66;-[t]&#xF53;-&#xF42;&#xF5E;&#xF53;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF45;&#xF53;-&#xF50;&#xF58;&#xF66;-&#xF45;&#xF51;-&#xF66;&#xFA1; &#xF42;-&#xF56;&#xF66;&#xF94;&#xF63;-&#xF51;&#xF44;-&#xF56;&#xFB2;&#xF63;-&#xF5E;&#xF72;&#xF44;./ &#xF56;&#xF51;&#xF7A;-&#xF56;-[t]&#xF55;&#xF74;&#xF53;-&#xF66;&#xF74;&#xF58;-&#xF5A;&#xF7C;&#xF42;&#xF66;-&#xF54;-&#xF51;&#xF44;-&#xF63;&#xF94;&#xF53;-&#xF54;-&#xF5E;&#xF72;&#xF42;-&#xF56;&#xF51;&#xF42;-&#xF42;&#xF72;&#xF66;-&#xF56;&#xFB1;&#xF60;&#xF7C;-&#xF5E;&#xF7A;&#xF66;-&#xF63;&#xFB7;&#xF42;-&#xF56;&#xF66;&#xF58;-[t]&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1112"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Now all this is only a picture in a meditation; in actual fact, I myself and every other living being are even at this very moment being tormented by suffering.  Try to bring up in your heart then the feeling of personal responsibility: say to yourself, </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">"I</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"> will see to it that every other person, every living being, is freed </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1113"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">from pain, and that they come to possess perfect happiness."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1114"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1115"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF51;&#xF7A;-&#xF61;&#xF44;-&#xF51;-&#xF63;&#xF9F;-&#xF53;&#xF72;-&#xF56;&#xF51;&#xF42;-&#xF63;-&#xF51;&#xF7A;-&#xF63;&#xF9F;-&#xF56;&#xF74;&#xF60;&#xF72;-&#xF85;&#xFB2;&#xF66;-&#xF54;-&#xF58;&#xF72;-&#xF60;&#xF88;&#xFB2;&#xF42; /&#xF45;&#xF7A;&#xF66;-&#xF66;&#xF7C;&#xF42;&#xF66;-&#xF40;&#xFB1;&#xF72;&#xF66;-[t]&#xF56;&#xFB1;&#xF44;-&#xF46; &#xF56;-&#xF40;&#xFB1;&#xF72;-&#xF66;&#xF7A;&#xF58;&#xF66;-&#xF56;&#xF66;&#xF92;&#xF7C;&#xF58;-&#xF54;-&#xF63;-&#xF66;&#xFA4;&#xFB1;&#xF72;-&#xF56;&#xF7C;&#xF60;&#xF72;-&#xF56;&#xFB3;-&#xF58;-&#xF63;&#xF66;-&#xF62;&#xF44;-&#xF60;&#xF51;&#xFB2;-&#xF42;&#xF49;&#xF72;&#xF66;-[t]&#xF54;-&#xF62;&#xF44;-&#xF63;-&#xF50;&#xF72;&#xF58;-&#xF54;-&#xF53;&#xF66;-&#xF63;&#xF74;&#xF66;-&#xF63;&#xF7C;&#xF44;&#xF66;-&#xF66;&#xFA4;&#xFB1;&#xF7C;&#xF51;-&#xF51;&#xF42;&#xF7A;-&#xF62;&#xFA9;-&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF56;&#xF60;&#xF72;-&#xF56;&#xF62;-[t]&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF62;&#xF92;&#xFB1;&#xF74;-&#xF60;&#xF56;&#xFB2;&#xF66;-&#xF56;&#xF88;&#xFB2;&#xF53;-&#xF42;&#xFB1;&#xF72;-&#xF66;&#xF90;&#xF56;&#xF66;-&#xF47;&#xF72;-&#xF63;&#xF9F;-&#xF56;-&#xF56;&#xF5E;&#xF72;&#xF53;-&#xF56;&#xFB1;&#xF60;&#xF7C;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1116"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Think to yourself too such things as "But right now, I have no ability to do so at all."  With these thoughts, meditate upon the Wish for enlightenment: see your Lama at the crown of your head, and picture a duplicate of him or her melting down into you.  Then do all the steps up to where you give away your body, your material possessions, and all your collected virtue, just as you did when we were talking about the seven-step, cause-and-effect method.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1117"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1118"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">/&#xF60;&#xF51;&#xF72;&#xF62;-&#xF53;&#xF72;-&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF56;&#xFB1;&#xF7A;&#xF51;-&#xF5A; &#xF63;-&#xF42;&#xFB1;&#xF72;-&#xF66;&#xF99;&#xF72;&#xF44;-&#xF54;&#xF7C;-&#xF62;&#xFA3;&#xF58;&#xF66;-&#xF58;&#xF51;&#xF7C;&#xF62;-&#xF56;&#xF66;&#xFA1; &#xF66;-&#xF59;&#xF58;-..</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1119"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">All of this represents just a very brief presentation of the essential points on how to do the practice of giving and taking.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1120"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="1121"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">***************</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1122"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1123"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">Pabongka Rinpoche, in his famed work on the steps of the path, covers the same point in two different places:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1124"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1125"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF51;&#xF7A;-&#xF63;&#xF9F;&#xF62;-&#xF56;&#xF66;&#xF58;&#xF66;-&#xF53;/ &#xF51;&#xF44;&#xF7C;&#xF66;-&#xF66;&#xF74;-&#xF63;&#xF7A;&#xF53;-&#xF58;-&#xF85;&#xFB2;&#xF66;-&#xF40;&#xFB1;&#xF44;-&#xF56;&#xF66;&#xF7C;&#xF51;-&#xF53;&#xF58;&#xF66;-&#xF40;&#xFB1;&#xF72;-&#xF5A;&#xF7C;&#xF42;&#xF66;-[t]&#xF62;&#xFB3;&#xF56;&#xF66;-&#xF54;&#xF7C;-&#xF46;&#xF7A;-&#xF62;&#xFAB;&#xF7C;&#xF42;&#xF66;-&#xF54;-&#xF51;&#xF44;./ &#xF56;&#xFB3;&#xF7C;-&#xF42;&#xF7C;&#xF58;&#xF66;-&#xF53;-&#xF51;&#xF44;&#xF7C;&#xF66;-&#xF66;&#xF74;-&#xF63;&#xF7A;&#xF53;-&#xF85;&#xFB2;&#xF66;-&#xF54;&#xF60;&#xF44;-[t]&#xF60;&#xF56;&#xFB1; &#xF44;-&#xF56;-&#xF56;&#xFB1;&#xF58;&#xF66;-&#xF54;&#xF60;&#xF72;-&#xF62;&#xFA3;&#xF63;-&#xF60;&#xF56;&#xFB1;&#xF7C;&#xF62;-&#xF54;&#xF60;&#xF72;-&#xF63;&#xF7C;-&#xF62;&#xF92;&#xFB1;&#xF74;&#xF66;-&#xF63;&#xF9F;&#xF62;-&#xF61;&#xF72;&#xF53;-&#xF42;&#xF66;&#xF74;&#xF44;&#xF66;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1126"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Even if you do undertake the contemplation this way, the fact is that you will find yourself unable to take away anything directly.  You will though finish amassing a great amount of virtuous karma, in a very effective way; and if you really get used to the practice then you will find yourself later actually able to take something.  This is similar, said our Lama, to the story of the dedicated practitioner of the meditation of Loving One.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1127"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="1128"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">***************</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1129"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1130"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">[s]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF51;&#xF7A;&#xF60;&#xF72;-&#xF58;&#xF47;&#xF74;&#xF42;-&#xF62;&#xFB1;/ &#xF51;&#xF7A;-&#xF63;&#xF9F;&#xF62;-&#xF56;&#xF51;&#xF42;-&#xF42;&#xF72;&#xF66;-&#xF42;&#xF4F;&#xF7C;&#xF44;-&#xF63;&#xF7A;&#xF53;-&#xF56;&#xFB1;&#xF66;-&#xF54;-&#xF56;&#xF5E;&#xF72;&#xF53;-&#xF51;&#xF7A;-&#xF63;&#xF9F;&#xF62;-&#xF42;&#xFB1; &#xF62;-[t]&#xF60;&#xF88;&#xFB2;&#xF42;-&#xF42;&#xF58;-&#xF58;&#xF72;-&#xF60;&#xF88;&#xFB2;&#xF42;-&#xF56;&#xF62;&#xF9F;&#xF42;-&#xF54;&#xF60;&#xF72;-&#xF5A;&#xF7A;/ &#xF62;&#xF44;-&#xF42;&#xF72;-&#xF58;&#xF7C;&#xF66;-&#xF54;-&#xF59;&#xF58;-&#xF63;&#xF66;/ &#xF51;-&#xF63;&#xF9F;-[t]&#xF51;&#xF44;&#xF7C;&#xF66;-&#xF42;&#xF53;&#xF66;-&#xF54;&#xF62;-&#xF55;&#xF53;-&#xF56;&#xF51;&#xF7A;-&#xF51;&#xF44;&#xF7C;&#xF66;-&#xF66;&#xF74;-&#xF66;&#xF92;&#xFB2;&#xF74;&#xF56;-&#xF54;-&#xF51;&#xF7A;-&#xF63;&#xF9F;&#xF62;-&#xF42;&#xFB1; &#xF62;-&#xF58;&#xF72;-&#xF60;&#xF88;&#xFB2;&#xF42;-[t]&#xF54;&#xF62;-&#xF58;&#xF50;&#xF7C;&#xF44;-&#xF53;&#xF66;-&#xF51;-&#xF53;&#xF72;-&#xF51;&#xF7A;-&#xF63;&#xF9F;&#xF62;-&#xF51;&#xF44;&#xF7C;&#xF66;-&#xF66;&#xF74;-&#xF60;&#xF7C;&#xF44;-&#xF56;-&#xF5E;&#xF72;&#xF42;-&#xF56;&#xFB1;&#xF7A;&#xF51;-&#xF66;&#xF99;&#xF58;-&#xF88;&#xFB2;-[t]&#xF62;&#xF44;-&#xF42;&#xF72;-&#xF44;&#xF7C;&#xF66;-&#xF53;&#xF66;-&#xF41;&#xF74;&#xF62;-&#xF88;&#xFB2;-&#xF41;&#xFB1;&#xF7A;&#xF62;-&#xF56;&#xF60;&#xF72;-&#xF63;&#xFB7;&#xF42;-&#xF56;&#xF66;&#xF58;-&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;/</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1131"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Now at the very end you should look into yourself and see whether things really happened the way you pictured they should when you did the giving and taking.  And what you will find is that it was all only a wish: that in actuality there was no help or happiness which came about at present.  This should lead you to think to yourself, "Well then, I will have to see to it that this actually does happen."  Try to bring up in your heart therefore the feeling of personal responsibility, where you decide that you would be willing to carry the load all on your own.</c></p>
</section>
<section props="page-margin-right:1.2000in; page-margin-left:1.5000in; columns:1" xid="1132">
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1133"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"><pbr/></c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1134"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1135"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1136"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1137"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1138"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1139"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:14pt; font-style:normal">The Asian Classics Institite</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1140"><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:14pt; font-style:normal">A selection from: </c><c props="font-weight:bold; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:14pt; font-style:italic">The Garden</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1141"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1142"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1143"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:13pt; font-style:normal">Chapter IX: Compassion </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1144"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1145"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">The meeting with Master Guna Prabha left me with months of thinking to do.  I would walk through the streets of the market in town, or sit at the window of the library, looking out at the fields of cotton and groves of orange, and try to imagine how these could be produced by some seed or imprint within my own mind.  It seemed difficult to accept, but during my meditations I reviewed the ideas we had talked about again and again, and could find no fault with them.  I knew that Guna Prabha had spoken truly when he said I would have to overcome my natural feelings about what appeared to my eyes, and the prejudices of the culture in which I had been raised, and use instead the sight endowed by careful reasoning.  </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1146"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1147"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">In time, with continued thinking and observation, I grew accustomed to this new way of seeing things, and it brought me a great deal of comfort that it explained every aspect of my world, and my own experiences over the course of a lifetime.  Especially when things went wrong&#x2014;when the keeper of the library shouted at me for some minor error, or when something I had dearly hoped for failed to work out&#x2014;I reviewed my meeting with Master Guna Prabha, to try to identify what I must have done in my past thinking, speaking, or acting to cause me to see this event.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1148"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1149"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And I realized that, in every case, the natural reaction which I would have had, such as saying something rude back to the library keeper when he berated me, was exactly the kind of action that would plant an imprint for me to see myself being shouted at again; that is, if I did not restrain myself from my natural negative reaction, I would be perpetuating the very suffering I was trying to avoid.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1150"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1151"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">It became quite clear then that it would make sense for me to take some step that would help me restrain from my natural reactions to wrongs, and so I determined to take the five lifetime vows of a layman.  The kindly abbot of the small hermitage where I kept my room granted them to me, with a simple ceremony in his modest quarters.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1152"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1153"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">I truly enjoyed the vows and made it a custom every few hours during the day to review them; it was not that I might have killed a man in every such period of time, but I made it a challenge to find the action I had done which came the closest to endangering the life of another person, or even an animal.  Then, in order to achieve a balance within my heart, I also searched the hours to find something I had done in a positive way, something I had done to protect and preserve life, and set aside a few minutes to take joy in what I had done&#x2014;for the abbot had advised me that this was a certain way to increase the power of the positive seeds in my mind.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1154"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1155"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And at the end of every day, before sleeping, I reviewed several of the ten actions that Master Guna Prabha had spoken of, to see what negative thing I had done closest to them, and what thing I had done which was the positive opposite of them.  I kept a little diary for this purpose, each day organizing two or three of the ten actions and their opposites like this, on a single page&#x2014;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1156"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1157"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">1) taking life</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1158"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1159"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">closest I came to it today: almost hit someone with my horse</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1160"/>
<p props="margin-top:0.0000in; margin-left:1.0000in; text-indent:-0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1161"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">closest I came to the opposite (protecting life): made sure R took her medicine</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1162"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1163"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">The list of the ten actions and their opposites I kept in the front of my journal, like this&#x2014;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1164"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1165"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">1. Taking life			1. Protecting life</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1166"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">2. Stealing				2. Respecting others' property</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1167"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"> 	3. Sexual misconduct		3. Respecting others' partners</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1168"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">4. Lying				4. Telling only the truth</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1169"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">5. Divisive talk			5. Bringing people together</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1170"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">6. Harsh words			6. Kind and gentle speech</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1171"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">7. Idle talk				7. Saying only meaningful things</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1172"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">8. Craving what belongs		8. Helping others get what they</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:1.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1173"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">to others				want</c></p>
</section>
<section props="page-margin-right:1.2000in; page-margin-left:1.5000in; columns:1" xid="1174">
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1175"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">9. Taking pleasure in		9. Helping others in their</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:1.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1176"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">others' misfortunes			misfortune</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1177"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">10. Holding on to harmful	10. Examining my beliefs, and</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:1.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1178"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">ideas					keeping only those that</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:3.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1179"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">were true and good</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1180"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1181"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1182"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And so I would write down several instances where I had done or thought or said something that was in any way close to the two or three actions I had chosen for that evening, in both the negative column and the positive column.  Within the course of but a few weeks I found something changing in myself and my world.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1183"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1184"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">The first thing I noticed was rather upsetting, for I began to realize that throughout the day, especially as I spoke to others, I was constantly dropping hints, or even making outright statements, that were in a subtle way meant to cast myself in a good light, and to estrange people from others; or else I would say things that, even though I did not use any obviously harsh words, were meant to have the same effect.  I began to worry then that I was getting worse, and not better, but the abbot counseled me, and told me that this was a normal impression when someone first started to really watch what they said or did or thought.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1185"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1186"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">The most immediate effect of my efforts was that I simply stopped saying, doing, or thinking things that were so obviously negative that, even as a novice on this Path, I could not help but notice them.  What happened then had little to do with the seeds or imprints that I had learned about; it was much simpler: I simply had more time in my mind for better things, for positive thoughts, and I found myself becoming more creative, better able to concentrate, and in a good mood throughout the day, which was simply very enjoyable.  Avoiding bad seeds in my mind was, well, fun, and not the drudgery I'd anticipated when Guna Prabha had first spoken of vows.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1187"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1188"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">In a slower but very steady way, I also noticed my world itself changing, and I remembered that if seeds were planted very consciously and sincerely that they could ripen relatively quickly: in an ideal case, one could even alter one's entire reality within this life.  The change that started happening to me is difficult to describe, but it was definitely noticeable and real.  Foods tasted better, colors were brighter, I felt joy and creativity bubbling within me, and people all around me seemed to begin saying and doing things that inspired my spirit.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1189"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1190"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">I felt instinctively that, if I were able to take this way of life to its final end, then even those things in life which seemed inevitable&#x2014;such as illness and old age, or death itself&#x2014;had the potential to change entirely.  I also sensed that this greater change would require something more powerful than my present efforts, and so once more I felt compelled to travel to the Garden.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1191"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1192"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Winter by now had passed, and spring was at its gorgeous height.  As I walked through the gate that evening I noticed, perhaps not a little because of my recent practices in the art of a virtuous life, that the small patch of grass had turned to a lush lawn.  The fountain seemed to flow with more crystal desert water than ever, and the limbs of the carob tree had spread far beyond the perimeter of the little brick platform around it: they reached out and then down nearly to the endearing little wooden bench where I had learned so much.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1193"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1194"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">I sat on the end of the bench and in the twilight turned my thoughts and eyes to the southern part of the garden, to a small plum tree under which I remembered standing once with my Golden Lady, drawing a design across her forehead with my lips, and then suddenly being struck by a sense of concern for people I had never known, and simultaneously feeling a kind of jolt deep within my body.  So deeply did I muse on these thoughts that I was unaware that Master Asanga had entered the Garden, and was seated at my side, on the bench.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1195"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1196"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">I turned, and the first thing I saw was his hand, stretched out towards me, holding a small, fragrant </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">cupsay,</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"> a kind of pastry my mother had often baked for us.  "Here," he said, "I heard you like these."  He was already munching on one in a friendly way, completely unassuming, and urged me to follow suit.  And so we sat there, enjoying the splendid garden and food; each time I finished with one piece, he urged upon me another from a small bag he had pulled from beneath his upper robe.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1197"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1198"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">He looked very different than I would have imagined.  He and his half-brother Vasu Bandhu, who had already blessed me with his instruction in the Garden, had during the last sixteen centuries been considered two of the greatest thinkers known to us.  And yet here before me he seemed simply a very pleasant and friendly companion, with a simple, honest face and a completely gentle manner of moving and speaking, almost to the  point of shyness.  He wore his robes naturally, not overly concerned about how they looked but looking therefore as if they were an extension of his very being, so perfectly did their gentle folds match his own evident kindliness.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1199"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1200"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Are you all right?" he asked, "did you have enough?  Do you think I might have put too much sugar on them?  I tried to powder it, but I haven't quite got it right yet."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1201"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1202"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">I looked at him in amazement as I imagined one of the greatest philosophers of all time fussing over a hot fire to make sure my pastries had been done just right.  But this seemed so typical of his nature, and taught me a great lesson even before he began to speak in earnest.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1203"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1204"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Time passes," he said gently, looking at me with soft brown eyes, full of concern, "and I find personally that I tend to neglect things of importance."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1205"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1206"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">I grasped immediately that he was alluding to my mother, and my search for my mother, and my journey to find some way that I could help her still, if this were in any way possible.  I realized that the pursuit of my own happiness in life had overshadowed my original intentions to help her, and in the presence of such goodness I was forced to flush in shame, and lower my eyes to the top of the bench.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1207"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1208"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">He reached out in a very natural motion and took my hand, as if to apologize for hurting me, but held the fingers with a firmness that told me it was a necessary place to start, for the lessons which I needed in my life now.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1209"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1210"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Gardens are so nice." he said with warmth.  "Have you ever wondered how much thought it takes to plan one properly?  One must think carefully, and imagine what would most please every one of the many different people who will ever visit the garden, each seeking some brief moment of serenity in their lives, and finding it in a slightly different way, within a single Garden."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1211"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1212"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">I felt a pang in my chest, and it seemed as though, in these few simple words, he were standing before me, shouting, and accusing me of trying thus far in my spiritual life to build a very strange garden, one only big enough for myself, with no thought of my mother and all the others who needed happiness as well, but who had found no teacher or Path to help them.  His extraordinary way of using everyday conversation to draw my attention to the very things I most needed to think about struck me intensely, reminded me deeply of Someone else with a very similar quality.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1213"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1214"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Suppose for example," he continued, as if completely unaware of the way his words were pummelling my heart, "that the person who designed the garden enjoyed plums and roses.  I guess that it would take some degree of self-control, and sensitivity, to realize that others might prefer other flowers and fruits.  And so the designer of the garden would at some point have to go to other gardens, to observe carefully the people who went there, and try very hard to put himself in their places, and learn to see what </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">they</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"> enjoy in a garden, almost as well as they do."  </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1215"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1216"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Again his words struck a soft point in my heart, and I felt compelled to confess to him, at that very moment, a thought that had troubled me for some time.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1217"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1218"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"I am not a person who has lived many years," I began, "but even before I had spent much time in this life I quickly understood what a sacred thing it would be if I could really put myself in others' places, if I could truly manage to be as concerned about what they want as much as they were&#x2014;in short, if I could learn to feel the kind of love or compassion that wants to provide others with what </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:italic">they</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"> want in life, and wants it every way as much as they themselves do.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1219"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1220"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"But to be entirely honest," I continued, "I cannot see how it is possible.  I am completely aware that I am always infinitely more interested in what I want than in what others want, even if their want is a more serious want, even if their want is a question of their inner or physical survival.  I simply cannot imagine any way that I could learn to care for others with the same care with which I care for myself, and this bothers me deeply, for I sense what joy it would bring all of us here in this world if we could learn this one sacred way of living."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1221"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1222"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"You are completely right," he said with a somber expression, full of concern for my concern.  "It is so natural and easy for us to pass through life, worrying about those minor needs and wants that we have for ourselves, and ignore those who may even be dying of hunger and want of shelter, before our very eyes.  And as you say we are aware of this deficiency in our compassion, and I know of few thinking people who do not feel disturbed from time to time by their own inability to care for others with even a sliver of the concern that they automatically show for themselves.  We know we want to love, and we know we do not know how."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1223"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1224"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">We sat silently for some time, and I wondered at how close I already felt to him, how he made me feel his equal and even his confidante, within but a few minutes.  Then he cleared his throat softly, as if afraid to speak, and said, "I am no great saint..."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1225"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1226"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And in the way he said it, I realized that he was.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1227"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1228"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"But someone once taught me this meditation that perhaps could help us..."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1229"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1230"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And of course, I knew it would.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1231"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1232"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Not that I'm saying that I've been able to do it very well myself..."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1233"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1234"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And I knew that he had perfected it.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1235"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1236"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"But perhaps you would find it of some use," he concluded.  Instinctively I raised my hands to my breast, and touched my heart, as if asking him to change it, then and there.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1237"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1238"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Prepare yourself for meditation," he said softly, but with the ultimate tone of authority, the authority of love itself.  And I prepared myself, within my mind, as I had learned from master Kamala Shila, here in the Garden.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1239"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1240"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">After a few minutes Asanga said, "Now watch your breath.  Watch it pass, in and out.  Do not try to change it in any way, simply watch it."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1241"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1242"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">This I did, quietly.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1243"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1244"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"And now think," he continued almost in a whisper, "of some kind of pain or trouble that you can expect to come to you before this night itself ends."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1245"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1246"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">I could imagine no pain or trouble here in the Garden, especially with Master Asanga by my side, and so I moved my mind later on into the night, thinking of the empty feeling that I always had when I left the gate of the Garden, as I realized once again that I was leaving without having met the Golden One for whom, I had to admit, I still lived.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1247"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1248"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"And now take that empty feeling," he said quite naturally, "of that future you, of yourself in perhaps an hour from now, and imagine that the feeling has changed to a little pool of pitch black light, deep in your, his, heart."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1249"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1250"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">I did so, seeing a small blot of pure blackness within myself over there, near the gate, in an hour or so, as he, I, left the gate of the Garden.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1251"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1252"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Now wish that you could take that black light away from that future you; make a wish that he would never have to experience that empty feeling, and decide that you will take it away from him."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1253"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1254"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">I made this decision; it was not so hard, considering that I was going to feel better than I would have felt otherwise, if only in an hour from now.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1255"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1256"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"And now cut that pool of black light away from the heart of the future you, as if with some razor, and decide that you would be willing to take it into yourself now, if he would not have to feel it later."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1257"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1258"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">This time I felt a bit of hesitation, a feeling that it might hurt me, but since it was just saving myself the same pain later, I decided I could do so, in the same way that we endure having a cut cleaned out with alcohol, knowing it will help us stop a greater hurt later, if we take the smaller hurt now.  I decided to accept the black hurt light now.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1259"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1260"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Now draw the black light into yourself, suck the empty feeling out of that future you, as he walks through the gate over there.  Change it to a long thin stream of black light and let it float on the air of your breath, as you inhale, and your breath returns to your body.  If the picture is not clear with one in-breath, then bring the black stream in on several of them."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1261"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1262"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">I did as Master Asanga instructed, and the more I concentrated, the more I felt a slight distaste.  But I brought the black light in on my breath, knowing I was helping my future self.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1263"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1264"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"The breath is entering your chest; the black light is riding on the breath.  Now see a tiny flame in the very middle of your heart: this is your own selfishness, and the misunderstanding of your life and your world that creates this selfishness.  See, look at the black light, it is approaching that little flame of selfishness; it is about to touch it."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1265"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1266"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">I saw the tip of the thin ray of black light as I breathed it in through my nostrils, and saw it stream down the throat, into my chest, and about to touch the red flame of my selfishness.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1267"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1268"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Watch carefully now, concentrate, for it will all be over in a flash.  The black light hits the flame; there is a burst of white light; the flame of your selfishness blinks into nothingness; and the black light itself flashes into a puff of thin white smoke, that evaporates as well into nothingness&#x2014;all in a split second.  Your own selfishness, and your own future pain, which you decided to take upon yourself, are gone forever, and your heart is clean and pure."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1269"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1270"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">This part was more fun, a happy ending, and I practiced it a few times.  Each time I felt a sense of relief, and release, as the little flame was snuffed out, and the puff of white smoke faded away.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1271"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1272"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Rest for a moment," he said.  He pulled a little wooden bowl from a fold at the side of his robes, stepped slowly and gracefully to the spring, and filled it.  Then he came and offered it to me, and I drank gratefully, only afterwards realizing how natural it seemed that this extraordinary master of philosophy, and of life itself, should be serving a spiritual beginner like me.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1273"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1274"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">He seated himself again, and continued: "Now think of some suffering, some painful situation or thought, that you can anticipate might come to you sometime tomorrow."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1275"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1276"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">This was no great feat, for the thought of the disgruntled look on the library keeper's face, as I entered for work perhaps an hour or two late, directly from a late night's ride on the coach, came immediately to mind.  I could easily imagine the feeling of resentment that would well up inside of me then, despite my best efforts in the moment, and whatever sincere resolutions I might make in advance, to prevent it.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1277"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1278"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Now see the resentment in his heart, in tomorrow-you's heart, as a small pool of black light."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1279"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1280"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">I closed my eyes and imagined it, a black blot inside my chest as I stood framed in the door of the library, facing the keeper's writing desk.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1281"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1282"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Now cut it away from your heart."  And I did.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1283"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1284"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Now be sure to see it for what it is, be sure to think of it as that future pain in your own heart, and decide to take it into yourself.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1285"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1286"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Now see it as a thin stream of black light, riding the in-breath, approaching your face.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1287"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1288"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Entering your nostrils.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1289"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1290"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Seeping down your throat, nearly touching the tiny flame of selfishness and misunderstanding at your heart.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1291"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1292"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Touched!</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1293"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1294"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Flash of white light!</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1295"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1296"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Selfishness blinks out!</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1297"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1298"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Resentment gone to a puff of smoke, and the smoke&#x2014;vanished!" he said urgently.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1299"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1300"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Your heart&#x2014;pure, and clean!"</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1301"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1302"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">I felt again the feeling of release, of freedom, and a sort of pride that I was taking care of someone else, even if it was myself.  The meditation was having some kind of deeper effect on me, one which I hardly would have anticipated.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1303"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1304"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Now try to imagine the three or four worst pains you might have in the whole week ahead.  Don't be lazy, define them clearly in your thoughts, and see them as the pool of black light in his, I mean your, heart, a week from now."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1305"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1306"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">This was a little more of an exercise, but I did so.  Almost certainly there would be a major insult, or at least a snide remark, from the keeper of the library, one that would stay with me a few days, disturbing my thoughts and sleep.  I could probably count on a problem with my horse, he was always losing a shoe or running from me in the morning, when I was already late to the library.  No doubt the spring rain would get to the firewood, and my dinner would be late; and, yes, I could, after tonight, expect some sharp feelings of pain, feelings that stayed over the years, remembering my mother, and wondering how I could help her.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1307"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1308"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"You know the steps," he said.  "Now take the pain yourself."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1309"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1310"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">This was something new, trying to keep my mind on three or four different hurts at once, but I could feel that the reward from doing so would be even greater, and I went through the whole meditation slowly, picturing each step clearly.  Strangely I felt very relieved that I would have the whole week ahead without at least these few sufferings.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1311"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1312"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"And now do the whole month," he said.  "Define clearly the seven or eight worst things that could come to you in the next thirty days, and go through the exercise yourself.  Go slowly, make sure everything is clear."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1313"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1314"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">It took me nearly twenty minutes, but I did as Master Asanga said.  On one hand I was becoming more accustomed to my natural hesitation to take on the pain, and I was learning to overcome it; but on the other hand it seemed a larger and more difficult task each time the amount of pain was increased.  I caught myself trying not to think of the specific kinds of pain very clearly as the black light approached my face, but I knew instinctively that this was not the point, and so redoubled my courage and pictured them clearly in the black.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1315"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1316"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Enough," he said, "rest again."  I leaned back and breathed the sweet spring air, gazed up at the awesome desert stars, and allowed my thoughts to wander the nooks and crannies of the Garden where She had given me other lessons.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1317"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1318"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Then he leaned over to me warmly, took up my hands in his own, and gazed sincerely into my eyes.  "When you have the strength, then increase the pool of black to include the major problems and pains you will face in the coming year.  When you are still stronger, visit yourself at your deathbed, and help take away his extraordinary pain.  Later on begin to add the suffering and confusion that you will experience just after dying, as you enter that temporary spirit form, and begin the journey to your new life.  Then take the pains of the entire coming life, and then the lives after that.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1319"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1320"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Go carefully, make sure you think of each of the pains clearly, and be very sure to go slowly, do not hurt yourself, take in only what you can do comfortably.  It is a good sign if you feel some slight anxiety and hesitation, for it shows that you are really imagining the pains clearly.  But at no time, in any meditation, should you push yourself to a point where it hurts, where you become nervous or distraught, for this is very harmful to the heart and to the spiritual body.  The key is to meditate regularly, and to build up steadily, little by little, so that the meditation becomes firm and strong, rather than making major but hysterical efforts, for these usually collapse entirely within a short time.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1321"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1322"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"When your strength is great, your inner strength, then begin to imagine one or two minor sufferings of someone close to you, say your own father or mother.  Practice taking these into yourself, and destroying them and your selfishness, along with the misunderstanding that causes this selfishness, in the flash of white light.  Then build up to a week with them, and then a month, and so on.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1323"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1324"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Move on next to other people that you love, relatives and close friends, as before.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1325"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1326"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"When you feel yourself even more advanced, then shift over to people to whom you feel neutral: strangers who visit the library, people on the side of the road as you pass.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1327"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1328"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"When your meditation is powerful enough for a greater leap, then take upon yourself the pains of those whom you actively dislike.  This, when you are able to do it honestly, will be a great achievement, an inner achievement, so little recognized by the world at large, which is more impressed if a person can win a battle of strength with a horse, than if he or she can win a battle of strength with his or her own bad thoughts and habits, although the latter is infinitely more difficult.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1329"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1330"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"And then finally, when you are at your peak, send your mind out to every possible habitation of the world: to the houses of humans, to the caves of animals, to the pools where fish live, to the oceans and trees and holes beneath the ground, and imagine every living thing, and practice this sacred act with every outer and inner pain they have.  Go beyond your own world to the stars, and to other realms, realms mostly of horror, that your mind knows must exist, although your eyes cannot yet see them.  Go, to worlds and planets and realms of hurting things that your mind can barely imagine, and take their black hurt away from them."  He sat silently, then raised a corner of his robe, and wiped away his tears, silently.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1331"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1332"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">We sat in the quiet, and I enjoyed the sweet feeling of choosing to notice the pain of others, and wanting to take it from them.  I felt at that moment that there was no sweeter emotion in the world&#x2014;not the pleasure of a lover, nor the thrill of success, nor the fire of power or money.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1333"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1334"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Sometimes I think," he began, and I heard coming another one of those lessons that was not a lesson, a teaching disguised as a passing thought, "of how mothers must feel; it is not a feeling that you or I will ever be able to feel in this life, but we can watch and observe mothers, and see their blind and overpowering love for their children, a love that would impel them to commit any act they had to, if it meant helping their children.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1335"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1336"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"This love seems to have two sides to it: there is one kind of love they have that cannot bear to watch their child suffer&#x2014;you must have seen yourself, a mother with a sick infant in her arms, pushing her way through a crowd of people who wait to see some great physician; a mother racing to protect her child from an oncoming carriage; a mother like a lion rising in fury to anyone who would threaten her child.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1337"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1338"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Then there is the side of a mother's love that wants to give, that wants to provide; I suppose we think most naturally of how she wants at the very beginning to give milk, to fill her child with this warm, liquid happiness, and see the contentment on the babe's face afterwards.  And then throughout her life a mother strives to see to it that her child, even when he or she is already grown, gets everything they wish for: some special piece of clothing, a good schooling, good and helpful friends, and then in their adult years prosperity&#x2014;a good occupation, a good home, spouse, and their own children.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1339"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1340"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"The mother wishes all these things on her child in a way that sometimes amazes me as I think of it, because it often seems that&#x2014;of all the people in the world&#x2014;it is only your mother who cares for you more than you care for yourself."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1341"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1342"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And I knew the truth of Master Asanga's words, for this very realization had come to me on the eve of my mother's death, when the winds howled through the trees outside my door at the Academy, and I realized that I had lost the one person who cared more for my happiness even than I did.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1343"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1344"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"And so," the Master said quietly, with a look that was an incongruous mixture of shyness and extreme inner power, "there is a second part to the meditation, which if you don't mind, I can try to describe to you, although I hardly understand it so well myself."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1345"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1346"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">I smiled despite myself, and nodded.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1347"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1348"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"The entire practice we are doing together tonight is called 'giving and taking,' although when we actually perform it we do the taking part first, and the giving part later.  What we take, as you have seen, is the suffering of others, by rehearsing first with our own suffering.  Remember the suffering can be anything that hurts a person, all the way from the atrocities that take place in the vast realms of misery&#x2014;beyond our present sight&#x2014;on up to the very last moment of doubt, the very last moment before knowledge becomes total, in the mind of a great saint.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1349"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1350"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"And what we give is all happiness, everything we can, everything we have, as I shall now instruct you.  By thinking of how mothers behave you will easily see why the taking comes first, for it would be senseless to offer a child a small sweet, or a toy, if he were at that moment writhing in pain from some disease that was about to take his or her life.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1351"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1352"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Now we'll do the giving part," he said, bouncing a bit on the bench, like a child about to play his favorite game.  "Prepare yourself for meditation."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1353"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1354"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And this I did, as before.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1355"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1356"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Turn your mind again to your breath, to the flow in, and out, and in again."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1357"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1358"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">I did this almost automatically, as I had been taught, in order to focus myself inward.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1359"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1360"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Now picture all your goodness, all your good thoughts and words and deeds, and all the sacred knowledge you have ever learned, and all the imprints lying in your mind that will produce happiness for you in the future.  See it all lumped together, as a glowing, pure white light at your heart."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1361"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1362"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Next think of someone you know&#x2014;someone dear to you is easiest to begin with&#x2014;and think about what they would most like to have, some thing or relationship, or anything else at all."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1363"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1364"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">I thought for a moment and hesitated.  My first instinct had been to send Her something, but upon reflecting I could not imagine what she might want, because in my heart I felt that, when I looked at the way she held her eyes, with the lids half closed in some kind of constant bliss, she seemed somehow complete, and there was nothing more she needed at all.  This too, I surmised, was why Master Asanga had not mentioned focusing either side of this meditation on the Enlightened Ones, for there was nothing to take, and nothing they needed.  At the same time it occurred to me that I could perhaps at times offer them what little good thoughts or realizations I had reached, as a child proudly shows a parent some little drawing they have made.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1365"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1366"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And so I settled on my mother, and imagined that I could provide her with some great lantern, a mystical lantern, which would show her how to make her way away from the realms of terror that her mind might encounter in the time after her death in this world.  And as she held the lamp in her hand it would also direct her to this holy Path, like a good horse who knows the way home, even after the sun has set, and darkness covered the world.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1367"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1368"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Now as you watch your breath, focus on one of the outgoing breaths.  Do not, by the way, ever try to hold your breath, or control it, during this meditation: it should simply go as it wants to go, without any interference on your part.  On one of the outgoing breaths, or several if it feels more comfortable, send forth a slender ray of the white light from your heart, riding on the breath.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1369"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1370"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Imagine that the breath flows out into the world, or to the entire galaxy, and seeks out your mother, wherever she may be at this moment.  On the tip of the ray of light see your magic lantern; make it full size, for the lightrays of thought know no limitation: they can reach to the farthest corners of existence and deliver there any object, from a drop of water to the greatest of oceans.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1371"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1372"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Imagine that the ray of light reaches her side.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1373"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1374"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Imagine that she looks down, in awe, and sees the white light that has come to her.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1375"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1376"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Imagine that she realizes the light has come from you, from her son, and imagine that a great joy, as white as the light, fills her heart.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1377"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1378"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Imagine that she reaches into the ray of light and takes up the lantern.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1379"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1380"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Imagine that, as we speak, it has already begun to draw her forth, to the greater Light."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1381"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1382"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Whilst Master Asanga spoke, my heart wrenched with painful memory, and at the same time leapt with sudden hope.  "Is it possible?" I asked fervently, "Can she really see it?  Does it really go to her?"</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1383"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1384"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">He gave me a look of intense compassion, his eyes glistening, and said quietly, "Listen carefully, for I bring you very glad tidings, but not the kind that you may expect.  Let me ask you, first of all, a few simple questions.  Do you believe in the existence of the Enlightened Ones?"</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1385"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1386"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Yes," I said, "I may not be able to see them, but more importantly I understand how they can exist, and I even understand how I might become one.  Aside from all this I have an instinct&#x2014;although I admit that instincts are generally to be viewed with caution, whereas understanding can always be trusted&#x2014;which has stayed with me throughout my whole life, and throughout my whole being; and this instinct informs me that the Enlightened Ones certainly do exist."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1387"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1388"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"And do you imagine," he said, "that an Enlightened One is aware of the suffering of those beings who are not yet enlightened?"</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1389"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1390"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Most certainly so, for they know all things, and our suffering is but one of all things."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1391"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1392"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"And do you believe that these Enlightened Ones are compassionate?  When they see one of us suffering, do they care?"</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1393"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1394"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Of course they care, they care about our suffering even more than we do."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1395"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1396"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"And so if there were any way in which they could remove any single atom of our suffering, say by doing this meditation themselves, do not you think that they would have done so, a long time ago?"</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1397"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1398"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">I sat silent, stunned by the thought.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1399"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1400"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"And so cannot we say, that the fact that we do suffer now, is proof that suffering cannot be removed simply by someone wishing it removed, whether that someone is ourselves or any other being in the universe?"</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1401"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1402"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">My utter silence confirmed the truth of Master Asanga's words.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1403"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1404"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"So what is the use," I cried out then, "what is the use of doing this meditation, or anything else?  If it cannot really remove anyone's pain, or provide anyone with happiness, then why do we even try?"</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1405"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1406"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">He gazed at me somberly.  "I ask you," he said quietly.  "Why was it that you and I started this meditation in the first place, earlier this evening?"</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1407"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1408"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"I had asked you if there was a way to learn compassion; if there was any way that I could learn to care for others with the same intensity that I care for myself."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1409"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1410"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"And do you understand why your heart, and the heart of every living being, craves so for this holy water?  Do you understand why you thirst so deeply for this ability, this ability to love equally?"</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1411"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1412"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"It is nothing I can put into words, only I sense it to be true, I think we all sense it to be true."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1413"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1414"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"The real reason," he replied sincerely, "is that with this love we can do all things, and be all things.  And there is a part of our mind which realizes this fact, although we are too weak to act on it properly.  To put it very simply, this compassion is the one quality that can turn you into a spiritual Warrior.  It is the only emotion which can drive you to the greatest height of human endeavor, which is the absolute and unquestioning service of all those around us who need in any way."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1415"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1416"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"And so actually this meditation cannot help my mother or anyone else," I mused, hardly hearing his words.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1417"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1418"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">Master Asanga grabbed me full on the shoulders, and for the first time he revealed the strength, the overpowering might, of both his body and his intellect.  He gave me one powerful shake, and said "Look in my eyes!  Now!"</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1419"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1420"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">I looked.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1421"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1422"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Think!"</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1423"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1424"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">I tried, I was tired, I was beginning to lose the point.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1425"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1426"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"What would be the logical result of a meditation in which you attempted, if only mentally, to remove the sufferings of every living creature in the universe, and to bring them every wish their hearts desired, from the measly happinesses of the damned existence we live now, all the way up to the highest bliss of total enlightenment?"</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1427"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1428"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">I thought for a moment, more clearly under the intensity streaming through his iron arms and hands.  "Like all thoughts," I began haltingly, "it would plant a seed or imprint in my mind.  But I cannot imagine a more pure intention, nor any thought which could cover a greater object, since we would be wishing for the ultimate happiness not of just ourselves or a few loved ones, but rather for the whole livingkind of the entire universe."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1429"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1430"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">And then it dawned on me.  "If I had to choose the one action which could create an entirely perfect world in the future, if I had to choose one thing which could leave an imprint in my mind that would make me see every single detail and person of the world as completely perfect, as pure light, and pure bliss, then it would be the very meditation we are doing tonight."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1431"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1432"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">He nodded, and continued to stare in my face, waiting for more.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1433"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1434"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"But what good is a perfect world that I have created only for myself, if my mother cannot see it?  What good is a perfect garden if it is only large enough for a single selfish person?"</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1435"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1436"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Now listen," he commanded me again.  "What does logic tell you?  What can your mind find to answer your question?  Think!  This is why you have come here, this is why the Garden itself exists, this is why you have seen and talked to us, to me.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1437"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1438"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"When your mother was ill, when the cancer started to eat at her breasts, and then moved to her arms and belly, and finally clawed its way into her heart and released the red blood there over the floor of your entire house, was there anyone who could have come and removed her sickness with a wave of their hand?"</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1439"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1440"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"No, no one, not for her, not for anyone, as long as humanity has lived."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1441"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1442"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"And what caused her to be ill?"</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1443"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1444"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"According to all that we have said, it was because she herself failed, at some point in the past, to respect life."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1445"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1446"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"And why did she fail to respect life?"</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1447"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1448"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Well, because she was like all of us, she was like the entire mass of humanity, who live out their existence, and suffer horribly through that existence, and know no end to this suffering, neither even recognize that the suffering will continue beyond death, nor even often as they suffer realize they are suffering, but continue on like sheep to the slaughter, in fact like sheep that could somehow pick up the knife and slit their own throats&#x2014;for we suffer because we have caused suffering to others, and we are completely ignorant that this is what brings us our suffering, and because, finally, in seeking to protect what we think are our own interests we respond to evil with new evil, and thus assure evil upon ourselves in the future as well."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1449"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1450"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"And how is it that you came to know this truth?" he said simply.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1451"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1452"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"It is the kindness," I said, breaking into tears, "the kindness of yourself, and the kindness of all the teachers who have come to this Garden, to show me that the real source of all pain is the pain we do to others."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1453"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1454"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"And why did we have to show you?  Why did we have to speak, and describe, and reason with you, and make you think, and bring you to a true understanding?  Couldn't we have simply taken what we know, and magically put it into your mind, without these hours of heartfelt discussion and contemplation?"</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1455"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1456"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"No, I don't think this is possible."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1457"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1458"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Why not?"</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1459"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1460"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"If you love me, you would have done so long ago; I would have had no reason to come to the Garden, I would know everything already, simply because you wanted me to know."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1461"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1462"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"And do you think that we understand simply because we understand?  Or do you think rather that, once upon a time, at some point in the past, we were exactly like yourself, and knew nothing of the Path, and then had the great blessing to meet spiritual guides?"</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1463"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1464"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"I think you must have been, at some time in the past, just like myself.  And then you met the spiritual guides, and you came to understand their teaching, and so finally you reached the ultimate goals of that teaching."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1465"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1466"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"And so now we have come to the point.  I ask you to imagine a world without a single spiritual guide.  Think of this garden as an empty, dark place, with none of the light that you have seen here since that first night, when She granted you the kindness of allowing you to enter this sacred place."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1467"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1468"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">I could not bear the thought.  I shook my head violently, and pushed back against his hands on my shoulders.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1469"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1470"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"And so I ask you; what is the best, and in fact the only, way to help your mother?  Do you think you are going to send her a house to stay in, or a bed to sleep in, or some piece of bread or fruit?  Do you think this will help her where she is now?  Do you think this is what she needs?  Do you not know, very well, that during her brief stay in this world she had a house, and that she slept in a bed, and that she filled herself with the mountain of food that a person consumes over the course of a lifetime?  And did these things stop the cancer?"</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1471"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1472"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"No, no," I sobbed.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1473"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1474"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"So what will you send to her, on the white light from your heart?"</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1475"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1476"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Light, a lantern, a special lantern that guides her to a place without suffering, the lamp of understanding the very things you have taught me."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1477"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1478"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"And who can be her lamp?  Who can teach her truly, the entire Path, from beginning to end?  Who sees her whole past, and her whole future, and her whole mind: who knows exactly what knowledge she needs, what steps to lead her upon?"</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1479"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1480"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Only an Enlightened One," I burst back.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1481"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1482"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"And what creates an Enlightened One?" he demanded.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1483"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1484"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"That same thing which creates all things: actions of the mind, actions of the speech, and actions of the body&#x2014;but to create an Enlightened One these actions must be totally pure, they must plant the seeds in the mind that will make us see ourselves become Enlightened Ones," I said urgently.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1485"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1486"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"And what meditation is it that plants those seeds most perfectly?" he demanded.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1487"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1488"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"I can think of none more perfect and complete than the one you have just taught me," I replied, calming within, "because this is the Path to compassion itself, the compassion which loves all others as we love ourselves, better than we love ourselves."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1489"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1490"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"And so now you tell me," he said, releasing my shoulders, and looking down quietly.  "Can you, simply with the power of meditation, take away the sufferings of your mother, and fill her with her every wish, her ultimate wishes&#x2014;perfect happiness and paradise?"</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1491"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1492"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"If that meditation makes me an Enlightened One, and gives me the ability to go to her and teach her this Path perfectly, then," I said, with a sudden feeling of complete joy, "yes."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1493"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1494"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Then send her the white light," said Master Asanga as he rose from the bench, "send the lantern, be the lantern.  Send water to those who thirst, become the glass of water.  Send a companion for those who are alone, become the companion.  Be a lover for those who need a lover, be a child for those who want a child, be a tree for those who wish to sit and rest, be a rose for those who seek beauty, be all things to all people that bring them any happiness at all.  Send everything on the white light, out with your breath.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1495"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1496"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Our breath moves in harmony with our spiritual body, and changes as a reflection of the health of the spiritual body.  The spiritual body in turn is affected by the breath, and as the mind gains in purity both the breath and the spiritual body are made whole.  You will find thus that, as the breath carries the light, it will affect you in ways I cannot reveal to you now.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1497"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1498"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Devote yourself to this practice of taking, and giving.  You will find true compassion, but you must practice seriously; whisper to yourself as you move through the day, 'giving and taking'; let it be on your mind, and on your lips, constantly, like the breath itself.  You can do this practice anywhere, in the market, as you eat, as you work, as you lie on your bed waiting for sleep.  And it will, I tell you, bring you to your paradise, your own Garden, where you must go first yourself, if you have any hope of finding and helping your precious mother.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1499"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1500"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal">"Here now my son," and he leaned over, stretching forth his hand.  "Take the rest of these pastries I made for you."</c></p>
</section>
<section props="page-margin-right:1.2000in; page-margin-left:1.5000in; columns:1" xid="1501">
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1502"><c props="font-weight:normal; color:#000000; font-family:PalatinoDiaRomanType 1; font-size:12pt; font-style:normal"><pbr/></c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1503"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1504"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1505"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1506"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1507"><c props="font-weight:bold; color:#000000; font-family:PalatinoDI; font-size:14pt; font-style:normal">The Asian Classics Institute</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1508"><c props="font-weight:bold; color:#000000; font-family:PalatinoDI; font-size:14pt; font-style:normal">The Six Preliminaries to Meditation, and the Seven Ingredients</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1509"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1510"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1511"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The following selection is taken from the </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:italic">Great Book on the Steps of the Path (Lam-rim chen-mo)</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal"> written by Je Tsongkapa (1357-1419).  This part of his work is a commentary on a special prayer called the </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:italic">King of All Prayers, the Prayer of the Realized One, Deeds of All Goodness</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">. </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1512"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1513"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:center; margin-right:0.0000in" xid="1514"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">************</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1515"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1516"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1517"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF04;&#xF05;&#xF0D;&#xF0D;&#xF63;&#xF58;&#xF0B;&#xF62;&#xF72;&#xF58;&#xF0B;&#xF46;&#xF7A;&#xF53;&#xF0B;&#xF58;&#xF7C;&#xF0B;&#xF63;&#xF66;&#xF0D;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1518"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">From the </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:italic">Great Book on the Steps of the Path</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal"> by Je Tsongkapa:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1519"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1520"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF0D;&#xF66;&#xF90;&#xFB1;&#xF7C;&#xF44;&#xF0B;&#xF5A;&#xF74;&#xF63;&#xF0B;&#xF58;&#xF51;&#xF7C;&#xF62;&#xF0B;&#xF56;&#xF66;&#xFA1;&#xF74;&#xF66;&#xF0B;&#xF4F;&#xF7A;&#xF0B;&#xF56;&#xF66;&#xF9F;&#xF53;&#xF0B;&#xF54;&#xF0B;&#xF63;&#xF0B;&#xF42;&#xF49;&#xF72;&#xF66;&#xF0D; &#xF66;&#xF90;&#xFB1;&#xF7C;&#xF44;&#xF0B;&#xF5A;&#xF74;&#xF63;&#xF0B;&#xF51;&#xF44;&#xF7C;&#xF66;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF0D; &#xF51;&#xF7A;&#xF0B;&#xF63;&#xF0B;&#xF63;&#xF7C;&#xF42;&#xF0B;&#xF62;&#xF9F;&#xF7C;&#xF42;&#xF0B;&#xF51;&#xF42;&#xF42;&#xF0B;&#xF54;&#xF60;&#xF7C;&#xF0D; &#xF0D;&#xF51;&#xF44;&#xF0B;&#xF54;&#xF7C;&#xF0B;&#xF63;&#xF0B;&#xF42;&#xF49;&#xF72;&#xF66;&#xF0B;&#xF63;&#xF66;&#xF0D; &#xF50;&#xF74;&#xF53;&#xF0B;&#xF42;&#xFB1;&#xF72;&#xF0B;&#xF44;&#xF7C;&#xF0B;&#xF56;&#xF7C;&#xF0B;&#xF63;&#xF0B;&#xF47;&#xF72;&#xF0B;&#xF63;&#xF9F;&#xF62;&#xF0B;&#xF56;&#xFB1;&#xF0B;&#xF56;&#xF0B;&#xF63;&#xF0D; &#xF51;&#xF44;&#xF0B;&#xF54;&#xF7C;&#xF0B;&#xF66;&#xFA6;&#xFB1;&#xF7C;&#xF62;&#xF0B;&#xF56;&#xF60;&#xF72;&#xF0B;&#xF46;&#xF7C;&#xF66;&#xF0B;&#xF53;&#xF72;&#xF0B;&#xF51;&#xFB2;&#xF74;&#xF42;&#xF0B;&#xF66;&#xF9F;&#xF7A;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1521"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Here we begin a brief presentation of how to practice the steps of the path to Buddhahood.  First we will make the actual presentation, and after that refute certain mistaken ideas about the steps.  The presentation itself comes in two sections; the first is how to proceed during meditation periods.  This starts with Six Preliminaries to meditation. </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1522"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1523"><c props="font-weight:normal; color:#000000; font-family:PalatinoBoldDI; font-size:12pt; font-style:normal">[1]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal"> &#xF42;&#xF66;&#xF7A;&#xF62;&#xF0B;&#xF42;&#xFB3;&#xF72;&#xF44;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF62;&#xFA3;&#xF58;&#xF0B;&#xF50;&#xF62;&#xF0B;&#xF61;&#xF72;&#xF53;&#xF0B;&#xF54;&#xF66;&#xF0D; &#xF42;&#xF53;&#xF66;&#xF0B;&#xF41;&#xF44;&#xF0B;&#xF63;&#xF7A;&#xF42;&#xF66;&#xF0B;&#xF54;&#xF62;&#xF0B;&#xF56;&#xFB1;&#xF72;&#xF0B;&#xF51;&#xF7C;&#xF62;&#xF0B;&#xF56;&#xFB1;&#xF66;&#xF0B;&#xF63;&#xF0B;&#xF66;&#xF90;&#xF74;&#xF0B;&#xF42;&#xF66;&#xF74;&#xF44;&#xF0B;&#xF50;&#xF74;&#xF42;&#xF66;&#xF0B;&#xF40;&#xFB1;&#xF72;&#xF0B;&#xF62;&#xF9F;&#xF7A;&#xF53;&#xF0B;&#xF63;&#xF7A;&#xF42;&#xF66;&#xF0B;&#xF54;&#xF62;&#xF0B;&#xF51;&#xF42;&#xFB2;&#xF58;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1524"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Here we are following the descriptions of how Serlingpa practiced during his life.  The first preliminary to meditation is to make the room tidy and clean; then set up a beautiful altar, with representations of the Buddha's body, speech, and mind.</c></p>
</section>
<section props="page-margin-right:1.2000in; page-margin-left:1.5000in; columns:1" xid="1525">
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1526"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1527"><c props="font-weight:normal; color:#000000; font-family:PalatinoBoldDI; font-size:12pt; font-style:normal">[2]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal"> &#xF58;&#xF46;&#xF7C;&#xF51;&#xF0B;&#xF54;&#xF0B;&#xF42;&#xF61;&#xF7C;&#xF0B;&#xF58;&#xF7A;&#xF51;&#xF0B;&#xF54;&#xF62;&#xF0B;&#xF56;&#xF59;&#xF63;&#xF0B;&#xF63;&#xF0B;&#xF56;&#xF40;&#xF7C;&#xF51;&#xF0B;&#xF54;&#xF0B;&#xF58;&#xF5B;&#xF7A;&#xF66;&#xF0B;&#xF54;&#xF62;&#xF0B;&#xF56;&#xF64;&#xF58;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1528"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The second preliminary is to go and find offerings that you obtain without using any dishonest means.  Put them forth in an attractive arrangement.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1529"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1530"><c props="font-weight:normal; color:#000000; font-family:PalatinoBoldDI; font-size:12pt; font-style:normal">[3]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal"> &#xF0D;&#xF51;&#xF7A;&#xF0B;&#xF53;&#xF66;&#xF0B;&#xF49;&#xF53;&#xF0B;&#xF66;&#xF0B;&#xF63;&#xF66;&#xF0B;&#xF42;&#xF49;&#xF72;&#xF51;&#xF0B;&#xF62;&#xFA8;&#xF74;&#xF42;&#xF66;&#xF0B;&#xF40;&#xFB1;&#xF72;&#xF0B;&#xF66;&#xF92;&#xFB2;&#xF72;&#xF56;&#xF0B;&#xF54;&#xF0B;&#xF63;&#xF66;&#xF0B;&#xF66;&#xF7A;&#xF58;&#xF66;&#xF0B;&#xF66;&#xFA6;&#xFB1;&#xF7C;&#xF44;&#xF0B;&#xF56;&#xF60;&#xF72;&#xF0B;&#xF66;&#xF90;&#xF56;&#xF66;&#xF0B;&#xF66;&#xF74;&#xF0B;&#xF55;&#xF53;&#xF0B;&#xF5A;&#xF74;&#xF53;&#xF0B;&#xF60;&#xF46;&#xF42;&#xF0B;&#xF51;&#xF42;&#xF7C;&#xF66;&#xF0B;&#xF63;&#xF0B;&#xF51;&#xF7A;&#xF0B;&#xF63;&#xF66;&#xF0B;&#xF42;&#xF5E;&#xF53;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF60;&#xF51;&#xF7C;&#xF51;&#xF0B;&#xF54;&#xF0B;&#xF63;&#xF0B;&#xF60;&#xF51;&#xF74;&#xF53;&#xF0B;&#xF54;&#xF0B;&#xF63;&#xF0B;&#xF66;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF66;&#xF92;&#xFB2;&#xF72;&#xF56;&#xF0B;&#xF54;&#xF0B;&#xF62;&#xFA3;&#xF58;&#xF66;&#xF0B;&#xF63;&#xF66;&#xF0B;&#xF66;&#xF7A;&#xF58;&#xF66;&#xF0B;&#xF66;&#xFA6;&#xFB1;&#xF7C;&#xF44;&#xF0B;&#xF56;&#xF60;&#xF72;&#xF0B;&#xF5A;&#xF7A;&#xF0B;&#xF41;&#xFB2;&#xF72;&#xF60;&#xF58;&#xF0B;&#xF41;&#xFB2;&#xF72;&#xF60;&#xF74;&#xF0B;&#xF63;&#xF0B;&#xF66;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF66;&#xF9F;&#xF7A;&#xF44;&#xF0B;&#xF51;&#xF74;&#xF0B;&#xF66;&#xF90;&#xFB1;&#xF72;&#xF63;&#xF0B;&#xF58;&#xF7C;&#xF0B;&#xF40;&#xFB2;&#xF74;&#xF44;&#xF0B;&#xF51;&#xF74;&#xF0B;&#xF60;&#xF41;&#xF7C;&#xF51;&#xF0B;&#xF53;&#xF66;&#xF0B;&#xF56;&#xFB1;&#xF0B;&#xF56;&#xF62;&#xF0B;&#xF42;&#xF66;&#xF74;&#xF44;&#xF66;&#xF0B;&#xF54;&#xF66;&#xF0D; &#xF42;&#xF53;&#xF66;&#xF0B;&#xF58;&#xF63;&#xF0B;&#xF56;&#xF51;&#xF7A;&#xF0B;&#xF56;&#xF0B;&#xF63;&#xF0B;&#xF63;&#xF74;&#xF66;&#xF0B;&#xF51;&#xFB2;&#xF44;&#xF0B;&#xF54;&#xF7C;&#xF62;&#xF0B;&#xF56;&#xF66;&#xFB2;&#xF44;&#xF0B;&#xF66;&#xF9F;&#xF7A;&#xF0B;&#xF66;&#xF90;&#xFB1;&#xF72;&#xF63;&#xF0B;&#xF58;&#xF7C;&#xF0B;&#xF40;&#xFB2;&#xF74;&#xF44;&#xF0B;&#xF44;&#xF58;&#xF0B;&#xF66;&#xF90;&#xFB1;&#xF72;&#xF63;&#xF0B;&#xF58;&#xF7C;&#xF0B;&#xF40;&#xFB2;&#xF74;&#xF44;&#xF0B;&#xF55;&#xFB1;&#xF7A;&#xF51;&#xF0B;&#xF51;&#xF74;&#xF60;&#xF44;&#xF0B;&#xF62;&#xF74;&#xF44;&#xF0B;&#xF56;&#xF60;&#xF72;&#xF0B;&#xF66;&#xFA4;&#xFB1;&#xF7C;&#xF51;&#xF0B;&#xF63;&#xF58;&#xF0B;&#xF42;&#xFB1;&#xF72;&#xF66;&#xF0B;&#xF60;&#xF41;&#xF7C;&#xF51;&#xF0B;&#xF53;&#xF66;&#xF0B;&#xF66;&#xF90;&#xFB1;&#xF56;&#xF66;&#xF0B;&#xF66;&#xF74;&#xF0B;&#xF60;&#xF42;&#xFB2;&#xF7C;&#xF0B;&#xF56;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF66;&#xF7A;&#xF58;&#xF66;&#xF0B;&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;&#xF0B;&#xF54;&#xF0B;&#xF62;&#xF92;&#xFB1;&#xF74;&#xF51;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF60;&#xF51;&#xFB2;&#xF7A;&#xF66;&#xF0B;&#xF44;&#xF7A;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF5E;&#xF72;&#xF42;&#xF0B;&#xF56;&#xFB1;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1531"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Now the </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:italic">Levels of Listeners</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal"> [by Master Asanga] says that, when you are practicing to purify the mind of the obstacles of sleepiness and fogginess, you should "press them upon each other."  It also states that, when you are practicing to purify the mind of other kinds of obstacles, such as attraction to the objects of the senses, you should seat yourself upon a platform or smaller seat and assume the full lotus position.  Therefore the third preliminary is to seat yourself on a comfortable cushion, sit up straight, and assume a full lotus position with your legs (a half lotus is also acceptable).  In this pose then sink your mind deep into the thoughts of taking refuge, and the wish for enlightenment.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1532"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1533"><c props="font-weight:normal; color:#000000; font-family:PalatinoBoldDI; font-size:12pt; font-style:normal">[4]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal"> &#xF58;&#xF51;&#xF74;&#xF53;&#xF0B;&#xF42;&#xFB1;&#xF72;&#xF0B;&#xF53;&#xF58;&#xF0B;&#xF58;&#xF41;&#xF60;&#xF0B;&#xF63;&#xF0B;&#xF62;&#xF92;&#xFB1;&#xF0B;&#xF46;&#xF7A;&#xF53;&#xF0B;&#xF66;&#xFA4;&#xFB1;&#xF7C;&#xF51;&#xF0B;&#xF54;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF5F;&#xF56;&#xF0B;&#xF58;&#xF7C;&#xF0B;&#xF63;&#xF9F;&#xF0B;&#xF56;&#xF60;&#xF72;&#xF0B;&#xF56;&#xF62;&#xF92;&#xFB1;&#xF74;&#xF51;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF56;&#xFB3;&#xF0B;&#xF58;&#xF0B;&#xF62;&#xFA3;&#xF58;&#xF66;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF42;&#xF5E;&#xF53;&#xF0B;&#xF61;&#xF44;&#xF0B;&#xF66;&#xF44;&#xF66;&#xF0B;&#xF62;&#xF92;&#xFB1;&#xF66;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF56;&#xFB1;&#xF44;&#xF0B;&#xF46;&#xF74;&#xF56;&#xF0B;&#xF66;&#xF7A;&#xF58;&#xF66;&#xF0B;&#xF51;&#xF54;&#xF60;&#xF0B;&#xF60;&#xF55;&#xF42;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF49;&#xF53;&#xF0B;&#xF50;&#xF7C;&#xF66;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF62;&#xF44;&#xF0B;&#xF66;&#xF44;&#xF66;&#xF0B;&#xF62;&#xF92;&#xFB1;&#xF66;&#xF0B;&#xF56;&#xF40;&#xF60;&#xF0B;&#xF66;&#xFA1;&#xF7C;&#xF51;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF56;&#xF45;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF51;&#xF54;&#xF42;&#xF0B;&#xF4F;&#xF74;&#xF0B;&#xF58;&#xF7A;&#xF51;&#xF0B;&#xF54;&#xF0B;&#xF56;&#xF5E;&#xF74;&#xF42;&#xF66;&#xF0B;&#xF54;&#xF62;&#xF0B;&#xF56;&#xF66;&#xF58;&#xF66;&#xF0B;&#xF4F;&#xF7A;&#xF0B;&#xF5A;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF42;&#xF66;&#xF7C;&#xF42;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF5E;&#xF72;&#xF44;&#xF0B;&#xF42;&#xF66;&#xF63;&#xF0B;&#xF42;&#xF51;&#xF56;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1534"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The fourth preliminary is to visualize the garden for gathering the power of good.  In the space before you, imagine the Lamas of both the far-reaching lineage, and the lineage of the profound view.  Together with them are an inconceivable mass of Buddhas, and bodhisattvas, listeners, self-made Buddhas, and protectors of the Dharma.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1535"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1536"><c props="font-weight:normal; color:#000000; font-family:PalatinoBoldDI; font-size:12pt; font-style:normal">[5]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal"> &#xF51;&#xF7A;&#xF0B;&#xF53;&#xF66;&#xF0B;&#xF63;&#xF58;&#xF0B;&#xF62;&#xF92;&#xFB1;&#xF74;&#xF51;&#xF0B;&#xF63;&#xF0B;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF0B;&#xF56;&#xF60;&#xF72;&#xF0B;&#xF58;&#xF50;&#xF74;&#xF53;&#xF0B;&#xF62;&#xF90;&#xFB1;&#xF7A;&#xF53;&#xF0B;&#xF5A;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF56;&#xF66;&#xF42;&#xF0B;&#xF54;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF60;&#xF42;&#xF63;&#xF0B;&#xF62;&#xF90;&#xFB1;&#xF7A;&#xF53;&#xF0B;&#xF66;&#xF92;&#xFB2;&#xF72;&#xF56;&#xF0B;&#xF54;&#xF0B;&#xF66;&#xFA6;&#xFB1;&#xF7C;&#xF44;&#xF0B;&#xF56;&#xF60;&#xF72;&#xF0B;&#xF63;&#xFB7;&#xF53;&#xF0B;&#xF45;&#xF72;&#xF42;&#xF0B;&#xF56;&#xFB1;&#xF7A;&#xF51;&#xF0B;&#xF62;&#xF90;&#xFB1;&#xF7A;&#xF53;&#xF0B;&#xF58;&#xF7A;&#xF51;&#xF0B;&#xF53;&#xF0B;&#xF49;&#xF7A;&#xF62;&#xF0B;&#xF63;&#xF7A;&#xF53;&#xF0B;&#xF42;&#xFB1;&#xF72;&#xF0B;&#xF62;&#xF92;&#xFB1;&#xF74;&#xF0B;&#xF51;&#xF58;&#xF72;&#xF42;&#xF66;&#xF0B;&#xF62;&#xFA3;&#xF58;&#xF0B;&#xF66;&#xF90;&#xFB1;&#xF7C;&#xF44;&#xF0B;&#xF56;&#xF0B;&#xF59;&#xF58;&#xF0B;&#xF63;&#xF0B;&#xF60;&#xF56;&#xF51;&#xF0B;&#xF40;&#xFB1;&#xF44;&#xF0B;&#xF63;&#xF58;&#xF0B;&#xF64;&#xF72;&#xF53;&#xF0B;&#xF4F;&#xF74;&#xF0B;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF0B;&#xF51;&#xF40;&#xF60;&#xF0B;&#xF56;&#xF66;&#xF0B;&#xF56;&#xF66;&#xF42;&#xF0B;&#xF66;&#xFA6;&#xFB1;&#xF44;&#xF0B;&#xF42;&#xF72;&#xF0B;&#xF42;&#xF53;&#xF51;&#xF0B;&#xF62;&#xFA3;&#xF58;&#xF66;&#xF0B;&#xF56;&#xF66;&#xFA1;&#xF74;&#xF66;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF61;&#xF53;&#xF0B;&#xF63;&#xF42;&#xF0B;&#xF56;&#xF51;&#xF74;&#xF53;&#xF0B;&#xF54;&#xF66;&#xF0B;&#xF62;&#xF92;&#xFB1;&#xF74;&#xF51;&#xF0B;&#xF66;&#xFA6;&#xFB1;&#xF44;&#xF0B;&#xF51;&#xF42;&#xF7C;&#xF66;&#xF0B;&#xF66;&#xF7C;&#xF0D; &#xF0D;&#xF51;&#xF7A;&#xF0B;&#xF63;&#xF0B;..</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1537"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">It is extremely difficult to bring the path to grow within the stream of your mind if all you practice is the various principal causes.  You also need the supporting causes for the path to grow; you need to gather together the different factors that are conducive to the path, and you need to clean yourself of the factors that are obstacles, the ones that oppose the path.  Therefore you must train your mind in the Seven Ingredients, which include in them all the critical points for gathering good and cleaning away obstacles.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1538"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1539"><c props="font-weight:normal; color:#000000; font-family:PalatinoBoldDI; font-size:12pt; font-style:normal">[a]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal"> &#xF55;&#xFB1;&#xF42;&#xF0B;&#xF60;&#xF5A;&#xF63;&#xF0B;&#xF56;&#xF60;&#xF72;&#xF0B;&#xF61;&#xF53;&#xF0B;&#xF63;&#xF42;&#xF0B;&#xF63;&#xF0B;&#xF66;&#xF92;&#xF7C;&#xF0B;&#xF42;&#xF66;&#xF74;&#xF58;&#xF0B;&#xF56;&#xF66;&#xFA1;&#xF7C;&#xF58;&#xF66;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF55;&#xFB1;&#xF42;&#xF0B;&#xF53;&#xF72;&#xF0D; &#xF47;&#xF72;&#xF0B;&#xF66;&#xF99;&#xF7A;&#xF51;&#xF0B;&#xF66;&#xF74;&#xF0B;&#xF51;&#xF42;&#xF0B;&#xF45;&#xF7A;&#xF66;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF5A;&#xF72;&#xF42;&#xF66;&#xF0B;&#xF56;&#xF45;&#xF51;&#xF0B;&#xF42;&#xF45;&#xF72;&#xF42;&#xF0B;&#xF66;&#xF9F;&#xF7A;&#xF0D; &#xF60;&#xF47;&#xF72;&#xF42;&#xF0B;&#xF62;&#xF9F;&#xF7A;&#xF53;&#xF0B;&#xF42;&#xFB1;&#xF72;&#xF0B;&#xF41;&#xF58;&#xF66;&#xF0B;&#xF55;&#xFB1;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF62;&#xF7A;&#xF0B;&#xF56;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF51;&#xF74;&#xF66;&#xF0B;&#xF62;&#xF7A;&#xF0B;&#xF62;&#xF7A;&#xF60;&#xF72;&#xF0B;&#xF66;&#xF44;&#xF66;&#xF0B;&#xF62;&#xF92;&#xFB1;&#xF66;&#xF0B;&#xF58;&#xF0B;&#xF61;&#xF72;&#xF53;&#xF0B;&#xF42;&#xFB1;&#xF72;&#xF0D; &#xF55;&#xFB1;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF56;&#xF45;&#xF74;&#xF0B;&#xF40;&#xF0B;&#xF53;&#xF0B;&#xF56;&#xF5E;&#xF74;&#xF42;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF66;&#xF94;&#xF62;&#xF0B;&#xF56;&#xFB1;&#xF7C;&#xF53;&#xF0B;&#xF5F;&#xF72;&#xF53;&#xF0B;&#xF54;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF58;&#xF0B;&#xF60;&#xF7C;&#xF44;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF53;&#xF0B;&#xF60;&#xF56;&#xFB1;&#xF7C;&#xF53;&#xF0B;&#xF54;&#xF62;&#xF0B;&#xF60;&#xF42;&#xFB1;&#xF74;&#xF62;&#xF0B;&#xF56;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF51;&#xF0B;&#xF63;&#xF9F;&#xF62;&#xF0B;&#xF56;&#xFB1;&#xF74;&#xF44;&#xF0B;&#xF56;&#xF60;&#xF72;&#xF0B;&#xF62;&#xF92;&#xFB1;&#xF63;&#xF0B;&#xF56;&#xF0B;&#xF50;&#xF58;&#xF66;&#xF0B;&#xF45;&#xF51;&#xF0B;&#xF63;&#xF0B;&#xF51;&#xF58;&#xF72;&#xF42;&#xF66;&#xF0B;&#xF53;&#xF66;&#xF0B;&#xF42;&#xF5E;&#xF53;&#xF0B;&#xF42;&#xFB1;&#xF72;&#xF0B;&#xF42;&#xF61;&#xF58;&#xF0B;&#xF63;&#xF0B;&#xF62;&#xF92;&#xFB1;&#xF74;&#xF42;&#xF0B;&#xF63;&#xF9F;&#xF0B;&#xF56;&#xF74;&#xF0B;&#xF58;&#xF72;&#xF53;&#xF0B;&#xF54;&#xF62;&#xF0B;&#xF56;&#xF66;&#xF58;&#xF0B;&#xF54;&#xF0B;&#xF50;&#xF42;&#xF0B;&#xF54;&#xF0B;&#xF53;&#xF66;&#xF0B;&#xF66;&#xF92;&#xF7C;&#xF0B;&#xF42;&#xF66;&#xF74;&#xF58;&#xF0B;&#xF42;&#xF74;&#xF66;&#xF0B;&#xF54;&#xF66;&#xF0B;&#xF55;&#xFB1;&#xF42;&#xF0B;&#xF60;&#xF5A;&#xF63;&#xF0B;&#xF56;&#xF60;&#xF7C;&#xF0D; &#xF0D;&#xF51;&#xF7A;&#xF0B;&#xF61;&#xF44;&#xF0B;&#xF66;&#xF44;&#xF66;&#xF0B;&#xF62;&#xF92;&#xFB1;&#xF66;&#xF0B;&#xF42;&#xF45;&#xF72;&#xF42;&#xF0B;&#xF63;&#xF0B;&#xF55;&#xFB1;&#xF42;&#xF0B;&#xF60;&#xF5A;&#xF63;&#xF0B;&#xF53;&#xF60;&#xF44;&#xF0B;&#xF56;&#xF66;&#xF7C;&#xF51;&#xF0B;&#xF53;&#xF58;&#xF66;&#xF0B;&#xF51;&#xF54;&#xF42;&#xF0B;&#xF4F;&#xF74;&#xF0B;&#xF58;&#xF7A;&#xF51;&#xF0B;&#xF54;&#xF0B;&#xF63;&#xF0B;&#xF66;&#xF44;&#xF66;&#xF0B;&#xF62;&#xF92;&#xFB1;&#xF66;&#xF0B;&#xF51;&#xF7A;&#xF0B;&#xF59;&#xF58;&#xF0B;&#xF63;&#xF0B;&#xF51;&#xF58;&#xF72;&#xF42;&#xF66;&#xF0B;&#xF53;&#xF66;&#xF0B;&#xF55;&#xFB1;&#xF42;&#xF0B;&#xF60;&#xF5A;&#xF63;&#xF0B;&#xF53;&#xF0B;&#xF63;&#xF9F;&#xF0B;&#xF45;&#xF72;&#xF0B;&#xF66;&#xFA8;&#xF7C;&#xF66;&#xF0B;&#xF5E;&#xF7A;&#xF66;&#xF0B;&#xF66;&#xFB3;&#xF7C;&#xF56;&#xF0B;&#xF51;&#xF54;&#xF7C;&#xF53;&#xF0B;&#xF61;&#xF7A;&#xF0B;&#xF64;&#xF7A;&#xF66;&#xF0B;&#xF66;&#xFA1;&#xF7A;&#xF66;&#xF0B;&#xF60;&#xF42;&#xFB2;&#xF7A;&#xF63;&#xF0B;&#xF54;&#xF62;&#xF0B;&#xF56;&#xF64;&#xF51;&#xF0B;&#xF51;&#xF7C;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1540"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The first ingredient is prostration.  There is one kind of prostration that combines all three doors of expression.  It is found in the verse [from the </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:italic">King of All Prayers, the Prayer of the Realized One, Deeds of All Goodness</c><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">] that includes the words "Whosoever they are, as many as there may be."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1541"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1542"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">[The full verse reads:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1543"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:1.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1544"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">I bow down, and purely,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:1.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1545"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">In body and speech and mind,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:1.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1546"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">To all those Lions of living kind,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:1.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1547"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Whosoever they are,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:1.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1548"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">As many as there may be,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:1.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1549"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">To those Who are Gone;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:1.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1550"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Gone in the past,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:1.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1551"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">In the present or the future,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:1.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1552"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">On any of the planets</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:1.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1553"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">In the ten directions of space.]</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1554"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1555"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Here we are not talking of a Buddha on a certain planet in a certain direction of space, nor are we talking of a Buddha of a particular time; our prostrations rather are directed at each and every Victorious Buddha, those who live in every one of the ten directions of space itself&#x2014;those who have already come before, those who are going to come in the future, and those who now are here.  Don't do your prostrations just to go along with the crowd; do them rather out of deep respect, from the depths of your heart.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1556"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1557"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">On this the master Yeshe De, in his commentary, notes that "The good deed you do by prostrating to a single Buddha is beyond any means of measuring.  So there's no need to mention what a goodness it is to picture this many Buddhas, and then prostrate yourself to them."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1558"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1559"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF0D;&#xF66;&#xF92;&#xF7C;&#xF0B;&#xF42;&#xF66;&#xF74;&#xF58;&#xF0B;&#xF66;&#xF7C;&#xF0B;&#xF66;&#xF7C;&#xF0B;&#xF56;&#xF60;&#xF72;&#xF0B;&#xF55;&#xFB1;&#xF42;&#xF0B;&#xF63;&#xF0B;&#xF63;&#xF74;&#xF66;&#xF0B;&#xF40;&#xFB1;&#xF72;&#xF0B;&#xF55;&#xFB1;&#xF42;&#xF0B;&#xF53;&#xF72;&#xF0D; &#xF56;&#xF5F;&#xF44;&#xF0B;&#xF54;&#xF7C;&#xF0B;&#xF66;&#xFA4;&#xFB1;&#xF7C;&#xF51;&#xF0B;&#xF54;&#xF0B;&#xF5E;&#xF7A;&#xF66;&#xF0B;&#xF66;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF5A;&#xF72;&#xF42;&#xF66;&#xF0B;&#xF56;&#xF45;&#xF51;&#xF0B;&#xF42;&#xF45;&#xF72;&#xF42;&#xF0B;&#xF66;&#xF9F;&#xF7A;&#xF0D; &#xF62;&#xF92;&#xFB1;&#xF63;&#xF0B;&#xF56;&#xF0B;&#xF55;&#xFB1;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF51;&#xF74;&#xF66;&#xF0B;&#xF40;&#xFB1;&#xF72;&#xF66;&#xF0B;&#xF56;&#xF66;&#xFA1;&#xF74;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF50;&#xF58;&#xF66;&#xF0B;&#xF45;&#xF51;&#xF0B;&#xF61;&#xF72;&#xF51;&#xF0B;&#xF40;&#xFB1;&#xF72;&#xF0B;&#xF61;&#xF74;&#xF63;&#xF0B;&#xF51;&#xF74;&#xF0B;&#xF58;&#xF44;&#xF7C;&#xF53;&#xF0B;&#xF66;&#xF74;&#xF58;&#xF0B;&#xF54;&#xF0B;&#xF63;&#xF9F;&#xF62;&#xF0B;&#xF51;&#xF58;&#xF72;&#xF42;&#xF66;&#xF0B;&#xF63;&#xF0B;&#xF62;&#xF44;&#xF0B;&#xF42;&#xF72;&#xF0B;&#xF63;&#xF74;&#xF66;&#xF0B;&#xF5E;&#xF72;&#xF44;&#xF0B;&#xF62;&#xFA3;&#xF58;&#xF66;&#xF0B;&#xF40;&#xFB1;&#xF72;&#xF0B;&#xF62;&#xFA1;&#xF74;&#xF63;&#xF0B;&#xF55;&#xFB2;&#xF0B;&#xF62;&#xF56;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF42;&#xFB2;&#xF44;&#xF66;&#xF0B;&#xF58;&#xF49;&#xF58;&#xF0B;&#xF54;&#xF62;&#xF0B;&#xF66;&#xFA4;&#xFB2;&#xF74;&#xF63;&#xF0B;&#xF63;&#xF0B;&#xF55;&#xFB1;&#xF42;&#xF0B;&#xF56;&#xFB1;&#xF60;&#xF7C;&#xF0D; &#xF0D;&#xF51;&#xF7A;&#xF0B;&#xF61;&#xF44;&#xF0B;&#xF61;&#xF74;&#xF63;&#xF0B;&#xF62;&#xFA3;&#xF58;&#xF66;&#xF0B;&#xF40;&#xFB1;&#xF72;&#xF0B;&#xF56;&#xF5F;&#xF44;&#xF0B;&#xF54;&#xF7C;&#xF60;&#xF72;&#xF0B;&#xF66;&#xFA4;&#xFB1;&#xF7C;&#xF51;&#xF0B;&#xF54;&#xF0B;&#xF63;&#xF0B;&#xF62;&#xF56;&#xF0B;&#xF4F;&#xF74;&#xF0B;&#xF51;&#xF51;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF66;&#xF9F;&#xF7C;&#xF56;&#xF66;&#xF0B;&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;&#xF0B;&#xF51;&#xF7A;&#xF0B;&#xF51;&#xF7A;&#xF66;&#xF0B;&#xF40;&#xF74;&#xF53;&#xF0B;&#xF53;&#xF66;&#xF0B;&#xF56;&#xF66;&#xFB3;&#xF44;&#xF66;&#xF0B;&#xF4F;&#xF7A;&#xF60;&#xF7C;&#xF0D; &#xF0D;&#xF63;&#xF74;&#xF66;&#xF0B;&#xF42;&#xF45;&#xF72;&#xF42;&#xF0B;&#xF42;&#xF72;&#xF66;&#xF0B;&#xF55;&#xFB1;&#xF42;&#xF0B;&#xF56;&#xFB1;&#xF66;&#xF0B;&#xF54;&#xF60;&#xF44;&#xF0B;&#xF56;&#xF66;&#xF7C;&#xF51;&#xF0B;&#xF53;&#xF58;&#xF66;&#xF0B;&#xF46;&#xF7A;&#xF0B;&#xF53;&#xF0B;&#xF63;&#xF74;&#xF66;&#xF0B;&#xF51;&#xF7A;&#xF0B;&#xF59;&#xF58;&#xF0B;&#xF42;&#xFB1;&#xF72;&#xF66;&#xF0B;&#xF55;&#xFB1;&#xF42;&#xF0B;&#xF56;&#xFB1;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF53;&#xF72;&#xF0B;&#xF56;&#xF66;&#xF7C;&#xF51;&#xF0B;&#xF53;&#xF58;&#xF66;&#xF0B;&#xF64;&#xF72;&#xF53;&#xF0B;&#xF4F;&#xF74;&#xF0B;&#xF46;&#xF7A;&#xF60;&#xF7C;&#xF0B;&#xF5E;&#xF7A;&#xF66;&#xF0B;&#xF66;&#xFB3;&#xF7C;&#xF56;&#xF0B;&#xF51;&#xF54;&#xF7C;&#xF53;&#xF0B;&#xF61;&#xF7A;&#xF0B;&#xF64;&#xF7A;&#xF66;&#xF0B;&#xF66;&#xFA1;&#xF7A;&#xF0B;&#xF42;&#xF66;&#xF74;&#xF44;&#xF0B;&#xF44;&#xF7C;&#xF0B;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1560"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">This is how we explain what it is to prostrate through each one of the three doors of expression.  The first is the prostration in body, and is found in the one verse that includes the lines "Deeds of Goodness"  [The full verse reads:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1561"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1562"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">By all the power</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1563"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Of the prayer of Deeds of Goodness</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1564"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Each and every Victorious One</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1565"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Is actually here</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1566"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Before my mind,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1567"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">And I bow myself to them</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1568"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Perfectly,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1569"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">With bodies that are as many</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1570"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">As the atoms</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1571"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Of all the worlds</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1572"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Of the universe.]</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1573"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1574"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Here first picture each and every Victorious One, those of every place, and those of every time; see them in your mind, as if they were actually here before you.  Then send forth copies of yourself, bodies that are equal in number to the atoms of all the worlds of the universe, and bow down to them.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1575"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1576"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF0D;&#xF61;&#xF72;&#xF51;&#xF0B;&#xF40;&#xFB1;&#xF72;&#xF0B;&#xF55;&#xFB1;&#xF42;&#xF0B;&#xF53;&#xF72;&#xF0D; &#xF62;&#xFA1;&#xF74;&#xF63;&#xF0B;&#xF42;&#xF45;&#xF72;&#xF42;&#xF0B;&#xF66;&#xF9F;&#xF7A;&#xF44;&#xF0B;&#xF53;&#xF0B;&#xF5E;&#xF7A;&#xF66;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF5A;&#xF72;&#xF42;&#xF66;&#xF0B;&#xF56;&#xF45;&#xF51;&#xF0B;&#xF42;&#xF45;&#xF72;&#xF42;&#xF0B;&#xF66;&#xF9F;&#xF7A;&#xF0D; &#xF62;&#xFA1;&#xF74;&#xF63;&#xF0B;&#xF55;&#xFB2;&#xF0B;&#xF62;&#xF56;&#xF0B;&#xF62;&#xF7A;&#xF0B;&#xF62;&#xF7A;&#xF60;&#xF72;&#xF0B;&#xF66;&#xF9F;&#xF7A;&#xF44;&#xF0B;&#xF53;&#xF60;&#xF44;&#xF0B;&#xF62;&#xFA1;&#xF74;&#xF63;&#xF0B;&#xF50;&#xF58;&#xF66;&#xF0B;&#xF45;&#xF51;&#xF0B;&#xF40;&#xFB1;&#xF72;&#xF0B;&#xF42;&#xFB2;&#xF44;&#xF66;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF58;&#xF49;&#xF58;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF66;&#xF44;&#xF66;&#xF0B;&#xF62;&#xF92;&#xFB1;&#xF66;&#xF0B;&#xF60;&#xF41;&#xF7C;&#xF62;&#xF0B;&#xF56;&#xFB1;&#xF44;&#xF0B;&#xF66;&#xF7A;&#xF58;&#xF66;&#xF0B;&#xF40;&#xFB1;&#xF72;&#xF66;&#xF0B;&#xF56;&#xF66;&#xF90;&#xF7C;&#xF62;&#xF0B;&#xF56;&#xF60;&#xF72;&#xF0B;&#xF51;&#xF56;&#xF74;&#xF66;&#xF0B;&#xF53;&#xF0B;&#xF56;&#xF5E;&#xF74;&#xF42;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF63;&#xF0B;&#xF51;&#xF7A;&#xF0B;&#xF51;&#xF42;&#xF0B;&#xF42;&#xF72;&#xF0B;&#xF61;&#xF7C;&#xF53;&#xF0B;&#xF4F;&#xF53;&#xF0B;&#xF62;&#xF97;&#xF7A;&#xF66;&#xF0B;&#xF66;&#xF74;&#xF0B;&#xF51;&#xFB2;&#xF53;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF58;&#xF7C;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;&#xF0B;&#xF56;&#xF60;&#xF7C;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1577"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Next is the prostration in mind.  This too is found in a single verse, the one with the words "Atop a single atom."  [The full verse reads:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1578"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1579"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Atop a single atom</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1580"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Are Buddhas as many</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1581"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">As all the atoms</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1582"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">There are.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1583"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Around them are</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1584"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Their sons and daughters.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1585"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">I see </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1586"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Every corner of space,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1587"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Each and every place,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1588"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Filled like this,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1589"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">With Victors.]</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1590"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1591"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Imagine every single atom of the universe, and atop each one see Buddhas, as many as all the atoms there are.  These Buddhas are surrounded by their followers, all the bodhisattvas.  Try to have a feeling where you see, where you sense you are in the presence of, all their incredible good qualities.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1592"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1593"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF0D;&#xF44;&#xF42;&#xF0B;&#xF42;&#xF72;&#xF0B;&#xF55;&#xFB1;&#xF42;&#xF0B;&#xF53;&#xF72;&#xF0D; &#xF51;&#xF7A;&#xF0B;&#xF51;&#xF42;&#xF0B;&#xF56;&#xF66;&#xF94;&#xF42;&#xF66;&#xF0B;&#xF56;&#xF0B;&#xF5E;&#xF7A;&#xF66;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF5A;&#xF72;&#xF42;&#xF66;&#xF0B;&#xF56;&#xF45;&#xF51;&#xF0B;&#xF42;&#xF45;&#xF72;&#xF42;&#xF0B;&#xF66;&#xF9F;&#xF7A;&#xF0D; &#xF61;&#xF74;&#xF63;&#xF0B;&#xF62;&#xFA3;&#xF58;&#xF66;&#xF0B;&#xF40;&#xFB1;&#xF72;&#xF0B;&#xF61;&#xF7C;&#xF53;&#xF0B;&#xF4F;&#xF53;&#xF0B;&#xF42;&#xFB1;&#xF72;&#xF0B;&#xF56;&#xF66;&#xF94;&#xF42;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF5F;&#xF51;&#xF0B;&#xF58;&#xF72;&#xF0B;&#xF64;&#xF7A;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF62;&#xFA3;&#xF58;&#xF66;&#xF0B;&#xF63;&#xF74;&#xF66;&#xF0B;&#xF62;&#xF7A;&#xF0B;&#xF62;&#xF7A;&#xF0B;&#xF63;&#xF0B;&#xF58;&#xF42;&#xF7C;&#xF0B;&#xF56;&#xF7C;&#xF0B;&#xF51;&#xF54;&#xF42;&#xF0B;&#xF4F;&#xF74;&#xF0B;&#xF58;&#xF7A;&#xF51;&#xF0B;&#xF54;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF58;&#xF42;&#xF7C;&#xF0B;&#xF62;&#xF7A;&#xF0B;&#xF62;&#xF7A;&#xF0B;&#xF63;&#xF0B;&#xF63;&#xF95;&#xF7A;&#xF0B;&#xF51;&#xF54;&#xF42;&#xF0B;&#xF4F;&#xF74;&#xF0B;&#xF58;&#xF7A;&#xF51;&#xF0B;&#xF54;&#xF62;&#xF0B;&#xF66;&#xFA4;&#xFB2;&#xF74;&#xF63;&#xF0B;&#xF56;&#xF62;&#xF0B;&#xF42;&#xF66;&#xF74;&#xF44;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF63;&#xF9F;&#xF62;&#xF0B;&#xF56;&#xFB1;&#xF66;&#xF0B;&#xF53;&#xF66;&#xF0B;&#xF66;&#xF99;&#xF53;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF51;&#xF56;&#xFB1;&#xF44;&#xF66;&#xF0B;&#xF40;&#xFB1;&#xF72;&#xF66;&#xF0B;&#xF56;&#xF62;&#xF97;&#xF7C;&#xF51;&#xF0B;&#xF54;&#xF60;&#xF7C;&#xF0D; &#xF0D;&#xF60;&#xF51;&#xF72;&#xF62;&#xF0B;&#xF51;&#xF56;&#xFB1;&#xF44;&#xF66;&#xF0B;&#xF53;&#xF72;&#xF0B;&#xF56;&#xF66;&#xF9F;&#xF7C;&#xF51;&#xF0B;&#xF54;&#xF0B;&#xF61;&#xF72;&#xF53;&#xF0B;&#xF63;&#xF0B;&#xF51;&#xF7A;&#xF60;&#xF72;&#xF0B;&#xF61;&#xF53;&#xF0B;&#xF63;&#xF42;&#xF0B;&#xF53;&#xF72;&#xF0B;&#xF62;&#xF92;&#xFB1;&#xF74;&#xF0B;&#xF66;&#xF9F;&#xF7A;&#xF0B;&#xF63;&#xF95;&#xF7A;&#xF60;&#xF7C;&#xF0D; &#xF0D;&#xF62;&#xF92;&#xFB1;&#xF0B;&#xF58;&#xF5A;&#xF7C;&#xF0B;&#xF53;&#xF72;&#xF0B;&#xF58;&#xF44;&#xF0B;&#xF54;&#xF7C;&#xF60;&#xF72;&#xF0B;&#xF5A;&#xF72;&#xF42;&#xF0B;&#xF42;&#xF7C;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1594"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Last is the prostration in speech.  This one is found in the single verse which mentions "my words of admiration."  [The full verse reads:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1595"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1596"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">I sing the praises</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1597"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Of all those</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1598"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Who have Gone to Bliss;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1599"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">I proclaim</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1600"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The high qualities</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1601"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Of each and every Victor;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1602"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">And my words of admiration</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1603"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Are an ocean that will never dry,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1604"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">A sea of sound</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1605"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">From the seed of harmony.]</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1606"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1607"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Speak now words of admiration, words that never end, for each of the holy beings before you, in a song of lovely harmony.  Do this the way it is described in the other books; turn each head of your bodies into an infinite number of tongues, and sing.  Here in the verse the word "harmony" refers to the praises you sing, and their "seed" is what makes them come out; that is, your tongue.  The words "sea" and "ocean" express the idea of a multitude.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1608"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1609"><c props="font-weight:normal; color:#000000; font-family:PalatinoBoldDI; font-size:12pt; font-style:normal">[b]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal"> &#xF0D;&#xF58;&#xF46;&#xF7C;&#xF51;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF61;&#xF53;&#xF0B;&#xF63;&#xF42;&#xF0B;&#xF63;&#xF0B;&#xF56;&#xFB3;&#xF0B;&#xF53;&#xF0B;&#xF61;&#xF7C;&#xF51;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF58;&#xF46;&#xF7C;&#xF51;&#xF0B;&#xF54;&#xF0B;&#xF53;&#xF72;&#xF0D; &#xF58;&#xF7A;&#xF0B;&#xF4F;&#xF7C;&#xF42;&#xF0B;&#xF51;&#xF58;&#xF0B;&#xF54;&#xF0B;&#xF5E;&#xF7A;&#xF66;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF5A;&#xF72;&#xF42;&#xF66;&#xF0B;&#xF56;&#xF45;&#xF51;&#xF0B;&#xF42;&#xF49;&#xF72;&#xF66;&#xF0B;&#xF4F;&#xF7A;&#xF0D; &#xF58;&#xF7A;&#xF0B;&#xF4F;&#xF7C;&#xF42;&#xF0B;&#xF51;&#xF58;&#xF0B;&#xF54;&#xF0B;&#xF53;&#xF72;&#xF0B;&#xF63;&#xFB7;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF58;&#xF72;&#xF60;&#xF72;&#xF0B;&#xF61;&#xF74;&#xF63;&#xF0B;&#xF63;&#xF0B;&#xF66;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF58;&#xF7A;&#xF0B;&#xF4F;&#xF7C;&#xF42;&#xF0B;&#xF62;&#xFA8;&#xF51;&#xF0B;&#xF51;&#xF74;&#xF0B;&#xF56;&#xFB1;&#xF74;&#xF44;&#xF0B;&#xF56;&#xF0B;&#xF66;&#xF72;&#xF63;&#xF0B;&#xF58;&#xF0B;&#xF62;&#xFA3;&#xF58;&#xF66;&#xF0B;&#xF66;&#xF7C;&#xF0D; &#xF0D;&#xF55;&#xFB2;&#xF7A;&#xF44;&#xF0B;&#xF56;&#xF0B;&#xF53;&#xF72;&#xF0B;&#xF58;&#xF7A;&#xF0B;&#xF4F;&#xF7C;&#xF42;&#xF0B;&#xF66;&#xFA3;&#xF0B;&#xF5A;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF66;&#xFA4;&#xF7A;&#xF63;&#xF0B;&#xF4F;&#xF7A;&#xF0B;&#xF56;&#xF62;&#xF92;&#xFB1;&#xF74;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF66;&#xF9F;&#xF7A;&#xF0B;&#xF51;&#xF7A;&#xF0B;&#xF42;&#xF49;&#xF72;&#xF66;&#xF0B;&#xF40;&#xF0B;&#xF61;&#xF44;&#xF0B;&#xF51;&#xF44;&#xF7C;&#xF66;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF56;&#xF45;&#xF7C;&#xF66;&#xF0B;&#xF58;&#xF0B;&#xF50;&#xF58;&#xF66;&#xF0B;&#xF45;&#xF51;&#xF0B;&#xF51;&#xF7C;&#xF0D; &#xF0D;&#xF66;&#xF72;&#xF63;&#xF0B;&#xF66;&#xF99;&#xF53;&#xF0B;&#xF53;&#xF72;&#xF0B;&#xF62;&#xF7C;&#xF63;&#xF0B;&#xF58;&#xF7C;&#xF0B;&#xF62;&#xF92;&#xFB1;&#xF74;&#xF51;&#xF0B;&#xF45;&#xF53;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF60;&#xF56;&#xF74;&#xF51;&#xF0B;&#xF54;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF56;&#xF62;&#xFA1;&#xF74;&#xF44;&#xF0B;&#xF56;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF51;&#xF40;&#xFB2;&#xF7C;&#xF63;&#xF0B;&#xF56;&#xF0B;&#xF62;&#xFA3;&#xF58;&#xF66;&#xF0B;&#xF66;&#xF7C;&#xF0D; &#xF0D;&#xF56;&#xFB1;&#xF74;&#xF42;&#xF0B;&#xF54;&#xF0B;&#xF53;&#xF72;&#xF0B;&#xF66;&#xFA4;&#xF7C;&#xF66;&#xF0B;&#xF5E;&#xF72;&#xF58;&#xF0B;&#xF54;&#xF7C;&#xF60;&#xF72;&#xF0B;&#xF63;&#xF94;&#xF7A;&#xF0B;&#xF42;&#xF74;&#xF60;&#xF7C;&#xF0D; &#xF0D;&#xF42;&#xF51;&#xF74;&#xF42;&#xF66;&#xF0B;&#xF58;&#xF46;&#xF7C;&#xF42;&#xF0B;&#xF53;&#xF72;&#xF0B;&#xF42;&#xF51;&#xF74;&#xF42;&#xF66;&#xF0B;&#xF62;&#xFA3;&#xF58;&#xF66;&#xF0B;&#xF40;&#xFB1;&#xF72;&#xF0B;&#xF58;&#xF46;&#xF7C;&#xF42;&#xF0B;&#xF42;&#xF7C;  &#xF0D;&#xF58;&#xF62;&#xF0B;&#xF58;&#xF7A;&#xF0B;&#xF53;&#xF72;&#xF0B;&#xF66;&#xFA4;&#xF7C;&#xF66;&#xF0B;&#xF58;&#xF62;&#xF0B;&#xF63;&#xF0B;&#xF66;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF51;&#xFB2;&#xF72;&#xF0B;&#xF5E;&#xF72;&#xF58;&#xF0B;&#xF5E;&#xF72;&#xF44;&#xF0B;&#xF60;&#xF7C;&#xF51;&#xF0B;&#xF42;&#xF66;&#xF63;&#xF0B;&#xF56;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF62;&#xF72;&#xF53;&#xF0B;&#xF46;&#xF7A;&#xF0B;&#xF56;&#xF60;&#xF72;&#xF0B;&#xF53;&#xF7C;&#xF62;&#xF0B;&#xF56;&#xF74;&#xF0B;&#xF60;&#xF7C;&#xF51;&#xF0B;&#xF42;&#xF66;&#xF63;&#xF0B;&#xF56;&#xF60;&#xF7C;&#xF0D; &#xF0D;&#xF56;&#xF51;&#xF74;&#xF42;&#xF0B;&#xF54;&#xF0B;&#xF53;&#xF72;&#xF0B;&#xF56;&#xF51;&#xF74;&#xF42;&#xF0B;&#xF66;&#xFA4;&#xF7C;&#xF66;&#xF0B;&#xF66;&#xFA6;&#xFB1;&#xF62;&#xF0B;&#xF56;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF66;&#xFA3;&#xF0B;&#xF42;&#xF45;&#xF72;&#xF42;&#xF0B;&#xF54;&#xF60;&#xF7C;&#xF0D; &#xF0D;&#xF53;&#xF0B;&#xF56;&#xF5F;&#xF60;&#xF0B;&#xF51;&#xF58;&#xF0B;&#xF54;&#xF0B;&#xF53;&#xF72;&#xF0B;&#xF42;&#xF7C;&#xF66;&#xF0B;&#xF50;&#xF58;&#xF66;&#xF0B;&#xF45;&#xF51;&#xF0B;&#xF40;&#xFB1;&#xF72;&#xF0B;&#xF58;&#xF46;&#xF7C;&#xF42;&#xF0B;&#xF42;&#xF7C;  &#xF0D;&#xF51;&#xFB2;&#xF72;&#xF0B;&#xF58;&#xF46;&#xF7C;&#xF42;&#xF0B;&#xF53;&#xF72;&#xF0B;&#xF66;&#xFA4;&#xF7C;&#xF66;&#xF0B;&#xF46;&#xF74;&#xF0B;&#xF61;&#xF7C;&#xF53;&#xF0B;&#xF46;&#xF56;&#xF0B;&#xF4F;&#xF74;&#xF0B;&#xF42;&#xF66;&#xF7C;&#xF63;&#xF0B;&#xF56;&#xF0B;&#xF5F;&#xF7A;&#xF62;&#xF0B;&#xF4F;&#xF7A;&#xF0B;&#xF66;&#xF9F;&#xF7C;&#xF44;&#xF0B;&#xF42;&#xF66;&#xF74;&#xF58;&#xF0B;&#xF51;&#xF74;&#xF0B;&#xF51;&#xFB2;&#xF72;&#xF0B;&#xF44;&#xF51;&#xF0B;&#xF63;&#xF94;&#xF44;&#xF0B;&#xF56;&#xF60;&#xF72;&#xF0B;&#xF51;&#xFB2;&#xF72;&#xF66;&#xF0B;&#xF56;&#xF66;&#xF92;&#xF7C;&#xF66;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF46;&#xF74;&#xF0B;&#xF63;&#xF0B;&#xF66;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF54;&#xF60;&#xF7C;&#xF0D; &#xF0D;&#xF55;&#xFB1;&#xF7A;&#xF0B;&#xF58;&#xF0B;&#xF55;&#xF74;&#xF62;&#xF0B;&#xF58;&#xF0B;&#xF53;&#xF72;&#xF0B;&#xF66;&#xFA4;&#xF7C;&#xF66;&#xF0B;&#xF5E;&#xF72;&#xF58;&#xF0B;&#xF54;&#xF7C;&#xF60;&#xF72;&#xF0B;&#xF55;&#xFB1;&#xF7A;&#xF0B;&#xF58;&#xF0B;&#xF42;&#xF4F;&#xF7C;&#xF62;&#xF0B;&#xF5E;&#xF72;&#xF44;&#xF0B;&#xF56;&#xF51;&#xF74;&#xF42;&#xF0B;&#xF4F;&#xF74;&#xF0B;&#xF62;&#xF74;&#xF44;&#xF0B;&#xF56;&#xF0B;&#xF50;&#xF74;&#xF58;&#xF0B;&#xF54;&#xF7C;&#xF62;&#xF0B;&#xF56;&#xFB1;&#xF66;&#xF0B;&#xF54;&#xF60;&#xF58;&#xF0B;&#xF51;&#xF40;&#xFB1;&#xF72;&#xF63;&#xF0B;&#xF60;&#xF41;&#xF7C;&#xF62;&#xF0B;&#xF56;&#xFB2;&#xF72;&#xF66;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF5A;&#xF7C;&#xF53;&#xF0B;&#xF55;&#xFB1;&#xF7A;&#xF0B;&#xF66;&#xFA4;&#xF7A;&#xF63;&#xF0B;&#xF56;&#xF60;&#xF72;&#xF0B;&#xF62;&#xF72;&#xF58;&#xF0B;&#xF54;&#xF0B;&#xF62;&#xF92;&#xFB1;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF62;&#xF94;&#xF58;&#xF66;&#xF0B;&#xF62;&#xF72;&#xF0B;&#xF62;&#xF56;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF58;&#xF49;&#xF58;&#xF0B;&#xF54;&#xF60;&#xF7C;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1610"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">This brings us to the second ingredient: offering.  The offering which does have something higher is found in the two verses that contain the words "holy flowers".  [The full verses read:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1611"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1612"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">I make offerings</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1613"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">To all of these</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1614"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Victorious Ones;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1615"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Holy Flowers, holy garlands,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1616"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Cymbals and ointments,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1617"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The highest parasol,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1618"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The highest lamp,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1619"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">And holy incenses.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1620"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1621"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">I make offerings</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1622"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">To all of these</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1623"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Victorious Ones;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1624"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Holy silken clothing,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1625"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The highest scent,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1626"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">And a mountain of incense powder</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1627"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">High as Meru&#x2014;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1628"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">All set forth</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1629"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">In a way more lovely</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1630"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Than any other thing there is.]</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1631"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1632"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The words "holy flower" refer to the most wondrous blooms of all in the lands of both pleasure beings and humans; here they are single flowers.  "Garlands" are assortments of flowers pressed together on a string.  Either way, the flowers can be real ones, or made of other things.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1633"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1634"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The word "cymbals" refers to all types of music, whether it's on a stringed instrument, a wind instrument, or percussion like drums or cymbals.  "Ointments" are thick potions with a delicious smell of incense.  The "highest parasol" is the finest of all umbrella-like coverings.  The "highest lamp" is one that burns from a fragrant mixture like incense and butter; it shines bright, and gives forth a light as lovely as the flask of a precious gem.  The incense mentioned can be either the kind that is a concoction of various sweet-smelling substances, or just one of these substances by itself.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1635"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1636"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">"Holy silken clothing" refers to the finest of all the clothing there is.  "Highest scent" means perfumed liquid presented in the form of a water offering; it is made of water, or something similar, imbues with a delicious scent so powerful that it can spread throughout the entire system of a thousand thousand planets.  "Incense powder" refers to incense in the form of powder, which you either spread itself or sprinkle atop a fire to make a fragrant smoke.  It is in packets, or else laid out in lines like the colored sand used to draw a mandala, in a huge mass as high and wide as Meru, the great mountain in the center of the world.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1637"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1638"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The phrase "set forth" applies to each of the substances that are being offered; the original Sanskrit word here can mean "majority," or "put forth," or "various."</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1639"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1640"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF0D;&#xF56;&#xF40;&#xF7C;&#xF51;&#xF0B;&#xF54;&#xF0B;&#xF53;&#xF72;&#xF0B;&#xF42;&#xF7C;&#xF44;&#xF0B;&#xF58;&#xF0B;&#xF40;&#xF74;&#xF53;&#xF0B;&#xF42;&#xFB1;&#xF72;&#xF0B;&#xF58;&#xF50;&#xF62;&#xF0B;&#xF66;&#xFA6;&#xFB1;&#xF7C;&#xF62;&#xF0B;&#xF56;&#xF0B;&#xF66;&#xF9F;&#xF7A;&#xF0B;&#xF55;&#xF63;&#xF0B;&#xF46;&#xF7A;&#xF0B;&#xF56;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF66;&#xFA4;&#xFB2;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF66;&#xFA3;&#xF0B;&#xF5A;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF63;&#xF0B;&#xF56;&#xFB1;&#xF60;&#xF7C;&#xF0D; &#xF0D;&#xF58;&#xF46;&#xF7C;&#xF51;&#xF0B;&#xF54;&#xF0B;&#xF56;&#xFB3;&#xF0B;&#xF53;&#xF0B;&#xF58;&#xF7A;&#xF51;&#xF0B;&#xF54;&#xF0B;&#xF53;&#xF72;&#xF0D; &#xF58;&#xF46;&#xF7C;&#xF51;&#xF0B;&#xF54;&#xF0B;&#xF42;&#xF44;&#xF0B;&#xF62;&#xFA3;&#xF58;&#xF66;&#xF0B;&#xF5E;&#xF7A;&#xF66;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF5A;&#xF72;&#xF42;&#xF66;&#xF0B;&#xF56;&#xF45;&#xF51;&#xF0B;&#xF42;&#xF45;&#xF72;&#xF42;&#xF0B;&#xF66;&#xF9F;&#xF7A;&#xF0D; &#xF56;&#xFB3;&#xF0B;&#xF53;&#xF0B;&#xF61;&#xF7C;&#xF51;&#xF0B;&#xF54;&#xF0B;&#xF53;&#xF72;&#xF0B;&#xF60;&#xF47;&#xF72;&#xF42;&#xF0B;&#xF62;&#xF9F;&#xF7A;&#xF53;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF58;&#xF46;&#xF7C;&#xF51;&#xF0B;&#xF54;&#xF0B;&#xF61;&#xF72;&#xF53;&#xF0B;&#xF54;&#xF66;&#xF0D; &#xF60;&#xF51;&#xF72;&#xF62;&#xF0B;&#xF53;&#xF72;&#xF0B;&#xF56;&#xFB1;&#xF44;&#xF0B;&#xF46;&#xF74;&#xF56;&#xF0B;&#xF66;&#xF7A;&#xF58;&#xF66;&#xF0B;&#xF51;&#xF54;&#xF60;&#xF0B;&#xF63;&#xF0B;&#xF66;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF58;&#xF50;&#xF74;&#xF0B;&#xF45;&#xF53;&#xF0B;&#xF62;&#xFA3;&#xF58;&#xF66;&#xF0B;&#xF40;&#xFB1;&#xF72;&#xF66;&#xF0B;&#xF56;&#xF5F;&#xF44;&#xF0B;&#xF51;&#xF42;&#xF74;&#xF0B;&#xF66;&#xFA4;&#xFB2;&#xF74;&#xF63;&#xF0B;&#xF56;&#xF60;&#xF7C;&#xF0D; &#xF0D;&#xF5A;&#xF72;&#xF42;&#xF0B;&#xF62;&#xF90;&#xF44;&#xF0B;&#xF54;&#xF0B;&#xF50;&#xF0B;&#xF58;&#xF0B;&#xF42;&#xF49;&#xF72;&#xF66;&#xF0B;&#xF53;&#xF72;&#xF0B;&#xF42;&#xF7C;&#xF44;&#xF0B;&#xF58;&#xF0B;&#xF51;&#xF7A;&#xF0B;&#xF42;&#xF49;&#xF72;&#xF66;&#xF0B;&#xF58;&#xF0B;&#xF5A;&#xF44;&#xF0B;&#xF56;&#xF0B;&#xF50;&#xF58;&#xF66;&#xF0B;&#xF45;&#xF51;&#xF0B;&#xF63;&#xF0B;&#xF66;&#xFA6;&#xFB1;&#xF62;&#xF0B;&#xF4F;&#xF7A;&#xF0B;&#xF55;&#xFB1;&#xF42;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF58;&#xF46;&#xF7C;&#xF51;&#xF0B;&#xF54;&#xF0B;&#xF62;&#xFA3;&#xF58;&#xF66;&#xF0B;&#xF40;&#xFB1;&#xF72;&#xF0B;&#xF40;&#xF74;&#xF53;&#xF0B;&#xF66;&#xFB3;&#xF7C;&#xF44;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF61;&#xF74;&#xF63;&#xF0B;&#xF66;&#xF9F;&#xF7C;&#xF53;&#xF0B;&#xF54;&#xF60;&#xF7C;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1641"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The other kind of offering is the one which does not have anything higher.  This one is found in the single verse which includes the words "Any and every offering."  [The full verse reads:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1642"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1643"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">I see as well</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1644"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Any and every offering</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1645"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Unsurpassed, reaching far and wide,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1646"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Handed up to every Victor;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1647"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">By all the power of my faith</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1648"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">In the Deeds of Goodness may I truly</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1649"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Bow down and make offerings</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1650"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Onto all the Victors.]</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1651"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1652"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Offerings which we say "have something higher" are those of worldly beings.  Therefore the offerings made in this verse consist of all the many wondrous things that very powerful beings, such as bodhisattvas, are capable of emanating with their mind.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1653"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1654"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The words of the second half of this verse should be applied anywhere in the verses before where the intent is not stated directly.  Their function is to express both the motivation with which the prostration and offering are made, as well as the object towards which they are directed.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1655"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1656"><c props="font-weight:normal; color:#000000; font-family:PalatinoBoldDI; font-size:12pt; font-style:normal">[c]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal"> &#xF0D;&#xF66;&#xFA1;&#xF72;&#xF42;&#xF0B;&#xF54;&#xF0B;&#xF56;&#xF64;&#xF42;&#xF66;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF61;&#xF53;&#xF0B;&#xF63;&#xF42;&#xF0B;&#xF53;&#xF72;&#xF0D; &#xF60;&#xF51;&#xF7C;&#xF51;&#xF0B;&#xF46;&#xF42;&#xF66;&#xF0B;&#xF5E;&#xF7A;&#xF66;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF5A;&#xF72;&#xF42;&#xF66;&#xF0B;&#xF56;&#xF45;&#xF51;&#xF0B;&#xF42;&#xF45;&#xF72;&#xF42;&#xF0B;&#xF66;&#xF9F;&#xF7A;&#xF0D; &#xF62;&#xF92;&#xFB1;&#xF74;&#xF0B;&#xF51;&#xF74;&#xF42;&#xF0B;&#xF42;&#xF66;&#xF74;&#xF58;&#xF0B;&#xF63;&#xF0B;&#xF56;&#xF62;&#xF9F;&#xF7A;&#xF53;&#xF0B;&#xF53;&#xF66;&#xF0B;&#xF42;&#xF5E;&#xF72;&#xF0B;&#xF63;&#xF74;&#xF66;&#xF0B;&#xF63;&#xF0B;&#xF66;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF42;&#xF66;&#xF74;&#xF58;&#xF0B;&#xF42;&#xFB1;&#xF72;&#xF66;&#xF0B;&#xF62;&#xF44;&#xF0B;&#xF56;&#xF5E;&#xF72;&#xF53;&#xF0B;&#xF53;&#xF72;&#xF0B;&#xF56;&#xF51;&#xF42;&#xF0B;&#xF42;&#xF72;&#xF66;&#xF0B;&#xF56;&#xF42;&#xFB1;&#xF72;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF66;&#xF9F;&#xF7A;&#xF0B;&#xF51;&#xF7A;&#xF0B;&#xF61;&#xF44;&#xF0B;&#xF51;&#xF44;&#xF7C;&#xF66;&#xF0B;&#xF66;&#xF74;&#xF0B;&#xF62;&#xF44;&#xF0B;&#xF42;&#xF72;&#xF66;&#xF0B;&#xF56;&#xFB1;&#xF0B;&#xF56;&#xF0B;&#xF51;&#xF7A;&#xF0B;&#xF63;&#xF0B;&#xF5E;&#xF74;&#xF42;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF42;&#xF5E;&#xF53;&#xF0B;&#xF56;&#xFB1;&#xF7A;&#xF51;&#xF0B;&#xF51;&#xF74;&#xF0B;&#xF56;&#xF45;&#xF74;&#xF42;&#xF0B;&#xF54;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF42;&#xF5E;&#xF53;&#xF0B;&#xF42;&#xFB1;&#xF72;&#xF66;&#xF0B;&#xF56;&#xFB1;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF63;&#xF0B;&#xF61;&#xF72;&#xF0B;&#xF62;&#xF44;&#xF0B;&#xF56;&#xF60;&#xF7C;&#xF0D; &#xF0D;&#xF51;&#xF7A;&#xF0B;&#xF51;&#xF42;&#xF0B;&#xF50;&#xF58;&#xF66;&#xF0B;&#xF45;&#xF51;&#xF0B;&#xF66;&#xFA4;&#xFB1;&#xF72;&#xF62;&#xF0B;&#xF56;&#xF66;&#xFA1;&#xF74;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF53;&#xF72;&#xF0D; &#xF45;&#xF72;&#xF0B;&#xF58;&#xF46;&#xF72;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF5E;&#xF7A;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF66;&#xF9F;&#xF7A;&#xF0D; &#xF51;&#xF7A;&#xF0B;&#xF51;&#xF42;&#xF0B;&#xF42;&#xF72;&#xF0B;&#xF49;&#xF7A;&#xF66;&#xF0B;&#xF51;&#xF58;&#xF72;&#xF42;&#xF66;&#xF0B;&#xF51;&#xFB2;&#xF53;&#xF0B;&#xF53;&#xF66;&#xF0B;&#xF66;&#xF94;&#xF0B;&#xF58;&#xF0B;&#xF63;&#xF0B;&#xF60;&#xF42;&#xFB1;&#xF7C;&#xF51;&#xF0B;&#xF45;&#xF72;&#xF44;&#xF0B;&#xF55;&#xFB1;&#xF72;&#xF0B;&#xF58;&#xF0B;&#xF63;&#xF0B;&#xF56;&#xF66;&#xFA1;&#xF58;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF66;&#xF7A;&#xF58;&#xF66;&#xF0B;&#xF40;&#xFB1;&#xF72;&#xF66;&#xF0B;&#xF66;&#xF99;&#xF72;&#xF44;&#xF0B;&#xF50;&#xF42;&#xF0B;&#xF54;&#xF0B;&#xF53;&#xF66;&#xF0B;&#xF56;&#xF64;&#xF42;&#xF66;&#xF0B;&#xF53;&#xF0B;&#xF66;&#xF94;&#xF62;&#xF0B;&#xF56;&#xFB1;&#xF66;&#xF0B;&#xF60;&#xF55;&#xF7A;&#xF63;&#xF0B;&#xF56;&#xF0B;&#xF60;&#xF46;&#xF51;&#xF0B;&#xF45;&#xF72;&#xF44;&#xF0B;&#xF55;&#xFB1;&#xF72;&#xF0B;&#xF58;&#xF0B;&#xF62;&#xFA3;&#xF58;&#xF66;&#xF0B;&#xF60;&#xF55;&#xFB2;&#xF7C;&#xF0B;&#xF60;&#xF46;&#xF51;&#xF0B;&#xF51;&#xF7C;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1657"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The third ingredient is confession, and is found in the single verse with the words "like and dislike".  [The full verse reads:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1658"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1659"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">I confess, one by one,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1660"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Each and every one</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1661"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Of all the wrong deeds</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1662"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">I may have committed</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1663"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">In action or word,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1664"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">And also thought,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1665"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Motivated by like or dislike,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1666"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Or by dark ignorance.]</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1667"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1668"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">This refers to what was done with one of the three mental poisons as its cause; and with my body or of the rest as the vehicle; and with a nature of having been committed, either directly by myself, or by someone else at my bidding, or by someone else with my gladness that it was done.  The words "all the wrong deeds I may have committed" are meant to include all these elements.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1669"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1670"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Try to bring to mind all the problems that these deeds will bring you, and so feel regret for whatever you have done in the past, and a sense to restrain yourself in the future.  Then make your confession.  Doing this prevents any future wrong from starting at all.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1671"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1672"><c props="font-weight:normal; color:#000000; font-family:PalatinoBoldDI; font-size:12pt; font-style:normal">[d]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal"> &#xF0D;&#xF62;&#xF97;&#xF7A;&#xF66;&#xF0B;&#xF66;&#xF74;&#xF0B;&#xF61;&#xF72;&#xF0B;&#xF62;&#xF44;&#xF0B;&#xF56;&#xF60;&#xF72;&#xF0B;&#xF61;&#xF53;&#xF0B;&#xF63;&#xF42;&#xF0B;&#xF53;&#xF72;&#xF0D; &#xF55;&#xFB1;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF56;&#xF45;&#xF74;&#xF60;&#xF72;&#xF0B;&#xF62;&#xF92;&#xFB1;&#xF63;&#xF0B;&#xF56;&#xF0B;&#xF5E;&#xF7A;&#xF66;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF5A;&#xF72;&#xF42;&#xF66;&#xF0B;&#xF56;&#xF45;&#xF51;&#xF0B;&#xF42;&#xF45;&#xF72;&#xF42;&#xF0B;&#xF66;&#xF9F;&#xF7A;&#xF0D; </c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1673"><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal">&#xF42;&#xF44;&#xF0B;&#xF5F;&#xF42;&#xF0B;&#xF63;&#xF94;&#xF0B;&#xF54;&#xF7C;&#xF0B;&#xF51;&#xF7A;&#xF60;&#xF72;&#xF0B;&#xF51;&#xF42;&#xF7A;&#xF0B;&#xF56;&#xF60;&#xF72;&#xF0B;&#xF55;&#xF53;&#xF0B;&#xF61;&#xF7C;&#xF53;&#xF0B;&#xF51;&#xFB2;&#xF53;&#xF0B;&#xF53;&#xF66;&#xF0B;&#xF51;&#xF56;&#xF74;&#xF63;&#xF0B;&#xF54;&#xF7C;&#xF66;&#xF0B;&#xF42;&#xF4F;&#xF7A;&#xF62;&#xF0B;&#xF62;&#xF99;&#xF7A;&#xF51;&#xF0B;&#xF54;&#xF0B;&#xF63;&#xF9F;&#xF62;&#xF0B;&#xF51;&#xF42;&#xF60;&#xF0B;&#xF56;&#xF0B;&#xF56;&#xF66;&#xF92;&#xF7C;&#xF58;&#xF0B;&#xF54;&#xF60;&#xF7C;&#xF0D; </c><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The fourth ingredient is rejoicing, and is found in the one verse with the words "Victors in any of the ten directions."  [The full verse reads:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1674"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1675"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">I rejoice</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1676"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Over every single one</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1677"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Of the good deeds ever done</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1678"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">By beings in any of the ten directions:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1679"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">By all of the Victors,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1680"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">By all of their Sons and Daughters,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1681"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">By those Self-Made,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1682"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">By those on the paths of learning,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1683"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">By those on the paths done learning,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1684"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">By anyone at all.]</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1685"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1686"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Try to think about the great goodness that comes from the virtuous deeds of these five different kinds of holy beings, and dwell in a sense of gladness, like a beggar who has stumbled across a mine of gold.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1687"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1688"><c props="font-weight:normal; color:#000000; font-family:PalatinoBoldDI; font-size:12pt; font-style:normal">[e]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal"> &#xF0D;&#xF46;&#xF7C;&#xF66;&#xF0B;&#xF60;&#xF41;&#xF7C;&#xF62;&#xF0B;&#xF56;&#xF66;&#xF90;&#xF7C;&#xF62;&#xF0B;&#xF56;&#xF62;&#xF0B;&#xF56;&#xF66;&#xF90;&#xF74;&#xF63;&#xF0B;&#xF56;&#xF60;&#xF72;&#xF0B;&#xF61;&#xF53;&#xF0B;&#xF63;&#xF42;&#xF0B;&#xF53;&#xF72;&#xF0D; &#xF42;&#xF44;&#xF0B;&#xF62;&#xFA3;&#xF58;&#xF66;&#xF0B;&#xF55;&#xFB1;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF56;&#xF45;&#xF74;&#xF60;&#xF72;&#xF0B;&#xF5E;&#xF7A;&#xF66;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF5A;&#xF72;&#xF42;&#xF66;&#xF0B;&#xF56;&#xF45;&#xF51;&#xF0B;&#xF42;&#xF45;&#xF72;&#xF42;&#xF0B;&#xF66;&#xF9F;&#xF7A;&#xF0D; &#xF55;&#xFB1;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF56;&#xF45;&#xF74;&#xF60;&#xF72;&#xF0B;&#xF5E;&#xF72;&#xF44;&#xF0B;&#xF51;&#xF74;&#xF0B;&#xF56;&#xFB1;&#xF44;&#xF0B;&#xF46;&#xF74;&#xF56;&#xF0B;&#xF4F;&#xF74;&#xF0B;&#xF62;&#xFA3;&#xF58;&#xF0B;&#xF54;&#xF62;&#xF0B;&#xF66;&#xF44;&#xF66;&#xF0B;&#xF62;&#xF92;&#xFB1;&#xF66;&#xF0B;&#xF4F;&#xF7A;&#xF0B;&#xF58;&#xF0B;&#xF46;&#xF42;&#xF66;&#xF0B;&#xF64;&#xF72;&#xF44;&#xF0B;&#xF50;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF58;&#xF7A;&#xF51;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF58;&#xF41;&#xFB1;&#xF7A;&#xF53;&#xF0B;&#xF54;&#xF0B;&#xF56;&#xF62;&#xF99;&#xF7A;&#xF66;&#xF0B;&#xF53;&#xF66;&#xF0B;&#xF62;&#xF72;&#xF44;&#xF0B;&#xF51;&#xF74;&#xF0B;&#xF58;&#xF0B;&#xF63;&#xF7C;&#xF53;&#xF0B;&#xF54;&#xF0B;&#xF62;&#xFA3;&#xF58;&#xF66;&#xF0B;&#xF63;&#xF0B;&#xF63;&#xF74;&#xF66;&#xF0B;&#xF40;&#xFB1;&#xF44;&#xF0B;&#xF51;&#xF7A;&#xF0B;&#xF66;&#xF99;&#xF7A;&#xF51;&#xF0B;&#xF51;&#xF74;&#xF0B;&#xF66;&#xFA4;&#xFB2;&#xF74;&#xF63;&#xF0B;&#xF53;&#xF66;&#xF0B;&#xF46;&#xF7C;&#xF66;&#xF0B;&#xF66;&#xF9F;&#xF7C;&#xF53;&#xF0B;&#xF54;&#xF62;&#xF0B;&#xF56;&#xF66;&#xF90;&#xF74;&#xF63;&#xF0B;&#xF58;&#xF0B;&#xF42;&#xF51;&#xF56;&#xF0B;&#xF56;&#xF7C;&#xF0D; &#xF0D;&#xF66;&#xFB3;&#xF7C;&#xF56;&#xF0B;&#xF51;&#xF54;&#xF7C;&#xF53;&#xF0B;&#xF61;&#xF7A;&#xF0B;&#xF64;&#xF7A;&#xF66;&#xF0B;&#xF66;&#xFA1;&#xF7A;&#xF66;&#xF0B;&#xF56;&#xFB1;&#xF44;&#xF0B;&#xF46;&#xF74;&#xF56;&#xF0B;&#xF62;&#xFA3;&#xF58;&#xF0B;&#xF54;&#xF62;&#xF0B;&#xF66;&#xF44;&#xF66;&#xF0B;&#xF62;&#xF92;&#xFB1;&#xF66;&#xF0B;&#xF5E;&#xF7A;&#xF66;&#xF0B;&#xF56;&#xF4F;&#xF7C;&#xF53;&#xF0B;&#xF53;&#xF66;&#xF0B;&#xF56;&#xF64;&#xF51;&#xF0B;&#xF54;&#xF0B;&#xF58;&#xF5B;&#xF51;&#xF0B;&#xF51;&#xF7C;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1689"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The fifth ingredient is urging holy ones to turn the Wheel of the Dharma.  This is found in the one verse with the words "Who in all the ten directions."  [The full verse reads:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1690"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1691"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Lamps who light</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1692"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Each of the worlds</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1693"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">In all the ten directions</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1694"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Of space;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1695"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Those who have taken</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1696"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Each of the steps</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1697"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">To Buddhahood,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1698"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">And so reached</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1699"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The state beyond desire,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1700"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The Buddha's enlightenment;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1701"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Saviors I urge You all,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1702"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Turn the Wheel of the Dharma,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1703"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Nothing is higher.]</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1704"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1705"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">This verse is addressed to those who in paradises in all the ten directions of space have but only recently found Buddhahood in the Buddha's perfect enlightenment&#x2014;who have reached the state beyond desire, a knowledge which goes anywhere it wants, unstoppable.  We are urging them to send forth an equal number of bodies, to come and teach the Dharma.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1706"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1707"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The commentary by Yeshe De gives the root text here as "found Buddhahood in the Buddha's perfect enlightenment" [rather than "taken each of the steps to Buddhahood," and I have followed him.]</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1708"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1709"><c props="font-weight:normal; color:#000000; font-family:PalatinoBoldDI; font-size:12pt; font-style:normal">[f]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal"> &#xF0D;&#xF42;&#xF66;&#xF7C;&#xF63;&#xF0B;&#xF56;&#xF0B;&#xF60;&#xF51;&#xF7A;&#xF56;&#xF66;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF61;&#xF53;&#xF0B;&#xF63;&#xF42;&#xF0B;&#xF53;&#xF72;&#xF0D; &#xF58;&#xFB1;&#xF0B;&#xF44;&#xF53;&#xF0B;&#xF60;&#xF51;&#xF60;&#xF0B;&#xF66;&#xF9F;&#xF7C;&#xF53;&#xF0B;&#xF5E;&#xF7A;&#xF66;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF5A;&#xF72;&#xF42;&#xF66;&#xF0B;&#xF56;&#xF45;&#xF51;&#xF0B;&#xF42;&#xF45;&#xF72;&#xF42;&#xF0B;&#xF66;&#xF9F;&#xF7A;&#xF0D; &#xF55;&#xFB1;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF56;&#xF45;&#xF74;&#xF60;&#xF72;&#xF0B;&#xF5E;&#xF72;&#xF44;&#xF0B;&#xF51;&#xF74;&#xF0B;&#xF58;&#xFB1;&#xF0B;&#xF44;&#xF53;&#xF0B;&#xF63;&#xF66;&#xF0B;&#xF60;&#xF51;&#xF60;&#xF0B;&#xF56;&#xF60;&#xF72;&#xF0B;&#xF5A;&#xF74;&#xF63;&#xF0B;&#xF66;&#xF9F;&#xF7C;&#xF53;&#xF0B;&#xF54;&#xF0B;&#xF62;&#xFA3;&#xF58;&#xF66;&#xF0B;&#xF63;&#xF0B;&#xF60;&#xF42;&#xFB2;&#xF7C;&#xF0B;&#xF56;&#xF0B;&#xF62;&#xFA3;&#xF58;&#xF66;&#xF0B;&#xF63;&#xF0B;&#xF55;&#xF74;&#xF42;&#xF66;&#xF0B;&#xF66;&#xF74;&#xF0B;&#xF55;&#xF53;&#xF0B;&#xF54;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF42;&#xF53;&#xF66;&#xF0B;&#xF66;&#xF90;&#xF56;&#xF66;&#xF0B;&#xF66;&#xF74;&#xF0B;&#xF56;&#xF51;&#xF7A;&#xF0B;&#xF56;&#xF0B;&#xF56;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF51;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF55;&#xFB1;&#xF72;&#xF62;&#xF0B;&#xF51;&#xF74;&#xF0B;&#xF5E;&#xF72;&#xF44;&#xF0B;&#xF41;&#xF58;&#xF66;&#xF0B;&#xF40;&#xFB1;&#xF72;&#xF0B;&#xF62;&#xFA1;&#xF74;&#xF63;&#xF0B;&#xF55;&#xFB2;&#xF0B;&#xF62;&#xF56;&#xF0B;&#xF40;&#xFB1;&#xF72;&#xF0B;&#xF42;&#xFB2;&#xF44;&#xF66;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF58;&#xF49;&#xF58;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF56;&#xF66;&#xF90;&#xF63;&#xF0B;&#xF54;&#xF62;&#xF0B;&#xF58;&#xFB1;&#xF0B;&#xF44;&#xF53;&#xF0B;&#xF58;&#xF72;&#xF0B;&#xF60;&#xF51;&#xF60;&#xF0B;&#xF56;&#xF62;&#xF0B;&#xF56;&#xF5E;&#xF74;&#xF42;&#xF66;&#xF0B;&#xF54;&#xF62;&#xF0B;&#xF63;&#xF74;&#xF66;&#xF0B;&#xF51;&#xF54;&#xF42;&#xF0B;&#xF4F;&#xF74;&#xF0B;&#xF58;&#xF7A;&#xF51;&#xF0B;&#xF54;&#xF62;&#xF0B;&#xF56;&#xFB1;&#xF66;&#xF0B;&#xF4F;&#xF7A;&#xF0B;&#xF42;&#xF66;&#xF7C;&#xF63;&#xF0B;&#xF56;&#xF0B;&#xF42;&#xF51;&#xF56;&#xF0B;&#xF56;&#xF7C;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1710"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The sixth ingredient is supplication, and is found in the one verse which contains the words "pretend to pass into nirvana."  [The full verse reads:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1711"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1712"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">I press my palms at my breast,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1713"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">And make this supplication</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1714"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">To all of those who may intend</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1715"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">To pretend to pass into nirvana:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1716"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Stay, I pray to help all beings</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1717"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">And bring them to happiness;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1718"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Stay for eons equal in number</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1719"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">To the atoms of every world.]</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1720"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1721"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Here we are making supplication to all those in worlds of the ten directions of space who might pretend to pass into nirvana.  We are requesting them to stay, ultimately to bring all beings help, and in the interim to give them happiness.  We ask them to stay, and not to pass on, for eons equal in their number to all the atoms that make up the various worlds of the universe.  We make our supplication, praying that they will remain, in bodies beyond all counting.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1722"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1723"><c props="font-weight:normal; color:#000000; font-family:PalatinoBoldDI; font-size:12pt; font-style:normal">[g]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal"> &#xF0D;&#xF56;&#xF66;&#xF94;&#xF7C;&#xF0B;&#xF56;&#xF60;&#xF72;&#xF0B;&#xF61;&#xF53;&#xF0B;&#xF63;&#xF42;&#xF0B;&#xF53;&#xF72;&#xF0D; &#xF55;&#xFB1;&#xF42;&#xF0B;&#xF60;&#xF5A;&#xF63;&#xF0B;&#xF56;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF5E;&#xF7A;&#xF66;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF5A;&#xF72;&#xF42;&#xF66;&#xF0B;&#xF56;&#xF45;&#xF51;&#xF0B;&#xF51;&#xF7A;&#xF0D; &#xF42;&#xF7C;&#xF44;&#xF0B;&#xF42;&#xF72;&#xF0B;&#xF61;&#xF53;&#xF0B;&#xF63;&#xF42;&#xF0B;&#xF51;&#xFB2;&#xF74;&#xF42;&#xF0B;&#xF42;&#xF72;&#xF0B;&#xF51;&#xF42;&#xF7A;&#xF0B;&#xF56;&#xF66;&#xF0B;&#xF58;&#xF5A;&#xF7C;&#xF53;&#xF0B;&#xF53;&#xF66;&#xF0B;&#xF51;&#xF42;&#xF7A;&#xF0B;&#xF62;&#xFA9;&#xF0B;&#xF50;&#xF58;&#xF66;&#xF0B;&#xF45;&#xF51;&#xF0B;&#xF66;&#xF7A;&#xF58;&#xF66;&#xF0B;&#xF45;&#xF53;&#xF0B;&#xF50;&#xF58;&#xF66;&#xF0B;&#xF45;&#xF51;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF50;&#xF74;&#xF53;&#xF0B;&#xF58;&#xF7C;&#xF44;&#xF0B;&#xF51;&#xF74;&#xF0B;&#xF56;&#xFB1;&#xF66;&#xF0B;&#xF4F;&#xF7A;&#xF0B;&#xF62;&#xFAB;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF56;&#xFB1;&#xF44;&#xF0B;&#xF46;&#xF74;&#xF56;&#xF0B;&#xF40;&#xFB1;&#xF72;&#xF0B;&#xF62;&#xF92;&#xFB1;&#xF74;&#xF62;&#xF0B;&#xF60;&#xF51;&#xF74;&#xF53;&#xF0B;&#xF54;&#xF0B;&#xF51;&#xFB2;&#xF42;&#xF0B;&#xF54;&#xF7C;&#xF66;&#xF0B;&#xF56;&#xF66;&#xF94;&#xF7C;&#xF66;&#xF0B;&#xF54;&#xF66;&#xF0B;&#xF53;&#xF58;&#xF0B;&#xF61;&#xF44;&#xF0B;&#xF58;&#xF72;&#xF0B;&#xF60;&#xF5B;&#xF51;&#xF0B;&#xF54;&#xF60;&#xF7C;&#xF0D; &#xF0D;&#xF51;&#xF7A;&#xF0B;&#xF63;&#xF9F;&#xF62;&#xF0B;&#xF5A;&#xF72;&#xF42;&#xF0B;&#xF51;&#xF7A;&#xF0B;&#xF51;&#xF42;&#xF0B;&#xF42;&#xF72;&#xF0B;&#xF51;&#xF7C;&#xF53;&#xF0B;&#xF42;&#xF7C;&#xF0B;&#xF56;&#xF62;&#xF0B;&#xF56;&#xFB1;&#xF66;&#xF0B;&#xF63;&#xF0B;&#xF61;&#xF72;&#xF51;&#xF0B;&#xF42;&#xF5E;&#xF53;&#xF0B;&#xF51;&#xF74;&#xF0B;&#xF58;&#xF0B;&#xF61;&#xF7A;&#xF44;&#xF66;&#xF0B;&#xF54;&#xF62;&#xF0B;&#xF51;&#xF63;&#xF0B;&#xF56;&#xF74;&#xF66;&#xF0B;&#xF47;&#xF72;&#xF0B;&#xF66;&#xF90;&#xF51;&#xF0B;&#xF56;&#xF66;&#xF9F;&#xF53;&#xF0B;&#xF54;&#xF0B;&#xF56;&#xF5E;&#xF72;&#xF53;&#xF0B;&#xF51;&#xF74;&#xF0B;&#xF56;&#xFB1;&#xF66;&#xF0B;&#xF53;&#xF0B;&#xF56;&#xF66;&#xF7C;&#xF51;&#xF0B;&#xF53;&#xF58;&#xF66;&#xF0B;&#xF40;&#xFB1;&#xF72;&#xF0B;&#xF55;&#xF74;&#xF44;&#xF0B;&#xF54;&#xF7C;&#xF0B;&#xF51;&#xF54;&#xF42;&#xF0B;&#xF4F;&#xF74;&#xF0B;&#xF58;&#xF7A;&#xF51;&#xF0B;&#xF54;&#xF0B;&#xF60;&#xF5B;&#xF72;&#xF53;&#xF0B;&#xF4F;&#xF7C;&#xF0D; &#xF0D;&#xF51;&#xF7A;&#xF0B;&#xF63;&#xF9F;&#xF62;&#xF0B;&#xF53;&#xF0B;&#xF55;&#xFB1;&#xF42;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF58;&#xF46;&#xF7C;&#xF51;&#xF0B;&#xF54;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF56;&#xF66;&#xF90;&#xF74;&#xF63;&#xF0B;&#xF56;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF42;&#xF66;&#xF7C;&#xF63;&#xF0B;&#xF56;&#xF0B;&#xF42;&#xF51;&#xF56;&#xF0B;&#xF54;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF61;&#xF72;&#xF0B;&#xF62;&#xF44;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF63;&#xF94;&#xF0B;&#xF53;&#xF72;&#xF0B;&#xF58;&#xF50;&#xF74;&#xF53;&#xF0B;&#xF62;&#xF90;&#xFB1;&#xF7A;&#xF53;&#xF0B;&#xF5A;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF42;&#xF66;&#xF7C;&#xF42;&#xF0B;&#xF54;&#xF0B;&#xF61;&#xF72;&#xF53;&#xF0B;&#xF63;&#xF0D; &#xF56;&#xF64;&#xF42;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF53;&#xF72;&#xF0B;&#xF60;&#xF42;&#xF63;&#xF0B;&#xF62;&#xF90;&#xFB1;&#xF7A;&#xF53;&#xF0B;&#xF66;&#xF92;&#xFB2;&#xF72;&#xF56;&#xF0B;&#xF54;&#xF0B;&#xF66;&#xFA6;&#xFB1;&#xF7C;&#xF44;&#xF0B;&#xF56;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF61;&#xF72;&#xF0B;&#xF62;&#xF44;&#xF0B;&#xF42;&#xF72;&#xF0B;&#xF55;&#xFB1;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF42;&#xF45;&#xF72;&#xF42;&#xF0B;&#xF62;&#xF44;&#xF0B;&#xF42;&#xF72;&#xF0B;&#xF51;&#xF42;&#xF7A;&#xF0B;&#xF56;&#xF0B;&#xF56;&#xFB1;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF63;&#xF0B;&#xF51;&#xF42;&#xF60;&#xF0B;&#xF56;&#xF0B;&#xF56;&#xF66;&#xF92;&#xF7C;&#xF58;&#xF0B;&#xF54;&#xF0B;&#xF53;&#xF72;&#xF0B;&#xF62;&#xF44;&#xF0B;&#xF42;&#xF72;&#xF0B;&#xF51;&#xF42;&#xF7A;&#xF0B;&#xF56;&#xF0B;&#xF66;&#xFA4;&#xF7A;&#xF63;&#xF0B;&#xF56;&#xF62;&#xF0B;&#xF61;&#xF44;&#xF0B;&#xF60;&#xF42;&#xFB1;&#xF74;&#xF62;&#xF0B;&#xF62;&#xF7C;&#xF0D; &#xF0D;&#xF56;&#xF66;&#xF94;&#xF7C;&#xF0B;&#xF56;&#xF66;&#xF0B;&#xF53;&#xF72;&#xF0B;&#xF56;&#xF66;&#xF42;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF66;&#xFA6;&#xFB1;&#xF44;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF66;&#xFA4;&#xF7A;&#xF63;&#xF0B;&#xF56;&#xF60;&#xF72;&#xF0B;&#xF51;&#xF42;&#xF7A;&#xF0B;&#xF56;&#xF0B;&#xF62;&#xFA3;&#xF58;&#xF66;&#xF0B;&#xF49;&#xF74;&#xF44;&#xF0B;&#xF44;&#xF74;&#xF60;&#xF44;&#xF0B;&#xF46;&#xF7A;&#xF66;&#xF0B;&#xF58;&#xF44;&#xF0B;&#xF56;&#xF62;&#xF0B;&#xF66;&#xFA4;&#xF7A;&#xF63;&#xF0B;&#xF56;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF42;&#xF53;&#xF66;&#xF0B;&#xF66;&#xF90;&#xF56;&#xF66;&#xF0B;&#xF66;&#xF74;&#xF0B;&#xF60;&#xF56;&#xFB2;&#xF66;&#xF0B;&#xF56;&#xF74;&#xF0B;&#xF55;&#xFB1;&#xF74;&#xF44;&#xF0B;&#xF66;&#xF9F;&#xF7A;&#xF0B;&#xF5F;&#xF51;&#xF0B;&#xF54;&#xF62;&#xF0B;&#xF60;&#xF42;&#xFB1;&#xF74;&#xF62;&#xF0B;&#xF56;&#xF0B;&#xF62;&#xFA3;&#xF58;&#xF66;&#xF0B;&#xF40;&#xFB1;&#xF44;&#xF0B;&#xF53;&#xF58;&#xF0B;&#xF61;&#xF44;&#xF0B;&#xF58;&#xF72;&#xF0B;&#xF5F;&#xF51;&#xF0B;&#xF54;&#xF62;&#xF0B;&#xF56;&#xFB1;&#xF7A;&#xF51;&#xF0B;&#xF54;&#xF0B;&#xF66;&#xF9F;&#xF7A;&#xF0B;&#xF56;&#xF66;&#xFA1;&#xF74;&#xF0B;&#xF53;&#xF0B;&#xF56;&#xF66;&#xF42;&#xF0B;&#xF54;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF66;&#xFA6;&#xFB1;&#xF44;&#xF0B;&#xF56;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF66;&#xFA4;&#xF7A;&#xF63;&#xF0B;&#xF5E;&#xF72;&#xF44;&#xF0B;&#xF58;&#xF72;&#xF0B;&#xF5F;&#xF51;&#xF0B;&#xF54;&#xF62;&#xF0B;&#xF56;&#xFB1;&#xF7A;&#xF51;&#xF0B;&#xF54;&#xF0B;&#xF42;&#xF66;&#xF74;&#xF58;&#xF0B;&#xF51;&#xF74;&#xF0B;&#xF60;&#xF51;&#xF74;&#xF60;&#xF7C;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1724"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">The seventh ingredient is dedication, which is found in the verse with the words "prostrations and..." [The full verse reads:</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1725"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1726"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">I dedicate</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1727"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">To my future enlightenment</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1728"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">All my merit,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1729"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Whatever little goodness</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1730"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">I may have gathered here</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1731"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">By bowing myself and offering,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1732"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">By confessing and rejoicing,</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.5000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1733"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">By urging and supplication.]</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1734"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1735"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Here we are taking all the virtuous seeds within us, represented by the goodness we have accomplished in practicing the six ingredients that have already come, and dedicating them as a cause for the full enlightenment of ourselves and every living being, together.  Make this dedication with tremendous will, and the power of your good will flow forever, and never finish.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1736"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1737"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Read this prayer as I have taught you to here; understand what each verse means, and say it out slowly, without letting your mind wander to something else.  If you can do this, then you will gain a great mountain of good deeds, beyond any kind of measuring.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1738"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1739"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Five of the ingredients we have listed here&#x2014;prostrating, offering, urging, supplicating, and rejoicing&#x2014;help you to gather together the different factors that are conducive to the path.  One of them, confessing, helps you clean yourself of the factors that are obstacles, ones that oppose the path.  One part of rejoicing&#x2014;dwelling in a sense of gladness over the good you have done yourself&#x2014;also functions to multiply your virtue.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1740"/>
</section>
<section props="page-margin-right:1.2000in; page-margin-left:1.5000in; columns:1" xid="1741">
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1742"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Dedication works to multiply, fantastically, even the minor good deeds you have done in the acts of gathering, and cleaning, and multiplying.  It also takes good deeds that are short-term, those that are going to give a good result and then disappear, and changes them so that they will never be exhausted.  In brief, it functions in all three ways: to gather, to clean, and to multiply such that goodness never ends.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1743"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1744"><c props="font-weight:normal; color:#000000; font-family:PalatinoBoldDI; font-size:12pt; font-style:normal">[6]</c><c props="font-weight:normal; color:#000000; font-family:TibetanMachineNormalType 1; font-size:30pt; font-style:normal"> &#xF0D;&#xF51;&#xF7A;&#xF0B;&#xF53;&#xF66;&#xF0B;&#xF51;&#xF58;&#xF72;&#xF42;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF42;&#xF66;&#xF63;&#xF0B;&#xF56;&#xF62;&#xF0B;&#xF56;&#xFB1;&#xF66;&#xF0B;&#xF53;&#xF66;&#xF0B;&#xF58;&#xF4E;&#xF4C;&#xF63;&#xF0B;&#xF55;&#xF74;&#xF63;&#xF0B;&#xF4F;&#xF7A;&#xF0D; &#xF56;&#xF64;&#xF7A;&#xF66;&#xF0B;&#xF42;&#xF49;&#xF7A;&#xF53;&#xF0B;&#xF63;&#xF0B;&#xF58;&#xF0B;&#xF42;&#xF74;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF53;&#xF66;&#xF0B;&#xF56;&#xF51;&#xF42;&#xF0B;&#xF42;&#xF49;&#xF72;&#xF66;&#xF0B;&#xF66;&#xF74;&#xF0B;&#xF58;&#xF5A;&#xF53;&#xF0B;&#xF58;&#xF62;&#xF0B;&#xF60;&#xF5B;&#xF72;&#xF53;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF56;&#xF62;&#xF0B;&#xF42;&#xFB1;&#xF72;&#xF0B;&#xF55;&#xFB1;&#xF72;&#xF53;&#xF0B;&#xF45;&#xF72;&#xF0B;&#xF63;&#xF7C;&#xF42;&#xF0B;&#xF42;&#xF72;&#xF0B;&#xF56;&#xFB3;&#xF7C;&#xF0B;&#xF66;&#xFA3;&#xF0B;&#xF58;&#xF50;&#xF60;&#xF0B;&#xF51;&#xF42;&#xF0B;&#xF58;&#xFB1;&#xF74;&#xF62;&#xF0B;&#xF51;&#xF74;&#xF0B;&#xF60;&#xF42;&#xF42;&#xF0B;&#xF54;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF0D; &#xF56;&#xF64;&#xF7A;&#xF66;&#xF0B;&#xF42;&#xF49;&#xF7A;&#xF53;&#xF0B;&#xF63;&#xF0B;&#xF42;&#xF74;&#xF66;&#xF0B;&#xF54;&#xF0B;&#xF53;&#xF66;&#xF0B;&#xF56;&#xF51;&#xF42;&#xF0B;&#xF58;&#xF7A;&#xF51;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF51;&#xF7A;&#xF0B;&#xF41;&#xF7C;&#xF0B;&#xF53;&#xF0B;&#xF49;&#xF72;&#xF51;&#xF0B;&#xF62;&#xF9F;&#xF7C;&#xF42;&#xF66;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF56;&#xF62;&#xF0B;&#xF42;&#xFB1;&#xF72;&#xF0B;&#xF55;&#xFB1;&#xF72;&#xF53;&#xF0B;&#xF45;&#xF72;&#xF0B;&#xF58;&#xF0B;&#xF63;&#xF7C;&#xF42;&#xF0B;&#xF54;&#xF60;&#xF72;&#xF0B;&#xF56;&#xFB3;&#xF7C;&#xF0B;&#xF66;&#xFA3;&#xF0B;&#xF50;&#xF58;&#xF66;&#xF0B;&#xF45;&#xF51;&#xF0B;&#xF56;&#xF51;&#xF7A;&#xF0B;&#xF56;&#xFB3;&#xF42;&#xF0B;&#xF4F;&#xF74;&#xF0B;&#xF66;&#xF90;&#xFB1;&#xF7A;&#xF0B;&#xF56;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF0D; &#xF55;&#xFB1;&#xF72;&#xF0B;&#xF51;&#xF44;&#xF0B;&#xF53;&#xF44;&#xF0B;&#xF42;&#xF72;&#xF0B;&#xF56;&#xF62;&#xF0B;&#xF46;&#xF51;&#xF0B;&#xF50;&#xF58;&#xF66;&#xF0B;&#xF45;&#xF51;&#xF0B;&#xF49;&#xF7A;&#xF0B;&#xF56;&#xF62;&#xF0B;&#xF5E;&#xF72;&#xF0B;&#xF56;&#xF62;&#xF0B;&#xF56;&#xFB1;&#xF72;&#xF53;&#xF0B;&#xF42;&#xFB1;&#xF72;&#xF66;&#xF0B;&#xF56;&#xF62;&#xFB3;&#xF56;&#xF0B;&#xF4F;&#xF74;&#xF0B;&#xF42;&#xF66;&#xF7C;&#xF63;&#xF0D; &#xF5E;&#xF7A;&#xF66;&#xF0B;&#xF63;&#xF53;&#xF0B;&#xF58;&#xF44;&#xF0B;&#xF51;&#xF74;&#xF0B;&#xF60;&#xF51;&#xF74;&#xF53;&#xF0B;&#xF54;&#xF0B;&#xF51;&#xFB2;&#xF42;&#xF0B;&#xF54;&#xF7C;&#xF66;&#xF0B;&#xF42;&#xF66;&#xF7C;&#xF63;&#xF0B;&#xF56;&#xF0B;&#xF42;&#xF51;&#xF56;&#xF0B;&#xF54;&#xF62;&#xF0B;&#xF56;&#xFB1;&#xF60;&#xF7C;&#xF0D;</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1745"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">For the sixth and final preliminary, refresh your visualization, and make an offering of a mandala.  Them make a request that the Lamas bless the stream of your mind.  Ask Them to help you stop, quickly, everything from disrespecting your Spiritual Guide on up to grasping to some ingrained self-nature, in either of its two forms.  Ask Them to help you develop, smoothly, every single kind of thought which is perfect and unmistaken; everything from respect for your Spiritual Guide, on up to the realization of suchness, the fact that nothing has any nature of its own.  And ask them finally to help you put a final end to all the things, within you or outside of you, that might obstruct your spiritual progress.</c></p>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1746"/>
<p props="margin-top:0.0000in; margin-left:0.0000in; text-indent:0.0000in; margin-bottom:0.0000in; line-height:1.0000; text-align:justify; margin-right:0.0000in" xid="1747"><c props="font-weight:normal; color:#000000; font-family:PalatinoDI; font-size:12pt; font-style:normal">Make this supplication over and over, many times, with fierce hopes for its success.</c></p>
</section>
</abiword>