Mengxin's 2019 Hackergame trip to CUHK

Mengxin's 2019 Hackergame trip to CUHK Sign in problem White and night ~~Cyberpunk ~ ~ information security 2077 The ultimate problem of the uni...

Mengxin's 2019 Hackergame trip to CUHK

Sign in problem

f12, paste the token, remove the disabled = "disabled", and click the button to get the flag.

At the beginning, I didn't read the question carefully. I don't know what token is. I thought that flag would be displayed in token. I worked there for a long time.

(actually, I did the red envelope problem after that, but because of the large amount of work, I put it at the end.)

White and night


Topic stem crazy hint white cat black cat, must be to the picture to do hand and foot!!
Then turn on ps to change the layer, and then:

But in fact, this picture is not well done. When the picture is saved locally, it can be seen a little without processing the flag:

So this question became the most popular one outside the sign in question.

Cyberpunk information security 2077


Enter the webpage and find a picture like this:

At that time, I didn't read the questions carefully, so I went directly to the website and went a lot of wrong ways.
Open f12, search, and do not see the prompt or entry related to flag
Try to fix the rest of the time. It's useless.
Enter the network, refresh the page, check and find the flag.txt
Status code 412 indicates that access conditions are not met

And then I tried to grab the bag. I didn't get anything for a long time.
Then I ran back and read the question carefully. I wanted time to meet the requirements.
The first time I think about it, burp intercepts and modifies the data contract.
Then disrelish trouble, try to change the local time, submit the request, success!

The ultimate problem of the universe

Access terminal:

When I saw the question, I ran to the search engine, and then found the answer under a news article:

Then he gave me a flag and subconsciously copied it with ctrl+c.
But when the terminal detects ctrl+c, it will be close d directly.
Because I was lazy, I didn't do the second question.
(because you have to input the three astronomical figures in the first question again)

Web page reader

Did not carefully analyze the source code, trying to remove the url restrictions, running locally, failed, and finally gave up.

Unusual python exam

Modify the source code so that the program can run locally to try to answer questions
In the end, we only made seven, but failed to meet the conditions to get the flag.

The leaked ginger


Two words don't say, enter webpage!

guest of input experience
Grab a bag

User name and password are not encrypted! Blasting may be considered.
Go back to the topic stem

So search for openlu in github.

Is a django server
Then find the function of password generation in app\management\init.py.

At that time I was confused!!! The password of admin is randomly generated.

So I guess: this password must have some rules. If everyone needs different passwords to log in, then the game will be unfair! (at that time, it was not known that OS. Random() generated almost no duplicate data, besides 1024 bits!!)

However, I haven't found any rules for a long time. I call the function os. Random () locally and find that byte data will be generated.

So I had another idea:
Because the user name and password in the communication process are not encrypted by burp, you can consider using burp to explode.
I just want to let the computer run the data when I go to bed tonight, generate a large number of "passwords" and save them locally, and then use the burp to explode tomorrow!
What a perfect plan!
Even the code has been written:

Of course, there are still problems with this code, so I tried to print the results of os.urandom().
Then I'm all confused!!!!

A password is so long!
Where can I blow it up?!
There must be some other way!
Will the flag be hidden in the source code?
So I went through the code:
Found this in views.py:

@login_required def profile(request): if request.user.username == "admin"": user_profile = "flag redacted. login as admin on server to get flag." else: user_profile = "only admin Users can read flag. " return render(request, 'app/profile.html', { "name": name, "username": request.user, "profile": user_profile })

It's strange.
Display "only admin can read" without user login.
Log in with admin, but only display:
"flag redacted. login as admin on server to get flag."
But we can't find any other flag in the code. Is this the flag?
Tried all kinds of forms and ended in failure

So I guess there may be strange and strange operations after successful login, so I decided to run the server myself.
Download the file and extract it in django's virtual environment:

Then change the code: change the "admin" of the above function to "cjw"

Then switch to the directory folder and create the super user python manage.py createsuperuser
The user name is cjw

After that, you can use Python management.py runserver:

Then log in with my super user:

Did not display flag and so on, because knowledge level is limited, gave up!!
It seems that we still need to learn one

Dalabengba big adventure

The attempt to burp modify the attack power of the sent packet ends in failure

Flag red envelope

It took several days to do this question.

You need to defeat each other

Let me give you my last AI:


This is a general script.
(of course, when I really fight with the AI of the server, I will remove some of them to improve the operation efficiency)

The end result is two versions of AI.

Two versions of the source code are placed at the end of the blog

