-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path64hex.json
More file actions
1286 lines (1286 loc) · 61.8 KB
/
Copy path64hex.json
File metadata and controls
1286 lines (1286 loc) · 61.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"hexagrams": [
{
"number": 1,
"name_zh": "乾",
"pinyin": "Qián",
"name_en": "The Creative",
"upper_trigram": "乾",
"lower_trigram": "乾",
"binary": "111111",
"judgment": "元亨利贞。",
"image": "天行健,君子以自强不息。",
"lines": [
{"position": 1, "type": "九", "text": "潜龙勿用。"},
{"position": 2, "type": "九", "text": "见龙在田,利见大人。"},
{"position": 3, "type": "九", "text": "君子终日乾乾,夕惕若厉,无咎。"},
{"position": 4, "type": "九", "text": "或跃在渊,无咎。"},
{"position": 5, "type": "九", "text": "飞龙在天,利见大人。"},
{"position": 6, "type": "九", "text": "亢龙有悔。"}
],
"use_nine": "见群龙无首,吉。",
"summary_zh": "象征纯阳,刚健创生。占得此卦多主进取有为,但需循序渐进;上九亢龙有悔提醒过盛必衰。"
},
{
"number": 2,
"name_zh": "坤",
"pinyin": "Kūn",
"name_en": "The Receptive",
"upper_trigram": "坤",
"lower_trigram": "坤",
"binary": "000000",
"judgment": "元亨,利牝马之贞。君子有攸往,先迷后得主,利。西南得朋,东北丧朋。安贞吉。",
"image": "地势坤,君子以厚德载物。",
"lines": [
{"position": 1, "type": "六", "text": "履霜,坚冰至。"},
{"position": 2, "type": "六", "text": "直方大,不习无不利。"},
{"position": 3, "type": "六", "text": "含章可贞。或从王事,无成有终。"},
{"position": 4, "type": "六", "text": "括囊,无咎无誉。"},
{"position": 5, "type": "六", "text": "黄裳,元吉。"},
{"position": 6, "type": "六", "text": "龙战于野,其血玄黄。"}
],
"use_six": "利永贞。",
"summary_zh": "象征大地的包容、承载、柔顺、滋养。占得此卦宜守宜从,不宜独进。厚德载物为其核心精神。"
},
{
"number": 3,
"name_zh": "屯",
"pinyin": "Zhūn",
"name_en": "Difficulty at the Beginning",
"upper_trigram": "坎",
"lower_trigram": "震",
"binary": "010001",
"judgment": "元亨,利贞。勿用有攸往,利建侯。",
"image": "云雷屯,君子以经纶。",
"lines": [
{"position": 1, "type": "九", "text": "磐桓,利居贞,利建侯。"},
{"position": 2, "type": "六", "text": "屯如邅如,乘马班如。匪寇婚媾。女子贞不字,十年乃字。"},
{"position": 3, "type": "六", "text": "即鹿无虞,惟入于林中。君子几不如舍,往吝。"},
{"position": 4, "type": "六", "text": "乘马班如,求婚媾。往吉,无不利。"},
{"position": 5, "type": "九", "text": "屯其膏。小贞吉,大贞凶。"},
{"position": 6, "type": "六", "text": "乘马班如,泣血涟如。"}
],
"summary_zh": "象征万物初生的艰难。雷雨交加,万物萌动而未定。占得此卦应耐心积累,立基稳固方能进。"
},
{
"number": 4,
"name_zh": "蒙",
"pinyin": "Méng",
"name_en": "Youthful Folly",
"upper_trigram": "艮",
"lower_trigram": "坎",
"binary": "100010",
"judgment": "亨。匪我求童蒙,童蒙求我。初筮告,再三渎,渎则不告。利贞。",
"image": "山下出泉,蒙。君子以果行育德。",
"lines": [
{"position": 1, "type": "六", "text": "发蒙,利用刑人,用说桎梏,以往吝。"},
{"position": 2, "type": "九", "text": "包蒙,吉。纳妇吉,子克家。"},
{"position": 3, "type": "六", "text": "勿用取女,见金夫,不有躬。无攸利。"},
{"position": 4, "type": "六", "text": "困蒙,吝。"},
{"position": 5, "type": "六", "text": "童蒙,吉。"},
{"position": 6, "type": "九", "text": "击蒙,不利为寇,利御寇。"}
],
"summary_zh": "象征蒙昧未启之状。山下涌泉,含蓄待发,喻教育与启蒙。占者应虚心受教,以求成长。"
},
{
"number": 5,
"name_zh": "需",
"pinyin": "Xū",
"name_en": "Waiting",
"upper_trigram": "坎",
"lower_trigram": "乾",
"binary": "010111",
"judgment": "有孚,光亨,贞吉。利涉大川。",
"image": "云上于天,需。君子以饮食宴乐。",
"lines": [
{"position": 1, "type": "九", "text": "需于郊,利用恒,无咎。"},
{"position": 2, "type": "九", "text": "需于沙,小有言,终吉。"},
{"position": 3, "type": "九", "text": "需于泥,致寇至。"},
{"position": 4, "type": "六", "text": "需于血,出自穴。"},
{"position": 5, "type": "九", "text": "需于酒食,贞吉。"},
{"position": 6, "type": "六", "text": "入于穴,有不速之客三人来,敬之终吉。"}
],
"summary_zh": "云在天上,雨未降,喻等待时机。占得此卦宜耐心等候,养精蓄锐,时至而动。"
},
{
"number": 6,
"name_zh": "讼",
"pinyin": "Sòng",
"name_en": "Conflict",
"upper_trigram": "乾",
"lower_trigram": "坎",
"binary": "111010",
"judgment": "有孚窒惕,中吉,终凶。利见大人,不利涉大川。",
"image": "天与水违行,讼。君子以作事谋始。",
"lines": [
{"position": 1, "type": "六", "text": "不永所事,小有言,终吉。"},
{"position": 2, "type": "九", "text": "不克讼,归而逋,其邑人三百户,无眚。"},
{"position": 3, "type": "六", "text": "食旧德,贞厉,终吉。或从王事,无成。"},
{"position": 4, "type": "九", "text": "不克讼,复即命渝,安贞吉。"},
{"position": 5, "type": "九", "text": "讼,元吉。"},
{"position": 6, "type": "九", "text": "或锡之鞶带,终朝三褫之。"}
],
"summary_zh": "天水相违,喻人与人争讼。占得此卦不利诉讼,宜和解、谋始、防患于未然。"
},
{
"number": 7,
"name_zh": "师",
"pinyin": "Shī",
"name_en": "The Army",
"upper_trigram": "坤",
"lower_trigram": "坎",
"binary": "000010",
"judgment": "贞,丈人吉,无咎。",
"image": "地中有水,师。君子以容民畜众。",
"lines": [
{"position": 1, "type": "六", "text": "师出以律,否臧凶。"},
{"position": 2, "type": "九", "text": "在师,中吉,无咎,王三锡命。"},
{"position": 3, "type": "六", "text": "师或舆尸,凶。"},
{"position": 4, "type": "六", "text": "师左次,无咎。"},
{"position": 5, "type": "六", "text": "田有禽,利执言,无咎。长子帅师,弟子舆尸,贞凶。"},
{"position": 6, "type": "六", "text": "大君有命,开国承家,小人勿用。"}
],
"summary_zh": "地下有水,喻众民聚而成军。占得此卦宜严守纪律、择正人为帅,方能成事。"
},
{
"number": 8,
"name_zh": "比",
"pinyin": "Bǐ",
"name_en": "Holding Together",
"upper_trigram": "坎",
"lower_trigram": "坤",
"binary": "010000",
"judgment": "吉。原筮元永贞,无咎。不宁方来,后夫凶。",
"image": "地上有水,比。先王以建万国,亲诸侯。",
"lines": [
{"position": 1, "type": "六", "text": "有孚比之,无咎。有孚盈缶,终来有他吉。"},
{"position": 2, "type": "六", "text": "比之自内,贞吉。"},
{"position": 3, "type": "六", "text": "比之匪人。"},
{"position": 4, "type": "六", "text": "外比之,贞吉。"},
{"position": 5, "type": "九", "text": "显比,王用三驱,失前禽,邑人不诫,吉。"},
{"position": 6, "type": "六", "text": "比之无首,凶。"}
],
"summary_zh": "水在地上,亲附万物,喻团结亲比。占得此卦宜诚信相亲,及早归附;迟则有凶。"
},
{
"number": 9,
"name_zh": "小畜",
"pinyin": "Xiǎo Xù",
"name_en": "Small Accumulating",
"upper_trigram": "巽",
"lower_trigram": "乾",
"binary": "011111",
"judgment": "亨。密云不雨,自我西郊。",
"image": "风行天上,小畜。君子以懿文德。",
"lines": [
{"position": 1, "type": "九", "text": "复自道,何其咎,吉。"},
{"position": 2, "type": "九", "text": "牵复,吉。"},
{"position": 3, "type": "九", "text": "舆说辐,夫妻反目。"},
{"position": 4, "type": "六", "text": "有孚,血去惕出,无咎。"},
{"position": 5, "type": "九", "text": "有孚挛如,富以其邻。"},
{"position": 6, "type": "九", "text": "既雨既处,尚德载,妇贞厉。月几望,君子征凶。"}
],
"summary_zh": "风行天上,云密而未雨,喻小有积蓄而未及大用。占者宜养德蓄势,等待时机。"
},
{
"number": 10,
"name_zh": "履",
"pinyin": "Lǚ",
"name_en": "Treading",
"upper_trigram": "乾",
"lower_trigram": "兑",
"binary": "111110",
"judgment": "履虎尾,不咥人,亨。",
"image": "上天下泽,履。君子以辨上下,定民志。",
"lines": [
{"position": 1, "type": "九", "text": "素履,往无咎。"},
{"position": 2, "type": "九", "text": "履道坦坦,幽人贞吉。"},
{"position": 3, "type": "六", "text": "眇能视,跛能履,履虎尾,咥人,凶。武人为于大君。"},
{"position": 4, "type": "九", "text": "履虎尾,愬愬终吉。"},
{"position": 5, "type": "九", "text": "夬履,贞厉。"},
{"position": 6, "type": "九", "text": "视履考祥,其旋元吉。"}
],
"summary_zh": "象征行走、礼节、规矩。占得此卦宜谨慎行事,明辨上下尊卑,方能履虎尾而不被咥。"
},
{
"number": 11,
"name_zh": "泰",
"pinyin": "Tài",
"name_en": "Peace",
"upper_trigram": "坤",
"lower_trigram": "乾",
"binary": "000111",
"judgment": "小往大来,吉,亨。",
"image": "天地交泰,后以财成天地之道,辅相天地之宜,以左右民。",
"lines": [
{"position": 1, "type": "九", "text": "拔茅茹,以其汇,征吉。"},
{"position": 2, "type": "九", "text": "包荒,用冯河,不遐遗,朋亡,得尚于中行。"},
{"position": 3, "type": "九", "text": "无平不陂,无往不复。艰贞无咎,勿恤其孚,于食有福。"},
{"position": 4, "type": "六", "text": "翩翩,不富以其邻,不戒以孚。"},
{"position": 5, "type": "六", "text": "帝乙归妹,以祉元吉。"},
{"position": 6, "type": "六", "text": "城复于隍,勿用师。自邑告命,贞吝。"}
],
"summary_zh": "天地交而万物通,喻通泰、太平。占得此卦最为吉利,但需警惕无平不陂,盛极必衰。"
},
{
"number": 12,
"name_zh": "否",
"pinyin": "Pǐ",
"name_en": "Standstill",
"upper_trigram": "乾",
"lower_trigram": "坤",
"binary": "111000",
"judgment": "否之匪人,不利君子贞,大往小来。",
"image": "天地不交,否。君子以俭德辟难,不可荣以禄。",
"lines": [
{"position": 1, "type": "六", "text": "拔茅茹,以其汇,贞吉,亨。"},
{"position": 2, "type": "六", "text": "包承,小人吉,大人否亨。"},
{"position": 3, "type": "六", "text": "包羞。"},
{"position": 4, "type": "九", "text": "有命无咎,畴离祉。"},
{"position": 5, "type": "九", "text": "休否,大人吉。其亡其亡,系于苞桑。"},
{"position": 6, "type": "九", "text": "倾否,先否后喜。"}
],
"summary_zh": "天地不交,万物阻塞。占得此卦多主困顿不通,但倾否终将反转,宜守正待时。"
},
{
"number": 13,
"name_zh": "同人",
"pinyin": "Tóng Rén",
"name_en": "Fellowship",
"upper_trigram": "乾",
"lower_trigram": "离",
"binary": "111101",
"judgment": "同人于野,亨。利涉大川,利君子贞。",
"image": "天与火,同人。君子以类族辨物。",
"lines": [
{"position": 1, "type": "九", "text": "同人于门,无咎。"},
{"position": 2, "type": "六", "text": "同人于宗,吝。"},
{"position": 3, "type": "九", "text": "伏戎于莽,升其高陵,三岁不兴。"},
{"position": 4, "type": "九", "text": "乘其墉,弗克攻,吉。"},
{"position": 5, "type": "九", "text": "同人,先号咷而后笑,大师克相遇。"},
{"position": 6, "type": "九", "text": "同人于郊,无悔。"}
],
"summary_zh": "天与火同明,喻志同道合者相聚。占得此卦宜开阔胸怀,光明磊落,与众同心。"
},
{
"number": 14,
"name_zh": "大有",
"pinyin": "Dà Yǒu",
"name_en": "Great Possession",
"upper_trigram": "离",
"lower_trigram": "乾",
"binary": "101111",
"judgment": "元亨。",
"image": "火在天上,大有。君子以遏恶扬善,顺天休命。",
"lines": [
{"position": 1, "type": "九", "text": "无交害,匪咎,艰则无咎。"},
{"position": 2, "type": "九", "text": "大车以载,有攸往,无咎。"},
{"position": 3, "type": "九", "text": "公用亨于天子,小人弗克。"},
{"position": 4, "type": "九", "text": "匪其彭,无咎。"},
{"position": 5, "type": "六", "text": "厥孚交如,威如,吉。"},
{"position": 6, "type": "九", "text": "自天祐之,吉无不利。"}
],
"summary_zh": "火在天上,光明普照,喻大有所获、丰盛富足。占得此卦最为吉利,宜遏恶扬善。"
},
{
"number": 15,
"name_zh": "谦",
"pinyin": "Qiān",
"name_en": "Modesty",
"upper_trigram": "坤",
"lower_trigram": "艮",
"binary": "000100",
"judgment": "亨,君子有终。",
"image": "地中有山,谦。君子以裒多益寡,称物平施。",
"lines": [
{"position": 1, "type": "六", "text": "谦谦君子,用涉大川,吉。"},
{"position": 2, "type": "六", "text": "鸣谦,贞吉。"},
{"position": 3, "type": "九", "text": "劳谦,君子有终,吉。"},
{"position": 4, "type": "六", "text": "无不利,撝谦。"},
{"position": 5, "type": "六", "text": "不富以其邻,利用侵伐,无不利。"},
{"position": 6, "type": "六", "text": "鸣谦,利用行师,征邑国。"}
],
"summary_zh": "山在地下,谦虚之极。占得此卦六爻皆吉(六十四卦中绝无仅有),强调谦德的至高价值。"
},
{
"number": 16,
"name_zh": "豫",
"pinyin": "Yù",
"name_en": "Enthusiasm",
"upper_trigram": "震",
"lower_trigram": "坤",
"binary": "001000",
"judgment": "利建侯行师。",
"image": "雷出地奋,豫。先王以作乐崇德,殷荐之上帝,以配祖考。",
"lines": [
{"position": 1, "type": "六", "text": "鸣豫,凶。"},
{"position": 2, "type": "六", "text": "介于石,不终日,贞吉。"},
{"position": 3, "type": "六", "text": "盱豫,悔。迟有悔。"},
{"position": 4, "type": "九", "text": "由豫,大有得。勿疑,朋盍簪。"},
{"position": 5, "type": "六", "text": "贞疾,恒不死。"},
{"position": 6, "type": "六", "text": "冥豫成,有渝无咎。"}
],
"summary_zh": "雷出地奋,万物喜悦。占得此卦主和乐欢愉,但宜中正不沉溺,否则鸣豫凶冥豫难免。"
},
{
"number": 17,
"name_zh": "随",
"pinyin": "Suí",
"name_en": "Following",
"upper_trigram": "兑",
"lower_trigram": "震",
"binary": "110001",
"judgment": "元亨,利贞,无咎。",
"image": "泽中有雷,随。君子以向晦入宴息。",
"lines": [
{"position": 1, "type": "九", "text": "官有渝,贞吉。出门交有功。"},
{"position": 2, "type": "六", "text": "系小子,失丈夫。"},
{"position": 3, "type": "六", "text": "系丈夫,失小子。随有求得,利居贞。"},
{"position": 4, "type": "九", "text": "随有获,贞凶。有孚在道,以明何咎。"},
{"position": 5, "type": "九", "text": "孚于嘉,吉。"},
{"position": 6, "type": "六", "text": "拘系之,乃从维之。王用亨于西山。"}
],
"summary_zh": "象征随顺、跟随。占得此卦宜审时度势,随时随宜,但应择善而从。"
},
{
"number": 18,
"name_zh": "蛊",
"pinyin": "Gǔ",
"name_en": "Work on the Decayed",
"upper_trigram": "艮",
"lower_trigram": "巽",
"binary": "100011",
"judgment": "元亨,利涉大川。先甲三日,后甲三日。",
"image": "山下有风,蛊。君子以振民育德。",
"lines": [
{"position": 1, "type": "六", "text": "干父之蛊,有子,考无咎,厉终吉。"},
{"position": 2, "type": "九", "text": "干母之蛊,不可贞。"},
{"position": 3, "type": "九", "text": "干父之蛊,小有悔,无大咎。"},
{"position": 4, "type": "六", "text": "裕父之蛊,往见吝。"},
{"position": 5, "type": "六", "text": "干父之蛊,用誉。"},
{"position": 6, "type": "九", "text": "不事王侯,高尚其事。"}
],
"summary_zh": "山下风行,吹散积秽,喻整顿弊端、革除积弊。占得此卦应直面问题,承担革新之责。"
},
{
"number": 19,
"name_zh": "临",
"pinyin": "Lín",
"name_en": "Approach",
"upper_trigram": "坤",
"lower_trigram": "兑",
"binary": "000110",
"judgment": "元亨,利贞。至于八月有凶。",
"image": "泽上有地,临。君子以教思无穷,容保民无疆。",
"lines": [
{"position": 1, "type": "九", "text": "咸临,贞吉。"},
{"position": 2, "type": "九", "text": "咸临,吉无不利。"},
{"position": 3, "type": "六", "text": "甘临,无攸利。既忧之,无咎。"},
{"position": 4, "type": "六", "text": "至临,无咎。"},
{"position": 5, "type": "六", "text": "知临,大君之宜,吉。"},
{"position": 6, "type": "六", "text": "敦临,吉无咎。"}
],
"summary_zh": "泽上有地,地高临泽,喻居上而临下。占得此卦宜以德临民、平和待人,但需防八月之凶(盛极反衰)。"
},
{
"number": 20,
"name_zh": "观",
"pinyin": "Guān",
"name_en": "Contemplation",
"upper_trigram": "巽",
"lower_trigram": "坤",
"binary": "011000",
"judgment": "盥而不荐,有孚顒若。",
"image": "风行地上,观。先王以省方观民设教。",
"lines": [
{"position": 1, "type": "六", "text": "童观,小人无咎,君子吝。"},
{"position": 2, "type": "六", "text": "窥观,利女贞。"},
{"position": 3, "type": "六", "text": "观我生,进退。"},
{"position": 4, "type": "六", "text": "观国之光,利用宾于王。"},
{"position": 5, "type": "九", "text": "观我生,君子无咎。"},
{"position": 6, "type": "九", "text": "观其生,君子无咎。"}
],
"summary_zh": "风行地上,巡视万物,喻观察、省察。占得此卦宜内省外观,明察事理。"
},
{
"number": 21,
"name_zh": "噬嗑",
"pinyin": "Shì Kè",
"name_en": "Biting Through",
"upper_trigram": "离",
"lower_trigram": "震",
"binary": "101001",
"judgment": "亨,利用狱。",
"image": "雷电噬嗑,先王以明罚敕法。",
"lines": [
{"position": 1, "type": "九", "text": "屦校灭趾,无咎。"},
{"position": 2, "type": "六", "text": "噬肤灭鼻,无咎。"},
{"position": 3, "type": "六", "text": "噬腊肉,遇毒,小吝无咎。"},
{"position": 4, "type": "九", "text": "噬干胏,得金矢。利艰贞,吉。"},
{"position": 5, "type": "六", "text": "噬干肉,得黄金。贞厉,无咎。"},
{"position": 6, "type": "九", "text": "何校灭耳,凶。"}
],
"summary_zh": "雷电交加,喻明刑罚法。占得此卦象征咬合——需以决断之力清除阻碍,正本清源。"
},
{
"number": 22,
"name_zh": "贲",
"pinyin": "Bì",
"name_en": "Adornment",
"upper_trigram": "艮",
"lower_trigram": "离",
"binary": "100101",
"judgment": "亨,小利有攸往。",
"image": "山下有火,贲。君子以明庶政,无敢折狱。",
"lines": [
{"position": 1, "type": "九", "text": "贲其趾,舍车而徒。"},
{"position": 2, "type": "六", "text": "贲其须。"},
{"position": 3, "type": "九", "text": "贲如濡如,永贞吉。"},
{"position": 4, "type": "六", "text": "贲如皤如,白马翰如。匪寇婚媾。"},
{"position": 5, "type": "六", "text": "贲于丘园,束帛戋戋。吝,终吉。"},
{"position": 6, "type": "九", "text": "白贲,无咎。"}
],
"summary_zh": "山下有火,光照万物,喻文饰、装饰。占得此卦宜重视形式之美,但终归白贲——返璞归真。"
},
{
"number": 23,
"name_zh": "剥",
"pinyin": "Bō",
"name_en": "Splitting Apart",
"upper_trigram": "艮",
"lower_trigram": "坤",
"binary": "100000",
"judgment": "不利有攸往。",
"image": "山附于地,剥。上以厚下安宅。",
"lines": [
{"position": 1, "type": "六", "text": "剥床以足,蔑贞凶。"},
{"position": 2, "type": "六", "text": "剥床以辨,蔑贞凶。"},
{"position": 3, "type": "六", "text": "剥之,无咎。"},
{"position": 4, "type": "六", "text": "剥床以肤,凶。"},
{"position": 5, "type": "六", "text": "贯鱼,以宫人宠,无不利。"},
{"position": 6, "type": "九", "text": "硕果不食,君子得舆,小人剥庐。"}
],
"summary_zh": "山附于地,喻剥落、衰退。占得此卦多为不利之时,但硕果不食——保留生机,待复兴之时。"
},
{
"number": 24,
"name_zh": "复",
"pinyin": "Fù",
"name_en": "Return",
"upper_trigram": "坤",
"lower_trigram": "震",
"binary": "000001",
"judgment": "亨。出入无疾,朋来无咎。反复其道,七日来复,利有攸往。",
"image": "雷在地中,复。先王以至日闭关,商旅不行,后不省方。",
"lines": [
{"position": 1, "type": "九", "text": "不远复,无祗悔,元吉。"},
{"position": 2, "type": "六", "text": "休复,吉。"},
{"position": 3, "type": "六", "text": "频复,厉无咎。"},
{"position": 4, "type": "六", "text": "中行独复。"},
{"position": 5, "type": "六", "text": "敦复,无悔。"},
{"position": 6, "type": "六", "text": "迷复,凶,有灾眚。用行师,终有大败,以其国君凶。至于十年不克征。"}
],
"summary_zh": "雷在地中,阳气初复,喻新生、复兴。占得此卦象征转机来临,宜回归正道。"
},
{
"number": 25,
"name_zh": "无妄",
"pinyin": "Wú Wàng",
"name_en": "Innocence",
"upper_trigram": "乾",
"lower_trigram": "震",
"binary": "111001",
"judgment": "元亨利贞。其匪正有眚,不利有攸往。",
"image": "天下雷行,物与无妄。先王以茂对时育万物。",
"lines": [
{"position": 1, "type": "九", "text": "无妄,往吉。"},
{"position": 2, "type": "六", "text": "不耕获,不菑畬,则利有攸往。"},
{"position": 3, "type": "六", "text": "无妄之灾。或系之牛,行人之得,邑人之灾。"},
{"position": 4, "type": "九", "text": "可贞,无咎。"},
{"position": 5, "type": "九", "text": "无妄之疾,勿药有喜。"},
{"position": 6, "type": "九", "text": "无妄行,有眚,无攸利。"}
],
"summary_zh": "象征不妄为、合天道。占得此卦宜守正道,不可有非分之想;偶有意外之灾(无妄之灾),自能化解。"
},
{
"number": 26,
"name_zh": "大畜",
"pinyin": "Dà Xù",
"name_en": "Great Accumulating",
"upper_trigram": "艮",
"lower_trigram": "乾",
"binary": "100111",
"judgment": "利贞,不家食吉,利涉大川。",
"image": "天在山中,大畜。君子以多识前言往行,以畜其德。",
"lines": [
{"position": 1, "type": "九", "text": "有厉利已。"},
{"position": 2, "type": "九", "text": "舆说輹。"},
{"position": 3, "type": "九", "text": "良马逐,利艰贞。曰闲舆卫,利有攸往。"},
{"position": 4, "type": "六", "text": "童牛之牿,元吉。"},
{"position": 5, "type": "六", "text": "豮豕之牙,吉。"},
{"position": 6, "type": "九", "text": "何天之衢,亨。"}
],
"summary_zh": "天在山中,象征大有积蓄。占得此卦宜积德、积学、积财,待时大用。"
},
{
"number": 27,
"name_zh": "颐",
"pinyin": "Yí",
"name_en": "Nourishment",
"upper_trigram": "艮",
"lower_trigram": "震",
"binary": "100001",
"judgment": "贞吉。观颐,自求口实。",
"image": "山下有雷,颐。君子以慎言语,节饮食。",
"lines": [
{"position": 1, "type": "九", "text": "舍尔灵龟,观我朵颐,凶。"},
{"position": 2, "type": "六", "text": "颠颐,拂经,于丘颐,征凶。"},
{"position": 3, "type": "六", "text": "拂颐贞凶。十年勿用,无攸利。"},
{"position": 4, "type": "六", "text": "颠颐,吉。虎视眈眈,其欲逐逐,无咎。"},
{"position": 5, "type": "六", "text": "拂经,居贞吉,不可涉大川。"},
{"position": 6, "type": "九", "text": "由颐,厉吉,利涉大川。"}
],
"summary_zh": "象征口腹、养生、养德。占得此卦宜节制言语饮食,明辨养身养心之道。"
},
{
"number": 28,
"name_zh": "大过",
"pinyin": "Dà Guò",
"name_en": "Great Excess",
"upper_trigram": "兑",
"lower_trigram": "巽",
"binary": "110011",
"judgment": "栋桡,利有攸往,亨。",
"image": "泽灭木,大过。君子以独立不惧,遁世无闷。",
"lines": [
{"position": 1, "type": "六", "text": "藉用白茅,无咎。"},
{"position": 2, "type": "九", "text": "枯杨生稊,老夫得其女妻,无不利。"},
{"position": 3, "type": "九", "text": "栋桡,凶。"},
{"position": 4, "type": "九", "text": "栋隆,吉。有它吝。"},
{"position": 5, "type": "九", "text": "枯杨生华,老妇得其士夫,无咎无誉。"},
{"position": 6, "type": "六", "text": "过涉灭顶,凶,无咎。"}
],
"summary_zh": "泽水淹木,喻过度、超越常规。占得此卦象征大事临头,需有非常之策。"
},
{
"number": 29,
"name_zh": "坎",
"pinyin": "Kǎn",
"name_en": "The Abysmal",
"upper_trigram": "坎",
"lower_trigram": "坎",
"binary": "010010",
"judgment": "习坎,有孚维心亨,行有尚。",
"image": "水洊至,习坎。君子以常德行,习教事。",
"lines": [
{"position": 1, "type": "六", "text": "习坎,入于坎窞,凶。"},
{"position": 2, "type": "九", "text": "坎有险,求小得。"},
{"position": 3, "type": "六", "text": "来之坎坎,险且枕,入于坎窞,勿用。"},
{"position": 4, "type": "六", "text": "樽酒簋贰,用缶,纳约自牖,终无咎。"},
{"position": 5, "type": "九", "text": "坎不盈,祗既平,无咎。"},
{"position": 6, "type": "六", "text": "系用徽纆,寘于丛棘,三岁不得,凶。"}
],
"summary_zh": "重坎,象征危险层叠。占得此卦多主险阻,但保持诚信之心,则险中有亨。"
},
{
"number": 30,
"name_zh": "离",
"pinyin": "Lí",
"name_en": "The Clinging",
"upper_trigram": "离",
"lower_trigram": "离",
"binary": "101101",
"judgment": "利贞,亨。畜牝牛,吉。",
"image": "明两作,离。大人以继明照于四方。",
"lines": [
{"position": 1, "type": "九", "text": "履错然,敬之无咎。"},
{"position": 2, "type": "六", "text": "黄离,元吉。"},
{"position": 3, "type": "九", "text": "日昃之离,不鼓缶而歌,则大耋之嗟,凶。"},
{"position": 4, "type": "九", "text": "突如其来如,焚如,死如,弃如。"},
{"position": 5, "type": "六", "text": "出涕沱若,戚嗟若,吉。"},
{"position": 6, "type": "九", "text": "王用出征,有嘉折首,获匪其丑,无咎。"}
],
"summary_zh": "重离,象征光明附丽。占得此卦宜柔顺中正,附于光明之德。"
},
{
"number": 31,
"name_zh": "咸",
"pinyin": "Xián",
"name_en": "Influence",
"upper_trigram": "兑",
"lower_trigram": "艮",
"binary": "110100",
"judgment": "亨,利贞,取女吉。",
"image": "山上有泽,咸。君子以虚受人。",
"lines": [
{"position": 1, "type": "六", "text": "咸其拇。"},
{"position": 2, "type": "六", "text": "咸其腓,凶。居吉。"},
{"position": 3, "type": "九", "text": "咸其股,执其随,往吝。"},
{"position": 4, "type": "九", "text": "贞吉,悔亡。憧憧往来,朋从尔思。"},
{"position": 5, "type": "九", "text": "咸其脢,无悔。"},
{"position": 6, "type": "六", "text": "咸其辅颊舌。"}
],
"summary_zh": "山上有泽,山泽通气,喻感应、感动。咸卦象征男女相感,是下经之始。占得此卦主婚姻、合作之吉。"
},
{
"number": 32,
"name_zh": "恒",
"pinyin": "Héng",
"name_en": "Duration",
"upper_trigram": "震",
"lower_trigram": "巽",
"binary": "001011",
"judgment": "亨,无咎,利贞,利有攸往。",
"image": "雷风,恒。君子以立不易方。",
"lines": [
{"position": 1, "type": "六", "text": "浚恒,贞凶,无攸利。"},
{"position": 2, "type": "九", "text": "悔亡。"},
{"position": 3, "type": "九", "text": "不恒其德,或承之羞,贞吝。"},
{"position": 4, "type": "九", "text": "田无禽。"},
{"position": 5, "type": "六", "text": "恒其德,贞。妇人吉,夫子凶。"},
{"position": 6, "type": "六", "text": "振恒,凶。"}
],
"summary_zh": "雷风相生,象征恒久之道。占得此卦宜坚守不变,但需恒而能变,避免浚恒振恒之失。"
},
{
"number": 33,
"name_zh": "遁",
"pinyin": "Dùn",
"name_en": "Retreat",
"upper_trigram": "乾",
"lower_trigram": "艮",
"binary": "111100",
"judgment": "亨,小利贞。",
"image": "天下有山,遁。君子以远小人,不恶而严。",
"lines": [
{"position": 1, "type": "六", "text": "遁尾,厉,勿用有攸往。"},
{"position": 2, "type": "六", "text": "执之用黄牛之革,莫之胜说。"},
{"position": 3, "type": "九", "text": "系遁,有疾厉,畜臣妾吉。"},
{"position": 4, "type": "九", "text": "好遁,君子吉,小人否。"},
{"position": 5, "type": "九", "text": "嘉遁,贞吉。"},
{"position": 6, "type": "九", "text": "肥遁,无不利。"}
],
"summary_zh": "天下有山,山高人退,喻退隐、撤退。占得此卦宜识时退避,远离小人,保身全德。"
},
{
"number": 34,
"name_zh": "大壮",
"pinyin": "Dà Zhuàng",
"name_en": "Great Power",
"upper_trigram": "震",
"lower_trigram": "乾",
"binary": "001111",
"judgment": "利贞。",
"image": "雷在天上,大壮。君子以非礼弗履。",
"lines": [
{"position": 1, "type": "九", "text": "壮于趾,征凶,有孚。"},
{"position": 2, "type": "九", "text": "贞吉。"},
{"position": 3, "type": "九", "text": "小人用壮,君子用罔。贞厉。羝羊触藩,羸其角。"},
{"position": 4, "type": "九", "text": "贞吉,悔亡。藩决不羸,壮于大舆之輹。"},
{"position": 5, "type": "六", "text": "丧羊于易,无悔。"},
{"position": 6, "type": "六", "text": "羝羊触藩,不能退,不能遂,无攸利,艰则吉。"}
],
"summary_zh": "雷在天上,声威浩大,喻强壮、刚健。占得此卦虽强但不可恃强,非礼弗履。"
},
{
"number": 35,
"name_zh": "晋",
"pinyin": "Jìn",
"name_en": "Progress",
"upper_trigram": "离",
"lower_trigram": "坤",
"binary": "101000",
"judgment": "康侯用锡马蕃庶,昼日三接。",
"image": "明出地上,晋。君子以自昭明德。",
"lines": [
{"position": 1, "type": "六", "text": "晋如摧如,贞吉。罔孚,裕无咎。"},
{"position": 2, "type": "六", "text": "晋如愁如,贞吉。受兹介福,于其王母。"},
{"position": 3, "type": "六", "text": "众允,悔亡。"},
{"position": 4, "type": "九", "text": "晋如鼫鼠,贞厉。"},
{"position": 5, "type": "六", "text": "悔亡,失得勿恤。往吉,无不利。"},
{"position": 6, "type": "九", "text": "晋其角,维用伐邑,厉吉无咎,贞吝。"}
],
"summary_zh": "明出地上,旭日东升,喻晋升、进取。占得此卦多主升迁、进步、被赏识。"
},
{
"number": 36,
"name_zh": "明夷",
"pinyin": "Míng Yí",
"name_en": "Darkening of the Light",
"upper_trigram": "坤",
"lower_trigram": "离",
"binary": "000101",
"judgment": "利艰贞。",
"image": "明入地中,明夷。君子以莅众,用晦而明。",
"lines": [
{"position": 1, "type": "九", "text": "明夷于飞,垂其翼。君子于行,三日不食。有攸往,主人有言。"},
{"position": 2, "type": "六", "text": "明夷,夷于左股,用拯马壮,吉。"},
{"position": 3, "type": "九", "text": "明夷于南狩,得其大首,不可疾贞。"},
{"position": 4, "type": "六", "text": "入于左腹,获明夷之心,于出门庭。"},
{"position": 5, "type": "六", "text": "箕子之明夷,利贞。"},
{"position": 6, "type": "六", "text": "不明晦,初登于天,后入于地。"}
],
"summary_zh": "明入地中,光明受伤,喻贤者遭难。占得此卦宜韬光养晦,外晦内明。"
},
{
"number": 37,
"name_zh": "家人",
"pinyin": "Jiā Rén",
"name_en": "The Family",
"upper_trigram": "巽",
"lower_trigram": "离",
"binary": "011101",
"judgment": "利女贞。",
"image": "风自火出,家人。君子以言有物而行有恒。",
"lines": [
{"position": 1, "type": "九", "text": "闲有家,悔亡。"},
{"position": 2, "type": "六", "text": "无攸遂,在中馈,贞吉。"},
{"position": 3, "type": "九", "text": "家人嗃嗃,悔厉吉。妇子嘻嘻,终吝。"},
{"position": 4, "type": "六", "text": "富家,大吉。"},
{"position": 5, "type": "九", "text": "王假有家,勿恤吉。"},
{"position": 6, "type": "九", "text": "有孚威如,终吉。"}
],
"summary_zh": "风自火出,喻家庭之道。占得此卦象征家道兴旺,强调家人间的伦理、规矩与恒久。"
},
{
"number": 38,
"name_zh": "睽",
"pinyin": "Kuí",
"name_en": "Opposition",
"upper_trigram": "离",
"lower_trigram": "兑",
"binary": "101110",
"judgment": "小事吉。",
"image": "上火下泽,睽。君子以同而异。",
"lines": [
{"position": 1, "type": "九", "text": "悔亡。丧马勿逐自复,见恶人无咎。"},
{"position": 2, "type": "九", "text": "遇主于巷,无咎。"},
{"position": 3, "type": "六", "text": "见舆曳,其牛掣,其人天且劓,无初有终。"},
{"position": 4, "type": "九", "text": "睽孤,遇元夫,交孚,厉无咎。"},
{"position": 5, "type": "六", "text": "悔亡,厥宗噬肤,往何咎。"},
{"position": 6, "type": "九", "text": "睽孤,见豕负涂,载鬼一车。先张之弧,后说之弧,匪寇婚媾。往遇雨则吉。"}
],
"summary_zh": "上火下泽,水火不容,喻乖离、对立。占得此卦多主分歧,但同而异——异中求同方为出路。"
},
{
"number": 39,
"name_zh": "蹇",
"pinyin": "Jiǎn",
"name_en": "Obstruction",
"upper_trigram": "坎",
"lower_trigram": "艮",
"binary": "010100",
"judgment": "利西南,不利东北。利见大人,贞吉。",
"image": "山上有水,蹇。君子以反身修德。",
"lines": [
{"position": 1, "type": "六", "text": "往蹇,来誉。"},
{"position": 2, "type": "六", "text": "王臣蹇蹇,匪躬之故。"},
{"position": 3, "type": "九", "text": "往蹇,来反。"},
{"position": 4, "type": "六", "text": "往蹇,来连。"},
{"position": 5, "type": "九", "text": "大蹇朋来。"},
{"position": 6, "type": "六", "text": "往蹇,来硕,吉。利见大人。"}
],
"summary_zh": "山上有水,行路艰难,象征蹇难、阻塞。占得此卦遇阻宜反求诸己,反身修德。"
},
{
"number": 40,
"name_zh": "解",
"pinyin": "Jiě",
"name_en": "Deliverance",
"upper_trigram": "震",
"lower_trigram": "坎",
"binary": "001010",
"judgment": "利西南。无所往,其来复吉。有攸往,夙吉。",
"image": "雷雨作,解。君子以赦过宥罪。",
"lines": [
{"position": 1, "type": "六", "text": "无咎。"},
{"position": 2, "type": "九", "text": "田获三狐,得黄矢,贞吉。"},
{"position": 3, "type": "六", "text": "负且乘,致寇至,贞吝。"},
{"position": 4, "type": "九", "text": "解而拇,朋至斯孚。"},
{"position": 5, "type": "六", "text": "君子维有解,吉。有孚于小人。"},
{"position": 6, "type": "六", "text": "公用射隼于高墉之上,获之,无不利。"}
],
"summary_zh": "雷雨大作,万物解纷,喻解困、解脱。占得此卦象征困难化解,宜赦小过、抓时机。"
},
{
"number": 41,
"name_zh": "损",
"pinyin": "Sǔn",
"name_en": "Decrease",
"upper_trigram": "艮",
"lower_trigram": "兑",
"binary": "100110",
"judgment": "有孚,元吉,无咎可贞,利有攸往。曷之用?二簋可用享。",
"image": "山下有泽,损。君子以惩忿窒欲。",
"lines": [
{"position": 1, "type": "九", "text": "已事遄往,无咎,酌损之。"},
{"position": 2, "type": "九", "text": "利贞,征凶,弗损益之。"},
{"position": 3, "type": "六", "text": "三人行,则损一人。一人行,则得其友。"},
{"position": 4, "type": "六", "text": "损其疾,使遄有喜,无咎。"},
{"position": 5, "type": "六", "text": "或益之十朋之龟,弗克违,元吉。"},
{"position": 6, "type": "九", "text": "弗损益之,无咎,贞吉。利有攸往。得臣无家。"}
],
"summary_zh": "山下有泽,水气上蒸而山高,喻损下益上。占得此卦宜节欲损己,反得益处。"
},
{
"number": 42,
"name_zh": "益",
"pinyin": "Yì",
"name_en": "Increase",
"upper_trigram": "巽",
"lower_trigram": "震",
"binary": "011001",
"judgment": "利有攸往,利涉大川。",
"image": "风雷,益。君子以见善则迁,有过则改。",
"lines": [
{"position": 1, "type": "九", "text": "利用为大作,元吉,无咎。"},
{"position": 2, "type": "六", "text": "或益之十朋之龟,弗克违,永贞吉。王用享于帝,吉。"},
{"position": 3, "type": "六", "text": "益之用凶事,无咎。有孚中行,告公用圭。"},
{"position": 4, "type": "六", "text": "中行告公从,利用为依迁国。"},
{"position": 5, "type": "九", "text": "有孚惠心,勿问元吉。有孚惠我德。"},
{"position": 6, "type": "九", "text": "莫益之,或击之,立心勿恒,凶。"}
],
"summary_zh": "风雷相益,喻增益、扶持。占得此卦象征大有所获,但宜见善则迁、有过则改。"
},
{
"number": 43,
"name_zh": "夬",
"pinyin": "Guài",
"name_en": "Breakthrough",
"upper_trigram": "兑",
"lower_trigram": "乾",
"binary": "110111",
"judgment": "扬于王庭,孚号有厉。告自邑,不利即戎,利有攸往。",
"image": "泽上于天,夬。君子以施禄及下,居德则忌。",
"lines": [
{"position": 1, "type": "九", "text": "壮于前趾,往不胜,为咎。"},
{"position": 2, "type": "九", "text": "惕号,莫夜有戎,勿恤。"},
{"position": 3, "type": "九", "text": "壮于頄,有凶。君子夬夬,独行遇雨,若濡有愠,无咎。"},
{"position": 4, "type": "九", "text": "臀无肤,其行次且。牵羊悔亡,闻言不信。"},
{"position": 5, "type": "九", "text": "苋陆夬夬,中行无咎。"},
{"position": 6, "type": "六", "text": "无号,终有凶。"}
],
"summary_zh": "泽上于天,决而下流,喻决断、清除。占得此卦宜果断除恶,但要光明正大,不可暗中行事。"
},
{
"number": 44,
"name_zh": "姤",
"pinyin": "Gòu",
"name_en": "Coming to Meet",
"upper_trigram": "乾",
"lower_trigram": "巽",
"binary": "111011",
"judgment": "女壮,勿用取女。",
"image": "天下有风,姤。后以施命诰四方。",
"lines": [
{"position": 1, "type": "六", "text": "系于金柅,贞吉。有攸往,见凶。羸豕孚蹢躅。"},
{"position": 2, "type": "九", "text": "包有鱼,无咎,不利宾。"},
{"position": 3, "type": "九", "text": "臀无肤,其行次且,厉,无大咎。"},
{"position": 4, "type": "九", "text": "包无鱼,起凶。"},
{"position": 5, "type": "九", "text": "以杞包瓜,含章,有陨自天。"},
{"position": 6, "type": "九", "text": "姤其角,吝,无咎。"}
],
"summary_zh": "天下有风,无所不至,喻不期而遇。占得此卦慎防小人乘虚而入,勿用取女指阴气初起需警惕。"
},
{
"number": 45,
"name_zh": "萃",
"pinyin": "Cuì",
"name_en": "Gathering Together",
"upper_trigram": "兑",
"lower_trigram": "坤",
"binary": "110000",
"judgment": "亨。王假有庙。利见大人,亨利贞。用大牲吉,利有攸往。",
"image": "泽上于地,萃。君子以除戎器,戒不虞。",
"lines": [
{"position": 1, "type": "六", "text": "有孚不终,乃乱乃萃。若号,一握为笑。勿恤,往无咎。"},
{"position": 2, "type": "六", "text": "引吉,无咎。孚乃利用禴。"},
{"position": 3, "type": "六", "text": "萃如嗟如,无攸利。往无咎,小吝。"},
{"position": 4, "type": "九", "text": "大吉,无咎。"},
{"position": 5, "type": "九", "text": "萃有位,无咎,匪孚,元永贞,悔亡。"},
{"position": 6, "type": "六", "text": "赍咨涕洟,无咎。"}
],
"summary_zh": "泽上于地,水聚成湖,喻聚集。占得此卦象征人才聚合、力量汇聚,但需防意外。"
},
{
"number": 46,
"name_zh": "升",
"pinyin": "Shēng",
"name_en": "Pushing Upward",
"upper_trigram": "坤",
"lower_trigram": "巽",
"binary": "000011",
"judgment": "元亨。用见大人,勿恤,南征吉。",
"image": "地中生木,升。君子以顺德,积小以高大。",
"lines": [
{"position": 1, "type": "六", "text": "允升,大吉。"},
{"position": 2, "type": "九", "text": "孚乃利用禴,无咎。"},
{"position": 3, "type": "九", "text": "升虚邑。"},
{"position": 4, "type": "六", "text": "王用亨于岐山,吉,无咎。"},
{"position": 5, "type": "六", "text": "贞吉,升阶。"},
{"position": 6, "type": "六", "text": "冥升,利于不息之贞。"}
],
"summary_zh": "地中生木,向上成长,喻上升、晋升。占得此卦象征循序渐进、积小成大。"
},
{
"number": 47,
"name_zh": "困",
"pinyin": "Kùn",
"name_en": "Oppression",
"upper_trigram": "兑",
"lower_trigram": "坎",
"binary": "110010",
"judgment": "亨,贞,大人吉,无咎。有言不信。",
"image": "泽无水,困。君子以致命遂志。",
"lines": [
{"position": 1, "type": "六", "text": "臀困于株木,入于幽谷,三岁不觌。"},
{"position": 2, "type": "九", "text": "困于酒食,朱绂方来,利用享祀。征凶,无咎。"},
{"position": 3, "type": "六", "text": "困于石,据于蒺藜,入于其宫,不见其妻,凶。"},
{"position": 4, "type": "九", "text": "来徐徐,困于金车,吝,有终。"},
{"position": 5, "type": "九", "text": "劓刖,困于赤绂,乃徐有说,利用祭祀。"},
{"position": 6, "type": "六", "text": "困于葛藟,于臲卼。曰动悔,有悔,征吉。"}
],
"summary_zh": "泽中无水,困顿之象。占得此卦多主穷困、压抑,但致命遂志——即便困顿亦不改其志。"
},
{
"number": 48,
"name_zh": "井",
"pinyin": "Jǐng",
"name_en": "The Well",
"upper_trigram": "坎",
"lower_trigram": "巽",
"binary": "010011",
"judgment": "改邑不改井,无丧无得,往来井井。汔至,亦未繘井,羸其瓶,凶。",
"image": "木上有水,井。君子以劳民劝相。",
"lines": [
{"position": 1, "type": "六", "text": "井泥不食,旧井无禽。"},
{"position": 2, "type": "九", "text": "井谷射鲋,瓮敝漏。"},
{"position": 3, "type": "九", "text": "井渫不食,为我心恻。可用汲,王明,并受其福。"},
{"position": 4, "type": "六", "text": "井甃,无咎。"},
{"position": 5, "type": "九", "text": "井冽,寒泉食。"},
{"position": 6, "type": "六", "text": "井收勿幕,有孚元吉。"}
],
"summary_zh": "木上有水,井象之形。井不移而泽人,喻养而不穷之道。占得此卦象征滋养之源,宜保养、利众。"
},
{
"number": 49,
"name_zh": "革",
"pinyin": "Gé",
"name_en": "Revolution",
"upper_trigram": "兑",
"lower_trigram": "离",
"binary": "110101",
"judgment": "己日乃孚。元亨利贞,悔亡。",
"image": "泽中有火,革。君子以治历明时。",
"lines": [
{"position": 1, "type": "九", "text": "巩用黄牛之革。"},
{"position": 2, "type": "六", "text": "己日乃革之,征吉无咎。"},
{"position": 3, "type": "九", "text": "征凶,贞厉。革言三就,有孚。"},
{"position": 4, "type": "九", "text": "悔亡,有孚改命,吉。"},
{"position": 5, "type": "九", "text": "大人虎变,未占有孚。"},
{"position": 6, "type": "六", "text": "君子豹变,小人革面。征凶,居贞吉。"}
],
"summary_zh": "泽中有火,水火相息,喻变革、革命。占得此卦象征大变之时,宜审时而动、信而能成。"
},
{
"number": 50,
"name_zh": "鼎",
"pinyin": "Dǐng",
"name_en": "The Cauldron",
"upper_trigram": "离",
"lower_trigram": "巽",
"binary": "101011",
"judgment": "元吉,亨。",
"image": "木上有火,鼎。君子以正位凝命。",
"lines": [
{"position": 1, "type": "六", "text": "鼎颠趾,利出否。得妾以其子,无咎。"},
{"position": 2, "type": "九", "text": "鼎有实,我仇有疾,不我能即,吉。"},
{"position": 3, "type": "九", "text": "鼎耳革,其行塞,雉膏不食。方雨亏悔,终吉。"},
{"position": 4, "type": "九", "text": "鼎折足,覆公餗,其形渥,凶。"},
{"position": 5, "type": "六", "text": "鼎黄耳金铉,利贞。"},