A winning and losing mechanism has less judgment, but it is efficient and fast. The test can take about 20 idioms per minute, basically not lose, but it takes more rounds to defeat each other (the following is the record of fighting with friends' AI)

Another winning and losing mechanism is more than the former, but the running efficiency is lower, the speed is slow, and basically does not lose. Only about 10 idioms can be received per minute in the test, but it can spend less rounds to defeat the other side.
(the following is the interaction record between this version and my friend's AI. My AI is w. it can be seen that the AI calculation time of this version is longer.)

Unfortunately, we didn't win four times before the end of the game. At that time, the program had bug s and the time was in a hurry.


The question of receiving the red envelope was the first one I did after I finished the check-in question, because at that time, no one got any blood, so I wanted to grab it.

When I first saw this question, the first idea was to induce the other party to answer a top two question until I saw that "the website has nothing to do with the topic"

Change thinking: find an AI to fight with him! So I went online to find AI of the idiom Jielong, which is quite a lot, but the idiom library used is different. (now I think it's better to change the method of data analysis, but at that time, I couldn't even analyze the data, so I gave up using the Internet and decided to write one myself. Now I think it's stupid.)

So I spent an afternoon learning to process json data and write a super original script, which is not AI at this time. This script will only output all the available idioms, that's all.

Then I was inspired by the Internet, and thought that I could search for idioms that could "kill with one stroke", that is to say, "one top two", which I call "perfect idiom".
Therefore:
(early code optimization and simplicity are not good, sorry)
(early code optimization and simplicity are not good, sorry)
(early code optimization and simplicity are not good, sorry)

import json while(1): perfect_idiom = [] yiban_idiom = [] first_input = input("Input initial Pinyin") file = open("1.json","r",encoding="UTF-8") fileJson = json.load(file) for idiom in fileJson.keys(): first_find = fileJson[idiom]["first"]#Take the initial of idiom last_find = fileJson[idiom]["last"]#Take the final word of idiom Pinyin if first_input == first_find:#Check whether the initial Pinyin of idiom is the same as the input Pinyin for key2 in fileJson.keys():#Go through all idioms a = fileJson[key2]["first"]#Pinyin of an idiom to a if last_find == a :#If the final Pinyin of idiom is equal to the initial Pinyin of an idiom yiban_idiom.append(idiom) print("Find common idioms+1\n")#General idioms: can connect one idiom, the next idiom has to connect break else: perfect_idiom.append(idiom) print("Find the perfect idiom+1\n")#Perfect idiom: you can connect one idiom, but not the next else:continue print("complete\n\n") print("Perfect idioms are:\n",perfect_idiom,"\n\n") print("Common idioms are:\n",yiban_idiom,"\n")


This is my first script.
Then I ran happily to fight AI.
It turns out to be a fact:
The other side also knows "perfect idiom", and he will avoid using "perfect idiom".
Crafty!
So I thought: I also have to avoid using perfect idioms, so add a judgment.

if ending Piny in xxxx():

At this time, if we judge through search, it will consume too much resources, so I decided to write another script to run out all the "perfect Idioms" and their initial Pinyin.
(this code is later added with other functions, please don't go into it)

(this code is later added with other functions, please don't go into it)
So after running five minutes of data, I got all the "perfect Idioms" and the first Pinyin of all the perfect idioms.
Then I added a judgment in the code to eliminate the idioms that would let the other party receive the "perfect idiom".
I call it "broken idiom", (the last Pinyin of the broken idiom is equal to the first Pinyin of the perfect idiom), because it will make the other side answer "perfect idiom", so it is called "broken idiom"
The code in the previous figure is actually the code that I want to run all the "flawed Idioms" after running out the relevant data of "perfect Idioms".
Later, it was found that there was no need to judge whether the end of the idiom was equal to the first Pinyin of "perfect idiom":

if fileJson[idiom]["last"] in _perfect_pinyin_head:That's all right.

In this way, we won't answer a flaw in the idiom
Then I had a bad idea:
Can I find some idioms that can only be followed by "flawed Idioms", which I call "induced Idioms" (to induce the other party to answer flawed idioms), so that we can answer "perfect Idioms" to KO the other party
So I wrote another script to find out "induced Idioms":
(early code optimization and simplicity are not good, sorry)
(early code optimization and simplicity are not good, sorry)
(early code optimization and simplicity are not good, sorry)

#coding=utf-8 import json _pozhan_pinyin = ['ke', 'tai', 'ding', 'gang', 'ruo', 'dang', 'xing', 'mi', 'chun', 'bai', 'wei', 'shuai', 'dao', 'lian', 'jue', 'nan', 'tang', 'bei', 'shun', 'yue', 'da', 'ta', 'cong', 'gui', 'yan', 'sha', 'ju', 'diao', 'weng', 'die', 'mian', 'niu', 'man', 'dong', 'huan', 'shou', 'kui', 'chuang', 'yun', 'hun', 'ming', 'si', 'du', 'bo', 'guai', 'hu', 'chao', 'zhun', 'bi', 'luan', 'pen', 'xie', 'ma', 'dou', 'song', 'ri', 'chen', 'xu', 'bing', 'cu', 'ren', 'cen', 'lai', 'jing', 'ran', 'rou', 're', 'ru', 'lie', 'qiong', 'guang', 'lei', 'mo', 'you', 'hui', 'zhuang', 'wan', 'zei', 'pi', 'yong', 'zu', 'zuo', 'hai', 'tuo', 'jia', 'nian', 'la', 'ci', 'peng', 'hang', 'guo', 'sou', 'jiao', 'tui', 'lve', 'kang', 'biao', 'le', 'yu', 'zha', 'mang', 'nu', 'liang', 'duan', 'cheng', 'su', 'zan', 'gu', 'kong', 'deng', 'ting', 'liu', 'tiao', 'geng', 'jiang', 'guan', 'cang', 'ye', 'ba', 'qiao', 'bu', 'bie', 'xun', 'ben', 'qian', 'zeng', 'li', 'fu', 'lang', 'jin', 'gua', 'dun', 'mou', 'nei', 'zong', 'zhou', 'di', 'piao', 'e', 'tie', 'se', 'gao', 'lou', 'cuo', 'rang', 'pin', 'zhuo', 'suo', 'cai', 'en', 'min', 'gen', 'yang', 'a', 'pian', 'ni', 'miao', 'he', 'tu', 'diu', 'hong', 'men', 'teng', 'pei', 'sui', 'chan', 'cun', 'zui', 'chui', 'ban', 'dan', 'qi', 'qiu', 'quan', 'ao', 'yi', 'sang', 'wen', 'zheng', 'zhan', 'tao', 'gai', 'hou', 'lu', 'zhuan', 'dui', 'tong', 'mai', 'xi', 'chou', 'fen', 'bian', 'gan', 'lv', 'shan', 'hua', 'shao', 'duo', 'qing', 'huang', 'qu', 'cui', 'na', 'zhu', 'qia', 'mu', 'cao', 'nong', 'dai', 'qin', 'ti', 'cuan', 'xiong', 'wai', 'chuan', 'gou', 'zi', 'pu', 'qun', 'lao', 'qiang', 'zao', 'can', 'shen', 'zang', 'gong', 'wu', 'shui', 'jiong', 'mei', 'feng', 'leng', 'xiang', 'pou', 'fa', 'bin', 'hao', 'wang', 'cha', 'luo', 'zuan', 'fei', 'zen', 'kuang', 'san', 'miu', 'meng', 'fan', 'yao', 'chuo', 'zhi', 'lin', 'shu', 'zhao', 'kuai', 'she', 'rong', 'zai', 'qie', 'fo', 'neng', 'ping', 'han', 'ang', 'run', 'niao', 'huai', 'sun', 'zou', 'pan', 'zun', 'jian', 'xin', 'pai', 'jie', 'xue', 'kan', 'tuan', 'zhong', 'nai', 'shi', 'mao', 'dian', 'sheng', 'xiao', 'sao', 'zhe', 'chi', 'pang', 'fang', 'huo', 'kuan', 'zhui', 'hei', 'kou', 'de', 'shuo', 'shuang', 'ge', 'xia', 'tan', 'ling', 'ze', 'ai', 'chai', 'ku', 'po', 'bao', 'xian', 'lan', 'xuan', 'an', 'che', 'kai', 'lun', 'long', 'zhang', 'tian', 'liao', 'xiu', 'jun', 'chu', 'ya', 'ou', 'ji', 'heng', 'wa', 'juan', 'chong', 'yuan', 'wo', 'yin', 'shang', 'zhen', 'jiu', 'chang', 'ning', 'er', 'que', 'tun', 'tou', 'ying'] _pozhan_chengyu = ['Not knowing why it is so', 'Be proud of others', 'Read the knowledge', 'An intelligent person', 'Wonderful foresight', 'Tie the baggage and take the journey', 'Celebrate the occasion', 'Dirty money', 'Regard money lightly', 'Natural calamities and man-made misfortunes', 'One must be thorough in exterminating an evil', 'Adopt different methods of study in accordance with the change of seasons', 'The end of life', 'Keep out of the way', 'Abusable', 'Act like a rat', 'Do everything in one's power', 'Left and right', 'The climax of one's affection and friendly feelings', 'Advance courageously', 'Cloud computing begins', 'Day to month', 'Disburse money in public cause', 'Hide everything from others', 'Nothing is capable of exceeding this', 'Award according to contributions', 'Ancient and modern', 'A spent force', 'Bold and unreasonable', 'See you around', 'Single-hearted', 'On every stick of wheat are growing two ears', 'Tiny but valuable', 'Be profligate and devoid of principles', 'Eat one's heart out', 'Perfect storm', 'Seasonal pathogens, exopathogens', 'Greatly', 'Extinguish a fire with oil', 'Quiet', 'Make one last stand before the city wall', 'Sugary love', 'Corrupt and corrupt', 'Talk without speaking', 'Hard to resist', 'Right army habits', 'Pour water into a river', 'Get half the results with double the effort', 'Behave tyrannously without justice', 'Unable to distinguish the genuine from the imitation', 'Inexpressible', 'Bright and clear', 'Absolute disadvantage', 'Being confused and flurried', 'Consistent from beginning to end', 'Delay for a long time', 'Wise emperors', 'Fall sick from overwork', 'Decadent life', 'Timely transit', 'Contribute to charity', 'Die for no reason', 'Suffer from evil', 'The lives of living beings go on without end', 'A wind which chills to the bone', 'Foretell like a prophet', 'Bare', 'Proud of one's poverty', 'Sand and worm', 'The sweet grass and the smelly grass store in the same ware', 'Not to go beyond the limit', 'Listen to each other's voices', 'A big tree strikes roots deeply', 'Dwell in benevolence and righteousness', 'Fried String and string', 'Seven green and eight yellow', 'Put on display different performances', 'Be contrite and reform oneself', 'Dry wings', 'Schemes and intrigues', 'Think of stealing on seeing sb.'s money', 'Scenic Spots and Historical Sites', 'Cross favour', 'Nets above and snares below', 'Wash the stomach and wash the stomach', 'Possible mistake or mishap', 'Suffer disaster', 'Dai Li riding', 'Sacrifice the whole family', 'A symbol of war in ancient China', 'Stretch to the horizon', 'Repeatedly attempt suicide', 'Follow the prescribed order', 'Ten to nine lives', 'Uninterrupted', 'Knowledge is no burden', 'Be penniless and frustrated', 'Know little about it', 'Hide one's troubles and take no remedial measures', 'Severe disease', 'enteroclysis and gastrolavage', 'Bitter feelings', 'Gifted with an extraordinary retentive memory', 'Unknown', 'Mourn over a friend's death', 'There is a great deal of gossips', 'Quiet', 'Lech', 'in deep water and fire', 'The writing mirrors the writer', 'Cups and dishes strewn everywhere', 'Live just for the sake of remaining alive', 'Influential officials', 'Erudite and informed', 'Unexpected trouble', 'Be rash and too much in haste', 'Scanty', 'Fight for death', 'A once-met acquaintance', 'All in all', 'All over the world', 'Lead a befuddled life as if drunk or in a dream', 'Rack one's brains in vain', 'Stop eating cooked food', 'Shaking hands and being banned', 'Sorrily cry', 'A serious chronic ailment', 'Page', 'Have no contact with anyone', 'Fake', 'Dye and dye yellow', 'Nonsense', 'To one's eyes there is no other', 'East suspicion', 'Jittery', 'Come out with words', 'One's eyes brimming with radiating vigour', 'Be strictly upright and correct in one's behaviour', 'Insatiably avaricious', 'Gain victory with unstained Swords', 'New and old', 'Devoid of gratitude', 'Be somewhat on a par with', 'Beam with joy', 'To spare', 'The thief of dogs', 'Have a distinctive flavour', 'Gain victory with unstained Swords', 'Pass away all of a sudden', 'Use the past the present', 'Proceed in an orderly way and step by step', 'Be draped with the imperial yellow robe by one's supporters', 'Be besmeared with blood', 'As one wishes', 'Wall connection', 'Wholeheartedly', 'Gather in little knots', 'Let slip the opportunity of', 'Scheme the whole thing', 'Be unequal to one's task', 'Things go wrong.', 'Dress for no reason', 'First rays of the morning sun', 'Going beyond the limit is as bad as falling short', 'Make light of wealth and love to be righteous', 'With might redoubled', 'Well-balanced lineup', 'Eagle's attention', 'According to circumstances', 'Adopt a wrong method to save a situation and end up by making it worse', 'TASS', 'Cold spring thoughts', 'End to end', 'Lead a fast', 'Qi Xi noon', 'Comprehend the main idea', 'Learn from the Emperor', 'Steal a little leisure from the rush of business', 'Die to preserve one's virtue intact', 'Mutual exchange of needed products', 'A man of distinction always has a poor memory', 'Study with undivided attention; be badly off', 'Carving the liver and carving the kidney', 'From ancient times to the present', 'Clear the air', 'One's bloody mouth', 'Look down upon everybody else', 'Go forward step by step', 'Bring destruction on oneself', 'A soldier without a snow blade', 'To forget about one's own', 'Forget oneself with joy', 'Disburse money in public cause', 'Strive for defeat', 'Exceed others in courage', 'Make a fool of oneself', 'He's power', 'To hold back from taking action against an evildoer for fear of involving good people', 'Analogy', 'Prolonged illness makes the patient be a doctor', 'Strike a deep chord', 'Advance at the double', 'A very clever child', 'Xiong Hu Hu', 'Know the times', 'A wicked and fierce person', 'Cry over spilt milk', 'Be suddenly enlightened', 'Contradictory and confused', 'Rich and talented', 'Perfectly satisfied', 'Carry all before one', 'Use up all one's tricks', 'Deceive the emperor and ignore everybody else', 'Polish painstakingly', 'Groan and moan', 'Mutual expressions of affection', 'Iron master book', 'While I do nothing contrary to my good name', 'One's schemes are poor and his strength is exhausted', 'Find another job', 'Exaggerate', 'Depressed and sick', 'Encourage an evildoer', 'Sing the song and dance', 'Pay no attention to fire', 'Live and die together', 'Take the opportunity to make a living', 'Quiescence', 'Lead a luxurious and dissipated life', 'All have died off', 'Knowledgeable', 'It takes a hundred years to educate the people', 'Severe', 'Different branches', 'Get the opposite of what one wants', 'On Intellectuals', 'Murder and burn', 'Multi skill', 'Adapt oneself to circumstances', 'With no chink in one's armour', 'Defamation destroys a man', 'Money exhausted', 'A lot of people died of hunger', 'Husband and wife by the first marriage', 'Speak one way and think another', 'Dying', 'Do harm to sb. Through the hands of another', 'A thousand pieces of gold', 'Corrupt and illegal', 'Unorthodox ways', 'A blazing prairie fire', 'Have no wife', 'Disburse money in public cause', 'If things go on like this', 'Reluctantly bid farewell', 'No one picks up what's left by the wayside', 'Too late to regret', 'Nan hang Bei Qi', 'Patriotic and loyal to the throne', 'Idle', 'Circumstances alter cases', 'Bone and rib', 'Strange and strange', 'Let bygones be bygones', 'Talk about past and present', 'Cloth tile', 'Small but complete', 'Avoid fire', 'Accept oneself with false intentions', 'Broken strings', 'Sharpen one's knife', 'Extremely evil', 'Every man is in his humor', 'Make one last stand before the city wall', 'Be overcome by one's feelings', 'Faint', 'Be rich and cruel', 'Weakly', 'Earnestly and sincerely', 'Look forward to', 'Unshakable', 'Fabulousness', 'Be unparalleled', 'Circumstances change with the passage of time', 'Make a secret decision', 'Zhu Hui Jin', 'Mettlesome', 'Heart and kidney', 'Fight for the first time', 'To be in one's declining year', 'Change direction', 'Countless ties', 'Take each other as one', 'Life in big city is diffricult', 'Accomplish the very opposite', 'Hand in hand', 'Behave correctly and cautiously', 'Mettlesome', 'With murderous intent behind one's smiles', 'Be just like a fire', 'Go to great extremes', 'Park Dance', 'Have two minds', 'Love me, love my dog', 'Deliver the goods', 'Completely not heard from', 'Self restraint', 'Deep sorrow', 'It is often seen', 'Lively and vigorous flourishes in calligraphy', 'No restrictions of any kind', 'Be afire with impatience', 'Against the enemy', 'Differ from man to man', 'Versatile', 'Ice mountain is easy to fall.', 'Noble and righteous', 'Have no eye for', 'Sacrifice life', 'Powerful and sad', 'Prevailing weather', 'Good liquor of Yang Gao -- a kind of good wine', 'Think in a subtle way', 'Ancient and modern', 'Remember as long as one lives', 'Dreadfully anxious', 'Balefire rises from all directions', 'Rise and fall', 'Set up a new banner', 'Cloud net', 'Postscript', 'No one picks up what's left by the wayside', 'Sweat and salt', 'Talk nonsense', 'Thrice kneeling and nine times bowing', 'Grasp clouds and bring mist', 'Slight friendship', 'Talents in reserve', 'Be taken by surprise', 'A beautiful person', 'Only a skin complaint', 'Not to the point', 'Greatly discerning and apprehending', 'Bury the hatchet', 'Be carried away into a region of dreams', 'Release a tiger to protect oneself -- to bring trouble on oneself while attempting to avoid it with other means', 'Rack one's brains', 'Talk in a wild disorderly manner', 'Lose one's talent', 'Be modest and prudent', 'Calm', 'Adopt an original approach', 'Feel shame before heaven and fellow human beings', 'Draw parallels from history', 'Fear slanderous talks', 'Through and through', 'Have used up one's literary talent at all', 'With hidden diseases', 'Catch all in one draft', 'Further development of red Majors', 'Answer back sarcastically', 'Friendly', 'Surge of electricity', 'Reward and reward', 'Nod understandingly', 'lower one's aspirations and denigrate oneself', 'The drunken singing and the usual dancing', 'Give a hand to others', 'Ask for trouble', 'East to West', 'Long Qu snake', 'Toil first and then enjoy the fruits', 'Weal and woe', 'Daily increasing and monthly benefiting', 'Dance in hand', 'unorthodox ways', 'Desperate', 'Eyes full of eyes', 'It is now too late to repent', 'One level and half level', 'Win favor with others', 'Do the right thing at the right time', 'Borrowing power to do evil', 'Isolated and pure', 'Be treacherous', 'horizontal writing', 'No worm', 'A spider's thread', 'Honest and sincere', 'Break hair and tatoo', 'Of vital importance', 'As expected', 'All threads neatly tied up', 'Trap', 'East Arrow gold', 'The sweet grass and the smelly grass store in the same ware', 'Forget all about', 'Bohemian', 'Outstanding achievements', 'Resist walls and resist aggression', 'Shu Ma County car', 'Homicide by quackery', 'Four songs of Chu', 'Draw on the wisdom of masses', 'Shift the blame on others', 'Irregular', 'Pride and loss', 'Naturally or half unconsciously', 'Eliminate doubt and confusion', 'Far beyond one's reach', 'In peril', 'Table delicacies from land and sea', 'White rabbit and black bone', 'Have one's heart in the right place', 'Disappear', 'Blow on an instrument or finger a stringed instrument', 'Changing string and string', 'Fall far behind', 'Money runs out', 'A fundamental task crucial for generations to come', 'Take advantage of another's perilous state', 'Treasure 100 million goods', 'Cautious and cautious', 'Be worldly-wise and play safe', 'River and sea', 'Stolen goods', 'Lose self-control', 'Dull language', 'look up to the past and look down on the present', 'Negative virtue', 'Ink and tear', 'Fragrant wheel', 'The gang of Ministers', 'Elaborate', 'Holy Lord's clothes', 'Ask for help', 'Untrammeled and romantic in character', 'repel foreign aggression', 'Bold and vigorous', 'Urgent needs', 'Depressed and depressed', 'Silence and silence', 'Be full of worries', 'Till my heart is weary, and my head aches', 'Great and distant', 'Make no reply', 'Golden tongue', 'Full of wit', 'Scramble for', 'Great joy among the people', 'Auspicious sign', 'Hairless insect', 'Easy to pronounce', 'Talented and talented', 'Straight talks invite disaster', 'Intestinal worm', 'Beautiful', 'Pace up and down', 'Sacrifice oneself to others', 'Sword making', 'Snake heart and Buddha's mouth', 'Frightened', 'Narrow the gap', 'Women in the neighborhood', 'Seize the opportunity', 'Draw water from a deep well with a short rope', 'Do a job made easy by outside help', 'Dirty and dirty', 'All in all', 'Plutocratic family', 'Lay more stress on the past than on the present', 'Wine, women, avarice and pride -- the four cardinal vices', 'Selfless', 'People are hurrying to and fro', 'Familiar with others', 'Treatment chosen according to the variability of an individual', 'Make a living', 'Make slanderous charges at sb', 'A fool to the third degree', 'Many words and strong intentions', 'An accident', 'Insight and insight', 'Mutual assistance', 'With high morale', 'Prone', 'Dull', 'With one heart and one mind', 'From home to home', 'Deceive oneself', 'Penetrating evil', 'Cliffide flower', 'Seize the gold together', 'One getting old like the Pearl becoming yellow', 'Non false words', 'Uninhibited', 'One should not pursue pleasure to its extreme', 'Find no fault in examining one's heart', 'Prevent divulgence of one's Secrets', 'Be destroyed', 'Human hearts are evil', 'Suddenly have a brain wave', 'Be nonchalant', 'sting sb. with sarcastic remarks', 'Be all at sea', 'Justice and justice', 'Act recklessly and blindly', 'Five noble souls', 'It's politic to leave', 'It is also a step forward.', 'Bemoan the state of the universe and pity the fate of mankind', 'Hanging rivers and setting fire', 'Rely on one's position to treat others with contumely and injustice', 'Carved balustrades and marble steps', 'Teach others a knack of the trade', 'Stately manner of the Han official', 'Appoint people by merit', 'Escape from the world', 'The continuation is only held by a silken thread', 'Do many things at once', 'Hold up one's head high and advance by long strides', 'Deal with a host of problems every day', 'Toleration is precious', 'Retreat like a mountain', 'Absolutely fair', 'Commit the most heinous crimes', 'Beyond doubt', 'Seek personal details', 'Shake the head and wag', 'A phoenix comes with grace to rest', 'Traces', 'Inexhaustible', 'Helpless', 'Be passionately devoted', 'Domestic trouble and foreign invasion', 'Be beyond all doubt', 'An imminent disaster', 'Sing one's own praises', 'Broken bits and pieces', 'Fox and dog', 'Pretend to be a tiger', 'Host', 'a responsible government position which carries considerable authority', 'Fight against fire', 'Hate to leave a place where one has lived long', 'Court disaster', 'Have wide learning and a retentive memory', 'Fox and evil', 'Be well read and learned', 'Distant wisdom', 'Rely on one another as cheek and jowl', 'See what can be done', 'Yi Shen Yang Qi', 'Inseparable', 'Fortune first brings disaster.', 'Outstanding talents', 'Be eccentric', 'Signing and dancing', 'Stunner', 'Evil words', 'Broken pipes', 'Profound and long-term vision', 'Congenial', 'Reward according to sb.'s deserts', 'Disaster', 'Half forgotten', 'Collapse of the earth', 'Ruling a great nation just like cooking a small delicacy', 'Pick and choose', 'Remain intact', 'And that', 'Motley crowd', 'Go by like the wind', 'Talk nonsense', 'Be off to distant places', 'Dance for joy', 'Nowhere to be seen', 'Little bend over', 'Witness the truth', 'Great crafts and heavy weights', 'Salt and honey', 'Play off one power against another', 'Indulge in elaborating on', 'Favour with kindness', 'Look around', 'Peace and danger convert mutually', 'Tearful', 'Deep concentration', 'Hard labor', 'A single thread can't make a cord', 'There are too many things for the eye to take in', 'Trail and trail', 'Modest and beneficial', 'Do boldly what is righteous', 'Act in a just and generous manner', 'Honest and fair', 'Critically ill with a weak breath', 'Dressed in style', 'Commit all sorts', 'Injection of muscle', 'Drunk', 'Brace up', 'Prosperous scene', 'Tone sound', 'Generous outside but jealous inside', 'Violate rules and overstep all bounds', 'Be made one', 'Speak in a seductive tone', 'Memorial to the Emperor', 'Stage a comeback', 'Traces left by chariot and horse', 'Public clamor can melt metals', 'Wine exchange', 'Blow on an instrument or finger a stringed instrument', 'Sweat and clothing', 'Sell a knife', 'Decadent life', 'Be of two about', 'Be by nature unconventional and straight forward', 'Get disheartened', 'Sing merrily and dance gracefully', 'Take the words too literally', 'GetWord', 'Win high praise from anyone who sees it', 'Be able to perform wonders', 'Brilliantly illuminated', 'Dragon's bone', 'Yellow soap', 'Pressing danger', 'Tricks not to be feared', 'Many thoughts crowded in upon sb', 'Go on for long', 'Absolute disadvantage', 'Expert in making money', 'Catch the sword', 'Elbow walking', 'Trace the details', 'Be prepared for danger in times of peace', 'Patiently attend to a grave problem', 'More and more', 'Have a clear tongue', 'Have no sense of gratitude and justice', 'Voices of discontent', 'Act on one's own way', 'Filial obedience', 'Dirty and dirty', 'Form a clique for selfish purposes', 'From top to bottom', 'Opportunity', 'Peril Point', 'Flourishing', 'Secret going-on', 'Crane and its wife', 'Beg for a ride', 'Zuo Jian Wai Yi', 'Selfless', 'A dragon's head and a snake's tail', 'Promote one's private interests under the guise of serving the public', 'Reference to a fight among brothers', 'Tears and snivel fall down at the same time', 'Low sentiment', 'Earnestly and sincerely', 'Have a brilliant future', 'Cause a temporary clamour', 'Energetic', 'Faint and subtle', 'Teach untiringly', 'Earthshaking', 'Lay more stress on the past than on the present', 'Mettlesome', 'Be inopportune or inappropriate', 'Straight ahead', 'Behave recklessly', 'Money can move the gods', 'Numerous difficulties and doubts', 'A flying moth darts into the fire', 'A secret room', 'Ask others for help', 'Hopeless situation', 'Fenghuang instrument', 'In heroic manner', 'Climb up the wings', 'Full of affection', 'Dishes and wine cups from dinner were piled up at random', 'Cat Parrot', 'Exploration and exploration', 'Rain cloud date', 'Light death and justice', 'Halt the troops and wait', 'Small beautiful ladies', 'Poikilotherm', 'Unhealthy tendencies', 'Strange and eccentric', 'Follow suit', 'Act in disorder', 'Remain in one's proper sphere', 'Adopt good advice from all quarters', 'Helplessly', 'Lip stick', 'Banners in perfect order', 'Cover all at one glance', 'Despair gives courage to a coward', 'Bright and sunny', 'Put it away unheeded', 'Search for kidney and stomach', 'Hidden wings', 'Poor and happy', 'Heavy money and light righteousness', 'Swallow the rainbow', 'Accuse an innocent person of theft', 'Rain and rain', 'Dead friends', 'Innumerable', 'Gathering clouds and rolling mists', 'Gaze far into the distance', 'Mutual complementary', 'Choose one's place', 'Shan is in the net.', 'Engaging one to hold the "knife" -- employ a person to write an essay in one's name', 'Full without flowing over', 'COINTELPRO tactics', 'A budding beauty', 'Be modest and prudent', 'Neglect the meaning of the plan', 'Be nothing wonderful', 'Unnecessary disaster', 'Serve parents while living and give proper burial after death', 'A fierce attack', 'End to end', 'The way one gets along with people', 'Of a mansion', 'Keep up the fire', 'Catch me now', 'Save trouble', 'Clouds and scales', 'Seek safety in flight', 'Will never forget to the end of one's days', 'Sit back and remember', 'Order of priority', 'Cherish an old broom as if it were a thousand pieces of gold', 'Spring scenery provokes people's interest', 'A galaxy of talents', 'To talk about', 'Almost in sight', 'Accumulate little by little', 'The Arab League is defeated.', 'Limited outlook', 'Go all the way', 'Town talk of the streets', 'Master in a hurry', 'Launch out', 'Keep calm', 'There is no analogy.', 'Drop one's guard', 'Rhetoric', 'Have meal with only one dish', 'A way of keeping good health', 'Not a single word is replaced', 'Tree as house', 'Honor the aged and the wise', 'Meet each other with mutual respect', 'Achieve success and win recognition', 'Wait and see', 'Be good both in civil and in military affairs', 'Be all at sevens and eights', 'Abide by justice', 'Change humanity by man-made', 'The doings', 'Death of a friend', 'Talk about past and present', 'Cite past and prove today', 'Worrying about public affairs', 'No matter what the world is doing', 'Be the same in appearance but different essentially', 'Nothing to be feared', 'Rabbit's wings', 'Unexpected disaster', 'Cruel', 'Whoppers', 'Good and kind', 'The wind hits the ground.', 'Supreme', 'Solitary', 'Very clear-sighted', 'Back to life', 'Float upon the clouds', 'Be proud and upright', 'Thoroughly read and deeply think', 'Do the right thing at the right time', 'Help each other in case of need', 'Time passed by and life changed', 'Not knowing what to do', 'Food and clothing', 'Poor but with lofty', 'Be helpless and in the greatest Straits', 'Break off both ends', 'Exhausted', 'Stroll about and start dancing', 'Act like a fool', 'Transport of gold', 'Take to one's bed and never leave it again', 'Else', 'Squat on the grass and chat of old times', 'Award according to contributions', 'A mantis trying to stop a chariot', 'Flee from evil and strive to walk in fair fortune's way', 'Zeng Shen has killed a person', 'Bring misery oneself', 'Covered all over with cuts and bruises', 'A farewell to arms', 'Do a thing hurriedly at the last moment', 'The real intention is revealed in the end', 'Put public interests before private ones', 'Miraculous', 'Immensely proud', 'Close contest', 'Flat and uninteresting', 'The rainbow clouds like brocade spread', 'To take the easy way', 'Feast on', 'Joy and inspiration', 'Speak one's mind', 'Coarse food and coarse clothing', 'Time is precious', 'Make a fool of oneself', 'Lose somebody', 'Peaceful and mild steps -- walking slowly', 'Hide one's capacities and hide one's time', 'Be of great advantage', 'Negligence makes dangers', 'Decide on awards on the basis of merit', 'Sit and prattle about the general principle', 'Golden tongue', 'Love each other dearly', 'Retrospective Committee', 'Talk rubbish', 'Be fed up', 'Even once is too amny', 'Method of health care', 'Wind and light', 'Have wide learning and a retentive memory', 'Rectify others and forget oneself', 'Uphold the rule of law', 'Obsessed with mistakes', 'Old friends are not to be neglected', 'Ready to do sth', 'Avoid leaning to either side', 'acclaim as the acme or perfection', 'Death of a friend', 'Freely', 'Be', 'A little gift for comfort is better than nothing', 'Deal with a host of problems every day', 'Be satisfied with', 'See where to go', 'Burn the bridge after crossing it', 'Try hard to', 'Indulge in malpractices and obtain private advantages', 'Not to care whether live or die', 'Be honest and upright', 'Three suggestions', 'Regardless of one's own safety', 'Feel exalted', 'Take good care of others', 'River mouth', 'Sow the seeds of discord everywhere', 'A cloud of hope', 'Migration', 'Talk about everything', 'A fine literary style', 'End of year', 'Submit oneself to sb.'s whims and fancies', 'Pretend to be ignorant', 'Eaves and ridge', 'Sweet tongue', 'Strange and strange', 'Narrow winding trail', 'New and old', 'Incompatible as fire and water', 'Release a tiger to protect oneself -- to bring trouble on oneself while attempting to avoid it with other means', 'All sounds are still', 'Golden Phoenix', 'Suit the needs of others', 'Lumpish', 'Schedule day', 'Jump to', 'Cheap people', 'Cry like a ghost', 'Cite past and prove today', 'Deathbed', 'Everything', 'Emotional body', '* shoulder fighting wine', 'E soup', 'A thousand li's duty', 'Become independent', 'Protagonist', 'Go to great extremes', 'Singing and dancing', 'Benefit other people as well as oneself1. Benefit other people as well as oneself', 'Ancient customs', 'Fast car', 'In groups', 'Very different people', 'Talk like a horse', 'Stir fried chicken and rice wine', 'It is too late to repent', 'Have loose bowels', 'Hang on to wounds', 'Commit suicide', 'Accomplish at one stroke', 'Scorcher', 'All in shape', 'Newly arrived', 'Look at what is known', 'Strengthen the dead and strengthen the living', 'Enjoy the popularity of the population', 'encroach upon reputation and offend justice', 'Suspense', 'Rain clouds and clouds', 'Shelter evil people and countenance evil practices', 'Unappropriate', 'Act as a go-between', 'Valuable things passed on from the past', 'Store up goods to make a good bargain', 'Glib', 'Negligence makes dangers', 'Far away and not within the foreseeable future', 'unnecessary repetition', 'Have no choice but to', 'Careful in speech', 'hoodwink', 'Dig for the worm', 'Voices of discontent', 'Accumulation of small amounts of money', 'Crisscross streets', 'Up here, down there', 'Method of health care', 'Hide and trace', 'Advance despite difficulties', 'Extremely poor', 'Have gained nothing', 'Fail completely', 'Bag characters', 'Do boldly what is righteous', 'Mu Ren Yu Yi', 'Remove those who disagree with sb.', 'Attack from various directions', 'Waste all the previous efforts', 'Honor the teacher and respect his teaching', 'Bubbling with noise', 'Make every attempt', 'Notorious', 'Be not worth getting an education', 'A snake in a cart', 'A disease of birth', 'With spots of tears and blood', 'Very little', 'Reappear', 'Talk a lot about the past', 'Give up', 'Strive for victory', 'Be absorbed in dissipation', 'The sea does not overflow.', 'Treat Spleen and kidney', 'Tao Taowuwu', 'Yu Hao Hao', 'Soap thread', 'Peaceful and mild steps -- walking slowly', 'Inviting', 'Go back to ancient times', 'Be not at all surprising', 'Smoke heavily', 'Seize the opportunity', 'People will talk', 'Win people by virtue', 'Refuse to realize one's error', 'Know the truth', 'Horse head desire East', 'Bosom friends', 'Practice singing all the time', 'After a long lapse of time', 'Red tape', 'Small in number and weak in strength', 'Be afraid of evil', 'Gorgeous spring scenery', 'A remarkable work should be enjoyed together', 'Idle about', 'Dress breaker', 'Be a tiger with wings added', 'The footprints leading to a certain point and from these onwards the traces left behind', 'Amazing', 'Regard one's ink as if it were gold -- one will not easily paint', 'That's going too far', 'To encourage the talented will be rewarded manifold', 'Pioneer ant', 'Judge people by outward appearance', 'Delay for a long time', 'Three to five', 'One's worth may be one's own ruin', 'Utilize the contradiction between foreign countries and suppress them', 'Smoothly', 'Favorite Chinese Instrumentals', 'Drag in all sorts of irrelevant matters', 'For public and private interests', 'Amicable', 'Thin wings', 'Street gossip', 'Golden Martin liquor', 'H. C.', 'The three things to use in reading a book -- the eye, the mouth, and the mind', 'Mean nothing', 'A middle course', 'No one picks up what's left by the wayside', 'Commit crimes', 'Black and white', 'Behave correctly and cautiously', 'Material aspect of things', 'In a low, muffled voice', 'Upright', 'Walk in the way of a duck', 'Words cannot express all one intends to say', 'Unwilling to fall behind others', 'Old and brave', 'Long and thin skills', 'Comprehensive study', 'Large city', 'Steer a steady course', 'Put things right once and for all', 'Wealthy, beautiful, grand, splendid and imposing', 'If you want to paint a picture', 'Flames of battle raging everywhere', 'Have all sorts of doubts and conjectures in one's mind', 'Cherish the arms and arms', 'Not worth mentioning', 'Circumstances alter cases', 'Xiao Qu Da Shen', 'Like a hundred', 'Pressing', 'In high aspirations', 'Recover the lost territory', 'Easier said than done', 'Numbers in sequence of brothers', 'Heat intense enough to melt stone and metals', 'Commence business, now developed into a grand scale but with hardly anything to start with', 'No head and no tail', 'To be one's bosom friend who is actually not', 'Blood pollution', 'Too late for regrets', 'Outlast even the heaven and the earth', 'Learned', 'Disease of dogs and horses', 'Be forgotten', 'East and West are wrong', 'Know yourself as well as the enemy', 'Quiet and quiet', 'Lucky purple', 'A deed is accomplished through taking thought', 'Abandon oneself to hunger', 'Very poor', 'Handle a crisis without difficulty', 'Carving the heart and carving the kidney', 'Nothing can be achieved.', 'Play the role', 'Ke Wei Wei', 'Keep on good terms', 'Hold on to one's wrong belief till death', 'Take to one's bosom', 'Fatal disaster', 'Kowtow quickly', 'The joys of spring', 'Face high', 'Kawasawa Na', 'One who has a promising future', 'Delicate and touching', 'Red and green', 'How can you bear it in your heart', 'Laissez-faire', 'Happy ending without happy beginning', 'A new force suddenly rises', 'Be beyond one's capacity one's depth', 'Throw up one's sleeves and rise', 'Brothers at loggerheads', 'Went through channels', 'Mourn over a friend's death', 'Act with undue haste', 'Ba Ba urgent', 'Yang Zhuqiqi', 'Let else do the work', 'High altitude', 'All kinds of cars', 'A traitor through the ages', 'Summer heat', 'Survive forever', 'Gold in the sand', 'Lose mental control', 'See segment of a whole', 'Win the people's confidence', 'Be ugly and ill at ease', 'Huge monster', 'There is no limit to lust and covetousness', 'Be inopportune or inappropriate', 'Military forces can use insidious tactics', 'A dry faggot on a blazing fire', 'Break the golden rule', 'Frog frog', 'Do one's utmost to hold one's own opinion against that of the majority', 'Beyond doubt', 'Be on the beach', 'As soon as the sun reaches the meridian it declines', 'Beautiful girls', 'In deep sorrow', 'flags and emblems of a high official', 'Corrupt bribery', 'Be in danger', 'Over tones', 'Time after time', 'Humble', 'Cover two days journey in one day', 'Give away the secrets of heaven', 'This past', 'The imaginative power in writing has declined', 'Dance with joy', 'Rescue doctors and doctors', 'Stir up fire', 'Act like a fish', 'Blow up bamboo and silk', 'Postscript', 'Have two faces', 'Have no sense of gratitude and justice', 'Win the battle', 'Said of prisoners', 'Stir up fire and catch fire', 'Deceive God and man', 'Pick three tests four', 'Be a fool for one's pains', 'Yun Hai Hai Si', 'Follow suit', 'Walk with majestic steps', 'Take to the bush', 'Attend all the housework personally', 'Blood man', 'An author with many works to his credit', 'Talent and talent', 'Steal what is entrusted to one's care', 'Dare to do everything', 'Come to an end', 'Do many things at once', 'From first to last', 'Brothers and sisters', 'Fei Wenrenwu', 'Engage in private activities', 'Gang up for selfish one's own selfish interests', 'Lack virtue and ability', 'Hand in hand', 'Be equal to one's rest', 'Even bargain', 'Pleasing to ears and eyes', 'Latecomers become the first', 'Nai Wennaiwu', 'With a secret arrow', 'Cautious', 'Weaving and weaving', 'Clothing', 'Death of mountains and stones', 'To convey meaning', 'Eat jade', 'Consider the past', 'At the same time', 'Fantastic', 'Muster one's courage and fight in the vanguard', 'As vast as the boundless heavens', 'Act according to one's capability', 'Study deeply', 'Offend by rude remarks', 'A neat desk before a bright window', 'Gorgeously wrought -- colourfully and dazzlingly embellished', 'Insignificant skill', 'Soul-stirring', 'Be placed in jeopardy', 'Remain mute as if one's mouth were sealed', 'Family and family', 'A great master', 'Enduring as the universe', 'Make excuses and put obstacles in the way', 'Appoint people on their merit', 'Faithfulness', 'A fine literary style', 'Self-expression', 'Victims', 'Cross-bench mind', 'East and West', 'Live in sin', 'Feel excited', 'Like water and fire', 'Be independent', 'The southern mountain might be moved off', 'Understanding', 'Douglas Jiang', 'My ability is unequal to the given task, for you cannot use a short rope to draw water from a deep weel', 'Do things in a wrong way', 'Mend his ways to save him', 'Be backward and have no urge to make progress', 'Author with many works to his credit', 'Well established and irrefutable', 'Neck and neck crane', 'Be rich and varied as rosy clouds are rising slowly', 'Read and write', 'From generation to generation', 'Buddha's heart and snake's mouth', 'Well established and irrefutable', 'Take bribes insatiably', 'A band of criminals', 'Joy mingled with surprise', 'Reason and meaning', 'Feel at ease', 'Confused', 'Monk', 'Agree with sb. About everything', 'Old but deadless', 'Various deductions', 'Clear and bright', 'Inky clouds filled the sky', 'Glistening', 'All over the river', 'Benefit by mutual discussion', 'An old cow pulling a rickety cart', 'Fall because of internal strife', 'Cross the line', 'Muddle-headed', 'Sow the seeds of discord everywhere', 'Reversal of the order of host and guest', 'Greatly disappointed', 'Don a pious mask', 'A fiend in human shape', 'Be too late to repent', 'Turn a tiger into a tiger', 'Very learned', 'Gain mastery by striking only after the enemy has struck', 'Brilliant prospects', 'Hot old road', 'White Embroidery', 'Understand thoroughly the truth of all things on earth and handle affairs successfully accordingly', 'Heavy and heavy', 'Profound friendship', 'Recoil in order to extend', 'Honour the teacher and respect his teaching', 'Be angry with others', 'Take pleasure in other people's misfortune', 'Escape from the net', 'Sentimental', 'Seven injuries and eight injuries', 'Do boldly what is righteous', 'Being in a humble position, one's word spoken will not carry much weight', 'Useless skill', 'Unsuspectingly', 'Jostle each other', 'Demons and monsters danced like mad', 'throw one's weight around', 'Self similarity', 'Appoint people on their merit', 'From ruin', 'Have little food to eat', 'Put things right once and for all', 'Be passionately devoted', 'Without conviction', 'Not completely understand', 'From a to Z', 'Follow the mandate of heaven and comply with the popular wishes of the people', 'Honour the past and destroy the present', 'Deep thinking', 'Huang Zhong destroyed', 'Yu Xia Qi Qi', 'The country governed by a young monarch is unstable', 'Hard-earned', 'Innumerable', 'Lay the blame on others', 'Follow the beaten track', 'Almost dead', 'Lovingly pathetic', 'Make up for', 'More moneys on exhibit and less moneys on counterfoil', 'Family ruined', 'Jing Zhao Mei Mei', 'Not to be saved', 'Slip over nothing whether big or small', 'Of men shouting and horses neighing', 'Be insatiable', 'Just as one wishes', 'Golden Jade', 'Martial arts and martial arts', 'Written polemics', 'Return to the countryside', 'Tao Ge Wu Wu', 'Unparalleledly wonderful in one's time', 'Not to turn a hair', 'A passion like fierce fire', 'Speak in an evasive manner', 'As pressing danger', 'Behave unscrupulously', 'Have a glib', 'Remarkable', 'Open ended pole', 'East and West', 'Obtain gold by washing it from sand and gravel', 'Harm others to benefit oneself', 'Affluent', 'Completely different', 'Happy and satisfied', 'Sacrifice oneself to protect others', 'Help the one in need', 'Thick as fog or as clouds', 'Overbearing', 'Borrowing power to do evil', 'Army and panic', 'Neither the old nor the young will be cheated', 'Food and clothing', 'Be able to perform wonders', 'Be overcautious', 'Dress like a barbarian', 'Rich and varied', 'Extremely pressing', 'Idle away one's errors', 'Similarities and differences', 'Be forgotten', 'Know one's subordinates well enough to assign them jobs commensurate with their abilities', 'Return to one's home', 'An even highway', 'A snipe and a clam locked in a fight', 'Uneasy', 'Grogginess', 'In deep distress', 'Hard-earned', 'Act according to God's will and the desire of the people', 'Sad and sad', 'Hong Xiang Lu Qi', 'Pull and push', 'Dubious', 'Implication', 'A sense of honor', 'Float upon the clouds', 'Bold and vehement language', 'Seek advice from others', 'Talents and talents', 'Have ample food and clothing', 'Love all the people and animals', 'One step back today for two steps forward tomorrow', 'This election campaign has seen all the usual mud-slinging we have come to expect. / there has been a lot of political mudslinging in the battle for votes', 'Follow Wu Xian Xian', 'Up one's sleeve', 'Dangerous war', 'Be carried away into a region of dreams', 'Poles and heads', 'Blame everyone and everything but not oneself', 'Novel tactics', 'Pick and choose', 'Make a spurt of progress', 'Flowers blooming like a piece of brocade', 'In a dilemma', 'Building high house', 'Liu Yan Jin', 'Exhaust all resources to build up one's military power', 'Show great concern for the poor and ill', 'Unchangeable', 'Fly and gather', 'Bureaucrats shield one another', 'Misfortune might be a blessing disguise', 'Comfort', 'Show appreciation by beating time with one's hand', 'Unforeseen disaster', 'Be guilty of dereliction or serious violation of law', 'Decline with all sorts of excuses', 'Kill a horse and destroy a car', 'It is too late to repent', 'The crown of the web', 'Be uneven', 'Humble', 'Go by like the wind', 'Birds and dogs', 'In doubt', 'antiquities', 'Strike a bullet', 'Serve in a dual capacity', 'Alternate between joy and grief', 'Fall far behind', 'To be falsely taking part in the discussions', 'Strange and strange', 'Be bereaved of one's wife', 'Make an unfounded attack upon sb.', 'Tyranny of government', 'Admit of no doubt', 'Public talents and public hopes', 'Be broken by care', 'Give in case', 'Tax one's ingenuity', 'Fantastic and absurd', 'Act without danger', 'Devoid of gratitude', 'Carefully conceal mentioning', 'Die for oneself', 'Speak in person', 'Hungry', 'Stretch as far as eye can see', 'Two confused', 'Gain justice', 'One's mind concealed more knowledge than could have been contained in five cartloads of books', 'Wood drying birds', 'Authority and respect', 'While pondering its meaning', 'Open heart', 'Hide and seek', 'A way of earning money', 'Leak away', 'Three to five', 'Old acquaintances and new customers received alike by the shopmen', 'Start off and finish', 'Of men shouting and horses neighing', 'Six minds', 'The handiwork remains though the maker's gone', 'Lotus leaves and flowers', 'Be terrified by the sight of sb. Or sth.', 'Save the country and its people', 'Hide one's capacities and hide one's time', 'A gathering of dignitaries', 'A rapier thrust', 'Be just and stern', 'To play petty tricks on the sly', 'To pull strings', 'Put one's whole heart into', 'Parallel branches and wings', 'Miss this and that', 'Boundless', 'Evil and evil', 'Skiied at shooting an arrow', 'False display of affection', 'Swarm of ant', 'Shi Igo', 'Busy and eager', 'Rise to one's full height and smite the table', 'Critically-acclaimed', 'Three to nine', 'Have an uninterrupted career of advancement', 'Fire from the nose', 'Hidden wings', 'Always persist firmly in', 'Wipe out fire', 'Mount Chung', 'Soft and soft', 'Yao goes smoothly.', 'Break hair and tatoo', 'Out of one's pocket', 'Bold and vehement language', 'Broad and profound', 'Marry chicken and chicken', 'Be too late for regrets and Lamentations', 'Narrate anecdotes of the past in alluding to the present', 'Rely on the sword', 'Everything is fine', 'All in one's voice', 'Become an immortal', 'Idle about', 'Delay for a long time', 'Wen Si doesn't move.', 'Amazing', 'Quote phrases to confound the eternal principles of rectitude', 'Dream of falling asleep', 'Talk rubbish', 'Hit the nail on the head', 'Drag in all sorts of irrelevant matters', 'Come into force', 'There is nothing precious', 'Over a long period of time', 'Transform corruption into wonder', 'Judge people by words', 'Make up for danger', 'The younger generation will surpass the older', 'Homesick', 'A slow remedy cannot meet an urgency', 'Enduring as the universe', 'Not constant in love', 'A narrow escape from death', 'There is an exchange of calls', 'The vicissitudes of fortune', 'Palpable lies', 'Green clouds go one step at a time', 'True gold does not fear fire', 'Age-old', 'Sybaritic lifestyle', 'Drive straight ahead', 'As unalterable principles', 'Numerous difficulties and dangers', 'Congenial', 'See egg chicken', 'Disappear', 'Work miracles in manoeuvring troops', 'Suddenly enlightened', 'Say all you know and say it without reserve', 'Drag hard', 'Treacherous', 'Ready to stand out for justice', 'Dead voice', 'Be in a half-and-half state of belief and doubt', 'Fear no death', 'Whatever one wishes to say, his pen follows', 'Share the same interests', 'Reform and change', 'Do everything in one's power', 'Have a deep mind', 'Sumptuous food and luxurious clothings', 'The rosy clouds are slowly rising', 'Poor house', 'For a long time', 'Si on Yang house', 'Dull', 'His name is enough to strike terror in people's hearts', 'Horse doctor', 'Theft and theft', 'Be profuse in praise', 'At the mouth of the river', 'Split down', 'Take to one's bosom', 'Lay down one's life for justice', 'Hesitate to wait and see', 'Greatly discerning and apprehending', 'All was quiet with no one about', 'Selfless', 'The suspicion of being in the melon field and under the plum tree', 'Talk frivolously', 'Keep preceding promise in mind', 'The pot is boiling.', 'In a flurry of excitement, he flapped his sleeves and rose', 'Be modest', 'Be ablaze with anger', 'The vigor of a dragon or horse', 'The summer rain soothes people -- a timely help to the masses', 'It takes a hundred years to educate the people', 'Countless', 'Numerous native place', 'Heaven would not fail a man', 'A book that is shut is but a block', 'Nothing to do with it', 'Recreational activities', 'The members of one's family are partly dispersed and partly dead', 'Pillow fight', 'Huan Xin inspires', 'Xie Jia's work', 'Bow and hold breath', 'Adapt to circumstances', 'Fragrance car', 'All the stars twinkled around the bright moon', 'Wonderful is one's Art', 'Rise up on hearing the news', 'Warning signals of approaching enemy forces are seen on all sides', 'Tide and sincerity', 'Discard the classics and rebel against orthodoxy', 'Dragon dance and phoenix dance', 'Know and hide', 'Half new', 'Deal a frontal attack', 'A richly ornamented building', 'Reach the peak of perfection', 'With might redoubled', 'Fox's power', 'A flash in the pan', 'Worried wine', 'Genuinely and sincerely', 'Comply with the law and behave oneself', 'Government affairs are disordered', 'Be delighted that things are better than one expected', 'Feed on illusions', '#NAME?', 'Emperor Li and his father', 'Speak without restraint', 'Mistime one's remarks', 'Involuntarily', 'People without sorrow and anxiety', 'Borrowing public interests', 'A great weapon', 'Famous in name and place', 'Flog a dead horse', 'Stand vividly revealed on the paper', 'Rice bowl', 'Overdo a thing', 'Beat gongs and shout at passengers to open the way for a coming official', 'In a subtle way', 'Satisfied', 'Having substance in speech', 'The elderly under the moon', 'Tai Lai pole', 'Ancient and modern', 'Having received professional training for what one is doing', 'Improve learning and hide the sword', 'That which one sees and hears', 'Obtain gold by washing it from sand and gravel', 'Extensive knowledge', 'Nullify all the advantages', 'Move silently', 'Thick as fog or as clouds', 'Popular criticism', 'See evidence of people's distress everywhere', 'Senior security officer', 'Anti conformity', 'Changed names', 'Rise abruptly', 'A peaceful and prosperous time', 'Live up to one's words', 'Life-and-death', 'All for himself, none for others', 'Devastation as a result of war', 'Of vital importance', 'Treason and heresy', 'Impressed', 'Late morning and evening rush', 'Turn sb.'s trick to one's own use', 'Treat worthy men with courtesy', 'Conceal curfew', 'Step by step', 'Live up to one's words', 'Silk covered birds', 'Associate oneself with undesirable elements', 'Regard a hazardous location as level ground -- no fear of danger and difficulties', 'Be beyond one's grasp', 'Get both praise and blame', 'Can compose and perform military exercises', 'Half-believe in', 'Advance wave upon wave', 'Live in dignity', 'Outlet', 'Make light of righteousness', 'Original Commission', 'Tricks not to be feared', 'Shoulder and shoulders', 'Sacrifice oneself to protect others', 'Follow justice', 'Be preoccupied by some troubles', 'Eulogize the past at the expense of the present', 'Don't forget.', 'Cut corners', 'Heresy', 'Stop fighting', 'High officials and noble lords', 'Resplendent', 'Persuade through reasoning', 'Be made wealthy and powerful when one does not want it', 'In a minute of hurrying', 'As clear-sighted as viewing a fire', 'Believe firmly', 'Hide one's capacities and hide one's time', 'Large city', 'Down version', 'Only confuse people's minds', 'Cannot bear playing second fiddle', 'Die in parallel', 'End to end', 'It 's a long story', 'Faint and faint', 'Not to the point', 'Raise a wooden chicken', 'In group of threes and fives', 'Stride forward singing militant songs', 'Follow up a victory with hot pursuit', 'Very poor', 'Ebullience', 'Pay no heed to', 'Trace and trace', 'Be bold and unreasonable', 'Mutual aid', 'Reach the peak of perfection', 'A small hole which just allows the head and the body of an animal to pass', 'Be engraved on the heart and memory', 'Elaborate', 'Tread air', 'Break away from liver and stomach', 'Midnight in the night', 'Round the nail', 'Look at things with pride', 'Large city', 'Shang', 'Heavy and reverse', 'On the borders between the two kingdoms Wu and Chu', 'Defend those who belong to one's own faction and attack those who don't', 'As pressing danger', 'Destroy evils before they become apparent', 'Salute with folded hands and make deep bows', 'Shadow wife', 'Warm and intimate', 'The friendship or hospitality of a host', 'Not knowing what to do', 'The arrow is fitted to the string', 'Keep on going', 'Make things worse by repeated delays', 'Consider the past', 'Foretell like a prophet', 'Gang up', 'Remaining in danger', 'Be credulous and pliable', 'Strict with oneself', 'Look after the masses as if they were injured -- love the people', 'Seize every opportunity to secure personal gains', 'Consider the past', 'A majestic gait', 'Be different from each other', 'Long', 'Bend the law to suit private interest', 'Give the show away', 'Dirty laundry', 'By twos and threes', 'Too much wealth invites trouble', 'True feelings and real intention out of genuine friendship', 'Ma Chimeiji', 'Pleasant', 'Oil is drying up', 'Door to door', 'Move like a businessman', 'Times change, and with them customs and habits', 'Fog and cloud', 'Pride in the world', 'Consider ancient times', 'Join hands with others', 'Highfalutin', 'Be at arm's length', 'Village dance', 'All over the world', 'Dumbstruck', 'Enforce justice on behalf of Heaven', 'Branches and leaves', 'Take the bull by the hammer', 'A single word of gold', 'Disappear from the scene', 'Not fully understand', 'Impossible', 'Implication', 'A plot to gain time in order to complete defense', 'Empty talk', 'Eliminate public interests', 'Yun HSI Hai Si', 'Curry favour by claptrap', 'Faint', 'Look after the masses as if they were injured -- love the people', 'Be repetitious', 'Be of no help', 'make constant progress in one's studies', 'Five stones and six stones', 'Consider others in one's own place', 'There is not a single miss in a hundred tries', 'Done in one vigorous effort', 'dance for joy', 'Great achievements', 'Be absorbed in', 'Mystifying', 'Hand in hand', 'Go into boiling water and walk through fire and water', 'People's hearts are different.', 'A single trace', 'Smooth the body and smooth the body', 'Pull along the wind flag', 'Golden measures', 'King of stars', 'Indulge in self-admiration', 'Deviate from the accepted norm', 'It's hard to send a local book.', 'Cause destruction to both sides', 'See what can be done', 'Go to take office', 'Be self-confident', 'Fire and water', 'Shed blood like water', 'Disorderly', 'Exhaust others to enrich oneself', 'Iron plate is not easy', 'Be contented in poverty and devoted to things spiritual', 'Confound right and wrong', 'Gifted scholars and beautiful ladies', 'In a calm mood', 'Follow in the steps of one's ancestors', 'Disappear from the scene', 'An exalted discussion and extensive statement', 'Associate oneself with undesirable elements', 'Involuntarily', 'chaotic situation', 'Store up grain against dearth', 'Study from others on halfway, lost sb.'s own strongness', 'Extraordinary', 'Words and deeds', 'Shelter from the world', 'In peaceful times', 'After one's heart', 'Two minds', 'Dirty money and bad luck', 'Out and out', 'Members of the imperial house', 'Magical devices', 'Bo Tim tin mat', 'Be without rebuke', 'Hide the truth from the door', 'It passes like this', 'Gain victory with unstained Swords', 'Have a glib', 'Be fond of the new and tired of the old', 'Strange voice or an affected manner', 'Interpret out of context', 'Remain unchanged', 'The only man under heaven', 'Be chivalrous and fond of doing good deeds', 'The sword in the tomb', 'Forget one's life and die', 'Shoulder to shoulder', 'Help and encourage the younger generation', 'Fan closer', 'Take the lead', 'Never make progress', 'Be dear to others', 'Be able to attain the goal according to schedule', 'When all is said and done', 'Phoenix Dance', 'Just in case', 'Thorough research', 'Every act and every move', 'A couple who live from hand to mouth', 'Advance through the rapids', 'Be moved', 'Act in a committed manner', 'At random', 'Ghoul', 'Reflect on oneself three times a day', 'A thousand dollars', 'Get out of bed', 'Make an ambiguous statement', 'In one's integrity', 'Fall into a trap', 'Between two fires', 'Four clean and six living', 'Hold on to one's breath', 'Swiftly', 'Gulp down sobs', 'Mourn over a friend's death', 'Bear the burden of the dead', 'Crane one's neck to look forward', 'Things change', 'Not to give up one's gangster designs', 'Loyal and safe', 'Sacrifice life', 'Thoughts of wind and wood', 'Die a martyr', 'A precipice', 'Useless skill', 'Create what is new', 'Attempt nothing and accomplish nothing', 'Put the interest of others above one's own', 'Deng Gang Zhen Ji', 'Judge others by oneself', 'At one's wit's end', 'Suit one's measures to local conditions', 'Meat eating ant', 'Three circles and five buttons', 'Practise one's path independently', 'Counter treatment', 'Not sticking to formalities', 'Knowledgeable', 'Pretend to be profound', 'Not be too hard on sb', 'With great care', 'Remove barriers', 'Reward for life', 'Care for every coin', 'Be guilty of a crime for which one deserves to die ten thousand deaths', 'Abuse', 'Be beyond one's grasp', 'Stride forward', 'Consider that past is wrong and present is right', 'Recommend by words', 'Talk about the state', 'The Regal isolationist', 'Birds and birds', 'Hesitate to look forward to', 'Danger and crisis', 'Women's wine', 'It doesn't help the situation', 'See both its good and bad points', 'Shut oneself up in a room making a cart', 'Employ incapable men instead of able men', 'In a disastrous state', 'Hang in sight', 'Steal what is entrusted to one's care', 'Be helpless and in the greatest Straits', 'Worm and worm', 'Family discipline', 'Forge ahead', 'Distant and near', 'Ten houses', 'Give lectures', 'Climb up danger', 'Change tactics as the situation demands', 'A slim chance of survival', 'Crooked means', 'Be cautious', 'Fan the flames', 'Get in the right place', 'Very clear-sighted', 'Suffer from both the outside and the inside', 'Large city', 'Swift movement of calligraphy', 'Cease to exist except in name', 'Take up the positions of the fallen and rise to fight one after another', 'Ten step car', 'Co generation', 'Spread fire', 'People starved to death are everywhere', 'Outsider', 'Wolf defense', 'Have suffered bitterly in the old society and have a deep class hatred', 'Deep love and deep affection', 'The atmosphere was foul', 'Surpassing the ancients and amazing the contemporaries -- earthshaking', 'Extremely capable at', 'Have a narrow escape', 'new broom sweeps clean', 'Never forget the past', 'Deduct to the very last number', 'Be cut by knife and boiled in a cauldron', 'Study hard', 'Sleep the final sleep', 'A matter of conscience', 'Injure others and ruin oneself', 'Faint clue', 'Single silk spinning', 'Be delighted', 'Not take it seriously', 'Scattered houses', 'Remember forever with gratitude', 'Unchangeable', 'Trouble breaks out at home', 'A promotion not according to precedence', 'Ji Fu salt car', 'One's clothes were covered all over with jewels and valuable buttons', 'And bestow upon the former benefactor a thousand taels of silver', 'be strengthened by adversity', 'Advance at the double', 'Disguise oneself', 'Explain the details', 'Pretend to be calm', 'Different ways of doing things', 'Concentrate one's attention on', 'Add up to nothing', 'Struggle in a desperate or hopeless situation for survival', 'Thousands of horses for riding', 'For his past misdeeds', 'Heave great sighs', 'Just in time', 'Demanding and demanding', 'White Terror', 'It is hard to wait till the Huanghe River is clear', 'Have no appetite for food', 'To pull together in times of trouble', 'Rush headlong into mass action', 'The language fails to express the meaning', 'Do what one wishes without restraint', 'Will always bear in mind', 'Engage in public business', 'Contrary to justice', 'Reorganize the army and strengthen the military power', 'The mouth of a tooth', 'Too late to regret', 'Golden beetle exchange wine', 'Try to carve a swan and at least you'll get a duck', 'Different from one another', 'East and West', 'Smoke and mist', 'Die hard', 'Handle a crisis without difficulty', 'Wind sways grass', 'With might redoubled', 'Bow to the ground', 'Broad road', 'In deep distress', 'Serious lovesickness', 'Conceal oneself by day and March by night', 'Ask others for help', 'Give the exact fact', 'The urgent need of Chu', 'Go to the soup', 'Feel ashamed to see others', 'Wipe out dissenters', 'Circumstances alter cases', 'Find relief in', 'Self discipline', 'Meandering footpath', 'Forget oneself', 'Talent and obstruction', 'Inch and length', 'Buy a knife', 'Get slicked up', 'Set the Thames a great coup', 'Contrary to words', 'Claw holding wine', 'The members of one's family are partly dispersed and partly dead', 'Change existing habits and customs', 'Talk disorderly and unsystematic', 'NIMBY', 'Ten knows nine', 'Indifferent gain', 'Harm others to benefit oneself', 'Sit back and allow the situation to deteriorate', 'Look around', 'Make slanderous charges at sb', 'Advocate sentiment', 'Draw a picture', 'Now singing, now dancing', 'Act according to circumstances', 'Enemy's strength', 'Encountered with many times', 'Regulate the martial arts', 'Rail incessantly', 'Words cannot express all one intends to say', 'Cook a bean', 'Very clear-sighted', 'Writings are for conveying truth', 'One's word does not express his idea', 'The good and bad are intermingled', 'Be contented in poverty and devoted to things spiritual', 'Unexpected disaster', 'Vigorous and vigorous', 'Snow-covered landscape', 'Clean and clean', 'lifelike', 'Road head end', 'Plan for the day', 'First he abused her and in the end he gave her up', 'Consider others in one's own place', 'Break a law purposely', 'Promote one's private interests under the guise of serving the public', 'Get rid of clothes and build fire', 'Past and present', 'Go to take office', 'Woman's soft nature', 'Look for a noble steed to correspond with the one drawn', 'Abuse of money', 'A feeling of exaltation upon fulfillment', 'Risk universal condemnation', 'Lack of appetite', 'Study by the light of reflected snow or glow-worms', 'Help each other with mutual help', 'Mettlesome', 'Go by like the wind', 'Run amuck', 'Lucky car', 'Sweep the floor', 'Have only bare necessities at home', 'Capable of evoking praises and tears', 'Prosperity and decline', 'Stratagem of making the enemy conceited by showing weakness', 'Hoary-headed and toothless', 'Rope and cloth', 'Be on the upgrade', 'Make every attempt', 'Superior', 'Nine trees', 'Hold on to Yu Wei Jin', 'Be petrified', 'At a snail's space', 'Do not dare to pursue', 'Good luck and happiness to you', 'Heart carving', 'Appear trite and insignificant', 'Fifty five five', 'Zhang Jia Li Yi', 'Yi Qu Chang Xian', 'Chang Ming Du Wei', 'Submissively', 'Every possible means', 'Become a common practice', 'To hold back from taking action against an evildoer for fear of involving good people', 'Follow shadow', 'Gigantic and remarkably great in stature', 'A completely safe plan', 'Quickly wake up to one's error', 'Punish and punish', 'Official slight', 'Beat the ice', 'Appoint people on their merit', 'Persistent illness', 'Food and drink', 'Work together with one heart', 'Strictly abide by the Constitution', 'Study deeply', 'As one's best friend', 'Uncommon', 'Forget the pride', 'Happy and healthy', 'Let the words interfere with the sense', 'Pay sole attention to the present and forget the forthcoming disaster', 'Seek truth from God', 'Hesitate to wait and see', 'Mutter to each other', 'Bringing up a tiger to injure oneself', 'Can take temporary setbacks', 'In great difficulty', 'A matter of expediency', 'Be content with heart', 'Completely to forfeit the confidence of the people', 'Mutual contract', 'Do as one pleases', 'Wholeheartedly', 'Pine and pine rely on each other', 'Influential man', 'A one-track mind', 'Hate like poison; extremely ruthless', 'Embrace comet fire', 'Not to be divulged', 'Inch size gold', 'A kinsman of the Emperor', 'Don't get around much anymore', 'Wings of hung Chien', 'Make irresponsible remarks', 'A single needle or a piece of thread', 'Feed the tiger', 'As always', 'Design of Chu songs', 'Feel dejected unwittingly', 'Burn oil and fire', 'Upside-down', 'Nine in ten', 'To scheme the whole thing', 'Be made of such sound material that the fall could not harm it', 'Clever words and important words', 'Show ingratitude for favours', 'A bird's nest', 'Cheat and rape', 'Seek fame and wealth from a distance', 'Deeply attached', 'Perpetrate whatever evils one pleases', 'Don't mind', 'Words left behind', 'Break away from grace', 'Be down-to-earth', 'Every phrase a gem', 'Long and short skills', 'New in order to be different', 'Bull's promise', 'Have as one wishes', 'March East and West', 'Having substance in speech', 'Extremely pressing', 'Talented both mentally and physically', 'Eat with appetite', 'Spine cloth', 'A common person', 'Be too numerous to count', 'Catch a glimpse of', 'Unable to answer', 'Stick together in life and death', 'Search for things in secret rooms', 'Talk nineteen to the dozen', 'Harm others to benefit oneself', 'Yan Ge and Zhao dance', 'Click the tongue in admiration', 'Numerous and numerous', 'Forget oneself', 'His hands respond with delicacy to whatever the mind directs', 'The source of mercy', 'Act like a sin', 'Put things right once and for all', 'Act evilly in collusion with', 'Follow the mandate of heaven and comply with the popular wishes of the people', 'A gust of anger', 'Great kindness and friendship', 'misshapen', 'Dai Huang Huang', 'Delay for a long time', 'Fortune and trouble', 'Be a miser with words', 'One's private ends', 'Draw fire against oneself', 'A school of silver carps moving down a stream', 'East and West', 'Heartless', 'Act on impulse', 'Do one's best till one's heart ceases to beat', 'Court disaster', 'Laugh at oneself', 'Shoulder to shoulder', 'Blow on an instrument or finger a stringed instrument', 'Cherish good intentions', 'One's unforgettable former wife', 'Cheat oneself and others', 'Go all the way to the fire', 'Can hardly move a step', 'Under the same condition', 'Dry and loaded', 'Talk nonsense', 'Obey orders scrupulously', 'Local tyrants and evil gentry', 'Monogamy', 'Sea-robbers', 'Strive for harm', 'All of one mind', 'Develop prosperity and glory', 'Feel excited', 'Yuan long heroic spirit', 'forceful and vigorous', 'Public business affairs should be strictly managed', 'Tell part of the truth but not all of it', 'Express one's meaning', 'Display one's talent in an aggressive manner', 'Else do the work', 'Work hard', 'Love new and forget old', 'Horse and knife', 'repeatedly', 'Prickly moustache', 'Tattoo with broken hair', 'Have little food to eat', 'Popular literature or art', 'Act in a wrong way', 'Divine', 'Artful speech and flashy manners in appearance but jealous inside', 'jealous of the able', 'Forget the hunger and joy', 'Keep in good spirits', 'People who are actuated by high ideals', 'Go into boiling water and walk through fire and water', 'From ancient times to the present', 'Party building selfish', 'Knowing everything', 'Bohemian', 'A palace merchant', 'Cannot put the responsibility on others', 'Win universal praise', 'All thoughts are still', 'repetition', 'Act quickly and resolutely', 'Rain trail', 'Rescue the desperately poor and help those who were in difficulty', 'Reward according to sb.'s deserts', 'Share the same fate', 'Only sightly literate', 'Numerous and varied', 'Be self conscious', 'Hundred-percent', 'Stop the host', 'As beautiful as gold', 'Stand or fall', 'Rabbits die', 'Love and be selfish', 'Mental health', 'Lay the blame on others', 'Make a complaint', 'Everybody will be deterred by the danger', 'Straight talks invite disaster', 'Find fault with', 'Get to the bottom of the matter', 'Careless', 'Suffer from all kinds of problems', 'Life and death', 'Mao's affairs', 'Destroy evils before they become apparent', 'Gaze far into the distance', 'Smoke and mist', 'Take to one's bed and never leave it again', 'Measure up', 'To make a noise', 'Disaster everywhere', 'Male and female', 'Raid homes and plunder Road', 'Adoration', 'Lead a luxurious and dissipated life', 'Appoint upright and remove the crooked ones -- to replace the bad ones by good ones', 'Play petty tricks on the sly', 'Fall on evil days', 'The end of hills and rivers', 'Star power', 'Judge oneself', 'With not a single ingle detail left out', 'Regard money lightly', 'To remember as long as one lives', 'Water on the other side', 'Yu Guang Ren', 'Not to move or retreat', 'Distort the truth in order to please others', 'Like a crane's bone and a pine's appearance', 'Maida Yo', 'Adapt oneself to circumstances', 'be biased', 'Extreme wisdom and poverty', 'Get the desired object', 'The country is defeated and the home lost', 'Carriage drawn by four horses', 'Foist one's opinions upon others', 'Own a gifted pen', 'Anxiety', 'Advance smoothly', 'Hurry and hurry', 'Burst into thunderous cheers', 'Consistent from beginning to end', 'May be a little help', 'First come, first served', 'Copy', 'Have qualified successors', 'Act according to one's capability', 'Straight from the heart', 'Eat vegetables but freely use abusive language', 'Rise at cockcrow', 'Military forces are to be used only for the maintenance of peace and order', 'Seek common ground while reserving differences', 'Go by like the wind', 'Look at it with high regard', 'Wind and fire', 'Five cars daily', 'Be entranced', 'Red beans that inspire the memory of one's love', 'Yan Yue period', 'Be grateful', 'Comply in appearance but oppose in heart', 'All over the country', 'Swallow the tail', 'Be entranced', 'Silver Hook tail', 'The brevity of life', 'Smell and smell', 'Food and clothing', 'Amiable and easy of approach', 'Familiar road light vehicle', 'Create what is new', 'Act in undue confidence of one's own ability and look down upon others', 'Collect lots and lots', 'Disorderly', 'Tianjing latitude', 'Debauch people and turn them into gangsters', 'Die for the sake of righteousness', 'Mourn the ancient and grieve the modern', 'After gloom comes brightness', 'Golden cat's wine', 'Bone and ant', 'Share with each other', 'The opposition of the two sides', 'Confucian sentiment', 'Precious and cheap', 'Extremely excited', 'With a secret arrow', 'Insignificant skills', 'Disaster of a prosperous house', 'Boundless', 'House under house', 'Praise with the advice', 'Look like a clod', 'Words and phrases', 'Take the lead', 'In a refined and elegant manner', 'All is still', 'Rise up upon hearing the crow of a rooster and practise with the sword', 'Disguise oneself', 'The Dragon soars, the Phoenix flies aloft -- dance in swirling', 'Cold and cold', 'Crossroads', 'Admit defeat by others', 'As if one rises from the dead', 'Vanity Fair', 'Delay for a long time', 'Have no alternative against one's will', 'Store up goods to make a good bargain', 'Obtain gold by washing it from sand and gravel', 'Clear the way for', 'Act according to God's will and the desire of the people', 'Exquisite carriage', 'Help the one in need', 'Be impartial to', 'Be very active physically after a forced quiet', 'Successive succession', 'Exhaust all resources to build up one's military power', 'In disorder', 'Be the same outside and inside', 'Man of striking appearance', 'Rack one's brains in vain', 'Profound and profound', 'Family discipline', 'High carriage and four horses -- symbol of wealth and nobility', 'Quickly change and make improvements', 'Temporarily', 'Live a simple life', 'Risk one's life for another', 'Closely reasoned and well argued', 'Hospitality of a host', 'Regarded as hopeless', 'Lord it over others', 'Pile up', 'Fell dejected', 'Do as one pleases', 'Generous outside but scheming inside', 'An absolute instrument', 'Abdominal heat and intestinal disorder', 'Get rich', 'Handle affairs justly', 'Evil is evil.', 'Seven holes and eight holes', 'Be of two minds', 'With a subdued and soft voice', 'Having a beginning but no end', 'Have a slow walk instead of riding in a carriage', 'Extinction of Du door', 'Praise all the while', 'Have a previous engagement', 'Shoulder to shoulder', 'The language fails to express the meaning', 'As a little bird rests upon a man -- a timid and lovable little woman', 'Past and present', 'A narrow escape from death', 'Proud of everything', 'Give mature consideration to all aspects of a question', 'Good quality and good health', 'Bandit', 'Devoid of gratitude', 'Self-assured or supercilious', 'Change one's mind frequently', 'Swallow the burden', 'Useless person', 'Support and support', 'Drunk', 'Family ruined', 'Agree in opinion', 'Catch a glimpse of', 'Avoid the difficult and choose the easy', 'Muster one's courage and fight in the vanguard', 'Cultivating trees and techniques', 'All in one breath', 'Do one's best till one's heart ceases to beat', 'Freely', 'Go by like the wind', 'Shed blood like water', 'Unable to restrain the emotions', 'Bear the punch', 'Abandon the pen for the sword', 'All couples are married.', 'SAGE-like type', 'Legacy of hands', 'See light suddenly', 'Beak thorn', 'Let the words interfere with the sense', 'Be thoroughly engrossed in', 'External things that are not physically connected with oneself', 'Only one in a hundred is chosen', 'Move without a trace', 'Fly away', 'Uphold both principles and principles', 'To show benevolence towards all. Give people a timely and salutary Education', 'Grow vigorously and vigorously', 'Long-term plan', 'Escape from the distance', 'Welcome the new and send off the old', 'Crooked ways', 'Writing in three words', 'Down on the luck', 'Assimilate', 'Learn deeply by heart', 'Rule by public', 'Long and slow', 'Evil and evil', 'All in all', 'Intentnesses', 'The writing mirrors the writer', 'Be prepared for danger in times of peace', 'Pillow and blade', 'Alternate leniency with severity', 'Fall far behind', 'Behave recklessly', 'Rough and not wonderful', 'Very rugged road', 'Change quickly', 'Breathe out loud', 'Clever and clever', 'Let slip the blame', 'The mountain falls and the earth gives way', 'Otherworldly', 'Half new', 'The Phoenix has appeared', 'Ask for trouble', 'Four to eight ways', 'Unconventional', 'Broken bones', 'Monogamy', 'Dry wings', 'With a smiling face', 'Come to such an extreme', 'Gamble at high stakes', 'Rapid and urgent', 'Spiritual friendship between a noble and a commoner', 'Being documented', 'A woman in elegant attire', 'Be very helpful', 'Be well-informed and suspend judgment on things in doubt', 'Live and let live', 'Be the same in essentials while differing in minor points', 'Place of illicit love-making', 'Fatigued by a long journey', 'Life and death of Gouli country', 'Talk nineteen to the dozen', 'Not to recognize one's own closest relatives', 'Far away from home', 'Love and abuse', 'Cherish an undying', 'gathering of talented men', 'Make up for nothing', 'Cowardly', 'Follow in the steps of one's ancestors', 'Feel like old friends at the first meeting', 'Change one's mind about', 'Palpitate with excitement', 'extramarital relations', 'Though seemingly always on the run, he accomplishes nothing', 'a high-caliber person', 'Phoenix singing and dancing', 'Lose one's luck', 'Hui businessmen', 'Serve the people and the society', 'Bai Bai San Xian', 'Red over nine', 'Burn like a flame', 'Man proposes', 'Unthoughtful and rash', 'Unheard-of', 'Obtain gold by washing it from sand and gravel', 'Speak with great courage', 'On every stick of wheat are growing two ears', 'Failure to put things away properly is inviting theft', 'one grieves for one's kind', 'Said of a monk who is profound in meditation and self-examination', 'Lose presence of mind', 'With one voice', 'Be implicated in trouble', 'As beautiful as a rose', 'Deep thoughts', 'Very learned', 'By surprise', 'Follow justice', 'Hum about', 'Live forever and never die', 'Half-dead', '#NAME?', 'Look around', 'Pay attention to one's own moral uplift without thought of others', 'Play the gangster', 'Earning large quantities of gold each day', 'Behead enemy generals and capture their flags', 'Mountains are high, torrents swift', 'Seeing these things one is reminded of the owner', 'Mutually making excuses', 'Boiling boiling', 'Act alone', 'Care-laden', 'Disaster is the first blessing.', 'Weapon of national ruin', 'Taste of prison life', 'Be blind to', 'Make friends', 'Be thrown away and swept clean', 'The end of it is evil', 'Gel paint', 'Liver and kidney', 'The sound of the drums and gongs arose', 'Change the good and break the law', 'Private secret', 'practically sinecure office', 'Go beyond the old and exceed the present', 'Daily increasing and monthly benefiting', 'To rule by law', 'One's resolve is unshaken.', 'Uninhibited', 'Help others', 'Full of people', 'In a calm mood', 'From ancient times', 'A drop in the bucket', 'Luo Jian Ji Wang', 'Walk freely', 'Waste all the previous efforts', 'Love life and death', 'Close doors and windows', 'Proceed with determination', 'Hold one's breath', 'Angry voices and hard words', 'Rich clothes', 'Weird things', 'Love and benefit', 'For many years', 'Music anxiety', 'Beyond bounds', 'Amazing', 'Quoted in broken sentences', 'Family fire', 'Murder a person with a borrowed knife', 'Discard all desires and worries from one's mind', 'Store up gems and pile up gold', 'Give away the secrets of heaven', 'All in all', 'Trace out', 'Doubt and doubt', 'Go to take office', 'Bed room', 'Sigh in despair', 'Forget oneself', 'Tune up', 'The needle seems to fly and the thread seems to run', 'Have loose bowels', '��Ancient system today', 'Two faces', 'Weakly', 'One is raised from the status of a concubine to that of a principal wife', 'Play the gangster', 'In ill health', 'Expert thinking', 'Go in to and come out from the state of being and not being', 'Die a martyr', 'Ji Jia Shan Qi', 'Public clamor can melt metals', 'No one shows any interest in', 'Have done everything possible', 'Luxury and ease', 'Very worried and indignant', 'Gain or lose', 'Host friendship', 'Sharp-tongued', 'Broad-minded and uninhibited', 'cautious and anxious', 'appreciation goes without saying', 'Turn against another in mutual recrimination', 'It is hard to change one's nature', 'Wind up', 'Unable to stretch', 'After a considerable period of time', 'Abuse one's power to seek personal gain', 'Old timer', 'Be unequaled in beauty', 'Be helpless and in the greatest Straits', 'The arrow is fitted to the string', 'With Leniency', 'Loud and foolish', 'Ant flies', 'Outmanoeuvre the enemy our glasses of wine', 'Quietism', 'Star strike', 'Look on at sb.'s trouble with indifference', 'Follow the beaten track', 'An immense number of books', 'Rack one's brains to', 'Rely on each other's teeth', 'Cherish the old and abandon the old', 'Watch out furtively to the East and West', 'Evil and evil', 'Serve an emperor and do service for a throne', 'Cravenly cling to life instead of braving death', 'According to circumstances', 'Fly low', 'Generosity and severity complement each other', 'Not willing to abandon one's folly', 'Ancient and modern', 'Supercilious', 'The hustle and bustle of large crowds', 'Losers are always in the wrong', 'Uncut jade and unrefined gold', 'Let slip the opportunity of', 'one's landlord', 'No laughing matter', 'Ideal setting for a couple in love', 'National welfare and the people's livelihood', 'Track down', 'Talk in a wild disorderly manner', 'Benefit by mutual discussion', 'Do justice in wrong', 'Accumulated and worn out', 'Thinking of clouds and trees', 'Study by the light of reflected snow or glow-worms', 'Delay for a long time', 'Be hated by both man and God', 'Emulate those better than oneself', 'Be terror-stricken', 'Timid and overcautious', 'Unrealistic', 'Unbiased', 'Day count', 'Kitchen and wooden guards', 'Cut the dress according to one's figure', 'Change with the times', 'Serve parents while living and give proper burial after death', 'Beat all', 'Lonely and helpless', 'Accumulate talents', 'Be at death's door', 'Under way', 'Not much, if any', 'Close down', 'Enjoy great popularity among the people', 'Fly into a rage', 'Dogs and chickens made of Potter's clay', 'To make things go from bad to worse', 'With great respect', 'Resort to a makeshift solution', 'Look attractive', 'Peace of mind', 'As a stranger', 'Perish together', 'Appear to be tough outwardly, be timid inwardly', 'Heresy', 'Rub one's eyes and wait', 'Swallow nest', 'Pen and ink dance', 'Be helpless and in the greatest Straits', 'A swallow nesting on a canopy', 'Heteronomy', 'Hard-earned', 'Marry and embark on a career', 'Be brutal and inhuman', 'Things in the basket', 'Clothing', 'Deep roots', 'Never relax your vigilance while you live in peace', 'Exquisite', 'Bo Nengxian', 'Scholar, farmer, artisan and merchant', 'Make clear the purpose and main theme from the very beginning', 'Needle walking line', 'The God of flowers', 'Difficult to continue', 'Beam with joy', 'Pledge ourselves to live and die together', 'An onion fight', 'Spring outing', 'Social commitment', 'Dejected', 'Lead a fast', 'Cherish kindness', 'Be ignorant of the present state of affairs', 'Come to realize', 'Save oneself from danger', 'Have seen a great deal of life', 'Great achievements', 'Rise directly to a high position', 'Burning nose', 'Rise and dance in a happy mood', 'Get without any labor without doing any work', 'Indulge in wines and songs', 'Within reach', 'Escape from death in a great catastrophe', 'Tap lightly', 'Polish painstakingly', 'Attack by innuendo', 'Be way ahead', 'Selfish intentions', 'Craftily seize key posts', 'Right and left', 'Done straight away', 'Windy and rainy', 'Serve the people and the society', 'Public trust', 'New and interesting', 'Know nothing about the world', 'Emergency rescue', 'High-handed', 'Strike the table in surprise', 'Doubts and doubts', 'Illegal spouse receives money', 'Men's life is like boarding in this world', 'Marry and settle down', 'Be deeply grateful', 'Frank and reasonable', 'Sow the seeds of discord everywhere', 'Be just and stern', 'Not much difference between', 'Thieves', 'Intestinal distress', 'Daytime gradually lengthens after the winter solstice', 'Act in undue confidence of one's own ability and look down upon others', 'Head and wings', 'Create what is new', 'Polar mouth', 'Vague', 'Catch bandits first catch the ringleader', 'Dan Huang Jia B', 'Change tactics as the situation demands', 'Blow the fire by making use of the wind', 'Desperately', 'Happiest mortal alive', 'Cornpensate forthe shortage and leakage', 'eat late and get up early', 'Judge people by outward appearance', 'One does not consider things outside his position', 'Get fifty percent', 'Recurrent asthma', 'Wolf in sheep's feed', 'Time and time are ripe.', 'Satisfied', 'Surprise attack', 'New concepts in an old framework', 'A timid and conservative man', 'Strive for success', 'Risk danger in desperation', 'Escape from fame', 'Bitter as if it were malt sugar', 'Late at night', 'One is in harmony with each other.', 'Create what is new', 'Head and tail', 'Casual', 'Hide one's capacities', 'Ancient sages', 'Be a restless fellow like a drifting water plant', 'Be bold and unreasonable', 'Change the grain and make it sterile', 'Forget honour at the prospect of profits', 'No one picks up what's left by the wayside', 'A critical argument', 'Go all lengths', 'Done straight away', 'Good wife and good wife', 'Remember what is right at the sight of profit', 'Slavishly follow one's predecessors', 'High spirits', 'Give the matter further thought and discuss it later', 'Be in deep sorrow', 'Immortal figures', 'Great root', 'Brace up one while the others tumble down', 'Clear the way for', 'Reduce waist', 'Be a colossus with feet of clay', 'Discourse at random of things past and present', 'Tryst', 'Dragon God and snake god', 'Denounce the present and praise antiquity', 'High-rank official', 'Well-content', 'Purple and purple', 'Fractional line', 'Insight into ancient and modern times', 'Forget oneself', 'Versatile', 'Make irresponsible remarks', 'Prevailing wind', 'Abandon oneself to others', 'Vast', 'Dirty and dirty', 'Day and night thinking', 'Mountains fall and the earth splits', 'A vast expanse of water-opening heart', 'Sublime words with deep meaning', 'Salt Mei Zhi Zhi', 'Stand up for support', 'Extremely capable at', 'Be brilliant enough to reflect one's image', 'Severe hidden danger', 'Criminals', 'The suspicion of being in the melon field and under the plum tree', 'As beautiful and exquisite as the heavenly-woven brocade', 'Bandit', 'Back and forth', 'Hit the nail on the head', 'Play the gangster', 'Human effort is the decisive factor', 'Curry favour by claptrap', 'Koinonia', 'Understand the important principle thoroughly', 'Move aside and look forward to', 'Fresh', 'Different times', 'Purple and yellow', 'Out of danger', 'Seclude and avoid worldly care', 'Bamboo rush', 'Grumble against heaven and lay the blame on man', 'Lose one's reputation', 'Be simmering with rage', 'Uneven', 'Yi people', 'Spend oneself', 'Blow the fire by making use of the wind', 'Greatly disappointed', 'As if sitting in the clouds and mists', 'Rat stealing', 'Have a slight skill in hand', 'Joyous but not indecent', 'Pure purple', 'Go all the way', 'Settle down', 'Outwardly strong but inwardly weak', 'Have a genuine and sincere desire', 'Recluse', 'Be consistent from beginning to end', 'Kick against the pricks', 'Fall because of internal strife', 'Forget the vulgar ideas', 'Simmer with laughter', 'As if lost in a fog', 'Be under arrest', 'Knowledge of grass and trees', 'Discard the classics and rebel against orthodoxy', 'Jing Xing Feng', 'Very learned', 'Beautiful decoration', 'Brother and Yi Yi', 'Get a branch to roost', 'Public casualties', 'the danger of death or destruction', 'Source Committee', 'Be everlastingly grateful', 'Orchestral music with rapid and rich rhythm', 'A peaceful and prosperous time', 'Fu Di Sheng', 'On the stove', 'Vested interest', 'Beat the ice', 'Have some achievement', 'The philosopher', 'A new force suddenly rises', 'One's life is uncertain', 'Know something of everything but not everything of something', 'On every stick of wheat are growing two ears', 'Shoulder to shoulder', 'Narrow-minded and shortsighted', 'Concise and comprehensive', 'Feel fresh', 'At a critical juncture', 'Step by step', 'Bear shame and humiliation', 'The joys of spring', 'Crack down', 'See a segment of a whole', 'Eat without relish', 'Discourse at random of things past and present', 'Feel like old friends at the first meeting', 'Too late to regret', 'Abandon private interests', 'Wash away the stomach and wash the stomach', 'Phoenix Dragon', 'Afford much food for thought', 'The sword and the sword', 'Insatiability', 'Cloud breaking', 'High officials and noble lords', 'Sworn brothers', 'Objectionable environment', 'Act disorderly and care for nobody', 'Fractal linking', 'Too weak to bear the weight of one's clothes', 'Everything will be fine', 'Handle much work every day', 'Public interests', 'Knowing the past and knowing the past', 'Consider ancient times and present today', 'Employ incapable men instead of able men', 'Bring blame on oneself', 'Swallow gold', 'Glorious and resplendent', 'Stir up trouble', 'Evil intention', 'Hui Wen Jin', 'Give a good example', 'Reckless', 'Hold one's breath', 'I have no one.', 'Die a martyr to a just cause', 'Obtain gold by washing it from sand and gravel', 'Hungry for food', 'A lucky car', 'Most suitable and not subject to change', 'Become Barbarians', 'Step ahead', 'Be different from others', 'Magnificent', 'Rush on like a swarm of hornets', 'Try to carve a swan and at least you'll get a duck', 'Shoulder to shoulder', 'Strange and strange', 'Do what one likes', 'As summer goes and winter comes', 'Singing and dancing', 'Implication', 'Change from time to time', 'North master', 'Change with the times', 'Streets and lanes', 'Eat without relish', 'Horizontal bar and vertical bar', 'Forget your privacy', 'Panic-stricken', 'Study hard', 'Wrong and wrong', 'Steal what is entrusted to one's care', 'Exhausted from effort', 'Work hard', 'Ten%', 'Very poor', 'Peach and Lee become strange', 'Defile public opinion', 'Catch one's life and death', 'Soft silk', 'A lot of people', 'Give mature consideration to all aspects of a question', 'Break hair and tatoo', 'It is foolish to demand a great help from a mere acquaintance', 'An exalted discussion and extensive statement', 'Be the first to bear the brunt', 'Gas sharing', 'Good for nothing', 'Evil men usurping authority', 'Overlap of parallel lines', 'Draw parallels from history', 'Seven impairments and eight supplements', 'Talent and insight far beyond the average person', 'Bleak and desolate place', 'Turn out in full strength', 'Repeatedly', 'Chao Si Si', 'Swagger before others', 'Dispense according to ment', 'One road God only', 'Tasteless and insipid', 'In the dead of night', 'Conspire with someone in illegal acts', 'Monstrous lie', 'Nothing left behind', 'As a little bird rests upon a man -- a timid and lovable little woman', 'redress a grievance', 'Thinking of an old acquaintance on seeing a familiar scene', 'The heart of the people', 'Combine kindness with mercy', 'A storm of thunder', 'Be beyond the means of', 'Count the days', 'Refuse to speak', 'Four Wastes and eight poles', 'Hammer and bull wine', 'Talk freely', 'Engage in selfish ends', 'Go into boiling water and walk through fire and water', 'Just passable', 'Hao Liang above', 'Mournful but not distressing', 'Lead a licentious life', 'Completely unmasked', 'Take advantage of sb.'s ignorance', 'I shall not forget it in my life', 'Cherish an undying', 'Do not know', 'Little kindness', 'Offer one's own clothes and food to help others', 'General debility', 'A research plan', 'Refuse to show talent without an admirer', 'Mistime one's remarks', 'Devoid of gratitude', 'Concentrate on one's work', 'Care for it', 'Be broad-minded toward others', 'Change rapidly', 'Backstage boss', 'Dangerous and smooth', 'Half-dead', 'A feeling of exaltation upon fulfillment', 'Timeworn', 'Friendship between old and young people', 'Door and door', 'Specialized in study', 'Submit by force', 'Forgive and forget', 'Save the past from the past', 'Holy Spirit', 'Cannot but', 'Have a flourishing population', 'Nine points', 'On one's own', 'Amazing ways', 'Understand a man by his faults', 'Know something of everything but not everything of something', 'Earth house', 'Knee walking', 'Become worse', 'East Riding', 'Fan the flames', 'Habitat', 'Talk endlessly with no substance at all', 'Poised to strike', 'Not to die', 'Strive for success', 'Probe into the hook', 'Warmth and affection', 'Wife who has shared her husband's hard lot', 'Insignificant skill', 'Being confused and flurried', 'Be unsteady in the chair', 'Tongue tied', 'Heart and soul', 'Peace of mind', 'Cannot be altered;unchangeable', 'Barehanded', 'Exciting', 'Blood and tears', 'Ask questions and ask questions', 'Asking for some water and getting some wine', 'Mettlesome', 'Be modest', 'Beneath discussion or mention', 'Do boldly what is righteous', 'Disguise oneself', 'Injure the public interest to benefit one's private interest', 'Wind and electricity', 'Food and drink', 'The master exposes himself', 'Students and old friends', 'Polish painstakingly', 'Tooth and tooth are evil', 'Emergency sickness', 'Find a sheltering place or a small job', 'Not to follow the beaten track', 'Disregard all favours or humiliations', 'The heavens split and the earth sinks', 'Gathering clouds and rain', 'Hit the hammer', 'Small capital and little gain', 'Be most perfectly fulfilled both in love and duty', 'Heart breaking', 'Unrestrained and frank; straightforward', 'Imperial Palace', 'Rat's avoidance', 'Discipline', 'Amicable', 'Feel fresh', 'Become corrupt and become odd', 'Monk', 'Emulate those better than oneself', 'Move silently', 'Friendship between rivers and rivers', 'Ride a crane and become a fairy', 'Unaltered forever', 'Word meaning', 'There was no literary or military feat of which he was not capable', 'Homosexuality', 'Of no great importance', 'For a long time', 'Extremely bitter', 'Come and go', 'Accomplish at one stroke', 'Make clear beforehand', 'Difficult situation', 'Smoke and fog', 'Get lost in spirits', 'Win and win', 'Full of wit', 'The water is exhausted.', 'To pull together in times of trouble', 'One's living place was moved, but his wife was not taken along -- extreme forgetfulness', 'Win one's reputation rapidly', 'Hide like a dead body and appear like a dragon', 'Swallow the voice and hold the breath', 'A pressing matter of the moment', 'Be', 'Birds and birds', 'Get to the bottom of the matter', 'Unrestrained and reckless', 'New and old', 'Outmanoeuvre the enemy our glasses of wine', 'woman's virginity', 'Dirty clothes', 'Money exhausted', 'Accumulate virtue and merit', 'Dull remarks', 'Turn sb.'s trick to one's own use', 'Breathe heavily', 'Become', 'Fold one's hands and await destruction', 'Imitate others and thus lose one's own individuality', 'Xingwen Wu Wu', 'Prickly moustache', 'Lack virtue and ability', 'Everyone says so', 'Without fail', 'Chicken in a pot', 'Ask about taboos and bans upon arrival in a foreign country', 'Cherish talents and arms', 'Act rashly and blindly', 'Cry over spilt milk', 'Door view', 'Be fond of the new and tired of the old', 'Well read', 'A scoundrel hates persons of integrity', 'Never ever meet again', 'Must not disobey orders and cause any delay', 'Remember at every meal', 'Cover up hidden diseases', 'Fowl grass', 'Extremely evil', 'All alike', 'Take a concubine', 'A clever talk becomes a good joke', 'To hide dirt', 'Feel at ease', 'Pursue evil with virtue', 'Swords, spears, two-edged swords and halberds -- all kinds of ancient weapons', 'A disaster of grace', 'Fall into a state of poverty', 'Carving a trick', 'Rural interests and justice', 'Reward according to sb.'s deserts', 'Walk in a carriage', 'A married couple very much in love', 'Cry piteously for food', 'Spring breeze and wild fire', 'The words fail to convey the meaning', 'Passing of night', 'Wise and wise', 'Angry', 'Twist another around one's little finger', 'Seeing the name of a thing one thinks of its function', 'Fortune brings trouble to others.', 'Chicken dancing', 'Be full of fun', 'Assist the evildoer', 'Breeding', 'Ablazing with lights', 'Clever words and good words', 'Upright Qi', 'Create what is new', 'First order', 'Give mature consideration to all aspects of a question', 'Yellow Mao and white grass', 'Avoid fire and water', 'Indulge in wines and songs', 'Strike an attitude of half-declining and half-accepting so as to provoke the other party to greater or more ardent efforts or to a more agreeable offer', 'Be difficult to follow up', 'Abandon intellectual legacy', 'Tongue lifting', 'Attend all the housework personally', 'Dip one's finger and water for sth.', 'Scattered all over like stars in the sky or men on a chessboard', 'Gain victory with unstained Swords', 'Be bitter about it', 'Reputation and virtue', 'Take care of oneself', 'East and West', 'One's behavior is different, as if he were not the same person', 'Du men's screen', 'To the wind and Mu Yi', 'Praise and wonder', 'Awakened', 'Of unwillingness', 'Stuck with wrong ideas', 'Be so confused', 'Hypocrisy', 'Shake hands', 'carry on father's trade', 'Hold up one's head high and advance by long strides', 'As if urged by gods or demons', 'I will not abandon it.', 'Combination of heaven with man', 'Strike first to gain the initiative', 'Magnificent', 'Chinese pen and sword Arts', 'Handle a crisis without difficulty', 'Steal away from others', 'Change the tail', 'Reward and punishment differ', 'Disappear without a trace', 'Ask others for help', 'A wicked and fierce person', 'Have talent but no opportunity to use it', 'Clap and applaud', 'Have family burden', 'People come and go', 'Go into action without delay', 'Nothing surprising', 'Unhurriedly and clearly', 'Hide one's capacities and hide one's time', 'One after another', 'Show no restraint', 'Ashamed to associate with somebody', 'A single word of gold', 'One after another in close succession', 'Make endless exorbitant demands on', 'Empty talk and pleasure', 'Whoppers', 'Old intention', 'Be down to heart', 'Be in a state of anger', 'Ten words are false.', 'Exhausted', 'Crookedness', 'Save oneself from fire', 'Show off one's knowledge', 'Birth, death, illness and old age', 'Be consistent from beginning to end', 'Make improper comments', 'Poised to strike', 'High comprehension', 'Narrow down', 'Escape from the world', 'Partly hidden and partly visible', 'Play off one power against another', 'Rigidly to adhere to the written word and obstinately stick to principles', 'Wear one's heart out', 'Gods and spirits', 'Be in league with', 'Husband and wife who have gone through difficult times together', 'Fox fires', 'Have no idea what to do', 'Age-old', 'Liberal arts and Arts', 'Farewell to my concubine', 'Think constantly of', 'South chicken', 'Miss this and that', 'Comment different characters', 'Carry five loads', 'Corrupt bribery', 'Suffering from constant chronic illness', 'Break open a way through bramble and Thistle', 'Fire from the nose', 'Make a living', 'Scattered all over like stars in the sky or men on a chessboard', 'Heal the wounded and rescue the dying', 'Self absorption', 'Withdraw from office', 'Become', 'A thorough understanding', 'The thing reminds one of its owner', 'Absorbedly study', 'Rely on one's ability and act on impulse', 'Uneven, some good and some bad', 'All was quiet and not a soul was to be seen', 'Seven times', 'Seize the opportune moment', 'Hardly change human nature', 'Carry out one's ideas alone', 'Run away', 'Utter lack of substance', 'Extinguish a fire by pouring oil on the flames', 'Easy to pick up', 'Lay down danger', 'Not worth mentioning', 'To be in a hopeless situation', 'Heavy pollution', 'Dire poverty', 'Would not explain unless one is desperately anxious to learn', 'Defend those who belong to one's own faction and attack those who don't', 'South Locomotive', 'Be in a state of anger', 'Honest and sincere', 'Invaluable advice', 'Freely', 'As wicked as possible', 'Ant collection', 'Three to four', 'Differ from each other', 'Discussion on Chong theory', 'Remote and uninhabited', 'Have nothing to gain', 'Wear flowers and nuts', 'Make the welkin ring', 'Strive for ambition', 'Observers gathered', 'Broken down', 'Torment a person too hard', 'Vulgar things', 'You cannot afford to incur public wrath', 'Exhaust oneself to enrich others', 'Without thinking', 'Work hard', 'Staring at each other', 'Illicit lovers', 'China's Red County', 'Gain victory with unstained Swords', 'Give repeated orders and injunctions', 'Peace of mind', 'Illiterate', 'With a sharp drop', 'Stars and poles', 'Dog's tail', 'Pay attention to one's own moral uplift without thought of others', 'One board', 'Behead enemy generals and capture their flags', 'be a consolation', 'Love makes people feel better.', 'lofty and brilliant discourse', 'Die in thousands of hours', 'Go to one's death unflinchingly', 'Full of vision', 'Be very anxious', 'Follow others' advice', 'Public trust', 'Members of the imperial house', 'Handle much work every day', 'Have an uninterrupted career of advancement', 'Drilling for ice and fire', 'Throw the door open for the robbers', 'Be able to develop one's ability to the full', 'Get half the results with double the effort', 'Dissolute in conduct', 'Eager to beat the strings', 'The best in all the land', 'Purple clothes', 'Kill a chicken with a butcher's big knife', 'Beyond doubt;indisputability', 'Eight plates', 'Liang Mengxiangjing', 'Can compose and perform military exercises', 'It is too late to repent', 'Smoke heavily', 'Free and easy', 'The "scholar's four jewels', 'One with flaws', 'Seven lives and seven deaths', 'Handle affairs justly', 'Make a living', 'Family ownership', 'Live in houses', 'Follow or obey with sincere willingness', 'Psychological offense is the best of tactics', 'Dispense according to ment', 'Flying yellow', 'Rise to the heights', 'Not to go beyond the limit', 'Supreme power', 'Talk over past and present', 'Cowardly', 'Half gained but half lost', 'as far off as the Milky Way', 'Give up one's own views and follow others', 'People starved to death are everywhere', 'Be afraid of suffering', 'Deep mother love', 'An enchanting smile', 'Stage a comeback', 'The hills totter and the earth quakes', 'Recoil in order to extend', 'Make efforts', 'Viciously slander', 'Silk tail and swallow tail', 'Inseparable', 'Three pot', 'Cold and frozen', 'Disappear', 'Swallow up the body', 'Good medicine tastes bitter', 'Tai Lai', 'Put it strong', 'Be enthusiastic and press on', 'Rain gathering', 'Turn a piece of poor writing into a literary gem', 'Sang Yin is still unchanged.', 'Pay attention to one's own moral uplift without thought of others', 'Talk freely', 'Be always on the move', 'Drink heartily', 'Play off one power against another', 'A cold potato', 'All kinds of things are going on.', 'Mountain and wave committees', 'Most urgent', 'False and unreasonable', 'Make endless exorbitant demands on', 'Yu Yang Yu Jin', 'Do better than others', 'Steal what is entrusted to one's care', 'stick to ancient ways and reject the new', 'Be calculating and unwilling to make the smallest sacrifice', 'South Vietnamese', 'Ji Ying salt car', 'Not essential', 'Suspicious appearance and movements', 'Be short of breath', 'All was quiet and not a soul was to be seen.', 'Heart and soul', 'Impart knowledge and solve doubts', 'With might redoubled', 'A poor widow does not care for the weaving -- a patriot who cares not for his own enterprise', 'Live a simple life', 'A woman of low birth may marry into the purple', 'Ying Fei', 'Look after the masses as if they were injured -- love the people', 'Go as slowly as ducks or geese do', 'Carry oneself proudly', 'Make plans', 'Profound sentiments of friendship', 'Appoint upright and remove the crooked ones -- to replace the bad ones by good ones', 'The main idea', 'Respect oneself and humble people', 'Devoid of gratitude', 'As though heaven and earth had fallen', 'Handle affairs justly', 'Deny by oath', 'Satisfactory', 'Man of gifted pen', 'Socket', 'Shrink from no difficulty or danger', 'Long Feng Feng Ji', 'Make trouble out of danger', 'Connect with each other', 'Pure and clear', 'Streets and streets', 'To one's eyes there are no laws and rules', 'Pushing forward despite repeated frustrations', 'Rely on one's ability and act on impulse', 'The man through whose hands passing large sums of money', 'Insignificant skill', 'All kinds of things', 'Go all the way', 'It is beyond logic and above reason', 'To preserve or to ruin cannot be foretold', 'Suffer from all kinds of problems', 'Beg humbly', 'Narrate anecdotes of the past in alluding to the present', 'Every year is full of years.', 'Trade commodities', 'Change danger into safety', 'Heterodox doctrines', 'Armed might', 'Anything that vanishes in a flash', 'Talented', 'Hide one's capacities and hide one's time', 'Take advantage of others' difficulties the precarious situation sb. Is in', 'Provide much material for thought', 'Regarded as hopeless', 'Write like an angel', 'Hong Yan advocates', 'Keep your mouth shut', 'So hot on stones that gold might have melted there', 'Da Shi Tong', 'Grain and grain', 'Be cautious', 'A method not suited for the purpose', 'Drag and tear cloth', 'Torture oneself with unpleasant thoughts', 'Make irresponsible remarks', 'Chu's rule', 'Be a restless fellow like a drifting water plant', 'Kings and gentlemen', 'false pride', 'Cherish the near future', 'Vivid', 'Lead the horse group with a thoroughbred horse', 'Heart and kidney', 'Ugly things', 'Important words', 'Secret time', 'Shoulder to shoulder', 'Heave great sighs', 'Nothing concealed in a straightforward man's mind', 'The party is green with envy.', 'Beat drums and clang gongs -- in + battle', 'A thorn for a hairpin and plain cloth for a skirt', 'Exchange visits', 'In an honest partnership', 'Write for a living', 'Enrich oneself at others' expense', 'Strengthen martial arts', 'Only neighbors', 'Stand alone', 'Do not drive someone into a corner', 'Be contented in poverty and devoted to things spiritual', 'Indulge in fits of temper', 'Shift rapidly', 'Jing Jiang Yi Ji', 'Help others at one's own expense', 'Share the same evil', 'Live a simple life', 'Dark', 'Shaking head and tail', 'Being vigorous and unrestrained', 'Overwhelming disaster', 'No lack of such people', 'Top names', 'Liver and kidney', 'Cry out loud and ill', 'Have only to open one's mouth to be fed -- lead an easy life, with everything provided', 'Very learned', 'Thoughts of frost', 'Talk nonsense', 'Constant departure and reunion of friends', 'Slow and slow', 'Worry about the confused state affairs', 'attempt sth. beyond one's capability and end in failure', 'Four seas and others', 'Stolen goods', 'Continue to increase', 'Accomplish at one stroke', 'Make decisions', 'Bird silk', 'Idle the past and cast the present', 'Zhou Kong Kong Si', 'Kim Yu Kim', 'Filthy and contemptible', 'A scoundrel hates persons of integrity', 'Make carping comments on', 'Make light of oneself', 'Maintain one's original pure character', 'Profound knowledge', 'Right in the right way', 'The tomb is arch.', 'Take the lead', 'Guard a secret closely', 'Have nothing to do with it', 'Rush forward', 'Two different crops', 'In the extreme', 'Poor yet not losing one's righteousness', 'Bring about', 'An immense number of books', 'Seeing the truth and seeing the truth', 'From public to private', 'Observe oneself and know others', 'Traces left by chariot and horse', 'Throw the door open for the robbers', 'To be confused', 'Spread rumours to injure others' reputation', 'Not worth a thought', 'Ma Zhong Guan Wu', 'Wholly intact', 'A mean fellow of the marketplace', 'One is serious enough', 'Stop at nothing', 'Turn back to hit those who misled', 'Failure to put things away properly is inviting theft', 'A single sword', 'The greater fortune one amasses, the greater loss he will suffer', 'A wrong thought in passing', 'Shodeseway', 'Bore ice in order to get cream cheese', 'Invaluable advice', 'Go in a jostling crowd', 'Electric shock', 'Exert oneself', 'Warning against hoarding wealth', 'Save the past', 'Heart and soul', 'Sit idly by without lending a helping hand', 'Lively and vigorous flourishes in calligraphy', 'Get the opposite of what one wants', 'Put tinder to the firewood', 'Regard as a stranger', 'Benumbed and unresponsive', 'Unchangeable', 'War and death', 'Break hair and tatoo', 'Judge a person by his success or failure', 'Painted beams and carved pillars', 'Be bold and bold', 'One has attained a success and is well-contented', 'Ask after the people's sufferings with deep concern', 'Sparks of fire', 'Be repetitious', 'Pearl dance', 'To have an irascible temperament', 'Take Scripture out of context', 'Courteously but without sincerity', 'Seeking one's own doom', 'Prosperous scene', 'Appearing nervous in public', 'Minor integrity', 'Contrary to nature', 'Leave no successor', 'Sensible and appropriate', 'An incomplete collection', 'Four arts', 'Dire poverty', 'Glowing rays shine in all directions', 'Shoulder to shoulder', 'Praise the good and recommend the good', 'An unexpected gain', 'Dong Chao Yi', 'From beginning to end', 'Beyond one's power', 'Can't tell how many there are -- numerous similar cases', 'Bold and powerful', 'People who are mere pecks and hampers', 'Take everything on oneself', 'Have to', 'Be obsequiously submissive', 'A flash in the pan', 'Help at the loss of one's life', 'This proclamation is hereby issued in all sincerity and earnestness', 'Be in good out of a bandbox', 'Stricken', 'Be so cold', 'Celebrate others', 'Cry from hunger and cold', 'Casual', 'Break a butterfly on the wheel', 'Be on the high ropes', 'Parallel shoulders', 'Regarded as hopeless', 'Not capable enough to take on heavy responsibilities', 'Incoherent', 'When the prince is put to shame, the minister dies', 'Be fully occupied every day', 'The domestic animals are all thriving', 'In half', 'Way is right', 'Wan Po Ping', 'Become dejected and despondent', 'Dumb as a wooden chicken', 'Bureaucrats shield one another', 'Be by nature unconventional and straight forward', 'One after another in close succession', 'Zhu Ganyuqi', 'Not one lost safe', 'Run amuck', 'A dragon and a tiger', 'Cherish an old broom as if it were a thousand pieces of gold', 'Look and step back', 'Above all others', 'At the end of one's eyes', 'Well-content', 'If you don't win your coat', 'Past and past', 'Disappear from the scene', 'Floating clouds', 'Hong Kong deer car', 'Turn calamities into blessings', 'In groups', 'Deep love and remembrance of lovers', 'Judge people by words', 'Human effort is the decisive factor', 'Share the same with us', 'Shrink from fear', 'Creep', 'By surprise', 'Get without any labor without doing any work', 'The people are old and happy.', 'Born siren', 'Scabies disease', 'Describe even to the trifling point', 'Drag tactics', 'Wander from the subject', 'Wear the shoes on the head and the cap on the feet', 'Eat not to live', 'Talk vigorously', 'Mourn over a friend's death', 'Equal power', 'Hao bamboo sorrow', 'Be calm in undertaking', 'Uphold justice', 'Commit suicide', 'Jump on the bandwagon', 'Invisible body', 'Liver and kidney', 'Keep calm', 'Be of two about', 'Needle and thread', 'In deep distress', 'Emulsion', 'Bo Yun Committee', 'Very clear-sighted', 'Pride and luxury', 'Abuse', 'Stars and frost move', 'Eat and feed', 'Iron and gold', 'Earth crumbles', 'Gather in little knots', 'Have a distinctive taste', 'Thorough study', 'Disappoint those who had hopes in a person', 'Foretell things accurately', 'For his past misdeeds', 'From the shallower to the deeper', 'To be falsely taking part in the discussions', 'Flawless', 'Lend support to a rebel', 'Pick and choose', 'Act on behalf of others', 'High carriage and four horses -- symbol of wealth and nobility', 'Vent one's anger on others', 'Do whatever one wants', 'Zhi Zhi Yan Si', 'What is there against it', 'Rise up in arms', 'Wait and see', 'Heaven and earth', 'Bi County', 'a butt for future ridicule', 'Pray to the gods and seek to ascertain by divination', 'Possible mistake or mishap', 'Transient', 'Grieve', 'Refuse to do what one is assigned to do', 'Play the gangster', 'Accumulate day by day', 'Think over the past', 'In the light of its general trend', 'Look at each other', 'Swallow the boat and escape the net', 'Matter of no great urgency', 'Completely sweep', 'Valiant record', 'Swift movement of calligraphy', 'Have mixed feelings', 'All in one breath', 'Changing', 'Heal the wounded and rescue the dying', 'Too profound to be understood', 'Grand and magnificent', 'Eat humble pie', 'Mutual restraint and mutual help', 'Be promoted according to status', 'Just a flourish of the pen and it's done', 'Overwhelming disaster', 'Have a lingering fear', 'A simple meal', 'Bird's wings', 'Be down on one's luck', 'Miss this and that', 'Unaltered forever', 'Indecent', 'Name after the originating person or place', 'Famous men and women', 'Truly great men', 'Clusters of flowers', 'Gain victory with unstained Swords', 'Be at the end of one's forbearance', 'To be keen on mountains and rivers has become and unalterable favourite hobby', 'Give the matter further thought and discuss it later', 'At the mercy of', 'In a state of war', 'Have a glib tongue', 'Very rich', 'As if thinking of sth.', 'Slight defect of little importance', 'Desperate', 'seek out able men and receive them', 'All in all', 'There is not much left', 'Kill and rob', 'East and West', 'Weep in a corner and bewail one's sad fate', 'One's word does not express his idea', 'Be responsible for politics', 'Jade pile', 'Men's life is like boarding in this world', 'Be guilty of dereliction or serious violation of law', 'Sth. one knows well and can manage with ease', 'Intimate affection', 'Persuade with what is right', 'Loyalty, filial piety, chastity and righteousness', 'Appreciate sb.'s thought', 'Go through fire and water', 'Low in mind', 'Bide one's time', 'Lack of food and clothing', 'Seven broken bits and eight patches', 'Hit out in all directions', 'No other', 'Delay the fulfilment of a military plan', 'Unexpected disaster', 'In a kindly manner', 'Difficult to move together', 'Remember what is right at the sight of profit', 'The drunken singing and the usual dancing', 'Heavy breath and breath holding', 'Impossible', 'A deer cart', 'Beyond the modern age', 'Look sharp', 'Devoid of gratitude', 'Suspicious and suspicious', 'Cutting edge', 'Appear to be tough outwardly, be timid inwardly', 'Something is better than nothing', 'Be blamed for whatever one does', 'With both civil and military ability', 'Cooking and cooking', 'Patch up a quarrel and reconcile the parties concerned', 'Stand alone', 'Wind driven electric shock', 'Everywhere', 'Token granted by the Emperor', 'Regard a hazardous location as level ground -- no fear of danger and difficulties', 'Lamps and candles of a myriad families', 'Half gained but half lost', 'Love each other dearly', 'Unrewardable merit', 'popular support', 'Industry's pride', 'Praise the reputation', 'The monsters and freaks of all descriptions', 'Move forward bravely', 'Personal sorrow and joy', 'Gentle and elegant', 'Jade figure', 'Close application', 'Eat without relish', 'Natural beauty', 'Have talent but no opportunity to use it', 'All sorts of schemes', 'Wire less', 'Not to be abandoned', 'Excuse me?', 'Dark', 'You had better shut up', 'Catch the enemy unaware', 'Compromise', 'Pledge to die', 'Be high without danger', 'Find fault with', 'Circumspect', 'Over and over', 'Keep a tight watch', 'Word for word', 'Just starting to expand', 'Have as much food and clothing as one wants', 'Right track', 'Ancient people', 'Said of an elegant demeanor and high personality', 'East wild people', 'Fall into a snare', 'Be completely bedridden', 'High-minded, lofty spirit and pure action', 'Use the past to attack the present', 'Save the dying from danger', 'Have no contact with others', 'Evil men usurping authority', 'Oil dry lamps', 'Forget honour at the prospect of profits', 'Changing circumstances', 'A promise is weightier than one thousand bars of gold', 'Native gold', 'The means of the people have been used up', 'Rack one's brains in vain', 'Magnanimous', 'Adoration', 'Discriminate against those who hold different views', 'Welcome visitors and see them off', 'The Qin and Yue are sterile.', 'Be in disorder', 'Steadfastly stand on one's ground', 'Converse', 'Act quickly and resolutely', 'Work hard', 'Punishment for punishment', 'Heart and soul', 'Well done', 'All kinds of strange things', 'Cop-out', 'A single word of gold', 'Failure to put things away properly is inviting theft', 'Not attend to one's proper works or duties', 'Profound and profound', 'Scratch', 'Not worth a thought', 'Nive out of ten', 'Torture oneself with unpleasant thoughts', 'Foretell like a prophet', 'Put one's heart and soul into', 'One is even willing to die in the evening if he could hear the truth in the morning', 'Go back to work', 'Torture oneself with unpleasant thoughts', 'Heaven and earth', 'Feel like old friends at the first meeting', 'Bohemian', 'Pick up and get on', 'White fish and black fish', 'So far behind that one can only see the dust of the rider ahead', 'The doctrine of Confucius and Mencius', 'Sit together', 'Courteous and accessible', 'Zhao Wei, the giant fish', 'Deep-rooted love for natural charms', 'Make an obeisance', 'The stratagem of concealing one's true features', 'Dan lead a and B', 'Poor words', 'Make a mistake', 'Harsh penal codes in great numbers', 'Punish the wrong', 'Be neither friendly nor aloof', 'Duck soup', 'Peach spirit', 'Neither dead nor alive', 'Come into play', 'Refuse to commit suicide', 'Sighing and sighing', 'Dangerous and dangerous', 'Hold two posts simultaneously', 'Unexpected disaster', 'Dress up', 'Torment a person too hard', 'Even once is too amny', 'Advantageous to both public and private interest', 'Go from plain to deep', 'Suit both the refined and the common people', 'Make ends meet', 'Silver screen house', 'dress in scholarly clothes and show refined manners', 'On your marks', 'Hito Yoshihito', 'Profound and profound', 'An unexpected gain', 'Grand', 'Nine characters', 'Life and death', 'Proud and contemptuous of the work and its ways', 'Like a flock of ducks', 'Smoke opium', 'allow oneself to become dissolute', 'Thinking about the past', 'Snow house', 'Disguise oneself', 'Poetic charm', 'One after another', 'Reel silk from cocoons', 'A sorrow of infinity', 'Refinement', 'Over', 'An unexpected or undeserved gain', 'Micro analysis', 'Break the goods', 'Put on fire', 'Mutual complementary', 'Neither fast nor slow', 'Simple and comprehensive', 'Mutual weapon', 'Skill of being a skilled worker', 'Bring home the bacon', 'Regarded as hopeless', 'In a low voice', 'People starved to death are everywhere', 'Fighting against wind', 'Eat a ready-cooked meal', 'Gather together', 'Disease in one's vital organs', 'Have no predecessors', 'affected', 'Pick and choose', 'While pondering its meaning', 'Take advantage of one's or sb. Else's power to bully people', 'Deceive oneself and others', 'Thorough analysis', 'So hot on stones that gold might have melted there', 'Appear in a big hurry', 'Two confused', 'Old trouble and no cure', 'Vague', 'Be mentioned in the same breath', 'Nothing is impossible', 'Be closely related and mutually dependent', 'Very busy', 'Worry about wine', 'Sound bad', 'Family businesses', 'Beat the drum and seize the flag', 'Dull as ditch water', 'Appear trite and insignificant', 'People talk about their native land', 'Wen Zhang economy', 'Strength and strength', 'Forget national interests', 'Get confused', 'Short of breath', 'One's words are not matched by deeds', 'Unaccountable anger', 'Follow justice', 'In a wrong way', 'Out and out', 'Catch up from behind', 'Buy Iron Si gold', 'Receive orders respectfully', 'Die willingly', 'Identical with each other', 'Better than before', 'Have the ambition to rise in society', 'An immense number of books', 'Sharing everything', 'Drive away', 'Self-disciplined', 'Insignificant skill', 'Your highly esteemed kindness and invaluable friendship', 'Thinking deeply', 'Heaven on earth', 'Eunuch', 'Drive sb too hard', 'Hide oneself in silence', 'Careful consideration', 'Resplendent and magnificent', 'Light in the world', 'Go to one's death like a hero', 'Not to be appreciated', 'Harbour evil designs', 'Know and respect the talent', 'There was nothing precious', 'Dumbstruck', 'Uneven days', 'Destroy evils before they become apparent', 'All of a sudden', 'Exhausted', 'Suddenly enlightened', 'Wu Wu house', 'Support one's family', 'Get rid of clothes and commit suicide', 'Lay down one's life for justice', 'Indistinct', 'Too late for regrets', 'Exhaust one's abilities', 'Wind and electric shocks', 'Lead a fast', 'Mo Ren Ti Yi', 'Be timid and overcautious', 'Late for thought', 'Go on a wild goose chase', 'Die willingly', 'Give confidential instructions in person', 'Heavy beds', 'As one wishes', 'He Xiang Yi County', 'Hesitate to worry', 'Talented and capable', 'Weigh the blame', 'Be prepared for danger in times of peace', 'See the error of one's ways and repent', 'Crooked ways', 'Be careful', 'Make no exception', 'Cannot withstand a single blow', 'Long-standing', 'The whole scheme has gone to nought', 'Go back to the past', 'Bitter as if it were malt sugar', 'Insensitive', 'Have as one wishes', 'Long Hanfengyi', 'Bode ill rather than well', 'Crow like a cock and snatch like a dog', 'Act as a vehicle', 'Behead enemy generals and capture their flags', 'Be guilty of dereliction or serious violation of law', 'Riches and honour make a person arrogant', 'A moth flying into fire', 'Remain in one's proper sphere', 'Gold from sand', 'Suffer heavy losses', 'All at one go', 'All good and evil', 'A centipede dies but never falls down', 'Understanding', 'In one's seventies and eighties', 'Food bed', 'Do not know whether it will turn out good or bad', 'Talk wildly', 'To be resourceful', 'Old man', 'Jun Sha salt car', 'Spare him', 'add wings to s tiger ─ lend support to an evildoer', 'Use the force to ride the cart', 'Pleasing to ears and eyes', 'Relics', 'Search for gold in sand', 'Versed neither in polite letters nor in military arts', 'The words fail to convey the meaning', 'Speak highly of oneself', 'Stop at nothing', 'Important people have short memories', 'Hand in hand', 'One class and one level', 'Some take the swan as a wild duck, some take it as a swallow', 'Grogginess', 'Northern gate', 'Mysterious and fascinating', 'Silent change', 'Oblivious of imminent danger'] _youdao_chengyu = []#Induced idioms file = open("1.json","r",encoding="UTF-8") fileJson = json.load(file) for idiom in fileJson.keys(): _shou_pinyin = fileJson[idiom]["first"]#Take the initial of idiom _mo_pinyin = fileJson[idiom]["last"]#Take the final word of idiom Pinyin if _mo_pinyin in _pozhan_pinyin: for key in fileJson.keys():#Go through all idioms if fileJson[key]["first"] == _mo_pinyin and key not in _pozhan_chengyu :#If there is an idiom that can take that idiom, but it is not a broken idiom, then the idiom will not be used. break else: continue#Continue to see if it does not meet the conditions else:#That idiom is qualified. All the idioms he can follow are flawed idioms. if idiom not in _youdao_chengyu: _youdao_chengyu.append(idiom) print("Find induced idioms+1") else:#The Pinyin at the end of that idiom is not a broken Pinyin. Judge the next idiom. continue _youdao_chengyu = list(set(_youdao_chengyu)) print(_youdao_chengyu)

Then I ran out and did something else. After running the program for a while, I finally found all the induced idioms:

There are only so many, so I added my judgment:
If you can answer "induced idiom", answer it.
If an idiom makes the other person answer "induced idiom", remove the idiom.

The reason for the victory of the match with my friend is that the other side input "dye the mind" (the fourth from the bottom), and my AI found that "zhi" can be followed by "induction idiom", so I received a "induction idiom", the other side can only accept a "flaw idiom", so I can take a "perfect idiom" to win.

I ran to do a test with CTF AI and found that the other side also knows how to induce idioms!!
Also know how to avoid "induced Idioms"
It seems that the AI on the opposite side should not be underestimated!
But it's OK. Now at least he can't kill me, and I can't kill him.
If you want to end the match now, there will be "no idiom to connect" unless all the idioms corresponding to a certain Pinyin are consumed. It needs to be consumed slowly, but there is no way to "kill with one blow".

So in order to achieve a high winning rate, we need another winning and losing idea, two ideas together.

The above winning and losing ideas are summarized as follows:

Flawed idiom - induced idiom - flawed idiom - perfect idiom

A broken idiom: whoever answers will lose
Because the machine of the other side also knows "induction idiom", so none of us can "kill the other side"
Therefore, the role of this winning and losing thinking can only be "defense", not "attack" (because the other side will also defend)

It seems that this idea can only be solved by three layers of for, but because I use another script to calculate the first or last Pinyin of "perfect idiom", "broken idiom" and "induced idiom" in advance, and then just judge the element in set, so only one layer of for loop is used in this process, greatly optimizing the algorithm.

After doing this, I abandoned the pit for several days, until I came up with another idea one or two days before the end of the competition, and then started to do it again.
I've mentioned one idea above, and then I'd like to talk about another winning and losing idea:

As we said before, the computer will not only avoid letting me pick up perfect idioms, but also avoid letting me pick up induced idioms. The only way we can win is to consume all the idioms that a certain pinyin can pick up.

My general idea is: first of all, I know which pinyin can connect with few idioms, and then try to connect idioms in this direction, and try to use as many times as possible.
First of all, we need to know which pinyin can be connected with few idioms. I call these idioms "a few Idioms", because there are few idioms that can be connected with Pinyin.
In principle, I should write a script like before, and run out the Pinyin with the number of "a few Idioms" no more than 15, but because there is a bug in the script, I can't find it, so I just give up, and directly let my AI and the AI of the other side play each other, and record the Pinyin with the number of idioms that can be picked up manually.

I call the idiom "special idiom" which can be connected with a small number of idioms, that is to say, there are not many idioms which can be connected with "special Idioms". I call the idiom which can be connected with "special Idioms" as "few Idioms".

The initial idea is:
If you can answer a special idiom, you should give priority to it, because in this way, the other party will have to accept a "minority idiom". When the "minority idiom" is consumed and useless, it will lose.
At the same time, I need to add a judgment to the idiom I want to answer, so as to avoid that the idiom I want to answer can make the other person accept a special idiom (the test shows that the AI of the other party really knows this trick). In that case, I have to answer a "few Idioms", and there is a risk of losing.

Note that there is only a risk of losing. You will lose only when the few idioms that a special idiom can accept are all used up. So my initial thought was to avoid answering an idiom that would let the other person pick up a special idiom, which I called "unsatisfied idiom". The reason why he is called "unsatisfied idiom" is that we may lose in answering such an idiom, so it is called "unsatisfied idiom". Although this idiom is not satisfactory, sometimes you have to answer this idiom when you run out of other idioms.

To summarize:
A certain idiom - unsatisfied idiom - special idiom - a few idioms

This is the initial strategy: blindly avoid answering "unsatisfied Idioms" (no matter whether the corresponding few idioms are consumed or not). And then the odds went up again.
But there are obvious shortcomings: offensive is not strong. And some unsatisfied idioms can be answered completely (if the few idioms corresponding to the special idiom corresponding to the unsatisfied idiom haven't been consumed), the answer can also speed up the consumption of "a few Idioms"! How to continue to improve?

The main differences between my two versions of AI are as follows:

That efficient and fast AI simply doesn't answer "unsatisfied Idioms" and lets the other side answer all the few idioms. This AI is the original AI. He has the ability to defeat AI.

The AI, which is inefficient but can spend less rounds to defeat the opponent, will check the unsatisfied idiom to see if its corresponding few idioms have been consumed. If not, we can also answer the unsatisfied idiom. In this process, we and the other party will consume "a few Idioms".

For the latter AI, in order to judge whether "a few Idioms" have been consumed, we must introduce an important variable: "used idioms". Because the former AI doesn't answer "unsatisfied Idioms" because of its high efficiency and fast operation, it only needs to record idioms (or not at all); the latter AI needs to record idioms not only used by itself, but also used by the other party. This leads me to have to modify the input method: originally, I (human) was responsible for inputting the final Pinyin of the idiom of the other party, but now in the latter version of AI, what I want to input is no longer the Pinyin but the idiom of the other party's answer. (the efficiency of the second version is low, mainly here, human back pot)

A certain idiom - unsatisfied idiom - special idiom - a few idioms
When we want to answer a "unsatisfied idiom", how to judge whether the "unsatisfied" corresponding to the last "few Idioms" has been consumed?

This time, we can't judge with only one layer of for like the first winning and losing idea. Why?
Because the variable "used idiom" is added, the result will be different with the variable.

We need two layers for
The first level for: find the "special idiom" that can meet the "dissatisfied idiom";
The second layer for: find "a few Idioms" that can receive "special Idioms", and then judge "a few Idioms" to see if they are consumed.

It's easy to judge whether it's consumed or not. Just run out and put "a few Idioms" in a set, and then subtract this set from "used idioms". What you get is the idiom in "a few Idioms" but not in "used idioms". Then use len() to check whether the length is 0.

Now that we have done this, let's add another step. If we want to answer "special Idioms", we can find "a few Idioms" that can receive "special Idioms" in the same way, and then judge. We give priority to a "special idiom" with the least number of idioms. This time, we only need one layer of for.

The above is the second winning and losing thought, which is summarized as follows:
A certain idiom - unsatisfied idiom - special idiom - a few idioms

In fact, we can completely replace the set of "unsatisfied Idioms" with all idioms, which means that we only judge "unsatisfied Idioms" (because there are few idioms corresponding to them). In other words, "unsatisfied idiom" is actually a subset of all idioms that are easy to meet the judgment conditions, so we will pick it out. If we replace "unsatisfied Idioms" with all idioms, the algorithm will make such a judgment on all idioms, and the winning rate will increase. But why don't we? Because the algorithm is not computational power, if we change it into all idioms, the winning rate will not increase much, but the workload of the machine will be correspondingly large. Alpha Go is also an algorithm. If you enumerate all possible situations like a column tree view, the odds will be higher. Why not? Because the machine can't complete such a large amount of work, the algorithm is not computing power.

The answer priority of the two versions is different.

The efficient version is: perfect idiom > Special idiom > General idiom > unsatisfied idiom
Unsatisfied idiom is the last to answer without an answer

The high winning version is: perfect idiom > Special idiom > unsatisfied idiom (if the condition is met) > General idiom

Next is the code of efficient and fast version:

#encoding=utf-8 import json import pyperclip import pyautogui round = 0#Record rounds #These are all kinds of idioms and Pinyin that have been calculated in advance to optimize the algorithm. _PERFECT_IDIOM = ['Not thorough going', 'Not thorough going', 'In an awkward position', 'Not speak', 'Not thorough going', 'Not to blame', 'Be noncommittal', 'Convergence', 'Slash-and-burn cultivation', 'Borrow all around', 'Borrow all around', 'Put all sorts of things together', 'Huang Zhong tile', 'Burn straws and weeds and water the land', 'Hunger and cold', 'Golden House', 'Persuade sb. To do good and dissuade him from doing evil', 'Retreat', 'Never save', 'Oral expression', 'Piece together', 'People involved in ang no', 'Reward the virtuous', 'Plough deeply and weed thoroughly', 'Talents gather from everywhere', 'Twist the bill together', 'Be obsequious', 'All right', 'Persuade sb. To do good and dissuade him from doing evil', 'Can you offer a substitute?', 'One top two.', 'Great wife'] #Perfect idioms used =[] #Used idioms _PERFECT_PINYIN_HEAD = ['wu', 'chong', 'dong', 'che', 'bu', 'wei', 'si', 'wang', 'xian', 'ban', 'jin', 'huo', 'qi', 'jiu', 'ji', 'shen', 'dao', 'huang', 'ren', 'kou', 'shang', 'yi','xu','zhen'] #The first character Pinyin of perfect idiom, that is, the last character Pinyin of broken idiom _YOUDAO_PINYIN_HEAD = ["bing","bian","zhi","yun","jin","yue","huang","zhu","run"] #The initial Pinyin of the induced idiom is also the final Pinyin of the broken idiom. _YOUDAO_IDIOM = ['Being put in the grease, it does not get glossy -- incorruptible official', 'As clean as ice and as pure as jade', 'Dancing with wind and dancing', 'Being put in the grease, it does not get glossy -- incorruptible official', 'Yun Bu Yu Run', 'Golden voice and jade run', 'Damp and moist', 'Insidious slander which gradually soaks into the mind', 'Moon is smooth', 'Be in straits', 'Excellent singing or polished writing'] #Induced idioms _MINORITY_IDIOM_HEAD = ['nve','nuan','rui','ken','zeng','guai','a',"miu","kuo","se","meng","hou","piao","tang","ning","pei","shuai","shua","ran","xia","ze","ding","e"] #The initial Pinyin of "a few Idioms", that is, the final Pinyin of "special Idioms" _UNSATISFIED_IDIOM_HEAD = ['you', 'qu', 'sang', 'dun', 'xiao', 'zeng', 'ji', 'yu', 'qiong', 'xiang', 'ken', 'wu', 'kuang', 'fu', 'tan', 'an', 'quan', 'hai', 'jian', 'zha', 'jue', 'she', 'chun', 'fei', 'e', 'hui', 'suo', 'nu', 'juan', 'mai', 'di', 'shuai', 'de', 'zhang', 'mian', 'sheng', 'gu', 'zhe', 'chong', 'shun', 'zun', 'zuo', 'dui', 'wo', 'xin', 'tie', 'fang', 'pi', 'guo', 'guan', 'ge', 'mao', 'peng', 'zao', 'shen', 'yi', 'xu', 'ruan', 'gou', 'zheng', 'yue', 'chai', 'nie', 'han', 'fan', 'du', 'bao', 'bing', 'xing', 'lu', 'lang', 'sun', 'ya', 'yang', 'zu', 'gang', 'lou', 'shao', 'wen', 'xiong', 'zhai', 'zhuang', 'chen', 'tian', 'bai', 'chuan', 'ming', 'chao', 'bei', 'xian', 'chi', 'ping', 'zong', 'sou', 'yao', 'kong', 'piao', 'ling', 'ri', 'chou', 'hong', 'shu', 'zhou', 'chang', 'lei', 'jin', 'song', 'cong', 'ran', 'zhong', 'diao', 'cai', 'hua', 'cha', 'zhan', 'si', 'ru', 'man', 'qin', 'qiu', 'xi', 'bu', 'che', 'da', 'huai', 'po', 'chu', 'mu', 'jia', 'qing', 'qi', 'long', 'jie', 'hu', 'ai', 'gan', 'xia', 'wei', 'ting', 'die', 'neng', 'niu', 'zai', 'he', 'shang', 'can', 'ju', 'xuan', 'meng', 'huan', 'lian', 'xun', 'gai', 'min', 'cang', 'yun', 'chan', 'zhi', 'san', 'cuo', 'tong', 'xie', 'chui', 'dang', 'nan', 'shan', 'zhu', 'guai', 'bo', 'mo', 'dan', 'heng', 'ren', 'jun', 'pian', 'hao', 'ben', 'shui', 'gua', 'qiao', 'shuang', 'yuan', 'dong', 'yin', 'ban', 'ding', 'bian', 'gui', 'er', 'chuang', 'hun', 'nian', 'gong', 'liao', 'cheng', 'tou', 'nong', 'zi', 'dao', 'bi', 'tai', 'jiao', 'ni', 'jiu', 'liang', 'ying', 'cuan', 'su', 'feng', 'ma', 'tu', 'xue', 'ba', 'mei', 'liu', 'jing', 'lao', 'sha', 'pu', 'guang', 'yan', 'shi', 'li', 'kan', 'cui', 'ci', 'zhuo', 'lv', 'huang', 'fen', 'qiang', 'sao', 'geng', 'qian', 'ti', 'shou', 'jiang'] #The Pinyin of the first word of the "unsatisfied" idiom is used to judge whether an idiom can be followed by "unsatisfied idiom". while(1): _special_idiom = [] #Although it's not a perfect idiom, we try to use as many as possible and consume the number of acceptable idioms to reach the end of the match, because the end of special idioms is limited by pinyin. _perfect_idiom = [] #Perfect idiom: no idiom to follow after answering _yiban_idiom = [] #Common idiom: a common idiom: you can connect before and after _unsatisfied_idiom=[] #Unsatisfied idioms: although they will not be ko, they will make the other side answer the special idioms, and risk losing _pozhan_idiom = [] #Flawed idiom: will let the other side answer the perfect idiom, the answer will lose _input_pinyin = input("Input initial Pinyin\n") if _input_pinyin == "1": #Prevent wrong input and cancel adding the last used idiom used.pop() print("Withdrawal of success") continue elif _input_pinyin == "2": used.append(input("Add used idioms manually:\n")) print("Add success") continue file = open("1.json","r",encoding="UTF-8")#Reading Idiom Database fileJson = json.load(file) for idiom in fileJson.keys(): last_pinyin = fileJson[idiom]["last"]#Take the final word of idiom Pinyin first_pinyin = fileJson[idiom]["first"] if _input_pinyin == first_pinyin: #Check whether the initial Pinyin of idiom is the same as the input Pinyin, because what we are looking for is able to connect if idiom in _PERFECT_IDIOM: print("Find the perfect idiom+1\n")#Perfect idiom: you can connect one idiom, but not the next _perfect_idiom.append(idiom) continue elif last_pinyin in _PERFECT_PINYIN_HEAD or last_pinyin in _YOUDAO_PINYIN_HEAD:#Find a flaw in pinyin _pozhan_idiom.append(idiom) continue elif first_pinyin in _UNSATISFIED_IDIOM_HEAD:#Unsatisfied idiom: the head Pinyin of this idiom belongs to unsatisfied head, that is to say, the answer to this idiom will cause the other side to answer special idioms, so we can only answer a few idioms, and there is a risk of losing _unsatisfied_idiom.append(idiom) continue elif idiom in _YOUDAO_IDIOM and idiom not in _PERFECT_IDIOM :#Find induced idioms _perfect_idiom.append(idiom) continue elif last_pinyin in _MINORITY_IDIOM_HEAD:#If the tail Pinyin of this idiom belongs to the head of a few idioms, that is to say, this idiom is a special idiom _special_idiom.append(idiom) continue for key2 in fileJson.keys():#Go through all idioms and find key2 to connect it with idiom if last_pinyin == (fileJson[key2]["first"]) and idiom not in _yiban_idiom:#If the ending Pinyin of idiom is equal to the beginning Pinyin of key2 idiom _yiban_idiom.append(idiom) #print("find common idiom + 1\n") break else:continue round += 1 print("Round:",round) print("Used idioms:\n\n",used) print("Perfect idioms are:\n",_perfect_idiom,"\n\n") print("Special idioms include:\n",_special_idiom,"\n\n") print("Unsatisfied idioms include:\n",_unsatisfied_idiom,"\n\n") #print("the idioms with flaws are as follows:" n "," idom "," \ n \ n ") print("Common idioms are:\n",_yiban_idiom,"\n\n") #Automatically copy idioms with the highest priority(Different priority from another version):Perfect idioms>Idioms>General idioms>Unsatisfied idiom #Unsatisfied idiom is the last to answer without an answer try: if len(set(_perfect_idiom)-set(used))==0: if len(set(_special_idiom)-set(used))==0: if len(set(_yiban_idiom)-set(used))==0: a = 0 while(_unsatisfied_idiom[a] in used): a = a + 1 pyperclip.copy(_unsatisfied_idiom[a]) used.append(_unsatisfied_idiom[a]) else: a = 0 while(_yiban_idiom[a] in used): a = a + 1 pyperclip.copy(_yiban_idiom[a]) used.append(_yiban_idiom[a]) else: a = 0 while(_special_idiom[a] in used): a = a + 1 pyperclip.copy(_special_idiom[a]) used.append(_special_idiom[a]) else: a = 0 while(_perfect_idiom[a] in used): a = a + 1 pyperclip.copy(_perfect_idiom[a]) print("Win.") used.append(_perfect_idiom[a]) except ValueError: print("Error 1 occurred") continue except IndexError: print("Error 2 occurred") continue #Switch window, paste idiom to send, then switch back to window pyautogui.keyDown('alt') pyautogui.keyDown('tab') pyautogui.keyUp('alt') pyautogui.keyUp('tab') pyautogui.keyDown('Ctrl') pyautogui.keyDown('v') pyautogui.keyUp('Ctrl') pyautogui.keyUp('v') pyautogui.keyDown('Enter') pyautogui.keyUp('Enter') pyautogui.keyDown('alt') pyautogui.keyDown('tab') pyautogui.keyUp('alt') pyautogui.keyUp('tab'

Then there's the inefficient but winning version:

#encoding=utf-8 import json import pyperclip import pyautogui round = 0#Record rounds #These are all kinds of idioms and Pinyin that have been calculated in advance to optimize the algorithm. _PEFECT_IDIOM = {'Not thorough going', 'Not thorough going', 'In an awkward position', 'Not speak', 'Not thorough going', 'Not to blame', 'Be noncommittal', 'Convergence', 'Slash-and-burn cultivation', 'Borrow all around', 'Borrow all around', 'Put all sorts of things together', 'Huang Zhong tile', 'Burn straws and weeds and water the land', 'Hunger and cold', 'Golden House', 'Persuade sb. To do good and dissuade him from doing evil', 'Retreat', 'Never save', 'Oral expression', 'Piece together', 'People involved in ang no', 'Reward the virtuous', 'Plough deeply and weed thoroughly', 'Talents gather from everywhere', 'Twist the bill together', 'Be obsequious', 'All right', 'Persuade sb. To do good and dissuade him from doing evil', 'Can you offer a substitute?', 'One top two.', 'Great wife'} #Perfect idioms used_idiom =[] #Used idioms _PERFECT_PINYIN_HEAD = ['wu', 'chong', 'dong', 'che', 'bu', 'wei', 'si', 'wang', 'xian', 'ban', 'jin', 'huo', 'qi', 'jiu', 'ji', 'shen', 'dao', 'huang', 'ren', 'kou', 'shang', 'yi','xu','zhen'] #The first character Pinyin of perfect idiom, that is, the last character Pinyin of broken idiom _YOUDAO_PINYIN_HEAD = ["bing","bian","zhi","yun","jin","yue","huang","zhu","run"] #The initial Pinyin of the induced idiom is also the final Pinyin of the broken idiom. _YOUDAO_IDIOM = ['Being put in the grease, it does not get glossy -- incorruptible official', 'As clean as ice and as pure as jade', 'Dancing with wind and dancing', 'Being put in the grease, it does not get glossy -- incorruptible official', 'Yun Bu Yu Run', 'Golden voice and jade run', 'Damp and moist', 'Insidious slander which gradually soaks into the mind', 'Moon is smooth', 'Be in straits', 'Excellent singing or polished writing'] #Induced idioms _MINORITY_IDIOM_HEAD = ['nve','nuan','rui','ken','zeng','guai','a',"miu","kuo","se","meng","hou","piao","tang","ning","pei","shuai","shua","ran","xia","ze","ding","e"] #The initial Pinyin of "a few Idioms", that is, the final Pinyin of "special Idioms" _UNSATISFIED_IDIOM_HEAD = ['you', 'qu', 'sang', 'dun', 'xiao', 'zeng', 'ji', 'yu', 'qiong', 'xiang', 'ken', 'wu', 'kuang', 'fu', 'tan', 'an', 'quan', 'hai', 'jian', 'zha', 'jue', 'she', 'chun', 'fei', 'e', 'hui', 'suo', 'nu', 'juan', 'mai', 'di', 'shuai', 'de', 'zhang', 'mian', 'sheng', 'gu', 'zhe', 'chong', 'shun', 'zun', 'zuo', 'dui', 'wo', 'xin', 'tie', 'fang', 'pi', 'guo', 'guan', 'ge', 'mao', 'peng', 'zao', 'shen', 'yi', 'xu', 'ruan', 'gou', 'zheng', 'yue', 'chai', 'nie', 'han', 'fan', 'du', 'bao', 'bing', 'xing', 'lu', 'lang', 'sun', 'ya', 'yang', 'zu', 'gang', 'lou', 'shao', 'wen', 'xiong', 'zhai', 'zhuang', 'chen', 'tian', 'bai', 'chuan', 'ming', 'chao', 'bei', 'xian', 'chi', 'ping', 'zong', 'sou', 'yao', 'kong', 'piao', 'ling', 'ri', 'chou', 'hong', 'shu', 'zhou', 'chang', 'lei', 'jin', 'song', 'cong', 'ran', 'zhong', 'diao', 'cai', 'hua', 'cha', 'zhan', 'si', 'ru', 'man', 'qin', 'qiu', 'xi', 'bu', 'che', 'da', 'huai', 'po', 'chu', 'mu', 'jia', 'qing', 'qi', 'long', 'jie', 'hu', 'ai', 'gan', 'xia', 'wei', 'ting', 'die', 'neng', 'niu', 'zai', 'he', 'shang', 'can', 'ju', 'xuan', 'meng', 'huan', 'lian', 'xun', 'gai', 'min', 'cang', 'yun', 'chan', 'zhi', 'san', 'cuo', 'tong', 'xie', 'chui', 'dang', 'nan', 'shan', 'zhu', 'guai', 'bo', 'mo', 'dan', 'heng', 'ren', 'jun', 'pian', 'hao', 'ben', 'shui', 'gua', 'qiao', 'shuang', 'yuan', 'dong', 'yin', 'ban', 'ding', 'bian', 'gui', 'er', 'chuang', 'hun', 'nian', 'gong', 'liao', 'cheng', 'tou', 'nong', 'zi', 'dao', 'bi', 'tai', 'jiao', 'ni', 'jiu', 'liang', 'ying', 'cuan', 'su', 'feng', 'ma', 'tu', 'xue', 'ba', 'mei', 'liu', 'jing', 'lao', 'sha', 'pu', 'guang', 'yan', 'shi', 'li', 'kan', 'cui', 'ci', 'zhuo', 'lv', 'huang', 'fen', 'qiang', 'sao', 'geng', 'qian', 'ti', 'shou', 'jiang'] #The Pinyin of the first word of the "unsatisfied" idiom is used to judge whether an idiom can be followed by "unsatisfied idiom". while(1): _special_idiom = [] #Special idiom: although it is not a perfect idiom, due to the limited number of terminal Pinyin Chinese idioms, we try our best to use more and consume the number of acceptable idioms to achieve the end of the match _perfect_idiom = [] #Perfect idiom: no idiom to follow after answering _yiban_idiom = [] #Common idiom: a common idiom: you can connect before and after _unsatisfied_idiom=[] #Unsatisfied idiom: Although we won't be ko, we will let the other side answer the special idiom, and we will risk losing _pozhan_idiom = [] #Flawed idiom: will let the other side answer the perfect idiom, the answer will lose _minority_idiom_number_1 = {} #A dictionary: record the unsatisfied idioms we may answer, and the number of the remaining few idioms we can answer corresponding to the special idioms, from line 120 to line 152 _minority_idiom_number_2 = {} #A dictionary: record the special idioms we may answer, and the number of the remaining few idioms we can answer, from line 154 to line 168 file = open("1.json","r",encoding="UTF-8")#Reading Idiom Database fileJson = json.load(file) _input_idiom = input("Enter the idiom used by the other party:\n") if _input_idiom in used_idiom: print("This idiom has been used") continue used_idiom.append(_input_idiom) print("Idiom used by the other party has been entered\n") try: _input_pinyin = fileJson[_input_idiom]["last"]#The final Pinyin of the idiom used by the other side except KeyError: print("Please re-enter") continue if _input_idiom == "1": #Prevent wrong input and cancel adding the last used idiom used_idiom.pop() print("Withdrawal of success") continue elif _input_idiom == "2": #Add used idioms manually used_idiom.append(input("Add used idioms manually:\n")) print("Add success") continue for idiom in fileJson.keys(): last_pinyin = fileJson[idiom]["last"]#Take the final word of idiom Pinyin first_pinyin = fileJson[idiom]["first"]#Take initial Pinyin if _input_pinyin == first_pinyin: #Check whether the initial Pinyin of idiom is the same as the input Pinyin, because what we are looking for is acceptable. if idiom in _PEFECT_IDIOM : #print("Find the perfect idiom+1\n")#Perfect idiom: you can connect one idiom, but not the next _perfect_idiom.append(idiom) continue elif idiom in _YOUDAO_IDIOM and idiom not in _perfect_idiom :#Find induced idioms _perfect_idiom.append(idiom) continue elif last_pinyin in _PERFECT_PINYIN_HEAD or last_pinyin in _YOUDAO_PINYIN_HEAD:#Find the broken idiom _pozhan_idiom.append(idiom) continue elif first_pinyin in _UNSATISFIED_IDIOM_HEAD and len(_unsatisfied_idiom)<=20 :#Unsatisfied idiom: the first Pinyin of this idiom belongs to the head of unsatisfied idiom, that is to say, the answer to this idiom will cause the other side to answer special idioms, so we can only answer a few idioms, and there is a risk of losing _unsatisfied_idiom.append(idiom) continue elif last_pinyin in _MINORITY_IDIOM_HEAD:#If the tail Pinyin of this idiom belongs to the head of a few idioms, that is to say, this idiom is a special idiom _special_idiom.append(idiom) continue if len(_yiban_idiom) <= 30: #It's enough to find 30. Don't find too many. Optimize efficiency. for key2 in fileJson.keys():#Go through all idioms and find key2 to connect it with idiom if last_pinyin == (fileJson[key2]["first"]) and idiom not in _yiban_idiom:#If the ending Pinyin of idiom is equal to the beginning Pinyin of key2 idiom _yiban_idiom.append(idiom) #print("find common idiom + 1\n") break else:continue #To prevent iterator errors, use subtitle instead substitide = _unsatisfied_idiom for i in list(substitide): #Now let's judge the "dissatisfied" idiom we may answer #Two layers for, the first layer for finds the "special idiom" followed by the "unsatisfied idiom"; the second layer for finds the "minority idiom" followed by the "special idiom", and then judges the "minority idiom" for key2 in fileJson.keys(): _minority_idiom_1 = [] # Next, we need to record the few idioms corresponding to the special idioms corresponding to the unsatisfied idioms we answered. if fileJson[i]["last"] == fileJson[key2]["first"]: #Find the idiom key2 that can answer I (unsatisfied idiom). Key2 is the idiom that the other party may answer after we answer. if fileJson[key2]["last"] in _MINORITY_IDIOM_HEAD:#If the other side receives a special idiom ''' //Unsatisfied idioms can only be followed by special idioms //Only a few idioms can be followed by special idioms //So: //The tail of unsatisfied idiom is the head of special idiom //The tail of a special idiom is the head of a few idioms ''' for idiom in fileJson.keys(): #Find a few idioms that can be followed by key 2 (special idiom) if fileJson[idiom]["first"] == fileJson[key2]["last"] and idiom not in _minority_idiom_1: _minority_idiom_1.append(idiom)#idiom is a few idioms number = len(set(_minority_idiom_1)-set(used_idiom))#Number is the number of the few idioms corresponding to the special idioms corresponding to the unsatisfied idioms if number == 0: _unsatisfied_idiom.remove(i) _pozhan_idiom.append(i) #Remove the unsatisfied idioms (which will lead to (after the other party answers the idioms) (the few idioms that can be followed are all used up)) break elif i not in used_idiom: _minority_idiom_number_1[i] = number break #Next, we will judge the "special Idioms" we may answer. _minority_idiom_2 = [] # A few idioms corresponding to the special idioms we want to answer substitide = _special_idiom for i in list(substitide): #This time, I'm looking for a few idiom s that we can answer directly. for idiom in fileJson.keys(): if fileJson[idiom]["first"] == fileJson[i]["last"] and idiom not in _minority_idiom_2: _minority_idiom_2.append(idiom) number = len(set(_minority_idiom_2)-set(used_idiom))#Number is the number of a few idioms corresponding to a special idiom if number == 0: _perfect_idiom.append(i) break elif i not in used_idiom: _minority_idiom_number_2[i] = number round += 1 print("Round:",round,"\n\n") print("Used idioms:\n",used_idiom) print("Perfect idioms are:\n",_perfect_idiom,"\n\n") print("Special idioms include:\n",_special_idiom,"\n\n") print("Unsatisfied idioms include:\n",_unsatisfied_idiom,"\n\n") #print("the idioms with flaws are as follows:" n "," idom "," \ n \ n ") print("Common idioms are:\n",_yiban_idiom,"\n\n") #Automatically copy the idiom with the highest priority: perfect idiom > Special idiom > unsatisfied idiom (if the condition is met) > General idiom try: if len(set(_perfect_idiom)-set(used_idiom))==0: if len(set(_special_idiom)-set(used_idiom))==0: if len(set(_unsatisfied_idiom)-set(used_idiom))==0: a = 0 while(_yiban_idiom[a] in used_idiom): a = a + 1 pyperclip.copy(_yiban_idiom[a]) used_idiom.append(_yiban_idiom[a]) else: n = min(_minority_idiom_number_1, key=_minority_idiom_number_1.get) pyperclip.copy(n) else: n = min(_minority_idiom_number_2, key=_minority_idiom_number_2.get) pyperclip.copy(n) else: a = 0 while(_perfect_idiom[a] in used_idiom): a = a + 1 pyperclip.copy(_perfect_idiom[a]) used_idiom.append(_perfect_idiom[a]) except ValueError: print("Error 1 occurred") continue except IndexError: print("Error 2 occurred") continue #Switch window, paste idiom to send, then switch back to serial port pyautogui.keyDown('alt') pyautogui.keyDown('tab') pyautogui.keyUp('alt') pyautogui.keyUp('tab') pyautogui.keyDown('Ctrl') pyautogui.keyDown('v') pyautogui.keyUp('Ctrl') pyautogui.keyUp('v') pyautogui.keyDown('Enter') pyautogui.keyUp('Enter')

It's a pity that the final version was finished after the end of the competition.
Related code script and idiom Library:
Link: https://pan.baidu.com/s/1ctpcewnjt'deysatwaftka
Extraction code: gbqj

So far, the hackergame tour is over

27 October 2019, 01:49 | Views: 3611

Add new comment

For adding a comment, please log in
or create account

0 comments