package jp.co.learn.dict;
import java.awt.BorderLayout; import java.awt.Color; import java.awt.Container; import java.awt.Font; import java.awt.Point; import java.awt.Window; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.KeyEvent; import java.awt.event.KeyListener; import java.awt.event.MouseEvent; import java.awt.event.MouseListener; import java.awt.event.MouseMotionListener; import java.io.BufferedWriter; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.lang.reflect.Method; import java.nio.charset.StandardCharsets; import java.nio.file.FileSystem; import java.nio.file.FileSystems; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java.nio.file.StandardOpenOption; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.Enumeration; import java.util.List; import java.util.Properties;
import javax.swing.JFileChooser; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JMenu; import javax.swing.JMenuItem; import javax.swing.JOptionPane; import javax.swing.JPanel; import javax.swing.JPopupMenu; import javax.swing.UIManager; import javax.swing.plaf.FontUIResource;
public class LearnWords extends JFrame implements ActionListener, KeyListener, Runnable {
static final long serialVersionUID = 1L;
static LearnWords frame;
JLabel label;
int sec;
JPopupMenu menubar = new JPopupMenu();
static List
public static void main(String[] args) throws Exception {
System.setProperty("awt.useSystemAAFontSettings", "on");
System.setProperty("swing.aatext", "true");
try {
// Systematic UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); } catch (Exception e) { e.printStackTrace(); } // All local fonts used on the bottom initGlobalFontSetting (new Font ("Meiryo", 0, 12));
frame = new LearnWords();
}
public LearnWords() { addKeyListener(this); sec = 0;
JMenu menu1 = new JMenu ("text"); JMenu menu2 = new JMenu ("accidental"); JMenu menu3 = new JMenu ("time"); JMenu menu4 = new JMenu ("Japanese language"); JMenu menu5 = new JMenu ("Kanshu"); JMenu menu6 = new JMenu("help");
menubar.add(menu1);
menubar.add(menu2);
menubar.add(menu3);
menubar.add(menu4);
menubar.add(menu5);
menubar.add(menu6);
JMenuItem menuitem1_2 = new JMenuItem ("Open");
JMenuItem menuitem2_1 = new JMenuItem ("Start at any time"); JMenuItem menuitem2_2 = new JMenuItem ("End of time");
JMenuItem menuitem3_1 = new JMenuItem ("time +"); JMenuItem menuitem3_2 = new JMenuItem ("time-");
JMenuItem menuitem4_1 = new JMenuItem ("Japanese Language Proficiency Test Questioning Standard Vocabulary Table-N1"); JMenuItem menuitem4_2 = new JMenuItem ("Japanese Language Proficiency Test Questioning Standard Vocabulary Table-N2"); JMenuItem menuitem4_3 = new JMenuItem ("Japanese Language Proficiency Test Questioning Standard Vocabulary Table-N3"); JMenuItem menuitem4_4 = new JMenuItem ("Japanese Language Proficiency Test Questioning Standard Vocabulary Table-N4"); JMenuItem menuitem4_5 = new JMenuItem ("Minna no Japanese Words"); JMenuItem menuitem4_6 = new JMenuItem ("Japanese Language Proficiency Test Questioning Standard Katakana Vocabulary Table");
JMenuItem menuitem5_1 = new JMenuItem("exit");
JMenuItem menuitem6_1 = new JMenuItem ("+ key: frequency 1 second added"); JMenuItem menuitem6_2 = new JMenuItem ("-key: frequency reduced by 1 second"); JMenuItem menuitem6_3 = new JMenuItem ("Spacebar: Start at any time"); JMenuItem menuitem6_4 = new JMenuItem ("CTRL key: end at any time"); JMenuItem menuitem6_5 = new JMenuItem ("ESC key: exit");
menu1.add(menuitem1_2);
menu2.add(menuitem2_1);
menu2.add(menuitem2_2);
menu3.add(menuitem3_1);
menu3.add(menuitem3_2);
menu4.add(menuitem4_1);
menu4.add(menuitem4_2);
menu4.add(menuitem4_3);
menu4.add(menuitem4_4);
menu4.add(menuitem4_5);
menu4.add(menuitem4_6);
menu5.add(menuitem5_1);
menu6.add(menuitem6_1);
menu6.add(menuitem6_2);
menu6.add(menuitem6_3);
menu6.add(menuitem6_4);
menu6.add(menuitem6_5);
menuitem1_2.addActionListener(this);
menuitem1_2.setActionCommand("Open");
menuitem2_1.addActionListener(this);
menuitem2_1.setActionCommand ("random start"); menuitem2_2.addActionListener(this); menuitem2_2.setActionCommand ("random end");
menuitem3_1.addActionListener(this);
menuitem3_1.setActionCommand("addTime");
menuitem3_2.addActionListener(this);
menuitem3_2.setActionCommand("decreaseTime");
menuitem4_1.addActionListener(this);
menuitem4_1.setActionCommand("readJapaneseN1");
menuitem4_2.addActionListener(this);
menuitem4_2.setActionCommand("readJapaneseN2");
menuitem4_3.addActionListener(this);
menuitem4_3.setActionCommand("readJapaneseN3");
menuitem4_4.addActionListener(this);
menuitem4_4.setActionCommand("readJapaneseN4");
menuitem4_5.addActionListener(this);
menuitem4_5.setActionCommand("readJapaneseMinnna");
menuitem4_6.addActionListener(this);
menuitem4_6.setActionCommand("readJapaneseKana");
menuitem5_1.addActionListener(this);
menuitem5_1.setActionCommand("exit");
JPanel p = new JPanel();
label = new JLabel();
label.setBackground(Color.gray);
label.setVerticalAlignment(JLabel.CENTER);
label.setText("Loading......");
p.add(label);
Container contentPane = getContentPane();
contentPane.add(p, BorderLayout.LINE_START);
WindowDrugMove mouseListener = new WindowDrugMove();
// When you first grab the mouse label.addMouseListener(mouseListener); // When you drag the mouse label.addMouseMotionListener(mouseListener);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(intRight, intDown, 400, CONTENT_LABEL_HEIGHT);
setAlwaysOnTop(true);
setUndecorated(true);
setBackground(new Color(0x0, true));
setVisible(true);
// Read the property file. properties = new Properties(); try { String currentPath = new File(".").getAbsoluteFile().getParent(); File settingFile = new File(currentPath + "\LearnWords.ini"); if (!settingFile.exists()) { properties.setProperty("MODE", MODE_AUTO); properties.setProperty("DICT", "jp.co.learn.dict.JapaneseN1"); properties.store(new FileOutputStream(settingFile), "Comments"); } else { properties.load(new FileInputStream(settingFile)); } } catch(Exception e) {}
filename = "C:\\en.txt";
readFile(filename);
Thread thread = new Thread(this);
thread.start();
}
/**
*/ class WindowDrugMove implements MouseMotionListener, MouseListener { private Point loc;
public void mouseMoved(MouseEvent e) {
}
public void mouseDragged(MouseEvent e) {
Window window = frame;
loc = window.getLocation(loc);
int x = loc.x - start.getX() + e.getX();
int y = loc.y - start.getY() + e.getY();
window.setLocation(x, y);
}
public void mouseClicked(MouseEvent e) {}
public void mouseEntered(MouseEvent e) {}
public void mouseExited(MouseEvent e) {}
public void mousePressed(MouseEvent e) {
start = e;
showPopup(e);
}
public void mouseReleased(MouseEvent e) {
// Menu menu showPopup(e); } }
public void actionPerformed(ActionEvent e) {
if (e.getActionCommand() == "Open") {
JFileChooser jfc1 = new JFileChooser();
// Name setting jfc1.setDialogTitle ("Please select a file."); // Default method jfc1.showOpenDialog(null); jfc1.setVisible(true); // Get all paths filename = jfc1.getSelectedFile().getAbsolutePath(); readFile(filename); } else if (e.getActionCommand () == "random start") { label.setText (" <font face ='MS Mincho, SimSun, Song body' size ='+ 1'color ='green'> random start ... </ font> </ html>"); Collections.shuffle(wordList); return; } else if (e.getActionCommand () == "random end") { label.setText (" <font face ='MS Mincho, SimSun, Song body' size ='+ 1'color ='green'> random end ... </ font> </ html>"); reRadom(); return; } else if (e.getActionCommand() == "addTime") { intTime = intTime + 1000; String text = String.valueOf (intTime / 1000) + "Changed to seconds."; label.setText (" <font face ='MS Mincho, SimSun, Song body' size ='+ 1'color ='green'>" + text + "</ font> </ html>"); return; } else if (e.getActionCommand() == "decreaseTime") { if (intTime >= 2000) { intTime = intTime - 1000; } else { intTime = 1000; String text = String.valueOf (intTime / 1000) + "Changed to seconds."; label.setText (" <font face ='MS Mincho, SimSun, Song body' size ='+ 1'color ='green'>" + text + "</ font> </ html>"); return; } } else if (e.getActionCommand() == "readJapaneseN1") { loadDict("jp.co.learn.dict.JapaneseN1"); sec = 0; } else if (e.getActionCommand() == "readJapaneseN2") { loadDict("jp.co.learn.dict.JapaneseN2"); sec = 0; }
// // else if (e.getActionCommand() == "readJapaneseN3") { // readJapaneseN3(); // sec = 0; // } else if (e.getActionCommand() == "readJapaneseN4") { // readJapaneseN4(); // sec = 0; // } else if (e.getActionCommand() == "readJapaneseMinnna") { // readJapaneseMinnna(); // sec = 0; // } else if (e.getActionCommand() == "readJapaneseKana") { // readJapaneseKana(); // sec = 0; // }
if ("exit".equals(e.getActionCommand())) {
int dialogButton = JOptionPane.YES_NO_OPTION;
if (dialogButton == JOptionPane.YES_OPTION) {
writeFile();
System.exit(NORMAL);
}
}
menubar.setVisible(false);
frame.setBounds(frame.getX(), frame.getY(), frame.getWidth(), CONTENT_LABEL_HEIGHT);
}
public void run() { do { if (sec + 1 > wordList.size()) { sec = 0; } else { label.setText (" " + wordList.get (sec) .trim () + "</ font> </ html> "); sec++; if (sec == wordList.size()) { sec = 0; } } try {Thread.sleep(intTime);} catch (InterruptedException e) {} } while(true); }
/**
read file Read the specified TXT file
@return None */ public void readFile(String fileName) {
wordList = new ArrayList
/**
// + KEY Add time to repeat if (e.getKeyCode() == 107) { if (intTime >= 1000) { intTime = intTime + 1000; }else if(250<=intTime && intTime < 1000){ intTime=intTime*2; } } // --KEY Reduced time to repeat else if (e.getKeyCode() == 109) { if (intTime > 1000) { intTime = intTime - 1000; }else if(intTime >= 500){
intTime=intTime/2;
}
}
// ESC key exit else if (e.getKeyCode() == 27) { writeFile(); System.exit(NORMAL); } // SPACE Random start else if (e.getKeyCode() == 32) { Collections.shuffle(wordList); } // CTRL random termination else if (e.getKeyCode() == 17) { label.setText ("random end"); reRadom(); } // ENTER Write the words you understand. Do not display next time else if (e.getKeyCode() == 10) { if (wordList.get(sec - 1) == label.getText()) { wordList.remove(sec - 1); wordList.add(sec - 1, "OK " + label.getText()); System.out.println("OK"); } else { System.out.println("NG"); } } // Lower right single word else if (e.getKeyCode() == 39) { sec++; if (sec == wordList.size()) { sec = 0; } label.setText (" " + wordList.get (sec) .trim () + "</ font> </ html> "); } // Downward movement else if (e.getKeyCode() == 40) { intDown = intDown + 50; frame.setBounds(frame.getX(), intDown, frame.getWidth(), CONTENT_LABEL_HEIGHT); } // Top improvement movement else if (e.getKeyCode() == 38) { intDown = intDown - 50; if (intDown > 0) { frame.setBounds(frame.getX(), intDown, frame.getWidth(), CONTENT_LABEL_HEIGHT); } } // Upper left single word else if (e.getKeyCode() == 37) { sec--; if (sec < 0) { sec = 0; } label.setText (" " + wordList.get (sec) .trim () + "</ font> </ html> "); } System.out.println(intTime); }
/**
/**
File update. Words to understand Add OK before this line. */ public void writeFile() {
FileSystem fs = FileSystems.getDefault();
/ * Write file * / Path outputPath = fs.getPath(filename); try (BufferedWriter bw = Files.newBufferedWriter(outputPath, StandardCharsets.UTF_8, StandardOpenOption.CREATE)) { wordList.forEach(s -> { try { bw.write(s + "\r\n"); } catch (Exception e) { e.printStackTrace(); } }); } catch (IOException e) { e.printStackTrace(); } }
@SuppressWarnings("unchecked")
private void loadDict(String param) {
try {
wordList.clear();
Class<?> clazz = Class.forName(param);
Object obj = clazz.newInstance();
Method method = clazz.getMethod("read");
wordList = (List
private void showPopup(MouseEvent e) { if (e.isPopupTrigger()) { menubar.show(e.getComponent(), e.getX(), e.getY()); } }
public static void initGlobalFontSetting(Font fnt){ FontUIResource fontRes = new FontUIResource(fnt); for (Enumeration keys = UIManager.getDefaults().keys(); keys.hasMoreElements();) { Object key = keys.nextElement(); Object value = UIManager.get(key); if(value instanceof FontUIResource) UIManager.put(key, fontRes); } }
@Override public void keyReleased(KeyEvent arg0) { }
@Override public void keyTyped(KeyEvent arg0) { }
}
package jp.co.learn.dict;
import java.util.ArrayList; import java.util.List;
public class JapaneseN1 {
public List<String> read() {
List<String> wordList = new ArrayList<String>();
wordList.clear();
wordList.add ("Aisou 1 Affection 3 Wago Kachika, Favor"); wordList.add ("Aidara 1 Relationship 0 (Human) Relationship"); wordList.add ("Heitsugu 1 * 0 One after another 1 Sosei (Asei)"); wordList.add ("Aima 1 interval 0,3 gap time, leisure time"); wordList.add ("Dare 1 Dare 1 Dare"); wordList.add ("Aogu 1 look up 2 look up, respect"); wordList.add ("Aka 1 dirt 2 dirt"); wordList.add ("proof 1 * 0 proof 0 proof, proof"); wordList.add ("Akaji 1 deficit 0 deficit, 虧 sky"); wordList.add ("Akasu 1 Reveal 0 Deficit, Road Break"); wordList.add ("Akaramu 1 Reddish 3 Red, Red Kirai"); wordList.add ("Rise 1 Rise / ~ Rise 0 Top, Income, Completion / ~ Origin, Tsuyoshi"); wordList.add ("Give up 1 Give up 0,4 Deadly, reckless"); wordList.add ("Aku 1 Evil 1 壞 thing, bad luck, 壞 人, evil"); wordList.add ("Accelerator 1 accelerator 1 accelerator, oil gate tread"); wordList.add ("Akudoi 1 Akudoi 3 Overfire, Evil"); wordList.add ("Chin 1 Chin 2 Chin, Chin, Chin"); wordList.add ("Adoration 1 Longing 0 Longing, Going"); wordList.add ("Asa 1 hemp 2 hemp, hemp"); wordList.add ("Aza 1 bruises 2 bruises"); wordList.add ("Silly 1 Shallow 4 Despicable"); wordList.add ("Azamuku 1 Deceive 3 Deception"); wordList.add ("Bright 1 Vivid 2 Vivid"); wordList.add ("Mocking 1 Mocking 4 Mocking"); wordList.add ("Don't be afraid 1 Don't be afraid 3 No contract required"); wordList.add ("Ajiwai 1 Taste 0 Taste"); wordList.add ("Tomorrow 1 Impatient 2 Sudden"); wordList.add ("fading 1 fading" color is ~ "0,2 fading"); wordList.add ("Atai 1 value 0 價值"); wordList.add ("0 值 worthy of 1"); wordList.add ("per 1 / ~ 0 per hit, hit, middle scholarship / collision, left and right, about"); wordList.add ("Aka 1 Deterioration 0 Evil"); wordList.add ("Handling 1 handling 0 waiting"); wordList.add ("I'm sorry 1 I'm not disappointed 4 Taikan"); wordList.add ("Light 1 Light 3 Clear"); wordList.add ("Mediation 1 Mediation 0 Mediation"); wordList.add ("Atto 1 Overwhelming 0 Surpassing"); wordList.add ("Appaku 1 compression 0 壓 壄"); wordList.add ("Up 1 up 1 Proposal, Improvement"); wordList.add ("Customize 1 Customize 3,4 Revised"); wordList.add ("Atsuryoku 1 Pressure 2 Power"); wordList.add ("Address 1 ~ Address 0 Donation ~"); wordList.add ("address 1 guess 0 goal, hope, aspiration"); wordList.add ("Ateji 1 Ateji, address 0 complex character, borrowed character, white character"); wordList.add ("address 1 address 0 supply"); wordList.add ("After Next 1 Succession 2 Progeny, Goji"); wordList.add ("Afterward 1 Postponement 3 Looseness"); wordList.add ("Aburae 1 Oil Painting 3 Oil Painting"); wordList.add ("Approach 1 approach 3 Method, Entrance, Approach"); wordList.add ("Abekobe 1 Abekobe 0 Rebellion, Conflict"); wordList.add ("Amaeru 1 Amae 0 撒嬌"); wordList.add ("Amagu 1 Rain gear 2 Rain gear"); wordList.add ("Amakuchi 1 Sweet 0 Obi-tasting"); wordList.add ("Amateur 1 amateur 0,2 Foreigners (people), business"); wordList.add ("Ami 1 net 2 net, barbed wire"); wordList.add ("Ayatsuru 1 Manipulate 3 Manipulate, Manipulate"); wordList.add ("Ayabumu 1 Danger 3 Kakeru, Kokoro"); wordList.add ("Ayafuya 1 Ayafuya 0 Vagueness, Yasushi Fuju"); wordList.add ("Ayamachi 1 mistake 0,3,4 complex, mistake"); wordList.add ("Awkward 1 Wrong 3 Mistake, Mistake, Mistake"); wordList.add ("Ayumi 1 step 3 steps, run"); wordList.add ("Ayumu 1 step 2 step, progress"); wordList.add ("1 in advance 0 deposit"); wordList.add ("Synopsis 1 Troll 0 Troll, Troll"); wordList.add ("Rough 1 Conflict 0,3 Controversy, Controversy"); wordList.add ("New 1 Change 4 Improvement, Innovation"); wordList.add ("Rough 1 Rough 0 Rough, Rough"); wordList.add ("Arab 1 Arab 1 Arab 1"); wordList.add ("Hail 1 hail 0 snowball, hail"); wordList.add ("Arisama 1 Situation 0,2 Situation, Situation"); wordList.add ("as is 1 with 1 0,5 據實"); wordList.add ("Common 1 Touched 0 Tsunemi, Rare"); wordList.add ("alkali 1 alkali Dutch 0 鹼"); wordList.add ("Aluminum 1 aluminum 0 鋁"); wordList.add ("Awase 1 Match 2 Merger, Formulation, Tuning, Comparison"); wordList.add ("Matching 1 to Matching 3"); wordList.add ("Questionnaire 1 enquête French 1,3 Questionnaire"); wordList.add ("Encore 1 * 1 encore 3 re-primary, safe"); wordList.add ("Ansassination 1 Assassination 0 Assassination"); wordList.add ("Mental arithmetic 0 mental arithmetic, mental arithmetic"); wordList.add ("Anji 1 suggestion 0 suggestion"); wordList.add ("Anjiru 1 Thinking 0,3 擔 神, Thought Method"); wordList.add ("Ansei 1 Rest 0 Anshin"); wordList.add ("Annojo 1 Sure enough 3 As expected, the regular fee"); wordList.add ("I 1 difference 0 difference, strange"); wordList.add ("I 1 intention 1 intention, meaning, intention"); wordList.add ("Ikagen 1 Preference 0 Matora, Incompleteness, Ai, Ai"); wordList.add ("Good reason 1 Excuse 0 辯 辯, 辯 辯"); wordList.add ("Iin 1 Clinic 1 Daiin, Private Practice"); wordList.add ("No, 1 runaway 0,3 runaway"); wordList.add ("Cool 1 Make use of 2 Use ... Katsu, To Live"); wordList.add ("How 1 How 2 How, 怎樣, of course 怎樣 ... ya"); wordList.add ("No 1 No 2 2 Very, accurate, good image"); wordList.add ("Ikari 1 Anger 0 Anger"); wordList.add ("Iki 1 chic 0 drifting, style"); wordList.add ("Igi 1 Objection 1 Disagreement"); wordList.add ("Ikigai 1 Ikigai 0,3 Survival Significance"); wordList.add ("Ikigomu 1 Enthusiastic 3 Trunk"); wordList.add ("Ikichigai 1 Mistake 0 Running, (聯 繫, etc.) tampering"); wordList.add ("Ikusei 1 breeding 0 culture, cultivation"); wordList.add ("Ikuta 1 Ikuta 1 Ikuta, Kuta"); wordList.add ("Go 1 Live / Live" Flower ~ "2 Use-out"); wordList.add ("Ken 1 Disagreement 0 Disagreement"); wordList.add ("Go 1 Transition 0 Transient, Transition"); wordList.add ("Go 1 Intention 0 Intention, Intention, Calculation"); wordList.add ("Iza 1 Iza Impressive Verb 1 喂, 哎, 嘿"); wordList.add ("Iji 1 Sense 2 Sense"); wordList.add ("Iju 1 migration 0 migration"); wordList.add ("Isho 1 Costume 1 Costume, Clothes"); wordList.add ("Tweaking 1 Playing 3 Playing"); wordList.add ("Isei 1 opposite sex 0,1 opposite sex"); wordList.add ("Iseki 1 Ruins 0 Ruins"); wordList.add ("still 1 still 0 still"); wordList.add ("Izon 1 dependency 0 dependency"); wordList.add ("Taku 1 Consignment 0 Consignment"); wordList.add ("Get 1 top" Mountain ~ "0 top"); wordList.add ("Everyone is 0,2, very"); wordList.add ("Fry 1 Fry 3 Fry"); wordList.add ("damage 1 damage 3 damage"); wordList.add ("Take care 1 Work 3 Comfort, pity"); wordList.add ("Ichi 1 City 1 Market"); wordList.add ("1 1 position 2 position, position, position"); wordList.add ("1 in 1 case 2 in general"); wordList.add ("Great 1 Remarkable 5 Clear"); wordList.add ("Ichidou 1 All 3 All"); wordList.add ("Maybe 1 part 3 part"); wordList.add ("Ichimen 1 One Side 0 All Body, One Side, One Side"); wordList.add ("Ichimoku 1 Ichimoku 0,2 Ichimoku"); wordList.add ("Ichiyo 1 uniform 0 1 樣"); wordList.add ("Ichiritsu 1 uniform 0 uniform"); wordList.add ("Ichiren 1 series 0 one skewer"); wordList.add ("Ikkatsu 1 batch 0 inclusion"); wordList.add ("Ikki 1 Ikki 1 Bite Ki"); wordList.add ("1 at a time, 1 at a time"); wordList.add ("Ikken 1 seemingly 0 primary"); wordList.add ("Nothing 1 Everything 1 Everything"); wordList.add ("Isshin 1 Isshin 3 Saishin"); wordList.add ("Something 1 more than 0 Ningable, unsuccessful"); wordList.add ("On the contrary 1 area 0 1 帶"); wordList.add ("Ippen 1 Change 0 Completely Revised"); wordList.add ("Ito 1 Intention 1 Company"); wordList.add ("Ido 1 transfer 0 tone"); wordList.add ("Itonamu 1 Runs 3 經營"); wordList.add ("Idom 1 Challenge 2 Challenge, Challenge"); wordList.add ("Inabikari 1 Lightning 3 Flash"); wordList.add ("Inori 1 Prayer 3 Prayer"); wordList.add ("Snoring 1 鼾 3 鼾 聲"); wordList.add ("Now, 1 now, 0,1 now, now, now, present talent"); wordList.add ("Still 1 still 0,1 Not yet, until now"); wordList.add ("Imin 1 immigrant 0 immigrant"); wordList.add ("No, no, 1 disgusting, 0, no, Nana"); wordList.add ("disgusting 1 lowly 0,3 greedy, lowly"); wordList.add ("No 1 No No 2"); wordList.add ("Nasty 1 Disgusting 4 Commander unpleasant, downstream"); wordList.add ("Finally 1 Motivation 1 Desire"); wordList.add ("Iryo 1 clothing 1 cloth"); wordList.add ("Iryoku 1 Power 1 Power"); wordList.add ("Ii 1 Clothes 1 Clothes"); wordList.add ("Various 1 objection 0 objection"); wordList.add ("Inkan 1 Seal 0,3 Seal, Seal"); wordList.add ("Inki 1 gloomy 0 gloomy, gloomy, melancholy"); wordList.add ("Inkyo 1 Retirement 0 Retired Elderly Person, Wholesale Housework Person"); wordList.add ("Interchange 1 interchange 5 Highway entrance / exit"); wordList.add ("International 1 international 5 International"); wordList.add ("Interphone 1 interphone 3 extension phone, extension"); wordList.add ("Intelligent 1 intelligentsiya Russian 0 Intellectual, Cultural person"); wordList.add ("Information 1 information 4 Information, Inquiry"); wordList.add ("inflation 1 inflation 0 currency expansion"); wordList.add ("virus 1 virus 2 poison"); wordList.add ("Karu 1 Accept 2 Consideration"); wordList.add ("Receive 1 Accept 0 Accept, Receive, Receive, Answer, Accept"); wordList.add ("Receive 1 Accept 0,4 Accept, Accept, Accept"); wordList.add ("Receive 1 inheritance 0,3 inheritance, replacement"); wordList.add ("Receive 1 Accept 0,4 Accept, Accept"); wordList.add ("Receive 1 Accept 0,4 Settle, Block"); wordList.add ("Ukemi 1 Passive 2,3 Moved, Defensive"); wordList.add ("Ukemochi 1 charge 0 appointed, 擔 當"); wordList.add ("moving 1 movement 3 movement, activity, movement"); wordList.add ("vortex 1 vortex 1 vortex, vortex flow"); wordList.add ("Uzuru 1 Fill 0 Bank, Bank, Fill"); wordList.add ("Liar 1 Liar 2 Liar"); wordList.add ("Utatane 1 Falling asleep 0 Sleeping, fluttering"); wordList.add ("Opening 1 Confessing 0,4 Talks, Talks"); wordList.add ("Uchikiru 1 censor 0,3 stop, stop, stop"); wordList.add ("Uchikeshi 1 Cancel 0 Denial, Cancel"); wordList.add ("Uchikomu 1 type 0,3 launch, throw"); wordList.add ("Uchiwa 1 Fan 2 Sumo Trial Fan"); wordList.add ("Breakdown 1 Breakdown 0 Details, Details"); wordList.add ("Transfer 1 Copy 3 Extract, Photograph"); wordList.add ("Utae 1 complaint 0,3 complaint"); wordList.add ("Annoying 1 Annoying 5 Agony"); wordList.add ("Depressed 1 Depressed 0,3 Depressed"); wordList.add ("empty 1 empty 0 empty, empty"); wordList.add ("1 container 0 device"); wordList.add ("Food delivery 1 skill 0,3 ability"); wordList.add ("Uten 1 rainy weather 1 rainy weather"); wordList.add ("Prompt 1 Prompt 3 Prompt"); wordList.add ("Conceit 1 Self-esteem 0 Self-reliance"); wordList.add ("Umaru 1 fill 0 fill"); wordList.add ("Born 1 Born 0 Tensei"); wordList.add ("Umu 1 give birth 0 newborn"); wordList.add ("Umekomu 1 Embed 3 Keizo"); wordList.add ("Umeboshi 1 Umeboshi 0 Umeboshi"); wordList.add ("Backward 1 Inside out 3 Front and back conflict"); wordList.add ("Uridashi 1 Sale 0 Start Auction, Beat"); wordList.add ("Uridasu 1 for sale 3 Start auction, auction, auction"); wordList.add ("Uruou 1 Moisturize 3 Moisturize"); wordList.add ("Waki 1 Flirt 0 Flirt"); wordList.add ("Wow 1 more than 4 more"); wordList.add ("Uru 1 plant 0 planting"); wordList.add ("Yeah 1 Operation 0 經營"); wordList.add ("Disgusted 1 Disgusted 3 Disgusted"); wordList.add ("Yeah 1 shipping 0 shipping"); wordList.add ("Poop 1 fare 1 fare"); wordList.add ("Yeah, 1, 0, etc., discussion, theory, 3 ways 4"); wordList.add ("Umban 1 Transport 0 Transport"); wordList.add ("Unmei 1 Fate 1 Fate"); wordList.add ("Unyu 1 Transport 1 Transport"); wordList.add ("Yeah 1 operation 0 operation"); wordList.add ("E 1 pattern 0 pattern"); wordList.add ("Airmail 1 airmail 3 Airmail"); wordList.add ("Ei 1 ~ Business"); wordList.add ("Eiji 1 Alphabet 0 English"); wordList.add ("Eisha 1 Projection 0 Broadcast"); wordList.add ("Eisei 1 satellite 0 satellite"); wordList.add ("Eizo 1 video 0 video"); wordList.add ("Eiyuu 1 Hero 0 Hero"); wordList.add ("Eki 1 liquid 1 liquid"); wordList.add ("Etsuran 1 Browsing 0 薱覽"); wordList.add ("Emono 1 Prey 0,3 Good Weapon"); wordList.add ("Eri 1 Collar 2 Ryoko"); wordList.add ("elegant 1 elegant 1 graceful"); wordList.add ("En 1 Edge 1 緣"); wordList.add ("Enman-in Monzeki 1 Smooth 0 Enman-in Monzeki"); wordList.add ("Engawa 1 Engawa 0 Engawa Corridor"); wordList.add ("Engan 1 Coast 0 Coast"); wordList.add ("Enkyoku 1 Euphemism 0 Euphemism"); wordList.add ("Engineer 1 engineer 3 Engineer, Engineer"); wordList.add ("Enshutsu 1 production 0 production"); wordList.add ("Enji. Zuru 1 acting. Zuru 0 acting"); wordList.add ("Ensen 1 along 0 along"); wordList.add ("Endan 1 Marriage 0 Proposal"); wordList.add ("Enpo 1 Far 0 Far"); wordList.add ("Enman 1 Enman 0 圓 滿"); wordList.add ("O 1 tail 1 tail, tail fox"); wordList.add ("Come in 1 Drive in 3 趕 Entry"); wordList.add ("Oidasu 1 kick out 3 toe out"); wordList.add ("I'm 1 old 2 years old"); wordList.add ("Oh 1 bear 0 back, negative negative"); wordList.add ("Okyu 1 Emergency 0 Emergency"); wordList.add ("Ougon 1 Golden 0 Gold, Gold"); wordList.add ("Oshin 1 home visit 0 visit"); wordList.add ("Oubo 1 application 0 recruitment, recruitment, 徵"); wordList.add ("Mostly 1 Mostly 0 Basically, Greatly, Mostly"); wordList.add ("Ogara 1 large pattern 0 body size, individual size"); wordList.add ("OK 1 okay 1 good, can"); wordList.add ("Exaggeration 1 Exaggeration 0 Exaggeration, Exaggeration, Small Title Masterpiece"); wordList.add ("Roughly 1 Rough 3 Grass Rate, Coarse Branch Oobachi"); wordList.add ("Osuji 1 Outline 0 Outline, Outline, Outline"); wordList.add ("Ozora 1 Sky 3 Thick Sky, Sky"); wordList.add ("Automatic / Automatic 1 automatic 4,5"); wordList.add ("Over 1 over 1 Exceed"); wordList.add ("Ohaba 1 Greatly 0 寬 Width, Hiroshi, Greatness"); wordList.add ("Open 1 open 1 Breakthrough, Open, Open, Open, Open-air"); wordList.add ("Roughly 1 Roughly 0 Major Daisuke, Ekusa, Kagoto"); wordList.add ("Omizu 1 flood 0,3 flood, flood"); wordList.add ("Oyake 1 public 0 public, public house, public"); wordList.add ("Okubyo 1 timid 3 timid, 膽 怯"); wordList.add ("Okurasu 1 Delay 0 Procrastination, Procrastination"); wordList.add ("Delay 1 Delay 0 After Fall, Unexpected, Defeated, Transported, Lost"); wordList.add ("Sorry 1 Strict 2 嚴 肅, 莊 Shige"); wordList.add ("Occurrence 1 * 2 Negligence 3 Negligence, Laziness, Laches, Laches"); wordList.add ("do one line 0 action, action, deed"); wordList.add ("Ogoru 1 Gourmet" Supper ~ "0 Gourmet"); wordList.add ("Settle 1 Fit / Fit / Settle 3 Delivery, Existence, Stable / Settlement, Peace / Payment"); wordList.add ("Osan 1 Birth 0 Birth"); wordList.add ("Teaching 1 Teaching 0 Lessons"); wordList.add ("Oshikiru 1 Push through 3 Cut"); wordList.add ("Push in 1 Push in 3"); wordList.add ("Oshimu 1 regret 2 regret"); wordList.add ("Oshiyose 1 Rush 4 Bee Wasp"); wordList.add ("male 1 male 2 public, male"); wordList.add ("Oseji 1 Flattery 0 Kyoei Monogatari"); wordList.add ("Oh, 1 attack 0 attack"); wordList.add ("at least 1 at the latest 2 at the latest"); wordList.add ("Fear 1 Fear 2 Fear, Dislike"); wordList.add ("Flirt 1 Flirt 0 Flirt, Dedication"); wordList.add ("Come down 1 Depressed 0 Entry"); wordList.add ("Ochitsuki 1 Calm 0 by 沉"); wordList.add ("Ochiba 1 Fallen leaves 1 Fallen leaves"); wordList.add ("Otsu 1 Otsu 1 Otsu, Bessho, Bizarre"); wordList.add ("Usage 1 Use 0 Things, Shopping"); wordList.add ("Sorry 1 Scary 4 OK"); wordList.add ("Oteage 1 Oteage 0 Attention deficit"); wordList.add ("Ododo 1 Ododo 1 Susumu Suspension"); wordList.add ("Dread 1 Threat 0 Threat, Intimidation"); wordList.add ("Otozuru 1 visit 4 visit, arrival"); wordList.add ("Friend 1 companion 2 虪 跟 隨"); wordList.add ("Mellow 1 Decline 4 Decline"); wordList.add ("Surprising 1 Surprise 4 Surprise, Surprise"); wordList.add ("Onaidoshi 1 same year 2 same year, same year"); wordList.add ("naturally 1 naturally 0 natural place"); wordList.add ("Frightened 1 Frightened 0,3 Frightened"); wordList.add ("Abundant 1 voluminous 5 很 TA"); wordList.add ("Obiru 1 Obiru 0,2 攜帶"); wordList.add ("Ofukuro 1 Obukuro 0 Mother"); wordList.add ("Remember 1 Remember 2,3 Memories, Confidence, Confidence"); wordList.add ("Bonus 1 Loss 0 Total Dedication, Reduction"); wordList.add ("Omiya 1 Mimiya 0 Shrine"); wordList.add ("Diaper 1 Diaper 2 Diaper"); wordList.add ("Omotenashi 1 Thought 0 Temporary Recollection"); wordList.add ("Omomuki 1 Hobby 0 Hobby"); wordList.add ("Omomuku 1 Go 3 Go, Previous"); wordList.add ("Omonjiru / Zuru 1 Value / Zuru 0,4 Note Weight"); wordList.add ("Oyaji 1 Father 0 Father, Old Board"); wordList.add ("and 1 and 0,1 and"); wordList.add ("and 1 and 0 and reach"); wordList.add ("Orientation 1 orientation 5 Admission Education, Orientation"); wordList.add ("Return 1 Fold 0,3 Fold, Fold"); wordList.add ("Vaginal discharge 1 woven fabric 0,2 spinning"); wordList.add ("Oru 1 Weave 1 Weave"); wordList.add ("I 1 I 0 [Profanity] I (Men's peers and below self-proclaimed)"); wordList.add ("Far 1 stupid 1 stupid"); wordList.add ("Negligence 1 sparse 2 grass rate, 喏忽"); wordList.add ("Onbu 1 Negbu 1 Back, Screamer Negative"); wordList.add ("Online 1 online 3 Union line, on line"); wordList.add ("Onwa 1 Mild 1 Drawa, Ken"); wordList.add ("is 1 ~ picture 繪 畫"); wordList.add ("ga ~ 1 stroke ~ 1 圖 畫"); wordList.add ("Carpet 1 carpet 1,3 Carpet"); wordList.add ("gai 1 ~ town ~ town, ~ 區"); wordList.add ("Kaiaku 1 Amendment 0 Amendment"); wordList.add ("Kain 1 shipping 0 shipping"); wordList.add ("gaika 1 foreign currency 1 foreign currency, foreign currency, foreign currency"); wordList.add ("Kaikaku 1 Reform 0 Reform"); wordList.add ("Kaigara 1 shell 0,3 shell shell"); wordList.add ("Gaikan 1 Appearance 0 External view"); wordList.add ("Kaiku 1st Class 0th Grade, Class"); wordList.add ("Kaikyo 1 Strait 0 Kaiho"); wordList.add ("Kaiken 1 Interview 0 Specified Location Regulations"); wordList.add ("Kaigo 1 Nursing Care 1 Caregiver"); wordList.add ("Kaisai 1 held 0 meeting or reminder to start a certain thing"); wordList.add ("Kaishu 1 collection 0 times collection"); wordList.add ("Kaishu 1 Refurbishment 0 Repaired Things"); wordList.add ("Kaiju 1 Monster 0 Monster"); wordList.add ("Kaijo 1 Release 1 Release Special Condition Recovery"); wordList.add ("Gaisho 1 Foreign Minister 0 Foreign Minister"); wordList.add ("does 1 harms 3 injuries, kills"); wordList.add ("Gaisetsu 1 Overview 0 Overview, Overview"); wordList.add ("Kaiso 1 time 0 Send, 轉 轉, 轉 遞"); wordList.add ("Kaiso 1 layer 0 layer"); wordList.add ("Kaitaku 1 Pioneer 0 Pioneer, Pioneer"); wordList.add ("Kaidan 1 talk 0 talk"); wordList.add ("Kaitei 1 revision 0 revision, renovation"); wordList.add ("Kaitei 1 revision 0 revision"); wordList.add ("Guide 1 guide 1 Guide, Guide (Person), Discourse"); wordList.add ("Kaido 1 Highway 0 Traffic Important Road"); wordList.add ("Gaito 1 Street 0 Street, Street"); wordList.add ("Gaito 1 Applicable 0 Sign constant condition thing"); wordList.add ("Guidebook 1 guidebook 4 Guidebook, Recollection Handbook"); wordList.add ("Kainyu 1 Intervention 0 Incision Circumstances or Conflict"); wordList.add ("gainen 1 concept 1 certain thing generalization"); wordList.add ("Kaihatsu 1 Development 0 將潛 Talent Drawers"); wordList.add ("Kaibatsu 1 above sea level 0 constant data standard data"); wordList.add ("Kaiho 1 Care 1 Nursing (Sick)"); wordList.add ("Kaibo 1 Anatomy 0 Detailed Research Office"); wordList.add ("Gaiyo 1 * 0 Overview 0 Overview"); wordList.add ("I'm annoyed 1 outpatient 0 foreign national things"); wordList.add ("Kairan 1st Circulation 0 Teru Written Ordered (Books)"); wordList.add ("Gairaku 1 Approximately 0 Approximately"); wordList.add ("Kairyu 1 Ocean Current 0 Ocean Current Flow Direction"); wordList.add ("Kairyo 1 Improvement 0"); wordList.add ("Kairo 1 circuit 1 electric circuit"); wordList.add ("Kairo 1 Sea Route 1 Sea Route"); wordList.add ("Reflections, Reflections, Retrospectives"); wordList.add ("Kaotsuki 1 with face 0 face, facial expression"); wordList.add ("Kaigai 1 extracurricular 0,1 extracurricular"); wordList.add ("Kageru 1 Raise 0,3 Raise, Suspension"); wordList.add ("Heel 1 Heel 0 腳 跟"); wordList.add ("Scratch 1 Write 0,3 Writing, 聽寫"); wordList.add ("Stir 1 Stir 0,4 Stir, Stir"); wordList.add ("Kaku 1 ~ Picture 0 ~ 劃"); wordList.add ("Kaku 1 Missing 0 Deficiency"); wordList.add ("Scratch 1 Scratch (Shame ~) 1 Out (Ugly)"); wordList.add ("Kaku 1 core 1 core, core"); wordList.add ("Kaku 1 rank 2 rank, grade, rank"); wordList.add ("Kaku 1 corner 1, 2 corner, corner drop"); wordList.add ("Gakugei 1 Gakugei 0 Literary Art"); wordList.add ("Kakusa 1 Disparity 1 (Price) Discrimination, Difference"); wordList.add ("Kakusan 1 Diffusion 0 Dispersion"); wordList.add ("Gakushi 1 Bachelor 1 Bachelor"); wordList.add ("Kakushu 1 Various 1 Various"); wordList.add ("Kakushu 1 every other week 0 every other week"); wordList.add ("Kakushin 1 Innovation 0 Leather Heart, Reform"); wordList.add ("Kakushin 1 Confidence 0 Confidence, Yes Grasp"); wordList.add ("Gakusetsu 1 Theory 0 Study"); wordList.add ("Kake 1 Confirm 0 Confidence, Decision"); wordList.add ("Cocktail 1 cocktail 1 Kakuo Sake"); wordList.add ("Kakutoku 1 acquisition 0 acquisition, acquisition"); wordList.add ("Gakufu 1 sheet music 0 樂 埔"); wordList.add ("Kakubetsu 1 * 2 Special 0 Special, Probably"); wordList.add ("Kakuho 1 Secure 1 Secure"); wordList.add ("Kakumei 1 Revolution 0 Revolution"); wordList.add ("Kakuritsu 1 Establish 0 Establish"); wordList.add ("Gakureki 1 Education 0 Education"); wordList.add ("Kake 1 ~ Kake 0 Go start ~, Naomi ~, Returning complete, ~ Kake, Kakeru"); wordList.add ("Kake 1 bet 2 bet"); wordList.add ("Gake 1 Cliff 0 Lifetime"); wordList.add ("Kake ~ 1 Kake ~ 0 Kake ~, Kakeru"); wordList.add ("Kakeashi 1 Rushing 2 跑"); wordList.add ("Kakei 1 Household 0 Household Economy"); wordList.add ("Kakekko 1 Runkko 2 Samurai"); wordList.add ("multiply 1 bet 2 bet, bet"); wordList.add ("multiply 1 run 2 奔馳"); wordList.add ("Kako 1 processing 0 processing"); wordList.add ("Kago 1 compound 0 compound"); wordList.add ("bulky 1 bulky 0 volume, volume increase"); wordList.add ("bulk 1 bulk 2 bulk increase"); wordList.add ("Bullets 1 Bullets 0 minutes, each item"); wordList.add ("Kashira 1 head 3 heads, chief, head"); wordList.add ("faint 1 faint or 1 faint"); wordList.add ("Kasumi 1 Kasumi 0 Kasumi"); wordList.add ("Kasu 1 掠 2 掠 Pass"); wordList.add ("Kei 1 Mars 0 Mars"); wordList.add ("Kaseki 1 fossil 0 fossil"); wordList.add ("Kasen 1 River 1 River"); wordList.add ("Kasen 1 Synthetic Fiber 0 Chemical Science"); wordList.add ("Kaso 1 Depopulation 1 (Population) Rare, Rare"); wordList.add ("kata ~ 1 piece ~ 2 two people Nakanoichi"); wordList.add ("Kadai 1 Exercise 0 Exercise"); wordList.add ("Kataomoi 1 Unrequited love 3 單戀"); wordList.add ("Katato 1 Fragment 0,4 Half Word, Dirty Story"); wordList.add ("Clean up 1 Clean up 2,4 Organize, collect"); wordList.add ("Turn 1 Tilt 4 Use ... Tilt"); wordList.add ("harden 1 harden 0 harden"); wordList.add ("side 1 side 0,4 旁 邊"); wordList.add ("Kadan 1 Flowerbed 1 Flowerbed"); wordList.add ("Kachiku 1 Livestock 0 Livestock"); wordList.add ("and 1 and 1 ~ and"); wordList.add ("Kakki 1 breakthrough 1 era"); wordList.add ("Disappointed 1 Disappointed 3 Exhaustion"); wordList.add ("Gasho 1 Chorus 0 Chorus"); wordList.add ("Heavy 1 Heavy 3 Keniso, Jail"); wordList.add ("Gatch 1 Match 0 Match"); wordList.add ("Strict 1 Strict 3 Concluding Remarks, Small Money"); wordList.add ("Kate 1 selfish" kitchen "0 kitchen"); wordList.add ("Once 1 嘗 1 曓"); wordList.add ("cut 1 cut 1 cut, haircut, illustration"); wordList.add ("Kappatsu 1 Active 0 Active"); wordList.add ("Gappei 1 merger 0 merger"); wordList.add ("Category 1 Kategorie German 2 Category, Type, Department"); wordList.add ("Kanau 1 Comes 2 Realization"); wordList.add ("Fulfill 1 Fulfill 3 Use ~~ Achievement"); wordList.add ("Kanazuchi 1 Hammer 3 Hammer"); wordList.add ("I can't do it 1 I can't do it / I can't do it / I can't do it 3 I can't do it"); wordList.add ("Kanyu 1 subscription 0 subscription"); wordList.add ("For some time, 1 ahead, 1 destination, old age"); wordList.add ("Kabau 1 Asylum 2 Protection, Asylum"); wordList.add ("Kabushiki 1 stock 2 crotch, crotch vote"); wordList.add ("I get sick 1 I notice 0 rash"); wordList.add ("Kafun 1 pollen 0 pollen"); wordList.add ("Kahei 1 currency 1 currency"); wordList.add ("Kamae 1 stance 2,3 posture, preparation, structure"); wordList.add ("Catch 1 Hold 3 Erect, Establish, Collect Some kind of posture"); wordList.add ("Kami 1 Addition 1 Addition"); wordList.add ("bite 1 bite 3 bite"); wordList.add ("Kamitsu 1 Overcrowded 0 Overcrowded"); wordList.add ("come back 1 come back 1,3 comeback, comeback, comeback"); wordList.add ("Photographer 1 cameraman 3 Kageshi"); wordList.add ("Kayu 1 porridge 0 rare rice"); wordList.add ("with body 1 with body 0 body"); wordList.add ("Karamu 1 Entangled 2 Matoi, Matoi ... Above, Unreasonable"); wordList.add ("Kari 1 Borrow 0 Borrow"); wordList.add ("kari 1 goose 0 goose"); wordList.add ("Kari (ni) 1 Temporary (ni) noun / adverb 0 Temporary, 假 / 假 dec, Temporary"); wordList.add ("Medical record 1 Karte German 1 illness book, medical record"); wordList.add ("garage 1 garage 1,2 garage"); wordList.add ("Kare 1 Drain 0 Drain 0"); wordList.add ("Karou 1 Overwork 0 勞 Cumulative Excess"); wordList.add ("barely 1 barely 0,2,4 good or bad ~"); wordList.add ("Dodge 1 Exchange 0 Exchange"); wordList.add ("alternate 1 alternate 4 alternate, alternate"); wordList.add ("Kan 1 official 1 official"); wordList.add ("Kan 1 tube 1 tube"); wordList.add ("Kan 1 ~ View 1 View"); wordList.add ("Cancer 1 Cancer 1 Cancer"); wordList.add ("Kai 1 simple 0,1 simple"); wordList.add ("Cancer 1 Ophthalmology 1 Ophthalmology"); wordList.add ("Irrigation 1 Irrigation 1 Irrigation"); wordList.add ("Gankyu 1 eyeball 0 eyeball"); wordList.add ("Gangu 1 Toy 1 Toy"); wordList.add ("Kanketsu 1 Concise 0 Concise"); wordList.add ("Kangen 1 Reduction 0 Return"); wordList.add ("Kango 1 Kanji 0 Kanji Vocabulary"); wordList.add ("Kango 1 Nursing 1 Guardian"); wordList.add ("Ganko 1 Stubborn 1 Stubborn"); wordList.add ("Kankou 1 Publication 0 Publication"); wordList.add ("Kankou 1 Practice 0 Practice"); wordList.add ("Korean 1 Recommendation 0 Reminder"); wordList.add ("Kansan 1 conversion 0 conversion"); wordList.add ("Kanshu 1 Audience 0 View"); wordList.add ("Kanshu 1 Custom 0 Custom"); wordList.add ("Gansho 1 Application 1 Petition"); wordList.add ("Kansho 1 Interference 0 Dripping"); wordList.add ("Ganjo 1 Sturdy 0 Kenzo"); wordList.add ("Kanshoku 1 Feel 0 Feeling"); wordList.add ("Kanjin 1 essential, hepatic kidney 0 cardiohepatic kidney"); wordList.add ("Kansei 1 Cheers 0 歡 聲"); wordList.add ("Kanzei 1 Tariff 0 關稅"); wordList.add ("Ganseki 1 Rock 1 Rock"); wordList.add ("Kansen 1 Infection 0 Infection"); wordList.add ("Kansen 1 trunk line 0 main road"); wordList.add ("Kanso 1 Simple 1 Simple Wrestling"); wordList.add ("Agar 1 Viewpoint 1 View"); wordList.add ("Kando 1 Sensitivity 1 Sensitivity"); wordList.add ("Cheat 1 cunning 0,3 (examination) work, cunning"); wordList.add ("Ganen 1 1st year 1st year, New Year"); wordList.add ("Kanbu 1 Executive 1 Executive"); wordList.add ("Kanpeki 1 Perfect 0 Perfect, Completely Innocent"); wordList.add ("Kanben 1 Kanben 1 Hara Ryo"); wordList.add ("Kanmuryo 1 Impressive 1 Dare Free"); wordList.add ("Kanyuu 1 Solicitation 0 Temptation"); wordList.add ("Kanyo 1 Involvement 1 關 聯"); wordList.add ("Kanyo 1 idiomatic 0 idiomatic"); wordList.add ("Kanyo 1 Tolerance 0 Tolerance"); wordList.add ("Ganrai 1 Originally 1 Original"); wordList.add ("Kanran 1 Viewing 0 菃 觀"); wordList.add ("Kanryo 1 bureaucrat 0 bureaucrat, bureaucrat"); wordList.add ("Kanrei 1 Custom 0 Custom"); wordList.add ("Kanreki 1 60th birthday 0 Hanako, 60-year-old alias"); wordList.add ("Kanroku 1 Dignity 0 Confidential Feeling"); wordList.add ("Kanwa 1 relaxation 0 relaxation"); wordList.add ("Gian 1 bill 0 bill, draft"); wordList.add ("Kai 1 Harm 1 Harm"); wordList.add ("Standard 1 Standard 0 Standard"); wordList.add ("Kikaku 1 standard 0 standard"); wordList.add ("Kikazaru 1 Dress up 3 Dressing, Shengjo"); wordList.add ("Kigane 1 Feeling 0 Multi-minded, Customer"); wordList.add ("Kigaru 1 Feel free 0 Hyperactivity, exhilaration"); wordList.add ("Kikan 1 Quarterly 0 Quarterly"); wordList.add ("Kikan 1 Organ 1, 2 Organ"); wordList.add ("Kiki 1 Crisis 1, 2 Crisis"); wordList.add ("Kikitori 1 Listening 0 Listening"); wordList.add ("Kikime 1 Effect 0 Effect"); wordList.add ("Kikyo 1 Return to Tokyo 0 Return to Tokyo"); wordList.add ("Kikyoku 1 Drama 0 Drama Book"); wordList.add ("Famine 1 Fund 1,2 Fund"); wordList.add ("Kigeki 1 Comedy 1 Comedy"); wordList.add ("Giketsu 1 vote 0 vote"); wordList.add ("Kiken 1 abstention 0 abstention"); wordList.add ("Kigen 1 Origin 1 Origin"); wordList.add ("Kiko 1 mechanism 0 mechanism"); wordList.add ("Kikon 1 Married 0 Married"); wordList.add ("Kiza 1 Disturbance 1 Takashi"); wordList.add ("Kisai 1 description 0 description"); wordList.add ("Kizashi 1 trillion 0 deposit"); wordList.add ("Kishitsu 1 temperament 0 temperament"); wordList.add ("Pheasant 1 due date 1 due date, deadline"); wordList.add ("Gijido 1 Capitol 0 National Diet Building, Conference House"); wordList.add ("squeak 1 squeak 0,2 hard friction noise"); wordList.add ("Kijutsu 1 description 0 description"); wordList.add ("Kisho 1 Meteorology 0 Kizo"); wordList.add ("Kizuku 1 Build 2 Build"); wordList.add ("Scratch 1 Hurt 3 Injured"); wordList.add ("scratch 1 hurt 4 tampering"); wordList.add ("Kisei 1 Regulation 0 Rule"); wordList.add ("Gisei 1 sacrifice 0 sacrifice"); wordList.add ("Kisen 1 Steamship 0 Wheelship"); wordList.add ("Kiso 1 * 0 Compete 2 Competitive, Competitive"); wordList.add ("Kizo 1 Donation 0 Gift"); wordList.add ("Gizou 1 Counterfeit 0 Forgery"); wordList.add ("Kizoku 1 Noble 1 Noble"); wordList.add ("Gidai 1 Agenda 0 Discussion Agenda"); wordList.add ("Kitaeru 1 Training 3 Training"); wordList.add ("coming 1 coming 2 coming"); wordList.add ("Neat 1 Neat 3 Favorite place, well-ordered, neat"); wordList.add ("Kichomen 1 meticulous 2 meticulous, rules and regulations"); wordList.add ("exactly 1 exactly 3 good"); wordList.add ("Exactly 1 Exactly 3 Perfect, Aligned"); wordList.add ("Fresh 1 Flat 3 Neat, Neat, Neat"); wordList.add ("Kite 1 Rule 0 Rule"); wordList.add ("Kiten 1 Starting point 0 Starting point"); wordList.add ("Kido 1 orbit 0 orbit"); wordList.add ("Gino 1 Skill 1 Technical Ability"); wordList.add ("Kihan 1 norm 0 norm"); wordList.add ("Kihin 1 Dignity 0 Dignity, Degree"); wordList.add ("Kifu 1 Kifu 0,2 Fuuki"); wordList.add ("Kifuku 1 undulation 0 undulation"); wordList.add ("Kibo 1 scale 1 scale"); wordList.add ("Kimagure 1 Whimsical 4 Mind Floating"); wordList.add ("Kimajime 1 Serious 2 One Masaru"); wordList.add ("Kitsu 1 end 0 end"); wordList.add ("Rough 1 Undecided 5 Difficulty, Undeveloped"); wordList.add ("Kimei 1 signature 0 signature, signature"); wordList.add ("Kiyaku 1 Code 0 Rule"); wordList.add ("Kyakushoku 1 Dramatization 0 Kaisei Denkage or Paraphrase, Exaggeration"); wordList.add ("Gyakuten 1 Reversal 0 Reverse"); wordList.add ("Kyakuhon 1 Screenplay 0 Drama Book"); wordList.add ("Chasha 1 Delicate 0 Naejo, Bessho"); wordList.add ("Kyakkan 1 Objective 0 Objectivity"); wordList.add ("Catch 1 catch 1 Hajime, contact ball"); wordList.add ("Career 1 career 1 Occupation, Resume, Higher Civil Service"); wordList.add ("Kyuen 1 Relief 0 Relief"); wordList.add ("Kyugaku 1 leave 0 leave"); wordList.add ("Kyukyoku 1 Ultimate 0 畢竟, Research, Final"); wordList.add ("Kyukutsu 1 cramped 1 small constriction, inactive"); wordList.add ("Kyukon 1 bulb 0 bulb"); wordList.add ("Kyusai 1 Relief 0 Relief"); wordList.add ("Kyuji 1 Waiter 1 Visiting eater, Kotomo"); wordList.add ("Kyushoku 1 Lunch 0 Supply Lunch"); wordList.add ("Kyusen 1 Armistice 0 Stop"); wordList.add ("Kyuchi 1 Old Knowledge 1 Old Friend, Fellowship"); wordList.add ("Kyuden 1 Palace 0 Palace"); wordList.add ("Kyubo 1 Poverty 0 Poverty, Poverty"); wordList.add ("Kyuryo 1 hill 0 hill"); wordList.add ("Kiyo 1 Contribution 1 Contribution, Tribute"); wordList.add ("Today 1 strong 1 strong"); wordList.add ("Today 1 ~ Bridge Bridge"); wordList.add ("Today 1 Wonder 1 Wonder, Wonder"); wordList.add ("Kyoka 1 subject 1 course"); wordList.add ("Kyokai 1 Association 0 Cooperation"); wordList.add ("Kyogaku 1 co-education 0 (men and women) same school"); wordList.add ("Kyokan 1 sympathy 0 sympathy"); wordList.add ("Kyogi 1 Talk 1 Talk, Kyosho"); wordList.add ("Kyougu 1 situation 0 處 處"); wordList.add ("Kyo-kun 1 lesson 0 lesson, lesson"); wordList.add ("Kyoukou 1 Forced 0 Forced Forced"); wordList.add ("Kyoukou 1 Hard 0 Hard"); wordList.add ("Kyozai 1 Teaching Material 0 Teaching Material"); wordList.add ("Kyosaku 1 Bad crop 0 Bad year, Bad year"); wordList.add ("Gyosha 1 vendor 1 vendor"); wordList.add ("Kyoju 1 Enjoy 1 Enjoy"); wordList.add ("Kyoshu 1 Lesson 0 Training, Training"); wordList.add ("Kyoshu 1 Nostalgia 0 Late"); wordList.add ("Kyoushoku 1 Teaching 0 0 Educator"); wordList.add ("Kyoujiru. Zuru 1 Kojou. Kozuru 0 Kotaka Ryo, Kosei Rise"); wordList.add ("Kyosei 1 Force 0 Compulsion"); wordList.add ("Gyosei 1 Administration 0 Administration"); wordList.add ("Gyoseki 1 Achievement 0 Achievement"); wordList.add ("Kyozon 1 Coexistence 0 Coexistence, Co-existence"); wordList.add ("Today 1 * 0 Boundary 1 Boundary"); wordList.add ("Today 1 Cooperation 0 Cooperation, Cooperation"); wordList.add ("Kyotei 1 Agreement 0 Agreement"); wordList.add ("Kyodo 1 Hometown 1 Heimat, Late"); wordList.add ("Today 1 Threat 0 Compulsion, Threat"); wordList.add ("Gyomu 1 Business 1 Business, Daily Work"); wordList.add ("Kyomei 1 Resonance 0 Resonance, Resonance"); wordList.add ("Kyori 1 Hometown 1 Chungri, Late Chung"); wordList.add ("Kyoretsu 1 Intense 0 Intense"); wordList.add ("Kyowa 1 Kyowa 0,1 Kyowa"); wordList.add ("Kyokugen 1 limit 0,2 limit"); wordList.add ("Kyokutan 1 Extreme 3 Top, Extreme"); wordList.add ("Kyoju 1 Residence 0 Residence, Address"); wordList.add ("Kyozetsu 1 Rejection 0 Rejection"); wordList.add ("Gyosen 1 fishing boat 0 fishing boat, fishing wheel"); wordList.add ("Gyoson 1 Fishing Village 0 Fishing Village"); wordList.add ("Kyohi 1 Rejection 1 Rejection, Rejection"); wordList.add ("Kyoyo 1 Tolerance 0 Tolerance, Tolerance"); wordList.add ("Kiyoraka 1 Pure 2 Pure"); wordList.add ("Glittering 1 Glittering 3 Brilliant"); wordList.add ("cut 1 cut 2 paragraphs, limit"); wordList.add ("Kiri 1 ~ Kiri display limit here"); wordList.add ("Giri 1 In-law 2 Emotion, Humanity"); wordList.add ("Switch 1 Switch 0,4 Convert"); wordList.add ("Kiryu 1 Airflow 0 Kiryu"); wordList.add ("Kireme 1 Cut 3 Tear stitch"); wordList.add ("Giwaku 1 Suspicion 0 Suspicion"); wordList.add ("extremely 1 extremely 2 very"); wordList.add ("Kin 1 Bacteria 1 Bacteria"); wordList.add ("Kingan 1 myopia 0 myopia"); wordList.add ("Kinkyu 1 Urgent 0 Urgent"); wordList.add ("Kinkou 1 equilibrium 0 equilibrium"); wordList.add ("Kinkou 1 Suburbs 0 Suburbs"); wordList.add ("Kinshi 1 myopia 0 myopia"); wordList.add ("Kinjiru / Zuru 1 Forbidden / Forbidden 0,3 Forbidden"); wordList.add ("Kinben 1 Diligence 0 Diligence, Diligence"); wordList.add ("Ginmi 1 Examination 1,3 Detailed Study"); wordList.add ("Kinmu 1 work 1 work"); wordList.add ("Kintsutsu 1 Forbidden 0 Abuse"); wordList.add ("Kinrou 1 Labor 0 Spicy"); wordList.add ("ku 1 pain 1 pain, pain"); wordList.add ("Quiz 1 quiz 1 Akane Mystery, Question, Problem"); wordList.add ("Kuichigau 1 Discrepancy 4 Nowhere"); wordList.add ("Kukan 1 space 0 space"); wordList.add ("Kuufuku 1 Hungry 0 Hungry"); wordList.add ("Kukaku 1 block 0 區 劃"); wordList.add ("Kukan 1 section 1, 2 steps"); wordList.add ("Kuki 1 stem 2 莖"); wordList.add ("Kugiri 1 delimiter 3 (small) paragraph"); wordList.add ("Go through 1 Dive 2 Over"); wordList.add ("Lottery 1 lottery" Draw "1 lottery"); wordList.add ("Kujibiki 1 Omikuji 0,4 Omikuji"); wordList.add ("Ticking 1 I want to squeeze 0 發癢"); wordList.add ("Guchi 1 complaints 0 Prison"); wordList.add ("Kuchizusamu 1 Kuchizusamu 4 Gin"); wordList.add ("Beak 1 beak 0 bird-like beak"); wordList.add ("Kuchiru 1 Decay 2 Rotten"); wordList.add ("Kutsugaesu 1 Overturn 3 Reversal"); wordList.add ("Clear 1 Clear 3 Eyes, Clear"); wordList.add ("Kusetsu 1 Refraction 0 Fold"); wordList.add ("Gutto 1 Gutto 0,1 Bite Kichi, Renewal"); wordList.add ("Kubikazari 1 Necklace 3rd item"); wordList.add ("Kubiwa 1 Collar 0 Item 圈"); wordList.add ("Kumiru 1 Combine 5 Hen Ikki"); wordList.add ("Kumikomu 1 Incorporate 3 Incorporation"); wordList.add ("Kura 1 warehouse 2 warehouse"); wordList.add ("gray 1 gray 2 gray, gray dark"); wordList.add ("Crane 1 crane 2 hoist"); wordList.add ("Kuroto 1 Expert 1, 2 Yukiie"); wordList.add ("Kuroji 1 surplus 0 盈餘"); wordList.add ("Gun 1 group 1 group, 伙"); wordList.add ("Gunkan 1 Warship 0 Warship"); wordList.add ("Gunji 1 Military 1 Military"); wordList.add ("Kunshu 1 Monarchy 1 Monarchy (system)"); wordList.add ("Gunshu 1 crowd, crowd 0 crowd, jushu"); wordList.add ("Gunbi 1 Military 1 Military"); wordList.add ("Gunpuku 1 military uniform 0 military uniform"); wordList.add ("Kei 1 Penalty 1 Punishment"); wordList.add ("Kei 1 ~ system line, sect"); wordList.add ("Gay 1 Art 1 Art, Technology"); wordList.add ("Kei 1 background 1 latitude"); wordList.add ("Keika 1 has passed 0"); wordList.add ("Keikai 1 Alert 0 Alert"); wordList.add ("Keikai 1 light 0 light"); wordList.add ("Keiiki 1 instrument 1 ritual table, ritual"); wordList.add ("Keigu 1 Best regards 0,1 Best regards, 嬹 啟"); wordList.add ("Keigen 1 mitigation 0 mitigation"); wordList.add ("Keisai 1 listing 0 listing"); wordList.add ("Keisha 1 Slope 0 Slope, Slope, Slope"); wordList.add ("Keisei 1 formation 0 formation"); wordList.add ("Keisei 1 situation 0 situation, station"); wordList.add ("Keisotsu 1 careless 0 rate, grass rate"); wordList.add ("Keitai 1 form 0 form, form fox, 樣子"); wordList.add ("Keitai 1 Mobile 0 攜帶, Handicraft"); wordList.add ("Keibatsu 1 punishment 1 punishment"); wordList.add ("Keihi 1 Expense 1 Expense, Opening"); wordList.add ("Keibu 1 Inspector 0 Inspector (Japanese Police Inspector Noichi)"); wordList.add ("Keibetsu 1 contempt 0 contempt, contempt"); wordList.add ("CV 1 Career 0 Resume, Shoe, Resume"); wordList.add ("Keiro 1 Route 1 Transit Route, Route, Route"); wordList.add ("Case 1 case" Case / Situation "1 proposal, case, case"); wordList.add ("Injurious 1 Dirty 5 Dirty, Deficit"); wordList.add ("Gekidan 1 Theater Company 0 Theater Company"); wordList.add ("Gekirei 1 Encouragement 0 Encouragement"); wordList.add ("Guest 1 guest 1 Guest, Kahin, Cameo"); wordList.add ("Kedamono 1 Beast 0 獸, Livestock"); wordList.add ("Ketsu 1 Resolution 1 Decision, Resolution"); wordList.add ("Keitsu 1 Decision 1 Decision"); wordList.add ("Tuberculosis 1 Tuberculosis 0 Tuberculosis"); wordList.add ("Kekan 1 blood vessel 0 blood vessel"); wordList.add ("Ketsu 1 Resolution 0 Resolution"); wordList.add ("Kekko 1 Decision 0 Decision, Minoru"); wordList.add ("Ketsugo 1 join 0 join"); wordList.add ("Kesan 1 settlement 1 settlement, settlement"); wordList.add ("Gesha January fee 0 compensation fee, tuition fee"); wordList.add ("Ketsujo 1 * 0 Lack 1 Deficiency"); wordList.add ("Kesho 1 Final 0 Final, Final"); wordList.add ("Kesho 1 Crystal 0 Result, Crystal"); wordList.add ("Serum 1 formation 0 formation, composition"); wordList.add ("1 unity 0 unity, bundle, concatenation"); wordList.add ("Slender 1 Slowly 3 Emaciation, Emaciation, Emaciation"); wordList.add ("Ketsudan 1 Decision 0 Result, Decision"); wordList.add ("burp January installment 0 annex"); wordList.add ("Ketsubo 1 deficiency 0 deficiency"); wordList.add ("Ketobasu 1 Kick off 0,3 Furious 踢, Aka Kabuki"); wordList.add ("Kenasu 1 貶 0 貶 Low, 毀謗"); wordList.add ("Kemtai 1 Smoke 0,3 (Smoke) 嗆 人, messenger anxiety, messenger rush"); wordList.add ("Kemuru 1 Smoke 0 Smoke, Naughty, Oboro"); wordList.add ("Kemono 1 Beast 0 獸"); wordList.add ("Keirai 1 servant 1 feudal vassal"); wordList.add ("Geri 1 Diarrhea 0 Stomach"); wordList.add ("ken 1 case 1 thing, case, case"); wordList.add ("Ken 1 ~ Category"); wordList.add ("Ken 1 Authority 1 Confidence, Prestige, 權 Wei"); wordList.add ("Kengyo 1 side job 0 and 營"); wordList.add ("Genkei 1 Prototype / Prototype 0 Prototype, Unevolved Prototype"); wordList.add ("Kengen 1 Authority 3 Limits"); wordList.add ("Genkou 1 Current 0 Current"); wordList.add ("Kenzai 1 alive 0 alive, alive, present tense"); wordList.add ("Gensaku 1 Original 0 Original"); wordList.add ("Kenji 1 Prosecutor 1 Inspector"); wordList.add ("Genshi 1 atom 1 atom, atomic bomb"); wordList.add ("Genshu 1 Head of State 1 Head of State"); wordList.add ("Gensho 1 Original Book 0 Original Book, Western Book"); wordList.add ("Kensho 1 Sweepstakes 0 Sweepstakes"); wordList.add ("Gensho 1 decrease 0 decrease, decrease"); wordList.add ("Kenzen 1 Healthy 0 Healthy, Normal, Solid"); wordList.add ("Genso 1 element 1 element"); wordList.add ("Genzo 1 Development 0 Image"); wordList.add ("Gensoku 1 Principle 0 Principle"); wordList.add ("Kenchi 1 Perspective 1 View, Stand, 檢查 Building Site"); wordList.add ("Genchi 1 local 1 site, current residential area"); wordList.add ("Gente 1 Limited 0 Limited"); wordList.add ("Genten 1 deduction 0 points"); wordList.add ("Genten 1 Original 1 Original, Original"); wordList.add ("Genten 1 Origin 1 Origin, Coordinate original"); wordList.add ("Genbaku 1 Atomic Bomb 0 Atomic Bomb"); wordList.add ("Genbun 1 source 0 source"); wordList.add ("Genmitsu 1 Strictly 0 Dense, Prank"); wordList.add ("Kenmei 1 Wise 0 Wise, Akechi, Takaaki"); wordList.add ("Kenyaku 1 Frugality 0 Savings, Savings"); wordList.add ("Genyu 1 Crude Oil 0 Crude Oil"); wordList.add ("Kenyo 1 combined use 0 combined use, for use"); wordList.add ("Kenryoku 1 Power 1 Rights"); wordList.add ("Genron 1 speech 0 speech"); wordList.add ("this ~ 1 late 1 old"); wordList.add ("Great 1 Vocabulary 1 Vocabulary, Vocabulary"); wordList.add ("Koisuru 1 Koisuru 3 Love"); wordList.add ("Kou 1 Instep 1 Armor Instep, Crustacean, Flame Instep, Surface, First Place, Instep"); wordList.add ("Kou 1 ~ Kokou"); wordList.add ("Koi 1 Favor 1 Favor, Goodwill"); wordList.add ("Koi 1 Act 1 Act, Stop"); wordList.add ("Go 1 Agree 1 Agree, Achievement Discussion"); wordList.add ("Koueki 1 Trade 0 Trade, Trade"); wordList.add ("Kouen 1 performance 0 performance"); wordList.add ("Koukai 1 public 0 public, open"); wordList.add ("Koukai 1 regret 1 regret"); wordList.add ("Koukai 1 voyage 1 voyage"); wordList.add ("Kogaku 1 Engineering 0 Engineering"); wordList.add ("Kogi 1 Protest 1 Protest"); wordList.add ("Gougi 1 Council 1 Discussion"); wordList.add ("Koukyo 1 Imperial Palace 1 Imperial Palace"); wordList.add ("Koukyo 1 boom 0 prosperity, Kageki"); wordList.add ("Kogyo 1 Kogyo 0 Promotion Project"); wordList.add ("Kogyo 1 Mining 1 Mining"); wordList.add ("Kogen 1 Plateau 0 Plateau"); wordList.add ("Kougo 1 Alternate 1 Alternate"); wordList.add ("Koukou to 1 Glitter and 0 Glitter"); wordList.add ("Kokogaku 1 Archeology 3 Archeology"); wordList.add ("Kousaku 1 Craft 0 Craft"); wordList.add ("Kousaku 1 Cultivation 0 Cultivation"); wordList.add ("Kouzan 1 Mine 1 Isayama"); wordList.add ("Koushu 1 class 0 class"); wordList.add ("Koujutsu 1 Oral 0 Oral"); wordList.add ("Koujo 1 deduction 1 exemption"); wordList.add ("Kousho 1 Negotiation 0 Conflict"); wordList.add ("Kousho 1 Noble 0 Noble"); wordList.add ("Koujo 1 Improvement 0 Progress"); wordList.add ("Kousin 1 March 0 Progress"); wordList.add ("Koshinryo 1 spice 3 spice preparation"); wordList.add ("Kousui 1 Precipitation 0 Precipitation"); wordList.add ("Kouzui 1 Flood 0 Flood"); wordList.add ("Gosei 1 Synthesis 0 Synthesis"); wordList.add ("Kouzen 1 Public 0 Public, Public"); wordList.add ("Kousou 1 Conflict 0 Conflict"); wordList.add ("Kousou 1 concept 0 concept"); wordList.add ("Kousoku 1 Restraint 0 Bondage, Detention, Restraint"); wordList.add ("Koutai 1 Retreat 0 Retreat, Retreat, Decline"); wordList.add ("Koutai 1 * 0 Alternation 0 Alternation, Alternation, Rotation"); wordList.add ("Kotaku 1 Gloss 0 Mitsuzawa"); wordList.add ("Kodan 1 Kodan 0 Kodan"); wordList.add ("Koucho 1 good 0 good profit"); wordList.add ("Finally 1 verbal 0 verbal"); wordList.add ("Kodoku 1 Reading 0 Lecture, Lecture"); wordList.add ("Kodoku 1 subscription 0 revision, purchase"); wordList.add ("Konyu 1 purchase 0 purchase"); wordList.add ("Konin 1 official 0 official"); wordList.add ("Konetsuhi 1 Utility Expenses 4 Soot Expenses"); wordList.add ("Kouhai 1 Devastation 0 Desolation"); wordList.add ("Koubai 1 Purchase 0 Purchase"); wordList.add ("Kouhan 1 * 0 second half 0 second half, second half"); wordList.add ("Kohyo 1 popular 0 popular"); wordList.add ("Koufu 1 grant 0,1 grant"); wordList.add ("Koufun 1 Excitement 0 Excitement"); wordList.add ("Kobo 1 Public Offering 0 Fine Collection, Invitation"); wordList.add ("Komyo 1 clever 0 clever"); wordList.add ("Kouyo 1 Public 0 Public, Public Affairs, Public Service"); wordList.add ("Kori 1 Retail 0 Koho, Zero"); wordList.add ("Koritsu 1 Public 0 Public"); wordList.add ("Koritsu 1 Efficiency 0 Efficiency"); wordList.add ("Goei 1 escort 0 escort, guard"); wordList.add ("corner 1 corner 1 corner drop, corner, garden"); wordList.add ("Kogara 1 Petite 0 Body material short and small, florets, flower crests"); wordList.add ("Kogite 1 Check 2 Form"); wordList.add ("Very 1 word 1 word, word, vocabulary"); wordList.add ("Kokusan 1 Domestic 0 Kokujin"); wordList.add ("Kokute 1 national rule 0 national rule, national decision"); wordList.add ("Kokudo 1 land 1 land, territory"); wordList.add ("Kokuhaku 1 Confession 0 Confession, Confession"); wordList.add ("Kokubo 1 Defense 0 Defense"); wordList.add ("Kokuyuu 1 state-owned 0 state-owned"); wordList.add ("Gokuraku 1 Gokuraku 0,4 Gokuraku, Anraku, No mercy"); wordList.add ("Bighead Carp 1 United Nations 0 United Nations"); wordList.add ("dark brown 1 dark brown 2 dark brown, deep brown"); wordList.add ("Gogen 1 etymology 0 etymology"); wordList.add ("here 1 individual 1 piece"); wordList.add ("Kokochi 1 Comfort 0 Feelings, Feelings"); wordList.add ("Kokoroe 1 Knowledge 3 Background, Experience, Rule, Suchi, Deputy, Mental Preparation"); wordList.add ("Kokorogake 1 Attention 0,5 Attention, Retention"); wordList.add ("Kokoro 1 Keep in mind 5 Stay in mind, keep in mind"); wordList.add ("Kokorozashi 1 Aspiration 0,5 Aspiration, Applicant, Will, Kindness, Enthusiasm, (Display Mind) Mindness"); wordList.add ("Kokoro Azusa 1 Aspire 4 Ritsushi"); wordList.add ("Kokorozuyo 1 Reassuring 5 膽 子 壯, Piety"); wordList.add ("Kokoro Bosoi 1 Heartless 5 Heart, 膽 怯"); wordList.add ("Kokoromi 1 Trial 3,4 Trial"); wordList.add ("Kokoro Miru 1 Try 4 Trial, Preliminary, Trial"); wordList.add ("Kokoroyo 1 Pleasant 4 Pleasant, Uplifting, Sickness"); wordList.add ("Gorgeous 1 error 0,1 error, difference"); wordList.add ("Yes. 1 There is. Greeting word 4 [Honorific] Yes"); wordList.add ("Koji 1 Orphan 1 Orphan"); wordList.add ("Twisting 1 Frustrating 3 (Situation) Complexity, (Disease) Hajime"); wordList.add ("Kojin 1 deceased 1 deceased, dead"); wordList.add ("rub 1 strain" rub water "0 overfilter"); wordList.add ("Kozue 1 treetop 0 treetop"); wordList.add ("Kosei 1 individuality 1 individuality"); wordList.add ("Koseki 1 Family Register 0 Hukou, Hukou"); wordList.add ("Kozeni 1 coin 0 zero (for) 錢"); wordList.add ("Kodai 1 Ancient 1 Ancient, Ancient, Ancient Poetry"); wordList.add ("Kotatsu 1 Fireplace 0 (for warming) Warm, Kotatsu"); wordList.add ("stick 1 stick 3 stick"); wordList.add ("Kocho 1 Exaggeration 0 Exaggeration, Exaggeration"); wordList.add ("Knock 1 Kotsu (grab ~) 0,2 抓 lum (point, sword gate, secret)"); wordList.add ("Kokei 1 humorous 0 humorous, funny, crazy"); wordList.add ("Kokko 1 Diplomatic Relations 0 Diplomatic Relations"); wordList.add ("Kottohin 1 antiques 0 antiques"); wordList.add ("Kote 1 fixed 0 fixed"); wordList.add ("things 1 thing 0,3,4 circumstances, things, situations"); wordList.add ("Kodoku 1 loneliness 0 loneliness, loneliness"); wordList.add ("Everything 1 悉 悉 3 盡 悉, all, all"); wordList.add ("Kotozu 1 Koden 0,4 Legend, Indirect 腆辆, Shin Eguchi"); wordList.add ("especially 1 special, abnormal, exception"); wordList.add ("possibly 0,5,6 possible depending on one thing, indefinite, yah, takumi"); wordList.add ("Konagona 1 shatter 0 powder, powder"); wordList.add ("This is a good 1 preferred 4 deceased person, joy, soul"); wordList.add ("Goban 1 Go board 0 圍 棋 board"); wordList.add ("Kobetsu 1 Individual 0 Individual"); wordList.add ("Commercial 1 commercial 2 (television) commercial advertisement, commercial"); wordList.add ("Cheating 1 Deceiving 3 衍"); wordList.add ("Fine 1 Fine, Rich 2 Deep, Deep"); wordList.add ("Comment 1 comment 0,1 Review, Note"); wordList.add ("Momoru 1 Kagomori 2 Full"); wordList.add ("Koyuu 1 unique 0 unique, unique"); wordList.add ("Koyo 1 Employment 0 for employment"); wordList.add ("Koyomi 1 calendar 3 days"); wordList.add ("Korasu 1 Elaborate 2 Concentrate"); wordList.add ("Look. 1 Look. Greetings 0 [Respect] Request"); wordList.add ("Koritsu 1 Isolation 0 Isolation"); wordList.add ("Koruru 1 Discipline 2 Acceptance ~ Lessons Learned"); wordList.add ("Stiff 1 Stiff 1 Coagulation, Heat"); wordList.add ("Konki 1 Perseverance 0 Tolerance, Resoluteness"); wordList.add ("Konkyo 1 Grounds 1 Neji"); wordList.add ("Konketsu 1 mixed race 0 mixed race"); wordList.add ("contact lens 1 contact lens 1,3 [6] eyeglasses"); wordList.add ("Konchu 1 Insect 0 Kumushi"); wordList.add ("Konte 1 Root 0 Root, Foundation"); wordList.add ("Contest 1 contest 1 Hisai, Chosenkai"); wordList.add ("Kondo 1 Confused 0 Confused"); wordList.add ("Contrast 1 contrast 1,4"); wordList.add ("Control 1 control 4 Control, Adjustment"); wordList.add ("Compass 1 kompas Dutch 1 encyclopedia, instruction needle"); wordList.add ("Konpon 1 Nemoto 0 Nemoto, Basic"); wordList.add ("sa 1 sa interjection 0 exclamation word" come "like call"); wordList.add ("Zai 1 Good 1 Gold, Good Wealth"); wordList.add ("Saikai 1 Reunion 0 Reunion Face"); wordList.add ("Saigai 1 Disaster 0 Disaster"); wordList.add ("Saikin 1 Bacteria 0 Bacteria"); wordList.add ("Saiku 1 work 0,3 elaborate handicraft"); wordList.add ("Sasaku 1 Mining 0 Mining, Excavation"); wordList.add ("cycle 1 cycle 1 cycle"); wordList.add ("Saiketsu 1 vote 0,1 vote"); wordList.add ("Saken 1 Reconstruction 0 Heavy Construction, Heavy Repair"); wordList.add ("Saigen 1 reproduction 0 reproduction, restoration"); wordList.add ("Zaigen 1 financial resources 0,3 financial resources"); wordList.add ("Zaiko 1 inventory 0 stock"); wordList.add ("Saisan 1 Profitable 0 Nuclear Calculation"); wordList.add ("Saishu 1 Gathering 0 Gathering"); wordList.add ("size 1 size 1 scale"); wordList.add ("Saisei 1 Play 0 Shigesei, Resurrection"); wordList.add ("Zaisei 1 Finance 0 Finance"); wordList.add ("at best 1 best 0 best"); wordList.add ("Saitai 1 adopted 0 selected, accepted"); wordList.add ("Saibai 1 Cultivation 0 Cultivation"); wordList.add ("Saihatsu 1 Recurrence 0 Rehabilitation"); wordList.add ("Saibo 1 cell 0 cell"); wordList.add ("Saiyo 1 adopted 0 adopted"); wordList.add ("Intercept 1 Block 3 Block, Block, Block, Shield, Block, Block, Umbrella, Anti-Rejection, Block"); wordList.add ("Tweet 1 sing 3 (bird) singing, screaming, singing"); wordList.add ("Support 1 Clear 2 Vivid, (Sound) Clear Fragrance, Elaborate, Clear Awakening, Clear Cold"); wordList.add ("Sao 1 rod 2 bamboo rod, rod child, 杠子"); wordList.add ("Return 1 Prosper, Prosperity, Prosperity, Prosperity"); wordList.add ("Saku 1 difference 0 difference"); wordList.add ("Sakazuki 1 cup 4 Sake cup, Friendship Cup"); wordList.add ("Sakadachi 1 Handstand 0 Inverted, Inverted"); wordList.add ("Sagi 1 Scam 1 Scam, Scam"); wordList.add ("Before 1 first, before" before "0,1 before"); wordList.add ("Saku 1 work 0, 2 works, crop yield"); wordList.add ("Saku 1 fence 1,2 fence column, fence column, castle 寨"); wordList.add ("Saku 1 Strategy 1, 2 Strategy, Strategy, Strategy, Means, Method, 3, Old-fashioned Simplified Strategy, 4, Whip, 仗,"); wordList.add ("Sakugen 1 reduction 0 reduction"); wordList.add ("Sakugo 1 Mistake 1, 2 Mistake, Mistake of Concept"); wordList.add ("Sakusen 1 Strategy 0 Strategy, Tactic"); wordList.add ("Sakebi 1 Scream 3 Loud Scream, Scream, Protest"); wordList.add ("Avoid 1 Rip 2.3 Rip, Rupture, Rupture"); wordList.add ("Dedicate 1 Dedicate 0 Dedicate, 擎, 獻, 獻 荻, tribute, (direction) expression, table"); wordList.add ("Approaching 1 approaching 0 arrival, arrival (a certain place), (time) arrival, approaching, approaching, hanging lid"); wordList.add ("Sashizu 1 Instruction 1 Instruction, Conduct, Arrangement, Instruction"); wordList.add ("Send 1 to present 0 (front) extension, extension, submission, delivery, contribution, departure, dispatch"); wordList.add ("Can be used 1 Can be used 0 Obstruction, Disability, Upaya"); wordList.add ("Sashihiki 1 deduction 0.2 removal, post-removal amount, difference"); wordList.add ("Sazukuru 1 Give 3 Give, Give, Give"); wordList.add ("Rubbing 1 Rubbing 0 (Hand) Friction"); wordList.add ("Sazo 1 Sazo" Sazoya, Sazokashi "1 Must-have, constant (subjective speculative phrase)"); wordList.add ("Sadamaru 1 Fixed 3 Determined, Fixed, Clear"); wordList.add ("Sadameru 1 Establish 3 rules, decree, rating"); wordList.add ("Zadankai 1 Roundtable 0,2 Roundtable"); wordList.add ("Zatsu 1 miscellaneous 0,1 coarse, grass ratio, confounding"); wordList.add ("Zakka 1 miscellaneous goods 0 雜 coin"); wordList.add ("1 illusion 0 illusion, error"); wordList.add ("Satsujin 1 murder 0 murder"); wordList.add ("quick 1 guess 0,3 imagination, guess, skeleton"); wordList.add ("Zatsudan 1 Chat 0 Chat, Satoshi"); wordList.add ("quick 1 quick 0,1 quick, Ichishita child, suddenly"); wordList.add ("Refreshing 1 Refreshing 3 Dryness, Falling, Exhilarating"); wordList.add ("Satoru 1 Enlightenment 0,2 Ryogo, Satori, Toru"); wordList.add ("Sanaka 1 Monaka 1 Authentic ... Nonaka, heyday, climax"); wordList.add ("Judgment 1 Judgment 2 Judgment, Judgment"); wordList.add ("Zahyo 1 coordinate 0 coordinate, standard, reference"); wordList.add ("Not so much 1 so much 0 Naru"); wordList.add ("Sabotage 1 sabotage French 2 偷懶, 翹 迹 迹, laziness"); wordList.add ("sama 1 like 2 樣子"); wordList.add ("Wandering 1 * 0 Wandering 3 Wandering, Nomadic, Drifting"); wordList.add ("Samuke 1 Chills 3 Chills, Trembling"); wordList.add ("Samurai 1 Samurai 0 Samurai, Tsuyoshi Kaoru"); wordList.add ("Samo 1 is exactly 1 Accurate, 實子 (target 樣子), good image"); wordList.add ("Goodbye 1 action 1 action"); wordList.add ("Farewell 1 Tonfa" Children ~ "0 Tonfa"); wordList.add ("touch 1 disturb 0 disturb, harmful"); wordList.add ("san 1 acid 1 acid, sourness"); wordList.add ("sanka 1 oxidation 0 oxidation"); wordList.add ("Sangaku 1 Mountain 0 Mountain"); wordList.add ("Sangin 1 House of Councilors 3 House of Councilors"); wordList.add ("Thank you 1 thank you 1 thank you"); wordList.add ("Sankyu 1 Maternity leave 0 產假"); wordList.add ("Zankin 1 balance 1 amount"); wordList.add ("Sango 1 Postpartum 0 Postpartum"); wordList.add ("Zankoku 1 Cruel 0 Cruel"); wordList.add ("Sanshutsu 1 Production 0 Raw 產, 產"); wordList.add (Refer to "Sansho 1 0"); wordList.add ("Sanjo 1 Visit 0 [Humble language] Tomo visit"); wordList.add ("Zandaka 1 balance 1 amount, conclusion"); wordList.add ("Santa Claus 1 Santa Claus 5 Holy Birth Old Man"); wordList.add ("Sancho 1 * 0 Summit 0 Summit"); wordList.add ("Sanbashi 1 Pier 0 Goto"); wordList.add ("Sanbi 1 Praise 1 Sanbi"); wordList.add ("Sanpuku 1 Mountainside 0 Mountain waist"); wordList.add ("Sanfujinka 1 Obstetrics and Gynecology 0 Gynecology"); wordList.add ("Sanbutsu 1 Product 0 產 子"); wordList.add ("Sanmyaku 1 Mountains 0 Mountains"); wordList.add ("1 death 1 death, death"); wordList.add ("1 master 1 master, old master"); wordList.add ("1 ~ Saiban, Saiban"); wordList.add ("Ji 1 ~ Next, Time, Bottom"); wordList.add ("Ji 1 ~ Child Keiko"); wordList.add ("Finished 1 Finished 0 Completed, Completed"); wordList.add ("Finished 1 Finished 0 Completed, Final decoration"); wordList.add ("I'll give you 1 I'll finish 3 I'm done, I'm done"); wordList.add ("Shiiku 1 breeding 0 breeding"); wordList.add ("I'm forced to 1 forcibly, forced, forced"); wordList.add ("Sheet 1 sheet / seat 1 thin plate, (sheet of paper) stretch / seat, slab for stile"); wordList.add ("Jeans 1 jeans + pants Japanese English 0 Beef 褲"); wordList.add ("Is 1 Force 2 Force, Force"); wordList.add ("Shire 1 Buy 3 Get, Buy, Get"); wordList.add ("Shio 1 tide 2 tide, seawater"); wordList.add ("Shika 1 Dentistry 1, 2 Fang"); wordList.add ("Jiga 1 ego 1 self"); wordList.add ("City 1 City 1 City"); wordList.add ("Shikaku 1 Visual 0 Visual"); wordList.add ("Shikaku 1 Qualification 0 Qualification"); wordList.add ("Jikaku 1 Awareness 0 Self-confidence, Satoru"); wordList.add ("device 1 device 0 structure, fishing equipment"); wordList.add ("Start 1 Set Up 3 Challenge, Set Up, Prepare"); wordList.add ("However, 1 but 4", however, "); wordList.add ("Shiki 1 Conductor 2 Conductor"); wordList.add ("Jiki 1 Porcelain 1 Gourd"); wordList.add ("Soon 1 Magnetic 1 Magnetic Force"); wordList.add ("Shikisai 1 Color 0 Coloring, Color, Tendency"); wordList.add ("Shikijo 1 Ceremony Hall 0 Reido"); wordList.add ("Traditional 1 Customary 0 Custom"); wordList.add ("Jigyo 1 Business 1 Business"); wordList.add ("Shikiru 1 Partition 2 Separation, Separation, Director, Responsibility Command, (Sumo) Sonkyo Deposit Posture"); wordList.add ("Shikin 1 Fund 2 Fund, Property"); wordList.add ("Jiku 1 axis 0,2 axis, hanging scroll, center"); wordList.add ("Failure 1 Failure 3 Dismissal, Failure, (Cause Negligence, etc.) Dismissal"); wordList.add ("Mechanism 1 Mechanism 0 Structure, fine"); wordList.add ("Shikei 1 Death Penalty 0,2 Death Penalty"); wordList.add ("Sheer 1 Moist 0,2 Shiohama"); wordList.add ("Jiko 1 Self 1 Self, Ego"); wordList.add ("Sho 1-oriented 0-oriented"); wordList.add ("Let's 1 Think 0 Think"); wordList.add ("Sho 1 Enforcement 0 Benefits, Effectiveness"); wordList.add ("Sho 1 Preference 0 Preference"); wordList.add ("Sho 1 * 0 Trial 0 Trial, Trial, Trial"); wordList.add ("Jiko 1 item 1 item"); wordList.add ("Jigoku 1 Hell 3 Hell"); wordList.add ("Jikokuhyo 1 timetable 0 timetable"); wordList.add ("Jisa 1 time difference 1 time difference, complexion time"); wordList.add ("Jizai 1 Free 0, 2 Free"); wordList.add ("Satsu 1 inspection 0 inspection"); wordList.add ("San 1 Asset 0,1 Asset"); wordList.add ("Shiji 1 Support 1 Support"); wordList.add ("Actually 1 Fact 1 Fact"); wordList.add ("Jishu 1 self-confidence 0 self-confidence"); wordList.add ("Jishu 1 Voluntary 1 Voluntary"); wordList.add ("Embroidery 1 Embroidery 0 Embroidery"); wordList.add ("1 market 1 market"); wordList.add ("Jishoku 1 Resignation 0 Resignation"); wordList.add ("Drop 1 Drop 3 Water Drop"); wordList.add ("system 1 system 1 system, system, system, system"); wordList.add ("Shizumaru 1 Quiet 3 Lonely"); wordList.add ("Shizukuru 1 Sink / Calm 0/3 Use ... wordList.add ("Shisetsu 1 facility 1,2 setting"); wordList.add ("Shisoku 1 Son 1 兒 子"); wordList.add ("Jizoku 1 persistence 0 possession"); wordList.add ("Jisonshin 1 Self-esteem 2 Self-esteem"); wordList.add ("Jitai 1 font 0 font"); wordList.add ("Jitai 1 Decline 1 辭 Decline"); wordList.add ("I admire 1 adoring 0 envy"); wordList.add ("Shigokoro 1 Shimoshin 3 Keishin"); wordList.add ("Shiji 1 Ground 0 Basics, Preparation, Predisposition"); wordList.add ("Familiar 1 Familiar 3 Familiar"); wordList.add ("Survey 1 Preliminary Survey 3 Depositor Adjustment"); wordList.add ("Fresh 1 Tailoring 3 Sewing, Preparation"); wordList.add ("Traditional 1 Trade-in 0 Conflict"); wordList.add ("Travel 1 Downhill 0 Fire Gradual, Decline"); wordList.add ("Actually 1 Real 2 Reality, True Minority, Achievement, Quality"); wordList.add ("Jika 1 Home 0 Birth Home"); wordList.add ("Disqualification 1 Disqualification 0 Disqualification Eligibility"); wordList.add ("Question 1 Q1,2 Q & A, Submission Question"); wordList.add ("Shikyaku 1 Lost 0 垮 dai, Shimodai"); wordList.add ("Jitsugyouka 1 businessman 0 entrepreneur"); wordList.add ("chic 1 chic French 1 elegant, elegant, timely"); wordList.add ("Carefully 1 Carefully 3 Pride, Small Land"); wordList.add ("Discipline 1 Discipline 0 Education, Training"); wordList.add ("Train 1 Discipline 3 Education, Culture"); wordList.add ("Just 1 Substantial 0 Quality, Essence"); wordList.add ("Jitsujo 1 Facts 0 Facts 0"); wordList.add ("Jissen 1 Practice 0 Body Power Line"); wordList.add ("Simple 1 Simple 1 Simple"); wordList.add ("Jitai 1 Reality 0 Reality 0"); wordList.add ("Ataxia 1 Ataxia 0 Ataxia"); wordList.add ("Sit 1 Jealousy 0 Jealousy"); wordList.add ("Jippi 1 actual cost 0 extra cost"); wordList.add ("I've been pointing 1 pointing 0 pointing"); wordList.add ("Shin 1 Perspective 0 View, Gaze Concentration"); wordList.add ("Jiten 1 Rotation 0 Self-rotation, Self-rotation"); wordList.add ("Jidoshi 1 intransitive verb 2 intransitive verb"); wordList.add ("Smooth 1 graceful 2 Bunya, wise"); wordList.add ("Shinobiru 1 wither 0 wither"); wordList.add ("Supple 1 Supple 2 Flexible, Elastic"); wordList.add ("Scenario 1 scenario 0"); wordList.add ("Shinyo 1 human waste 0 excrement"); wordList.add ("Jinushi 1 Landowner 0 Landlord"); wordList.add ("exceed 1 surpass 2 patience"); wordList.add ("Shiba 1 Shiba 0 Yukiso"); wordList.add ("Shihatsu 1 first train 0 no longer a group car"); wordList.add ("Jibika 1 Otorhinolaryngology 0 Otorhinolaryngology"); wordList.add ("Sweet 1 Astringent 2 澀, Pleasure and Disappointment, Small Ki, Elementary"); wordList.add ("Reluctant 1 Private 0 Private Property"); wordList.add ("Stubborn 1 Astringent 3 Stubborn"); wordList.add ("How to 1 Judiciary 0 Judiciary"); wordList.add ("Shibo 1 aspiration 0 aspiration"); wordList.add ("Shibo 1 fat 0 fat"); wordList.add ("Shimatsu 1 Disposal 1 Disposal, Resolution"); wordList.add ("Stain 1 Stain 0 Infection, Dye"); wordList.add ("smear 1 bleed 0 bleed, bleed"); wordList.add ("Shimei 1 Mission 1 Mission"); wordList.add ("Jimoto 1 Local 0,3 Tochi"); wordList.add ("Shiya 1 field of view 1 field of view"); wordList.add ("Jaku 1 weak 1 weak"); wordList.add ("Shakou 1 Social 0 Social"); wordList.add ("Shazai 1 * 0 Apology 0 Road, apology"); wordList.add ("Jazz 1 jazz 1 Countess"); wordList.add ("Shazetsu 1 Apologize 0 Apologize"); wordList.add ("Shataku 1 Company Housing 0 Company Employee Housing"); wordList.add ("Jakkan 1 Slightly 0 Slightly, Small"); wordList.add ("Shamisen 1 Shamisen 0 Japanese Sanxian Koto"); wordList.add ("Shamen 1 Slope 1 Slope"); wordList.add ("Jari 1 gravel 0 gravel"); wordList.add ("Funny 1 Fashionable 2 Drifting, Joke"); wordList.add ("Jumper 1 jumper 1 jacket"); wordList.add ("jump 1 jump 1 jump"); wordList.add ("Jumbo 1 jumbo 1 Giant (target)"); wordList.add ("Genre 1 genre 1 French, artistic classification"); wordList.add ("shu 1 main 1 main"); wordList.add ("shu 1 type 1 type"); wordList.add ("Shu 1 People 1 Man"); wordList.add ("Shiyuu 1 privately owned 0 privately owned"); wordList.add ("1 residence 1 residence"); wordList.add ("Shueki 1 Revenue 0,1 Revenue"); wordList.add ("Shugaku 1 Study 0 Study, Study"); wordList.add ("cycle 1 cycle 1 cycle"); wordList.add ("Shugiin 1 House of Representatives 3 House of Representatives"); wordList.add ("Shugyo 1 Employment 0 Employment"); wordList.add ("Jugyoin 1 employee 3 worker"); wordList.add ("Shukei 1 Aggregation 0 Total"); wordList.add ("Shugeki 1 Raid 0 Raid"); wordList.add ("Shu 1 Master 1 Master"); wordList.add ("Shu 1 from beginning to end 1 from beginning to end"); wordList.add ("Shu 1 Balance 1 Balance"); wordList.add ("July 1 Engagement 1 affair"); wordList.add ("Shujitsu 1 All day 0 All day, Seiten"); wordList.add ("Jujitsu 1 Enrichment 0 Fill"); wordList.add ("Shushu 1 Collection 0 Collection"); wordList.add ("1 qualification 0 qualification, decoration"); wordList.add ("Jujiro 1 Crossroads 3 Crossroads Exit"); wordList.add ("Junan 1 Flexible 0 Flexible"); wordList.add ("Jufuku 1 Duplicate 0 Duplicate"); wordList.add ("Shuyo 1 contain 0 contain"); wordList.add ("Jurai 1 Conventional 1 or more"); wordList.add ("Shuryo 1 Completion 0 Study Completion-Course"); wordList.add ("Shuei 1 Guard 0 Guard"); wordList.add ("Shuen 1 starring 0 starring"); wordList.add ("Shukan 1 Subjectivity 0 Main View"); wordList.add ("Shugyo 1 training 0 training"); wordList.add ("Juku 1 Juku 1 Supplementary Group"); wordList.add ("Shukuga 1 Celebration 0,2 Celebration"); wordList.add ("Shukumei 1 Fate 0 Fate"); wordList.add ("Shugei 1 Handicraft 0,1 Handicraft"); wordList.add ("Shuken 1 Sovereignty 0,2 Sovereignty"); wordList.add ("Shusai 1 Organizer 0 Main 辦"); wordList.add ("Shuzai 1 coverage 0 coverage"); wordList.add ("Shush 1 Purpose 1 Religion"); wordList.add ("Shuju 1 Various 1 Various"); wordList.add ("Shushoku 1 staple food 0 staple food"); wordList.add ("Shujinkou 1 Protagonist 2 Main Angle"); wordList.add ("Shutai 1 subject 0 main body"); wordList.add ("Shudai 1 subject 0 subject"); wordList.add ("Shutsuen 1 Appearance 0 Direction"); wordList.add ("Shuketsu 1 Bleeding 0 Bleeding, Sacrifice"); wordList.add ("Shutsugen 1 Appearance 0 Appearance"); wordList.add ("Shu-san 1 Birth 0 Birth"); wordList.add ("Shusha 1 Attendance 0 Upper Group"); wordList.add ("Shusho / Shussei 1 Birth 0 Birth, Birth"); wordList.add ("Shusse 1 Advancement 0 Birth, Name"); wordList.add ("Shutsudai 1 Question 0 Question"); wordList.add ("Shutsudo 1 dispatch 0 dispatch"); wordList.add ("Shuppi 1 Expense 0 Expense, Opening"); wordList.add ("Syuppin 1 Exhibit 0 Exhibition Works, Offer Items"); wordList.add ("Shudo 1 led 0 led"); wordList.add ("Shunin 1 Chief 0 Chief"); wordList.add ("Shunou 1 Leader 0 Head of Government, Leader"); wordList.add ("Shubi 1 Defensive 1 Defensive"); wordList.add ("Shuho 1 Method 0 Method, Technique"); wordList.add ("Jumoku 1 Tree 1 Tree"); wordList.add ("Juritsu 1 Established 0 Established, Established"); wordList.add ("Junkyu 1 Semi Express 0 Semi Express"); wordList.add ("Junjiru / Zuru 1 conforms, conforms 0 equality, illuminating, and so on ... Criteria"); wordList.add ("sho 1 ~ document, book"); wordList.add ("Sho 1 ~ Symptom 1 ~ Symptom"); wordList.add ("Sho 1 ~ Proof 1 Certificate"); wordList.add ("Let's 1 spec 0 formula, method"); wordList.add ("Let's 1 Private 0 Private Affairs"); wordList.add ("Ju 1 Emotion 0 Emotion, Affection"); wordList.add ("Jo 1 ~ Miss (Unmarried girl's call) Small 姐"); wordList.add ("Jo 1 ~ Article ~ Jo"); wordList.add ("Jyo 1 Top 1 Top"); wordList.add ("Joen 1 Performance 0 Performance, Performance"); wordList.add ("Joka 1 Castle 1 Castle Downward"); wordList.add ("Shogai 1 Lifetime 1 Lifetime, Lifetime"); wordList.add ("Shokyo 1 Erase 1 Rubbing"); wordList.add ("Joku 1 Sky 0 High Sky"); wordList.add ("Shogeki 1 Impact 0 Impact"); wordList.add ("Shogen 1 Testimony 0,3 Testimony"); wordList.add ("Shoko 1 Evidence 0 證據"); wordList.add ("Shogo 1 collation 0 contrast"); wordList.add ("Shosai 1 Details 0 Details"); wordList.add ("Joshi 1 Boss 1 Boss"); wordList.add ("Josho 1 Rise 0 Upper"); wordList.add ("Shoshin 1 Promotion 0 Square, Transition"); wordList.add ("Shooting 1 Calling 3"); wordList.add ("Josei 1 Situation 0 Situation"); wordList.add ("Shosoku 1 fate 0 fate"); wordList.add ("Shotai 1 Identity 1 Serious"); wordList.add ("Shodaku 1 consent 0 permission"); wordList.add ("Jocho / Josho 1 Emotion 1 Emotion"); wordList.add ("Shocho 1 Symbol 0 Elephant"); wordList.add ("Shonika 1 Pediatrics 0 Small School"); wordList.add ("Shonin 1 Witness 0 Proof"); wordList.add ("Shonin 1 servant 0 servant, technician"); wordList.add ("Jonetsu 1 Passion 0 Passion"); wordList.add ("Joho 1 Concession 1 Walk"); wordList.add ("Shomei 1 Lighting 0 Lighting"); wordList.add ("Joyaku 1 Treaty 0 Article"); wordList.add ("Shori 1 Victory 1 Victory"); wordList.add ("Joriku 1 landing 0 landing"); wordList.add ("Joryu 1 Distillation 0 Steamed"); wordList.add ("Shorei 1 Encouragement 0 獎勵"); wordList.add ("Show 1 show 1 (art) performance, exhibition"); wordList.add ("Jogai 1 Exclusion 0 Exclusion"); wordList.add ("Shokuin 1 staff 2 staff"); wordList.add ("Shokuminchi 1 Colony 3 Colony"); wordList.add ("Shokumu 1 Job 1 Job"); wordList.add ("Shokun 1 You 1 Honor"); wordList.add ("Shogen 1 Advice 0 Proposal, Advice"); wordList.add ("Jokou 1 Xu Huang 0 Pride"); wordList.add ("Shozai 1 location 0 residence"); wordList.add ("Shoji 1 possession 1 possession"); wordList.add ("Joshi 1 particle 0 particle"); wordList.add ("Joshi 1 Ms. 1 Ms."); wordList.add ("Shozoku 1 affiliation 0 place, 屬"); wordList.add ("Shocho 1 Treatment 1 處 處 處 處 處"); wordList.add ("Shock 1 shock 1 Impact, Rest, Mental Strike, Surprise"); wordList.add ("Frequently 1 Frequently 1"); wordList.add ("Shot 1 Predetermined 0 specified"); wordList.add ("Jodoshi 1 auxiliary verb 2 auxiliary verb"); wordList.add ("Shotoku 1 Income 0 Income"); wordList.add ("Shobatsu 1 Punishment 1 Punishment"); wordList.add ("Shohan 1 First Edition 0 First Edition"); wordList.add ("Shohyo 1 Book Review 0 Book Review"); wordList.add ("Shobun 1 Disposal 1 處 處, 處 處"); wordList.add ("Shomin 1 Commoner 1 Commoner, Peasant"); wordList.add ("Shomu 1 General Affairs 1 General Affairs"); wordList.add ("Shoyuu 1 own 0 own"); wordList.add ("Survey 1 Search 3 Tone"); wordList.add ("Jiritsu 1 Independence 0 Self-Eating Power, Independence"); wordList.add ("sign 1 note 0 note, 寫"); wordList.add ("Say 1 Directive 0 Directive, Directive"); wordList.add ("Shin 1 ~ Mind, Mind"); wordList.add ("Jin 1 team 1 team, Cloth team"); wordList.add ("Shinka 1 evolution 1 evolution"); wordList.add ("Jinkaku 1 personality 0 personality"); wordList.add ("Shingi 1 Deliberation 1 Deliberation"); wordList.add ("Shinkou 1 Promotion 0 Promotion"); wordList.add ("Shinkou 1 Progress 0 March, Exhibition, Progress"); wordList.add ("Shinkou 1 Emerging 0 Emerging"); wordList.add ("Shinkoku 1 Declaration 0 Declaration, Report"); wordList.add ("Shinkon 1 Newlywed 0 Newlywed"); wordList.add ("Shinsa 1 Judgment 1 Judgment"); wordList.add ("Jinzai 1 Human Resources 0 Human Resources"); wordList.add ("Shinshi 1 Gentleman 1 Kimiko, Gentleman"); wordList.add ("Shinjitsu 1 Truth 1 Truth, Minoru"); wordList.add ("Shinja 1 Believers 1 Believers"); wordList.add ("Shinju 1 Pearl 0 Rare Pearl"); wordList.add ("Shinju 1 Shinju 0 Heart Death, Joint Suicide"); wordList.add ("Shinshutsu 1 Advance 0 Entry, Launch"); wordList.add ("Shinjo 1 Heart 0 Heart"); wordList.add ("Shinjin 1 Rookie 0 Rookie"); wordList.add ("Shinsei 1 Holy 0 Holy"); wordList.add ("Shinzen 1 Goodwill 0 Friendship, Goodwill"); wordList.add ("Shinso 1 Truth 0 Truth"); wordList.add ("Jinsoku 1 Quick 0 Quick, on horseback"); wordList.add ("Jintai 1 human body 1 person"); wordList.add ("Shinchiku 1 new construction 0 new construction"); wordList.add ("Shinte 1 present 0 dedication, gift"); wordList.add ("Shinten 1 Progress 0 Progress"); wordList.add ("Shinden 1 Temple 0 Temple"); wordList.add ("Shindo 1-advance 1-advance"); wordList.add ("Shindo 1 Vibration 1 Vibration"); wordList.add ("Shinnyusei 1 Freshman 3 (School-like) Newborn"); wordList.add ("Shinnin 1 Confidence 0 Confidence"); wordList.add ("Shinnen 1 * 0 Belief 1 Belief"); wordList.add ("Shinpi 1 Mystery 1 Mystery"); wordList.add ("Shinbo 1 Patience 1 Patience, Patience"); wordList.add ("Jinmin 1 People 3 People, Citizens, Nationals"); wordList.add ("Shinri 1 Truth 1 Truth, Reason"); wordList.add ("Shinryaku 1 Invasion 0 Invasion"); wordList.add ("Shinryo 1 medical treatment 0 medical treatment"); wordList.add ("Shinro 1 * 0 Course 1 Exit, Forward Road"); wordList.add ("Sui 1 Sophisticated 1 Seika, Seika"); wordList.add ("Suigen 1 water source 0 water source"); wordList.add ("Suishin 1 Promotion 0 Push, Promotion"); wordList.add ("Suisen 1 flush 0 flush printing"); wordList.add ("Suiso 1 brass band 0 brass band"); wordList.add ("Suisoku 1 Guess 0 Guess, Speculation"); wordList.add ("Suiden 1 Paddy 0 Paddy"); wordList.add ("Suiri 1 reasoning 1 reasoning"); wordList.add ("Sushi 1 Numeral 0 Numeral"); wordList.add ("Suye 1 worship 0 worship"); wordList.add ("Set up 1 Install 4 Ansetsu, Ansetsu"); wordList.add ("Standing 1 Set 0 Rest, lay down, use ... sit down"); wordList.add ("Refreshing 1 Refreshing 5 Refreshing, Refreshing"); wordList.add ("Scoop 1 Salvation 0 Rescue, Rescue"); wordList.add ("Scoop 1 scoop" water ~ "0 dedication, 舀"); wordList.add ("Healthy 1 Healthy 2 Healthy, Healthy"); wordList.add ("Rinse 1 Rinse 0 Wash"); wordList.add ("Proceed 1 forward 0 advance, progress"); wordList.add ("Recommended 1 Recommended 0 勸"); wordList.add ("Sole 1 Hem 0 Lower collar, Yamato"); wordList.add ("Studio 1 studio 0 Middle waiting room, recording room, recording room, sound shelf"); wordList.add ("Sold 1 Obsolete 0,3 廢mono, Passion, 踟 臉"); wordList.add ("Steam 1 steam 2 steam, water steam"); wordList.add ("strike 1 strike 1 strike"); wordList.add ("strike 1 strike 3 strike"); wordList.add ("Stress 1 stress 2 (spirit) power"); wordList.add ("straw 1 straw 2 sucker"); wordList.add ("Strobo 1 strobo 0 flashlight"); wordList.add ("quick 1 quick 4 agility, spirit"); wordList.add ("quick 1 quick 3 spirit"); wordList.add ("Zubari 1 Zubari 2 Direct Completion"); wordList.add ("Soaked 1 Soaked 0 Toru Hama, Toru Hi"); wordList.add ("Spring 1 spring 0,3 彈 簧, spring heaven"); wordList.add ("space 1 space 2 space, territory, place, thick sky"); wordList.add ("Sports car 1 sports car 4,5"); wordList.add ("Summer 1 Clear, Purify 2 Envoy Kiyoshi, Mind"); wordList.add ("I'm done 1 I'm done 2 I'm done, I'm back"); wordList.add ("quickly 1 promptly 2 promptly"); wordList.add ("Slacks 1 slacks 2 allegorical trousers, suits"); wordList.add ("Zutto 1 Zutto 2 parallel, enumeration"); wordList.add ("1 rubbing 1 rubbing, polishing"); wordList.add ("sly 1 sly 1 slippery, procrastination, 哧 哧"); wordList.add ("shift 1 slip 2 anastomosis, deviation"); wordList.add ("Passing 1 Rubbing 0 Rubbing"); wordList.add ("Rubbing 1 Rubbing 2 Rubbing"); wordList.add ("Smooth 1 Smooth 3 Shuntochi"); wordList.add ("sei 1 ~ system, system"); wordList.add ("Seiiku 1 Growth, Growth 0 Growth, Growth, Cultivation"); wordList.add ("Seika 1 Achievement 1 Achievement, Fulfillment"); wordList.add ("Seikai 1 Correct Answer 0 Accurate Answer"); wordList.add ("Seiki 1 Regular 1 Regular"); wordList.add ("Seigi 1 Justice 1 Masamichi"); wordList.add ("Seikei 1 Livelihood 0 Livelihood"); wordList.add ("Seiken 1 Government 0 Government, Government"); wordList.add ("Seikou 1 elaborate 0 precise, elaborate"); wordList.add ("Seiza 1 constellation 0 constellation"); wordList.add ("Saisai 1 sanctions 0 sanctions, punishment"); wordList.add ("Seisaku 1 Policy 0 Policy"); wordList.add ("Seisan 1 Settlement 0 Settlement, Subdivision, Nuclear Calculation"); wordList.add ("Seishi 1 Rest 0 Stop"); wordList.add ("Seishi 1 Life and Death 1 Life and Death"); wordList.add ("Seijitsu 1 Honesty 0 Honesty"); wordList.add ("Seijuku 1 Maturity 0 Maturity"); wordList.add ("Seishun 1 Youth 0 Youth"); wordList.add ("Seijun 1 Innocent 0 Innocent, Innocent"); wordList.add ("Seisho 1 Bible 1 Holy Spirit"); wordList.add ("Seijo 1 Normal 0 Normal, Normal"); wordList.add ("Seisei 1 Control 3 Stop, Hold"); wordList.add ("Seizen 1 orderly 0 Arijo unsuccessful, ordering"); wordList.add ("Seiso 1 dressing 0 dressing, striking"); wordList.add ("Seidai 1 Grand 0 Grand"); wordList.add ("Seidaku 1 Voice 0,1 Voice"); wordList.add ("Seitei 1 Enactment 0 Enactment"); wordList.add ("Seiki 1 Static 0 Physical"); wordList.add ("Seitetsu 1 Steelmaking 0 Brick"); wordList.add ("Seiten 1 fine weather 0 fine weather"); wordList.add ("Seito 1 Legitimate 0 Correct"); wordList.add ("Seinen 1 adult 0 adult"); wordList.add ("Seifuku 1 Uniform 0 Uniform"); wordList.add ("Seifuku 1 Conquest 0 Conquest"); wordList.add ("Seiho 1 Manufacturing Method 0 Manufacturing Method"); wordList.add ("Seimitsu 1 Precision 0 Precision"); wordList.add ("Zeimusho 1 Tax Office 0,3,4 Tax Office, Tax Office"); wordList.add ("Seimei 1 Statement 0 Shomyo"); wordList.add ("Seimei 1 First Name 1 First Name"); wordList.add ("Seiyaku 1 Constraint 0 Constraint, Restriction"); wordList.add ("Seri 1 Physiology 1 Physiology"); wordList.add ("Seiryoku 1 power 1 power, power, gathering"); wordList.add ("Seiretsu 1 Alignment 0 Arrangement, Expulsion"); wordList.add ("Sale 1 sale 1 screaming, screaming"); wordList.add ("Sekasu 1 Hurry 2 Reminder"); wordList.add ("Segare 1 倅 0 兒 子"); wordList.add ("Sekimu 1 Responsibility 1 Responsibility Sum Obligation"); wordList.add ("Section 1 section 1 department, chapter"); wordList.add ("Seji 1 flattery 0 Kyoei story"); wordList.add ("Zesei 1 Correction 0 Amendment, Modification"); wordList.add ("Setai 1 household 1,2 family members, 戶"); wordList.add ("Sedai 1st generation 0,1 same generation, 1st generation"); wordList.add ("Setsu 1 Section 1 Time, Section"); wordList.add ("Noisy 1 incision 0,1 incision"); wordList.add ("Sex 1 sex 1 Gender, Gender, Fuck"); wordList.add ("Seriously 1 urgent 0 urgent, urgent"); wordList.add ("Collision 1 Contact 0 Collision, Collision"); wordList.add ("Setsuzoku 1 Conjunction 0 Conjunction"); wordList.add ("Set 1 installation 1 installation, comfort"); wordList.add ("Eclectic 1 eclectic 0 eclectic"); wordList.add ("Set 1 Setting 0 Established, Established"); wordList.add ("Settoku 1 Persuasion 0 Clothes, Guidance"); wordList.add ("Sad 1 Painful 3 Pantless, Difficult"); wordList.add ("Zeppen 1 Out of Print 0 絕 Edition"); wordList.add ("Zetsubo 1 Despair 0 Despair, Despair"); wordList.add ("Setsuritsu 1 Established 0 Established, Established"); wordList.add ("Some 1 Attack 2 Advance, 圍 Attack"); wordList.add ("Jelly 1 jelly 1 fruit frozen, colloidal fox"); wordList.add ("Ceremony 1 ceremony 1,2 liturgy, ritual"); wordList.add ("Seron 1 Public Opinion 1 Public Opinion, Public Opinion"); wordList.add ("Sen 1 Destination 1 Destination, Previous, Occupied Destination"); wordList.add ("Zen 1 set 0 board, food plan"); wordList.add ("Zen 1 Zen 1 Ryo, Uchiza"); wordList.add ("Sen 1 Fiber 1 纖 Wei"); wordList.add ("Zenkai 1 Complete Recovery 0 Healing"); wordList.add ("Senkyo 1 Missionary 0 Missionary Religion, Missionary"); wordList.add ("Sengen 1 Declaration 0,3 Declaration, Proclamation"); wordList.add ("Senkou 1 Lead 0 Lead, Running Front"); wordList.add ("Senkou 1 selection 0 selection promotion"); wordList.add ("Sensai 1 War Damage 0 Battle Disaster"); wordList.add ("Senshu 1 Senshu 0 Senshu, Senshu"); wordList.add ("Senjutsu 1 Tactics 0 Strategies, Strategies"); wordList.add ("sense 1 sense 1 feeling, eye light"); wordList.add ("Sensui 1 Diving 0 Sosui"); wordList.add ("Zensei 1 prime 0,1 prime"); wordList.add ("Sendai 1 predecessor 0 first generation"); wordList.add ("Sendatte 1 ahead 0,5 Mae Ikuten"); wordList.add ("Senchaku 1 first come, first served"); wordList.add ("Pruning 1 Assumption 0 Assumption condition"); wordList.add ("Sentenki 1 Congenital 0 Congenital"); wordList.add ("Zento 1 ahead 1 ahead, previous"); wordList.add ("Sento 1 Combat 0 戰 鬥"); wordList.add ("Senyu 1 infiltration 0 infiltration"); wordList.add ("Senpaku 1 Ship 1 Ship"); wordList.add ("Zenhan 1 * 0 first half 0 first half, first half"); wordList.add ("Zenmetsu 1 annihilation 0 annihilation, complete annihilation"); wordList.add ("Senyo 1 dedicated 0 gate use"); wordList.add ("Senryo 1 Occupation 0 Occupation"); wordList.add ("Zenryo 1 Good 0 Good"); wordList.add ("Senryoku 1 Strength 1 Military Strength"); wordList.add ("Zenrei 1 precedent 0 precedent, convention"); wordList.add ("Yes, 1 phase, 1 appearance, appearance"); wordList.add ("Yes 1 Monk 1 Hatred"); wordList.add ("Soou 1 Correspondence 0 Appropriate, Ai"); wordList.add ("Zoka 1 increase 0 increase"); wordList.add ("Sokai 1 General Assembly 0 Zendai Daikai"); wordList.add ("Sokan 1 first issue 0 first issue"); wordList.add ("Zouuki 1 miscellaneous trees 0 undeveloped trees"); wordList.add ("Sokyu / Sakkyu 1 Immediately 0 Urgent, Fire Urgent"); wordList.add ("Zoukyo 1 Augmentation 0 Augmentation"); wordList.add ("Sokin 1 Remittance 0 Contribution"); wordList.add ("Sokou 1 run 0 line"); wordList.add ("Sogo 1 total 0 synthesis"); wordList.add ("Yes, 1 Investigation 1 搜查"); wordList.add ("Sosaku 1 Search 0 Search"); wordList.add ("Something 1 * 0 Loss 0 Loss"); wordList.add ("Soju 1 Maneuver 0 Manipulation, Manipulation"); wordList.add ("Elephant 1 Finance Minister 0 Zhao Minister, (Japanese) Minister of Finance"); wordList.add ("Soshoku 1 decoration 0 decoration"); wordList.add ("Elephant 1 promotion 0 promotion"); wordList.add ("Sozo 1 Creation 0 Creation"); wordList.add ("Sotai 1 Relative 0 Phase"); wordList.add ("Sodai 1 Grand 0 Hongwei"); wordList.add ("So how 1 riot 1 riot, riot"); wordList.add ("Yes, 1 distress 0 distress"); wordList.add ("Soba 1 market price 0 behavior, speculative purchase, customary"); wordList.add ("Sobi 1 Equipment 1 Equipment"); wordList.add ("Soritsu 1 Founded 0 Founded"); wordList.add ("Additional 1 Attached 0 Attached, Attached"); wordList.add ("source 1 sauce / source 1 fee / source"); wordList.add ("Sokuza ni 1 Immediately 1 Immediately, Toba"); wordList.add ("Sokushin 1 Promotion 0 Promotion"); wordList.add ("Slow 1 Immediate 3 Cut"); wordList.add ("Sokubaku 1 Binding 0 Binding, Limitation"); wordList.add ("Sokumen 1 side 0,2,3 direction"); wordList.add ("Lost 1 Loss 3 Loss"); wordList.add ("There 1 there 2 哪哩, about 哪 piece"); wordList.add ("Sozai 1 Material 0 Subject, Ingredient"); wordList.add ("And 1 block 1 block"); wordList.add ("Sosho 1 Proceedings 0 Proceedings"); wordList.add ("Sodachi 1 Raised 3 Growth, Educational Environment"); wordList.add ("There 1 Measure 1 Measure"); wordList.add ("socks 1 socks 1 short socks"); wordList.add ("Sokkenai 1 Apathy 4 Cold"); wordList.add ("Soppo 1 Outer 1 Outer, 旁 邊"); wordList.add ("Equipment 1 Equipment 0,5 Equipment, Equipment"); wordList.add ("Preparing 1 equipped, equipped 3 equipped, lined up, equipped"); wordList.add ("Soaring 1 Towering 3 Towering, Deficit"); wordList.add ("Soboku 1 naive 0 simple, simple"); wordList.add ("Somaru 1 Dye 0 Dye, Sake Dye"); wordList.add ("Somuku 1 Betrayal 2 Betrayal, Betrayal"); wordList.add ("Some 1 Dye 0 Dye (color), Red Ear Red"); wordList.add ("Distract 1 Distract 2 Distract, Unbalanced"); wordList.add ("Sledding 1 橇" Ride on "1 Snow 橇"); wordList.add ("Sliding 1 Warping 1 翹, Body-turning back"); wordList.add ("Therefore 1 then 0 cause this, why"); wordList.add ("Solo 1 solo Italian 1 singer, singer, singer"); wordList.add ("Matching 1 Matching 2,3 Narita, Saizen, Gumi"); wordList.add ("Zonzai 1 Zonzai 3 Grass Rate, Coarse"); wordList.add ("Sonshitsu 1 Loss 0 Damage, Loss"); wordList.add ("Sonzoku 1 Survival 0 繼續, Existence"); wordList.add ("Dozen 1 dozen 1 stroke"); wordList.add ("I want 1 corps 1 corps, corps"); wordList.add ("tai 1 ~ obi 帶 ..., ji 帶"); wordList.add ("Daichi 1 First Adverb 1 Neck, First"); wordList.add ("Taiou 1 correspondence 0 對 谍, sign"); wordList.add ("Taika 1 Landlord 1 Authority, Prestigious"); wordList.add ("Taika 1 Degenerate 1 Degenerate, Degenerate"); wordList.add ("Mostly 1 Mostly 0 Mostly"); wordList.add ("Taikaku 1 physique 0 physique"); wordList.add ("Mostly 1 dropout 0 dropout"); wordList.add ("Takin 1 Big Money 0 Giant Code"); wordList.add ("Taigu 1 treatment 0 treatment"); wordList.add ("Taiketsu 1 Showdown 0 對 Quality"); wordList.add ("Taiken 1 Experience 0 體驗"); wordList.add ("Taikou 1 Opposition 0 Countermeasure"); wordList.add ("Taiji 1 Extermination 0 Discipline, Eradication"); wordList.add ("Taishu 1 Mass 0 Daishin"); wordList.add ("Taisho 1 Action 1 Attached"); wordList.add ("Taishoku 1 Retirement 0 Retirement, Retirement"); wordList.add ("1 title 3 titles"); wordList.add ("Taisei 1 Position 0 狀 State"); wordList.add ("Mostly 1 talk 0 talk"); wordList.add ("about 1 bold 3 big 膽"); wordList.add ("Equivalent to 1 equal 0, etc."); wordList.add ("Title 1 title 1 Title, Title"); wordList.add ("No 1 ruin 0 tamper"); wordList.add ("Taino 1 delinquency 0 lack"); wordList.add ("Taihi 1 contrast 1,0 contrast"); wordList.add ("Typist 1 typist 3 Typist"); wordList.add ("Mostly 1 Large 1 Large, Large Head"); wordList.add ("Daiben 1 proxy talk 0 for ... substitute, substitute solution, substitute compensation"); wordList.add ("Daiben 1 stool 0,3 stool"); wordList.add ("Taibou 1 long-awaited 0th term"); wordList.add ("Daihon 1 script 0 drama book, 腳 book"); wordList.add ("timer 1 timer 1 timer"); wordList.add ("Taman 1 neglect 0 negligence"); wordList.add ("Timing 1 timing 0 Time"); wordList.add ("time 1 time 1 hour, hour, era"); wordList.add ("Timely 1 timely 1 Timely, Timely"); wordList.add ("Taimen 1 Face-to-face 0 Face"); wordList.add ("Daiyo 1 substitute 0 substitute"); wordList.add ("Tairyoku 1 Health 1 Strength"); wordList.add ("tile 1 tile 1 porcelain, tile piece"); wordList.add ("Taiwa 1 Dialogue 0 Talk"); wordList.add ("Down 1 down 1 Down, Down, Feather"); wordList.add ("Patience 1 Endure, Endure 2 Patience, Patience, Noboru"); wordList.add ("Give 1 Stop, Refuse 2 疷 絕"); wordList.add ("Big 1 breakthrough 0 breakthrough"); wordList.add ("Takamaru 1 Increase 3 Takashi"); wordList.add ("Takibi 1 Bonfire 0 Bonfire"); wordList.add ("Dakyo 1 Compromise 0 Compromise"); wordList.add ("Strong 1 Robust 4 Keniso, Vigorous"); wordList.add ("Takumi 1 Skill 1,0 Skill, Skill"); wordList.add ("Take 1 Length 2 Long, Long and Short"); wordList.add ("Dageki 1 hit 0 hit"); wordList.add ("only 1 compromise 0 compromise, achievement consultation"); wordList.add ("Dasaku 1 Bad Work 0 Poor Work"); wordList.add ("Tashizan 1 Addition 2 Addition"); wordList.add ("Tasuketsu 1 Majority 2 Majority Decision"); wordList.add ("Tasuke 1 Help 3 Help"); wordList.add ("Interacting 1 Engagement 0,4 San'yo, San'yo"); wordList.add ("Drifting 1 Floating 3 Space or someone floating on the surface of the water"); wordList.add ("Tachisaru 1 Going away 0 Running, opening"); wordList.add ("Tachiyoru 1 Stop by 0,3 Dust Near Yasushi"); wordList.add ("Tatsu 1 Cut 1 截, 斷"); wordList.add ("Dakko 1 Hug 1 [Children] Hug"); wordList.add ("Tassha 1 Master 0 Health, Healthy, Familiar"); wordList.add ("Dashutsu 1 Escape 0 Escape"); wordList.add ("Tassei 1 achieved 0 achieved, completed"); wordList.add ("I want to leave 1 leave 0 leave, leave"); wordList.add ("If it's 1 then it's 1"); wordList.add ("Vertical 1 Shield 1 Shield"); wordList.add ("Replace 1 Replace 0,3 with 墊"); wordList.add ("Tatemae 1 Tatemae 0,2 Upper beam"); wordList.add ("Tatematsuru 1 Dedicated 4 Dedicated"); wordList.add ("1 is 1 and 1 is conjunction"); wordList.add ("transitive verb 2 transitive verb"); wordList.add ("Even if 1 example 0,2 喻譬, example child"); wordList.add ("Arrive 1 Reach 2,4 Good and bad rush"); wordList.add ("Trace 1 Follow 0,2 Forward, Search, Arrive ... Run away"); wordList.add ("Spring 1 Bundle 3 ligation, 綑, ligation"); wordList.add ("Dabudabu 1 Dabudabu 0/1 Excessive muscle relaxation / relaxation / hypertrophy"); wordList.add ("double 1 double noun 1 雙 (份), 兩 fold"); wordList.add ("one 1 other 2 other, total one side"); wordList.add ("Tabo 1 Busy 0 Busy, Busy"); wordList.add ("Tamau 1 Give 2 [Honorifics] 對 對 kata Action Respect"); wordList.add ("soul 1 soul 1 spirit"); wordList.add ("Tamari 1 Puddle 0 Sekiju, Soy Sauce"); wordList.add ("Turn 1 Give 3 [Humble Words] Award"); wordList.add ("Take 1 keep 2 keep, keep"); wordList.add ("Easy 1 Easy 0,3 Easy"); wordList.add ("Tayo 1 Variety 0 Each expression Each 樣"); wordList.add ("Dull 1 Dull 0,2 慵懶"); wordList.add ("Sag 1 Loose 0 Loose"); wordList.add ("slack 1 slack 0 slack"); wordList.add ("Dripping 1 Dripping 2 Suspension, Suspension"); wordList.add ("Talent 1 talent 0,1 actor, talent"); wordList.add ("Tower 1 tower 1 Tower, Tower"); wordList.add ("Tan 1 single ~ Yaji"); wordList.add ("Tantou 1 Single 0 單1"); wordList.add ("Tanka 1 Tanka 1 Japanese poetry (Yugo, 7, 5, 7, 7 all 5 phrases)"); wordList.add ("tanka 1 stretcher 1 stretcher"); wordList.add ("Tanki 1 Short temper 1 沒 resistance"); wordList.add ("Danketsu 1 unity 0 unity"); wordList.add ("Tanken 1 Exploration 0 Exploration"); wordList.add ("Dangen 1 Affirmation 3 Affirmation, Affirmation"); wordList.add ("Tanshuku 1 shortened 0 shortened, reduced"); wordList.add ("Danzen 1 by far 0, 斷 乎"); wordList.add ("Tanso 1 Carbon 1 碳"); wordList.add ("Tadai 1 Junior College 0 Junior College"); wordList.add ("Tancho 1 monotonic 0 humor"); wordList.add ("Tandoku 1 alone 0 單 獨, 獨 獨"); wordList.add ("Dan 1 Husband 0 Durable, Master, Teacher"); wordList.add ("protein 1 shortwave 1 shortwave"); wordList.add ("Protein 1 protein 3,4 protein"); wordList.add ("Dump 1 dump 1 Tilted freight car, automatic wholesale freight car"); wordList.add ("Danmen 1 cross section 3 cross section, face surface"); wordList.add ("Danryoku 1 elasticity 0,1 elasticity"); wordList.add ("Chian 1 Security 0,1 Security"); wordList.add ("Teamwork 1 teamwork 4 combination, cooperative operation"); wordList.add ("change 1 change 1 exchange"); wordList.add ("Wrong 1 Wrong 0 Revised, Revised"); wordList.add ("Chikusan 1 Livestock 0 Livestock"); wordList.add ("Chikusho 1 Livestock 3 Livestock"); wordList.add ("Chikuseki 1 Accumulation 0 Accumulation"); wordList.add ("Chikei 1 Terrain 0 Terrain"); wordList.add ("Chisei 1 Intelligence 2 Intelligence, Reason"); wordList.add ("Chichi 1 Milk 1,2 Milk"); wordList.add ("Small 1 Shrink 0 Interval Short"); wordList.add ("Chitsujo 1 Order 1,2 Order"); wordList.add ("Small 1 suffocation 0 suffocation"); wordList.add ("Chiki 1 Intellectual 0 Intelligent"); wordList.add ("Chime 1 chime 1 doorbell, doorbell"); wordList.add ("Chakushu 1 Start 0,1 Move"); wordList.add ("Chakushoku 1 coloring 0 writing color"); wordList.add ("Chakuseki 1 Seated 0 Seated"); wordList.add ("Chakumoku 1 Focus 0 Focus, Watching"); wordList.add ("Chakuriku 1 Landing 0 Written"); wordList.add ("Chakko 1 Start 0 Start"); wordList.add ("Chanoma 1 Tea Room 0 (Homely) Iihiro"); wordList.add ("Chanoyu 1 Chanoyu 0 Tea Ceremony"); wordList.add ("Chiyahoya 1 Chiyahoya 1 Dedication"); wordList.add ("channel 1 channel 0,1 frequency"); wordList.add ("Chugaeri 1 Somersault 3 Somersault"); wordList.add ("Chukei 1 relay 0 middle forgiveness"); wordList.add ("Chukoku 1 Advice 0 Advice"); wordList.add ("Chujitsu 1 faithful 0,1 loyalty, loyalty"); wordList.add ("Slander 1 slander 0 slander"); wordList.add ("Chusu 1 center 0 center, center"); wordList.add ("Chusen 1 lottery 0 lottery"); wordList.add ("Chudan 1 Suspension 0 Nakabuchi"); wordList.add ("Chudoku 1 Addiction 1 Addiction"); wordList.add ("Chufuku 1 hillside 0 half mountain waist"); wordList.add ("Churitsu 1 Neutral 0 Neutral"); wordList.add ("Chuwa 1 Neutralization 0 Neutralization"); wordList.add ("Cho 1-Author, Writing"); wordList.add ("cho 1 intestine 1 intestine"); wordList.add ("butterfly 1 butterfly 1 butterfly"); wordList.add ("Chou ~ 1 Super ~ 1 Emergency ~"); wordList.add ("Choin 1 signing 0 簽 letter"); wordList.add ("Chokaku 1 Hearing 0,1 聽覺"); wordList.add ("Chokan 1 Secretary 0 Secretary"); wordList.add ("Choukou 1 Attendance 0 Listening"); wordList.add ("Choshu 1 collection 0 collection"); wordList.add ("Choshinki 1 Stethoscope 3 Stethoscope"); wordList.add ("Chosen 1 Challenge 0 Challenge"); wordList.add ("Choite 1 Mediation 0 Mediation"); wordList.add ("Chofuku 1 Duplicate 0 Duplicate"); wordList.add ("Chouhen 1 Feature 0 Feature"); wordList.add ("Choho 1 Handy 1 Convenient, Important"); wordList.add ("Chori 1 Cooking 1 Cooking"); wordList.add ("Chouwa 1 Harmony 0 Harmony"); wordList.add ("Chokuzen 1 Immediately before 0 Eye care ... Time and condition, in front of you"); wordList.add ("Chokuchoku 1 Chokuchoku 1 o'clock, always"); wordList.add ("Chokumen 1 Face 0 Face"); wordList.add ("Chosho 1 Book 0 Book"); wordList.add ("Choku 1 Savings 0 Savings"); wordList.add ("Chokkan 1 Intuition 0 Direct Intuition"); wordList.add ("Chokkei 1 Diameter 0 Direct"); wordList.add ("Chomei 1 Famous 0 Famous"); wordList.add ("Glitter 1 Glitter 2 Minor, Ichiaki, Ippen"); wordList.add ("dust 1 dust 0,2 dust, 垃圾"); wordList.add ("Dustpan 1 Dustpan 3,4 Dustpan, Rabbit"); wordList.add ("Chiryo 1 Treatment 0 Treatment"); wordList.add ("Chingin 1 Wage 1 Tax, Construction Fund"); wordList.add ("Chinden 1 Precipitation 0 Precipitation"); wordList.add ("Chinbotsu 1 Sinking 0 沉沒"); wordList.add ("Chinmoku 1 Silence 0 沉默"); wordList.add ("Chinretsu 1 Display 0 Display"); wordList.add ("Tsukyu 1 Pursuit 0 Pursuit, Pursuit"); wordList.add ("Tsukiseki 1 Tracking 0 Tracking"); wordList.add ("Tsuho 1 Expulsion 0 Deportation"); wordList.add ("Easy 1 spend 3 flower costs, wear costs"); wordList.add ("Tsukiraku 1 Crash 0 從 taka 處 掉 厉 厉"); wordList.add ("Tsukan 1 Pain 0 Pain, Intense Feeling"); wordList.add ("Tsujo 1 Normal 0 Normal, Normal"); wordList.add ("Tsuusetsu 1 Painful 0 Deep Cut, Fillet"); wordList.add ("Stick 1 Cane 1 Crutch"); wordList.add ("Usage Michi 1 Usage 0 Usage, Usage"); wordList.add ("Use 1 Serve 0 Clothes Samurai, Samurai Service"); wordList.add ("Control 1 Control 4 Control, Management"); wordList.add ("Tsukanoma 1 Fleeting 0 Ichikuna"); wordList.add ("Tsukinami January 0 mediocre"); wordList.add ("next 1 seam 0 joint stitch"); wordList.add ("Tsuru 1 Exhaust 2 盡"); wordList.add ("tsugu 1 connect 0 contact"); wordList.add ("Tsugu 1 Inheritance 0 Inheritance, Contact"); wordList.add ("Tsukusu 1 Exhaust 2 盡 做"); wordList.add ("Tsukuzuku 1 Ripe 0 Small land, Serious land"); wordList.add ("Tsunai 1 * 0 Compensation 0,3 Compensation, Compensation, Atonement"); wordList.add ("Making 1 Making / Making 3 做, Making, Kuai / Structure, Fine, Raw fish pieces"); wordList.add ("Let's make 1 Repair 3 Repair"); wordList.add ("Add 1 Add 0,5 Add, Replenish, Add"); wordList.add ("Tsugeru 1 Tell 0 Accusation"); wordList.add ("Tsujitsuma 1 Tsuji 褄" Story ~ "0 Jori"); wordList.add ("while 1 cylinder 0 cylinder"); wordList.add ("Poke / Stick 1 Poking 2 Beak, Beak"); wordList.add ("Tsukushimu 1 Honor 3 Honor"); wordList.add ("Pulling 1 Stretching 3 Summit, Tension, Persistence"); wordList.add ("Tsumaru 1 Duty Maru 3 Noh"); wordList.add ("Tsutomesaki 1 Workplace 0 Workplace"); wordList.add ("try 1 try 2 volume"); wordList.add ("Tsunami 1 Tsunami 0 Tidal bore"); wordList.add ("one square two squares"); wordList.add ("Tsuru 1 Recruiting 2 Goeku Yue damage"); wordList.add ("Tsubasa 1 Wing 1 Bird-like wing"); wordList.add ("Tweet 1 Mutter 3 Jail"); wordList.add ("Turn 1 yen coin 0 圓"); wordList.add ("Crush 1 Meditate'Eyes' ~ 0 Closed eyes, Meditate"); wordList.add ("pot 1 jar 0 jar, can"); wordList.add ("bud 1 bud 3 flower bud, flower bud"); wordList.add ("Pinch 1 Pick 0 Pick"); wordList.add ("Pick 1 Pick 0 Pick, Pick, Pick"); wordList.add ("tsuyu 1 dew 1 dew water"); wordList.add ("Tsuyomaru 1 Strengthening 3 Great Origins, Strengthening"); wordList.add ("Reinforce 1 Strengthen 3 Strengthen, Strengthen"); wordList.add ("Tsuraru 1 consecutive 3 concatenation, market"); wordList.add ("Tsurunuku 1 Penetration 3 Penetration"); wordList.add ("Tsuru 1 Sequential 3 Exclusion, Concatenation"); wordList.add ("Tsurigane 1 Bell 0 Hanging Bell"); wordList.add ("Tsurikawa 1 Strap 0 Ring"); wordList.add ("Address 1 Allowance 1 Engineering"); wordList.add ("Tegi 1 definition 1,3 definition"); wordList.add ("Teikyo 1 Provided 0 Provided"); wordList.add ("Teikei 1 Alliance 0 Proposal, Collaboration"); wordList.add ("Teisai 1 appearance 0 樣子, outer table, face, face, bureau, form, devotion"); wordList.add ("Teiji 1 presentation 0,1 presentation, presentation (actual evidence east and west), self-sounding provided by the lieutenant"); wordList.add ("Teshoku 1 set meal 0 set meal, guest meal"); wordList.add ("Teisei 1 Correction 0 Correction"); wordList.add ("I want to be 1 stagnation 0 stagnation, stagnation, stagnation"); wordList.add ("Tetaku 1 Mansion 0 Mansion, Public Hall"); wordList.add ("tissue (paper) 1 tissue paper 1 (4) sanitary paper, paper handkerchief"); wordList.add ("Tenen 1 Retirement 0 Retirement Age"); wordList.add ("Tebo 1 embankment 0 embankment, basin"); wordList.add ("Teri 1 * 0 Theorem 1 Theorem"); wordList.add ("data 1 data 0,1 material, numbers"); wordList.add ("Okure 1 It's too late 2 It's too late, it's up, it's up, it's indulgence, it's incorrect"); wordList.add ("Big 1 Big 2 Great"); wordList.add ("Clues 1 Climbing 2 (at the time of climbing) Climbing region, 抓 點, 抓 te (reconnaissance) line line"); wordList.add ("Handle 1 Work 3 Parent Auto Hand, Parent Self-illumination Fee, Hand"); wordList.add ("Tekazu 1 Step 1, 2 Handbook, Makan, (Xiangqi, Go)"); wordList.add ("Tegaru 1 Easy 0 Simple, Easy, Simple"); wordList.add ("Kiou 1 Adaptation 0 Adaptation, Adaptation"); wordList.add ("Kigi 1 Appropriate 1 Appropriate, Appropriate, Appropriate, Enthusiasm, Encounter"); wordList.add ("Kisei 1 aptitude 0 suitability, (certain person) nature, (certain work) nature, personality"); wordList.add ("Product 1 Product 2,3,4 Folliculitis, abscess, boil"); wordList.add ("Tegiwa 1 Technique 0 Technique, Technique, Skill, Reality"); wordList.add ("Decoration 1 decoration 3 decoration"); wordList.add ("Around 1 * 2 Affordable 0 Hand, Hand, Fit"); wordList.add ("Desert 1 dessert 2 Dim Sum"); wordList.add ("design 1 design 2 design, draft, formula"); wordList.add ("Tejun 1 Step 0,1 Introduction, Program"); wordList.add ("Tejo 1 Handcuffs 0 Handcuffs"); wordList.add ("Tesu 1 effort 2 expense, hesitation"); wordList.add ("Tejika 1 handy 0 body, Tsunemi"); wordList.add ("Clear 1 Clear 3 Constant, Affirmative"); wordList.add ("Tekko 1 Steel 0 Steel"); wordList.add ("Drawing 1 dessin French 1 Drawing"); wordList.add ("Tetsu 1 Toru 0,3 Toru, Thorough"); wordList.add ("Top 1 Top 3 Top"); wordList.add ("Tetsubo 1 horizontal bar 0 horizontal bar, 單槓"); wordList.add ("Repair 1 Reissue 0 Revisit, Heavy"); wordList.add ("Te palm 1 palm 1 palm"); wordList.add ("Yes 1 Arrangement 1,2 Rattan, Department"); wordList.add ("should be 1 move 1 step, introduction"); wordList.add ("Tebiki 1 Guide 1 Hibiki, Guidance, Introduction"); wordList.add ("Handbook 1 Model 2 Copybook, Model, Standard"); wordList.add ("Temawashi 1 Hand rotation 2 Hand movement, placement"); wordList.add ("Demonstration 1 demonstration 6 Example"); wordList.add ("Return 1 Reflect 0,3 Reflection"); wordList.add ("Telex 1 telex 2 International Telegraph, Telegraph (machine)"); wordList.add ("Division of labor 1 division of labor"); wordList.add ("Ten 1 Heaven 1 Heavenly Sky"); wordList.add ("Denen 1 Rural 0 Rural, Rural, Suburbs"); wordList.add ("Tenka 1 Ignition 0 Dawn"); wordList.add ("Tenka 1 Tenka 1 Tenka, All World, All Country"); wordList.add ("Tenkai 1 turn 0 steering, steering"); wordList.add ("Epilepsy 1 conversion 0 conversion, conversion"); wordList.add ("Tenkyo 1 Relocation 0,1 Relocation, Relocation"); wordList.add ("Tenkin 1 Transfer 0 Modulation, Modulation"); wordList.add ("Tenken 1 Inspection 0 點 檢, one by one 檢查, 查 點, contract"); wordList.add ("Dengen 1 Power 0 Power"); wordList.add ("Tenkou 1 Transfer 0 School, School"); wordList.add ("Tengoku 1 Heaven 1 Heaven, Tendo, Ideal Boundary"); wordList.add ("Tensai 1 Genius 0 Genius"); wordList.add ("Tensai 1 Natural disaster 0 Natural disaster, Natural disaster"); wordList.add ("Tenji 1 Exhibition 0 Exhibition, Exhibition, Exhibition"); wordList.add ("Tenjiru / Zuru 1 Turn / Turn 0 Change, Change, Relocation, Carrier"); wordList.add ("Densetsu 1 Legend 0 Densetsu"); wordList.add ("Tensen 1 dotted line 0 虛 line"); wordList.add ("Tentai 1 celestial body 0 celestial body"); wordList.add ("Dentatsu 1 Transitive 0 Denda, Dento"); wordList.add ("Tenchi 1 Tenchi 1 Tenchi, Tenwachi, World, Society, Up and Down"); wordList.add ("Tende 1 Tende 0 Simple ..., Root ..., Complete ..., Very"); wordList.add ("Tennin 1 transfer 0 work, pacing work"); wordList.add ("Tenbo 1 Perspective 0 Perspective, Perspective, Distance, Perspective"); wordList.add ("Denrai 1 Introduced 0 Denrai, Deniri, Soden, Study Abroad"); wordList.add ("Tenraku 1 Tumble 0"); wordList.add ("and 1 and conjunction Wakasei, Ichi ... Satoshi, Ritsumitsu, Magami, Ya, Miyako, Kaname, Thought"); wordList.add ("Match 1 Inquiry 5 Talk, Question"); wordList.add ("To 1 Building 1 Architectural Quantifier"); wordList.add ("To ~ 1 To ~ 1 Tokuto, the ~"); wordList.add ("Do 1 agree 0 agree, buy"); wordList.add ("Doin 1 mobilization 0 mobilization, mobilization"); wordList.add ("Dokan 1 I agree 0 I agree"); wordList.add ("Touki 1 Pottery 1 Pottery"); wordList.add ("Tougi 1 Discussion 1 Discussion"); wordList.add ("Doki 1 Motivation 0,1 Motivation, Cause"); wordList.add ("Tokyu 1st grade 0th grade"); wordList.add ("Dokyu 1 Class 0 Class, Class"); wordList.add ("Dokyo 1 living together 0 living together, living together"); wordList.add ("Truancy 1 School attendance 0 School"); wordList.add ("Togo 1 Integration 0 Merger, Concentration"); wordList.add ("Dokou 1 Trend 0 Trend"); wordList.add ("Tosan 1 Bankruptcy 0 Collapse, Destruction"); wordList.add ("Toshi 1 Investment 0 Investment"); wordList.add ("comrade 1 comrade 1 comrade"); wordList.add ("1 to 1 accompanied by 1"); wordList.add ("Dojo 1 sympathy 0 sympathy"); wordList.add ("Dojo 1 Dojo 1 Dojo, Martial Arts Hall"); wordList.add ("Tosei 1 Control 0 Control, Control"); wordList.add ("Tosen 1 Winning 0 Winning"); wordList.add ("Tosou 1 Escape 0 Escape"); wordList.add ("Lie 1 Command 0 Command"); wordList.add ("Totatsu 1 Reach 0 Reach, Reach"); wordList.add ("and one governing one governing"); wordList.add ("Docho 1 Synchronized 0 Same, Same Step, Same Song"); wordList.add ("Toutei 1 At all 0 Of course, I don't know, Ryoya Rei"); wordList.add ("How about 1 dynamic 0 dynamic, active"); wordList.add ("Finally 1 Noble / Noble 3 Noble, Noble"); wordList.add ("Finally 1 equivalent 0 equivalent"); wordList.add ("Dodo 1 Dignified 0 Dodo, Gwangmyeong Ryo"); wordList.add ("Finally 1 Respect 3 Important, Respect"); wordList.add ("Tonyu 1 input 0 throw, input"); wordList.add ("Donyu 1 Introduction 0 Advance, Introduction"); wordList.add ("Dofu 1 Enclosed 0 Attached Trust"); wordList.add ("Tobo 1 Escape 0 Escape"); wordList.add ("Tomin 1 hibernation 0 hibernation"); wordList.add ("Domei 1 Alliance 0 Alliance"); wordList.add ("Apparently 1 Apparently 1 Good and bad"); wordList.add ("How 1 upset 0 upset, upset anxiety"); wordList.add ("Doroku 1 power 1 power, driving force"); wordList.add ("Touroku 1 Registration 0 Registration, Note"); wordList.add ("Toron 1 Discussion 1 Discussion"); wordList.add ("to go away 1 go away 4 far away, far away"); wordList.add ("and Around 1 Detour 3 Bypass, Bypass"); wordList.add ("tone 1 tone 1 tone, word tone, color tone"); wordList.add ("Anyway 1 Rabbit angle 0 Crawling Nana, Always, Species, Soyuki"); wordList.add ("blame 1 blame 3 blame, blame, board question"); wordList.add ("Sometimes 1 Occasionally 0 Occasionally, even"); wordList.add ("interrupted 1 interrupted 3 interval"); wordList.add ("Toku 1 Preach 1 說mei"); wordList.add ("Togu 1 Sharpen 1 Ryo Ryo"); wordList.add ("Tokugi 1 Special Skill 1 Special Skill"); wordList.add ("Dokusai 1 Dictatorship 0 Dictatorship, Dictatorship"); wordList.add ("Tokusan 1 Special 0 Special"); wordList.add ("Dokuji 1 original 0,1 self"); wordList.add ("Dokusha 1 Reader 0 Viewer"); wordList.add ("Tokushu 1 Special Feature 0 Special Feature"); wordList.add ("Dokusen 1 Monopoly 0 Occupation"); wordList.add ("Dokuso 1 Original 0 Original"); wordList.add ("Tokuten 1 score 0 score"); wordList.add ("Tokuha 1 sect 0,1 sect"); wordList.add ("Tokuyu 1 specific 0 specific"); wordList.add ("Thorn 1 Thorn" Stab "2 Stab"); wordList.add ("Thorn 1 Achieve 0,2 Complete"); wordList.add ("On the contrary, 1-somewhere unreasonable ... rebellion ..., stop, unreasonable ... rectification"); wordList.add ("Around 1st year 0th year"); wordList.add ("Starting 1 Door lock 2 Gate, Chain gate"); wordList.add ("tojo 1 on the way 0 on the way"); wordList.add ("Binding 1 Binding 2 Binding, Binding"); wordList.add ("Dodai 1 Foundation 0 Foundation, Foundation, Homecoming"); wordList.add ("Trouble 1 Stop 2,3 疷 絕"); wordList.add ("Tokkyo 1 Patent 1 Special Permit, 專 贶"); wordList.add ("Tokken 1 privilege 0 special"); wordList.add ("Tossa ・ ni 1 咄 嗟 ・ ni 0 moment, suddenly"); wordList.add ("Totsujo 1 Suddenly 1 Suddenly cold protection"); wordList.add ("Top 1 breakthrough 0,1 breakthrough"); wordList.add ("Dote 1 Bank 0 Tsutsumi"); wordList.add ("Delivery 1 Report 3 Report"); wordList.add ("where is 1 stagnant 0,3 procrastination, lack of"); wordList.add ("Take 1 Arrange 3,4 Organize, Prepare"); wordList.add ("Stop 1 Stop 3 Stop, Resident"); wordList.add ("Say 1 Recite 2 誦, High Call, Proposal"); wordList.add ("Tonosama 1 lord 0 adult"); wordList.add ("Dohyo 1 Dohyo 0 Dohyo (Sumo Ratio Test Site)"); wordList.add ("Tobira 1 Door 0 Gate"); wordList.add ("Dobu 1 groove 1 water groove"); wordList.add ("Toho 1 walk 1 walk"); wordList.add ("Doboku 1 Civil Engineering 1 Civil Engineering"); wordList.add ("blurring 1 fascination 3 hyperactivity, dullness"); wordList.add ("poor 1 poor 3 poor, poverty"); wordList.add ("Troublesome 1 * 0 Confused 0,3 Confused"); wordList.add ("Both 1 are 0,1 homologous"); wordList.add ("Tomokasegi 1 Co-earning 0,3,5 雙 Fireworks Family"); wordList.add ("Tomobaku 1 Double-income 0,1 Ikki work"); wordList.add ("Dry 1 dry 2 dry, drought"); wordList.add ("dry cleaning 1 dry cleaning 5 dry cleaning"); wordList.add ("driver 1 driver 0,2 luck hand, screw bat, wooden head ball stick"); wordList.add ("Drive-in 1 drive-in 4,5 Rest area"); wordList.add ("Trouble 1 trouble 2 trouble, confusion, problem"); wordList.add ("transistor 1 transistor 4 semi-conductor, electric crystal"); wordList.add ("For the time being 1 For the time being 3,4 for a while"); wordList.add ("Handling 1 Handling 0 Reason"); wordList.add ("Handle 1 Handle 0,5 Wait"); wordList.add ("Torii 1 Torii 0 Paifang"); wordList.add ("Replacement 1 Replacement 0 Replacement"); wordList.add ("Work 1 Work 0,3 Concentration"); wordList.add ("Rule 1 crackdown 0 crackdown"); wordList.add ("Recruit 1 Suppress 0,4 Management"); wordList.add ("Investigating 1 Interrogating 0,5 Choosing"); wordList.add ("Take 1 Collect 0,4 Expropriation, Submission, Proposal"); wordList.add ("Intermediate 1 Intermediary 0,3 Denda"); wordList.add ("Install 1 Install 0,4 Normal"); wordList.add ("Exclude 1 Remove 0,4 Remove"); wordList.add ("Torihiki 1 Transaction 2 Trade"); wordList.add ("Surrounding 1 Surrounding 0,3 Enclosure, Dedication"); wordList.add ("Mix 1 Mix 0,4 Confounding"); wordList.add ("Recover 1 Regain 0,4 Retrieval"); wordList.add ("Get 1 to get 0,4 abduction"); wordList.add ("Drill 1 drill 1 Electricity, rebellion practice (book)"); wordList.add ("especially 1 especially adverb 0 special"); wordList.add ("Melting 1 Melting 0,3 Melting, Kokorogami Yasu"); wordList.add ("Forget once, forget 2 every time"); wordList.add ("Donkan 1 Insensitivity 0 Insensitivity"); wordList.add ("Tonda 1 Todan 0 Surprising"); wordList.add ("Tonya 1 wholesaler 0 criticism"); wordList.add ("Nakaku 1 Cabinet 1 Cabinet"); wordList.add ("or 1 to 1 person"); wordList.add ("No 1 secret 0,3 secret"); wordList.add ("Inscribed circle 0 inscribed circle"); wordList.add ("Naizo 1 internal organs 0 內 臟"); wordList.add ("Night game 1 night + er Japanese English 1 night game"); wordList.add ("Naibu 1 Internal 1 內 Part"); wordList.add ("Nairan 1 Civil War 0 內 亂"); wordList.add ("Nariku 1 inland 0 內 LAND"); wordList.add ("Nae 1 Seedling 1 Rice"); wordList.add ("Especially 1 more 0 addition"); wordList.add ("Nagashi 1 sink 1,3 water pond"); wordList.add ("Naga Naga 1 Long Long 0,3 Long Long, Nagakuchi"); wordList.add ("Middle 1 Middle 0 Middle, Middle"); wordList.add ("Nagisa 1 Nagisa 0 Mizube"); wordList.add ("Nageku 1 Lament 2 Lament"); wordList.add ("Abandon 1 Throw 3 Abandon"); wordList.add ("Nakodo 1 Matchmaker 2 Mediator"); wordList.add ("Nagoyaka 1 Peaceful 2 Dowa"); wordList.add ("Nagori 1 left 0,3 殘 餘"); wordList.add ("Nasake 1 Compassion 1,3 Humanity"); wordList.add ("Sorry 1 Pitiful 4 Pitiful"); wordList.add ("Nasakebukai 1 Compassionate 5 Jinji"); wordList.add ("Familiar 1 Clog 2 Responsibility"); wordList.add ("1 famous 3 famous"); wordList.add ("Avalanche 1 Avalanche 0 Avalanche"); wordList.add ("Natsuki 1 Nostalgia 2 Relatives"); wordList.add ("name 1 name 3 naming"); wordList.add ("Nothing 1 casual 4 involuntary, young safe"); wordList.add ("What is 1? 0 solicitation"); wordList.add ("Above all 1 Best 1"); wordList.add ("Napkin 1 napkin 1 napkin, paper width"); wordList.add ("Nafuda 1 name tag 0 name tag"); wordList.add ("Namagusai 1 fishy 4 odorous"); wordList.add ("Slimy 1 Warm 0,4 Slightly drowned, unsuccessful"); wordList.add ("Namami 1 Raw 2 Raw Food"); wordList.add ("blank 1 lead 0 lead"); wordList.add ("Nami 1 average 0 normal, general"); wordList.add ("Smooth 1 Smooth 2 Sliding, Flow"); wordList.add ("Lick 1 嘗 mel 2 嘗 arriving, 體 驗"); wordList.add ("Noisy 1 Annoying 4 Rejective, Painful"); wordList.add ("I'm sorry 1 I'm worried 3 I'm annoyed"); wordList.add ("Nayami 1 Trouble 3 Annoyance"); wordList.add ("Take in 1 / Get used to / Get used to 2"); wordList.add ("and 1 and 0 sum, and more"); wordList.add ("Narutsu 1 holds 0,3 holds, composition"); wordList.add ("Narutake 1 Narutake 0 sq."); wordList.add ("Become 1 Familiar 2 Skilled, Custom"); wordList.add ("Familiar 1 Familiar 5 Relatives, Happy Skin Lol"); wordList.add ("What 1 Difficulty 1 Difficulty, Misfortune, Blame"); wordList.add ("Something 1-something-similar, humorous, display contempt or self-humility"); wordList.add ("Nonsense 1 nonsense 1 nonsense, nonsense, meaningless"); wordList.add ("Somehow 1 Something 1 wordList.add ("Somehow 1 Somehow 1 Crawling Nana"); wordList.add ("What 1 What 1 How, 怎樣, Tadashi"); wordList.add ("Whatever 1 What 1 Of course 什麼"); wordList.add ("to 1 cargo 1 east-west, cargo, line Lee, deficit, responsibility"); wordList.add ("Similarity 1 Similarity 3 Similarity"); wordList.add ("acne 1 comedone 1 comedone"); wordList.add ("busy 1 bustling 3 enthusiastic, enthusiastic"); wordList.add ("comb 1 hatred 0,4 hatred"); wordList.add ("Nikushin 1 Relatives 0 Father and Son Brothers, Bone and Meat"); wordList.add ("Nikutai 1 Body 0,3 Body"); wordList.add ("Escape 1 Escape 0 Escape, Run, Start Escape"); wordList.add ("Nishibi 1 West Sun 0 Dawn, Sunset"); wordList.add ("Bleeding 1 Bleeding 2 Bleeding, Jun, Cave, Gush"); wordList.add ("fake 1 counterfeit 0 counterfeit east-west, blasphemy"); wordList.add ("Nichiya 1st Night 0,1 Hakutenwa Black Night"); wordList.add ("Nizukuri 1 Packing 2 Wrapping, Wrapping Lee, Wrapping Lee"); wordList.add ("Naru 1 Carrying 2 Carrying Pole, Challenge, Carrying Pole, Carrying Pole"); wordList.add ("blurring 1 dull 2 dull, unpleasant, dull, weak"); wordList.add ("Despite 1-Despite 1-3 Stunning ... Yes, 儘 kan ..., Yafukan"); wordList.add ("nuance 1 nuance 1 word feeling (subtle discrimination)"); wordList.add ("new 1 new 1 new (target)"); wordList.add ("Nyushu 1 Get 0,1 Get, Get"); wordList.add ("Nyusho 1 Winning 0 Catch, Get"); wordList.add ("Nyuyo 1 bath 0 bath"); wordList.add ("Nyo 1 urine 1 urine, urine"); wordList.add ("Ninshiki 1 recognition 0 recognition"); wordList.add ("Ninjo 1 Humanity 1 Humanity"); wordList.add ("Ninshin 1 Pregnancy 0 懷 孕"); wordList.add ("Nimmu 1 mission 1 job"); wordList.add ("Ninmei 1 Appointment 0 Appointment"); wordList.add ("Nukasu 1 Omission 0 Leakage, jumping"); wordList.add ("Get out 1 Get out 3 Tame, 蓺 脫"); wordList.add ("Nushi 1 Master 1 Master"); wordList.add ("Nusumi 1 Theft 3 偷盜, 盜竊"); wordList.add ("Numa 1 Numa 2 Iketan, Numazawa"); wordList.add ("ne 1 sound 0 voice"); wordList.add ("Neiro 1 tone 0 tone"); wordList.add ("Neuchi 1 value 0 估 價, 弹 價"); wordList.add ("Negative 1 negative 1 bottom piece, negative piece"); wordList.add ("Let me sleep 1 Let me lie down 0 Under the messenger, messenger"); wordList.add ("Screwdriver 1 Spiral screwdriver 3 Spiral screwdriver"); wordList.add ("Twisting 1 Twisting 3 Curves, Curves"); wordList.add ("Envy 1 Jealousy 2 Jealousy, Red Eye"); wordList.add ("Begging 1 Extorting 0,2 Death White Land Request"); wordList.add ("Netsuki 1 Enthusiasm 1 Enthusiasm, Passion"); wordList.add ("Net 1 hot water 0 hot water"); wordList.add ("Netsuryo 1 calorie 2 calorie"); wordList.add ("sticky 1 stickiness 3 stickiness, viscosity"); wordList.add ("sticky 1 sticky 2 sticky"); wordList.add ("Nemawashi 1 Nemawashi 2 Osamu, 做 Pre-work"); wordList.add ("Neru 1 Kneading 1 Training, Training"); wordList.add ("Nen 1 year 1 mind, concept"); wordList.add ("Nenga 1st New Year, 1st Year, My Year"); wordList.add ("Nenkan 1 Yearbook 0 Yearbook"); wordList.add ("Nengan 1 Wish 0,3 Wish, Wish"); wordList.add ("Nengo 1st Year 3rd Year"); wordList.add ("Nensho 1 Burn 0 Burn"); wordList.add ("Nencho 1st Year 0 Years University"); wordList.add ("Nenryo 1 Fuel 3 Fuel"); wordList.add ("Nenrin 1-year ring 0-year ring"); wordList.add ("Neurose 1 Neurose German 3 Deficit"); wordList.add ("No 1 Brain 1 腦"); wordList.add ("Nokou 1 Agriculture 0 Cultivation, Taneda"); wordList.add ("Nojo 1 Farm 0 Farm"); wordList.add ("1 farmland 1 farmland"); wordList.add ("Nounyu 1 Delivery 0"); wordList.add ("Missing 1 Missing 2 Mistake, Excess"); wordList.add ("Escape 1 Escape 3 Escape"); wordList.add ("Nokinami 1 house average 0 city, 每 人"); wordList.add ("desirable 1 desirable 4 delightful"); wordList.add ("Nozomi 1 Facing 0 Facing"); wordList.add ("Take 1 Takeover 3 Capture, Take"); wordList.add ("Nodoka 1 Long Quiet 1 Yu Quiet, Ning Jing"); wordList.add ("swearing 1 swearing 3 swearing"); wordList.add ("total 1 total 1,2 total, extension"); wordList.add ("Swallow 1 Swallow 0,3 Swallow"); wordList.add ("Get in 1 get in 3 get in"); wordList.add ("is 1 blade 1 sword"); wordList.add ("is 1 ~ by faction"); wordList.add ("bar 1 bar 1 liquor, rod"); wordList.add ("Haku 1 Grasp 0 Grasp"); wordList.add ("Yes 1 lung 0 lung"); wordList.add ("Yes 1 ~ Loss, Loss"); wordList.add ("Haiki 1 Discard 1 Discard"); wordList.add ("Haikyu 1 distribution 0 distribution"); wordList.add ("Baikin 1 Bacteria 0 Bacteria"); wordList.add ("Haigusha 1 spouse 3 spouse"); wordList.add ("Haikei 1 Background 0 Background"); wordList.add ("Haikei 1 Dear Sir 1 Reverence"); wordList.add ("Yes 1 Behind 1 Behind"); wordList.add ("Yes 1 Abolished 0 Exclusion"); wordList.add ("Haishaku 1 Borrow 0 Borrow"); wordList.add ("Haijo 1 Exclusion 1 Exclusion"); wordList.add ("Baisho 1 Compensation 0 Compensation"); wordList.add ("Yes 1 drain 0 drain"); wordList.add ("Haisen 1 defeat 0 defeat"); wordList.add ("haichi 1 placement 0,1 placement, placement"); wordList.add ("Yes 1 distribution 0,1 scatter"); wordList.add ("Yes, 1 distribution 0 distribution"); wordList.add ("Haiboku 1 defeat 0 defeat, failure"); wordList.add ("Bairitsu 1 Magnification 0 Magnification"); wordList.add ("Hairyo 1 Consideration 1 關懷, Reference"); wordList.add ("Yes 1 array 0 permutation"); wordList.add ("Haeru 1 Shine 2 Teru, 襯 托"); wordList.add ("Hakai 1 Destruction 0 Destruction"); wordList.add ("Progress 1 Progress 3 Progress"); wordList.add ("Fleeting 1 Transient 3 Short, Impermanent, Impermanent"); wordList.add ("Stupid 1 Stupid 1 Stupid 5 Boredom"); wordList.add ("Measure 1 Consult 2 Merchandise"); wordList.add ("Measure 1 Plan 2 Strategy, Strategy, Strategy"); wordList.add ("Haki 1 Discard 1 Discard, Exclude, Remove, Cancel"); wordList.add ("Hagu 1 Peel 1 剝 剝, 剝 剝, 叏 诏"); wordList.add ("Hakugai 1 Persecution 0 Persecution, Abuse"); wordList.add ("Hakujaku 1 Weak 0 Weak, Weak, Unsatisfied"); wordList.add ("Hakujo 1 White Letter 1 Whitening, Invitation"); wordList.add ("Bakuzen 1 vague 0 vagueness"); wordList.add ("Bakudan 1 Bomb 0 Explosion, Blast"); wordList.add ("Explosion 1 Explosion 1 Explosion, Explosion"); wordList.add ("Bakuro 1 Exposure 1 Exposure, Exposure, Defeat"); wordList.add ("Feeling 1 Encouragement 3 Gekijou, Kotobuki, Tsutomu"); wordList.add ("Burning 1 Encouragement 2 Effort, hard work, hard work"); wordList.add ("Peeling 1 Peeling 2 Peeling, fading"); wordList.add ("Burning 1 Disguise 2 Disguise, 喬裝"); wordList.add ("haken 1 dispatch 0 dispatch, dispatch"); wordList.add ("Haji 1 Shame 2 Shame, Shame"); wordList.add ("Flick 1 Play 2 彈, Repellent"); wordList.add ("Pajamas 1 pajamas 1 Sleeping clothes"); wordList.add ("Hajira 1 Shame 3 Harm"); wordList.add ("Starting 1 Shameful 2 Shyness, Defeated Fame"); wordList.add ("Hashi I 1 Bridge 3 Bridge, Bridge"); wordList.add ("bath 1 bath 1 bathroom"); wordList.add ("Bounce 1 Bounce 0 Jump, Rebound, Recoil, Takashi"); wordList.add ("has 1 damaged 0 damaged, damaged"); wordList.add ("hit 1 hit 2 beats, sword"); wordList.add ("Hadashi 1 Barefoot 0 Red foot, Red foot, Light work"); wordList.add ("Hatasu 1 Fulfill 2 Completed, Realization"); wordList.add ("Honey 1 Honey 0 Honey"); wordList.add ("Pachinko 1 pachinko Japanese 0 Kashiwa Seiho, Koyaju"); wordList.add ("Batsu 1 Punishment 1 Punishment, Punishment"); wordList.add ("Hatsuiku 1 Growth 0 Development, Growth"); wordList.add ("Hatsuga 1 germination 0 germination, germination"); wordList.add ("Hatsugen 1 Remark 0 Utterance"); wordList.add ("badge 1 badge 0,1 emblem"); wordList.add ("Hassei 1 Occurrence 0 Occurrence, Appearance"); wordList.add ("battery 1 battery 0,1 storage battery"); wordList.add ("Bat 1 bat 1 Ball"); wordList.add ("Hatsubyo 1 onset 0 profitable disease"); wordList.add ("Hatsumimi 1 first ear 0 first hearing"); wordList.add ("Hate 1 result 2 After all, the edge"); wordList.add ("Hateru 1 End 2 Complete, Complete, Complete"); wordList.add ("Bateru 1 Bateru 2 Extremely exhausted"); wordList.add ("Patrol car 1 patrol car 2,3 police car"); wordList.add ("Hanahada 1 Jinda 0 Very"); wordList.add ("Hanabana 1 brilliant 5 brilliant"); wordList.add ("Hanabira 1 petal 0,3,4 corolla"); wordList.add ("Hanaka 1 Gorgeous 2 Gorgeous, 赫 赫"); wordList.add ("Habamu 1 Block 2 Block, Block"); wordList.add ("Hama 1 Hama 2 Kaihama, Sanada"); wordList.add ("Hamabe 1 Beach 3 Kaihama"); wordList.add ("Fit 1 fit 0 anastomosis, entry"); wordList.add ("Hayasu 1 Grow 2 Remaining length, messenger ... Growth"); wordList.add ("Stop 1 Fast 3 Accelerate"); wordList.add ("Haradatsu 1 Annoyed 3 Ikki"); wordList.add ("Harappa 1 Harappa 1 Open space"); wordList.add ("Harara 1 Harara 1 Drop, Emergency Heart"); wordList.add ("Sprinkle 1 Sprinkle 3 Sprinkle, Sprinkle"); wordList.add ("sticker 1 sticker 0 sticker"); wordList.add ("Haruka 1 Haruka 1 Haruka"); wordList.add ("Haretsu 1 burst 0 burst"); wordList.add ("swelling 1 swelling 0 swelling"); wordList.add ("Han 1 size 1 seal, Kao"); wordList.add ("Han 1st Edition 1st Edition Next, Woodcut"); wordList.add ("Han 1 Group 1 Collection, Group"); wordList.add ("Hanei 1 Prosperity 0 Prosperity, Prosperity"); wordList.add ("Hanga 1 print 0 print, wood engraving"); wordList.add ("Hanger 1 hanger 1 Clothes rack"); wordList.add ("Hankan 1 Antipathy 0 Antipathy"); wordList.add ("Hankyo 1 Echo 0 Echo, Reverberation"); wordList.add ("Punk 1 puncture / punk 0/1 Bomb / Ahi"); wordList.add ("Hangeki 1 Counterattack 0 Counterattack"); wordList.add ("Hanketsu 1 Judgment 0 Judgment"); wordList.add ("Hansha 1 reflection 0 reflection"); wordList.add ("Hanjo 1 Prosperity 1 Prosperity Masamori"); wordList.add ("Hanshoku 1 Breeding 0 Breeding"); wordList.add ("Hantei 1 Judgment 0 Judgment"); wordList.add ("Bannin 10,000 people 0,3 Manjin, Shinjin"); wordList.add ("Bannen 1 Late Year 0 New Year, End of Year"); wordList.add ("Hanno 1 reaction 0 reaction"); wordList.add ("Banno 1 Universal 0 Manno, Almighty"); wordList.add ("Hampa 1 odd 0 zero head, incomplete"); wordList.add ("Hanpatsu 1 Repulsion 0 Exclusion, Non-Reception"); wordList.add ("Hanran 1 Rebellion 0 Rebellion, Rebellion"); wordList.add ("Hanran 1 Flood 0 Flood"); wordList.add ("Hi 1 monument 0 stone monument"); wordList.add ("Hi 1 Damaged, Inspired (Kanji for Act Expression)"); wordList.add ("Bi 1 Beauty 1 Beautiful, Beautiful"); wordList.add ("By extension, 1 and then 1,3"); wordList.add ("Hikae Shitsu 1 Waiting Room 3 Condition Room, Rest Room"); wordList.add ("Hide 1 Refrain 2,3 Wait, Restraint"); wordList.add ("Hikage 1 * 2 Shade 0 Yin Ryo region"); wordList.add ("Hikan 1 Pessimism 0 Pessimism"); wordList.add ("Pull up 1 Pull up 4 Suspension, Lift, Return"); wordList.add ("Hikiru 1 led by 3 territories, territory"); wordList.add ("Cause 1 Cause 4 Raise, Raise"); wordList.add ("Reduce 1 Lower 4 Decrease, after use"); wordList.add ("Drag 1 Drag 0 拖, Stronger Hard 拖"); wordList.add ("Take 1 Take 3 Exit, Take"); wordList.add ("Hiketsu 1 reject 0 reject"); wordList.add ("flying 1 delinquency 0 fraudulent activity"); wordList.add ("Higoro 1 day 0 normal"); wordList.add ("Eaves 1 Long 3 Long"); wordList.add ("Hisan 1 Miserable 0 Grief"); wordList.add ("Business 1 business 1 Cheeky, Commercial, Business"); wordList.add ("10 specific gravity 0 proportional"); wordList.add ("Bijutsu 1 Art 1 Art"); wordList.add ("Hisho 1 Secretary 1,2 Secretary"); wordList.add ("Bisho 1 smile 0 smile"); wordList.add ("distorted 1 distorted 0,2 makeover"); wordList.add ("secretly 1 secret or 1,2 in the dark"); wordList.add ("1 soak 0,2 soak"); wordList.add ("Intently 1 kan 0 kei"); wordList.add ("Hidari Kiki 1 Left-Handed 0 Left-Handed"); wordList.add ("Scratch 1 Scratch 3 搔抓"); wordList.add ("Hiss 1 compulsory 0 compulsory"); wordList.add ("Soaked 1 Soaked 3"); wordList.add ("Hitsuzen 1 inevitable 0 inevitable"); wordList.add ("Hikiki 1 Rival 0 Ratio"); wordList.add ("Hitoiki 1 Breath 2 Bite Ki"); wordList.add ("Charmander 1 Charmander 0 Charmander"); wordList.add ("Human 1 person 0 person"); wordList.add ("Hitoke 1 Popular 0 Human Breath"); wordList.add ("Hidokoro 1 Ichiko 2 Mae Minahiko"); wordList.add ("1 hostage 0 hostage"); wordList.add ("One line 1 One line 2 One heart unique"); wordList.add ("1st person 0 eyes"); wordList.add ("Terrible 1 day 0 schedule"); wordList.add ("Hina 1 Hina 1 Hinatori"); wordList.add ("Hinata 1 Hinata 0 Mukaiyo"); wordList.add ("Hinamatsuri 1 Hinamatsuri 3 Women's Festival, Momoka Festival"); wordList.add ("Hinan 1 blame 1 blame"); wordList.add ("Hinan 1 Evacuation 1 Evacuation"); wordList.add ("Hinomaru Hinomaru 0 Sun Shape, Japanese Flag"); wordList.add ("Hibana 1 Spark 1 Mars, Spark"); wordList.add ("Crack 1 皹" Kabeno ~ "2 Frozen"); wordList.add ("Himei 1 Scream 0 Scream, Scream"); wordList.add ("Cooling 1 Cooling 3 Cooling, ridicule"); wordList.add ("Hiyake 1 tan 0 tanning, tanning"); wordList.add ("Hyo 1 vote 0 Voting time use paper tension"); wordList.add ("Hyogo 1 slogan 0 slogan"); wordList.add ("Byosha 1 Depiction 0 Draw"); wordList.add ("Maybe 1 Maybe 0,1 Unscrupulous, Suddenly Manichi ..."); wordList.add ("Bira 1 Bira 0 Hiroshi, Den"); wordList.add ("Open 1 flat 0,3 non-concave, non-convex, flat"); wordList.add ("Biri 1 Biri 1 lowest (person)"); wordList.add ("Hiritsu 1 ratio 0 ratio"); wordList.add ("Hiryo 1 Fertilizer 1 Fertilizer"); wordList.add ("Biryo 1 Trace 0 Minimal amount"); wordList.add ("Hirumeshi 1 Lunch 0 Lunch"); wordList.add ("Hirei 1 Proportional 0 Proportional"); wordList.add ("Hiro 1 Fatigue 0 Fatigue"); wordList.add ("Hiro 1 * 0 Show 1 Show, Promulgation, Table"); wordList.add ("Hiromaru 1 Spread 0,3 變 寬 寬 hiro"); wordList.add ("Binkan 1 Sensitive 0 Sensitive"); wordList.add ("Hinketsu 1 * 0 Anemia 0 Anemia"); wordList.add ("Hinkon 1 Poverty 0 Poverty, Poverty, Poverty"); wordList.add ("Hinshitsu 1 Quality 0 Good Value"); wordList.add ("Hinjaku 1 Poor 0 Poor and Weak"); wordList.add ("Hinshu 1 Variety 0 Item Kind"); wordList.add ("Hint 1 hint 1 啟 發, presentation"); wordList.add ("Frequently 1 Frequent 0 Always, Timely"); wordList.add ("Binbo 1 Poverty 1 Poverty, Poverty, Difficult to live"); wordList.add ("Fight 1 fight 0,1" wordList.add ("file 1 file 1 document"); wordList.add ("Fan 1 fan 1 Stray, lover, wind fan, replacement fan"); wordList.add ("Fui 1 Suddenly 0 Suddenly, No Idea"); wordList.add ("filter 1 filter 0,1 filter mirror, hyperfilter (beak) (vessel)"); wordList.add ("Fu 1 Seal 1 Seal, Seal"); wordList.add ("Fusa 1 blockade 0 blockade, frozen"); wordList.add ("Fusha 1 Windmill 0,1 Windmill"); wordList.add ("Fushu 1 Customs 0 Customs"); wordList.add ("Fuzoku 1 Customs 1 Daily life"); wordList.add ("boots 1 boots 1 shoes"); wordList.add ("Fudo 1 Climate 1 Land-like state"); wordList.add ("Boom 1 boom 1 Trend, Trend"); wordList.add ("Ferry 1 ferry boat 1 wheel, simple ferry boat"); wordList.add ("form 1 form 1 format, form, 樣子"); wordList.add ("Buka 1 subordinate 1 subordinate, subdominant"); wordList.add ("Fukatsu 1 Essential 2 Required, Impossible"); wordList.add ("Bukabuka 1 Bukabuka 0,1 Excessive 樣子"); wordList.add ("Fukameru 1 Deepen 3 Ideas"); wordList.add ("Fukitsu 1 Ominous 0 Ominous Elephant"); wordList.add ("Fukyou 1 Depression 0 Scenery Unfavorable"); wordList.add ("Fabric 1 Cloth 2 Rubbing Cloth"); wordList.add ("Fuku 1 Fuku 2 Good luck, Fuku Ki"); wordList.add ("Fukugo 1 compound 0 compound, composition"); wordList.add ("Fukushi 1 Welfare 0.2 Compound Interest"); wordList.add ("Fukumen 1 Mask 0 Shield, Anonymous"); wordList.add ("swelling 1 swelling 0 swelling, swelling"); wordList.add ("Fukeiki 1 Business Cycle 2 Unseen Ki"); wordList.add ("Indulge 1 Aging 2 Journey to the Year"); wordList.add ("Indulge 1 Indulge 2 Lost, Enthusiastic"); wordList.add ("Fugo 1 Millionaire 0 Millionaire"); wordList.add ("Fukoku 1 Proclamation 0 Proclamation"); wordList.add ("Buzzer 1 buzzer 1 bee ringer"); wordList.add ("blocking 1 debt 0 debt"); wordList.add ("Funny 1 Absence 0 Absence (Home)"); wordList.add ("suitable 1 suitable 4 fit"); wordList.add ("Fujun 1 irregular 0 abnormal"); wordList.add ("Fusho 1 Injured 0 Injured"); wordList.add ("Bujoku 1 Insult 0 Insult"); wordList.add ("Fushin 1 slump 0 unpleasant"); wordList.add ("Fushin 1 Suspicious 0 Suspicion"); wordList.add ("Buso 1 Armed 0 Armed"); wordList.add ("Fuda 1 bill 0 gate ticket"); wordList.add ("Fucho 1 upset 0 unfavorable profit"); wordList.add ("Fukatsu 1 Revival 0 Recovery"); wordList.add ("Butsugi 1 Controversy 1 Manly Method"); wordList.add ("Fukkyu 1 Restoration 0 恢 Recovery 狀"); wordList.add ("Fukkou 1 Reconstruction 0 Reconstruction"); wordList.add ("Bus 1 Supplies 1 Supplies"); wordList.add ("Butsuzo 1 Buddha statue 0 Buddha statue"); wordList.add ("But 1 object 0 object"); wordList.add ("Futto 1 boiling 0 boiling"); wordList.add ("Futo 1 Unjust 0 Unjust"); wordList.add ("Fudosan 1 Real Estate 2 Fudo"); wordList.add ("Bunan 1 safe 0,1 peace safe"); wordList.add ("Funin 1 assignment 0 superior"); wordList.add ("Fuhai 1 Corruption 0 Corruption"); wordList.add ("Fuhyo 1 unpopular 0 criticism unfavorable"); wordList.add ("Fufuku 1 Dissatisfaction 0 Dissatisfaction"); wordList.add ("Fuhen 1 Universal 0 Normal, Symbiotic, Popular"); wordList.add ("Based on 1 A few steps, 踩"); wordList.add ("Fumikomu 1 Step on 3"); wordList.add ("Fumei 1 Unknown 0 Dirty, Unknown"); wordList.add ("Bumon 1 department 1 department"); wordList.add ("Fuyo 1 Dependent 0 Dependent"); wordList.add ("Fluffy 1 Fluffy 1 蹓 蹓, Akira Akira Yuu, Stray Glue, Grace 豫 豫"); wordList.add ("Dangling 1 Dangling 1 Lutetium, Lutetium, Lutetium"); wordList.add ("pretend 1 swing 0,2 posture, humor, volatility"); wordList.add ("Looking back 1 Looking back 3 times, retrospective"); wordList.add ("Furidashi 1 Draw 0 Draw"); wordList.add ("Four 1 Bad 0 (Quality) Bad, (Quality) Pot"); wordList.add ("Flying 1 Buoyancy 1 Buoyancy"); wordList.add ("Buryoku 1 Armed Force 1 Armed Force"); wordList.add ("blue 1 blue 2 blue, melancholy"); wordList.add ("Shake 1 Shake 0 Shake, Shake"); wordList.add ("Burei 1 Rude 1 Ryosei"); wordList.add ("Furoku 1 Appendix 0 Appendix"); wordList.add ("front 1 front 0 front, service desk"); wordList.add ("Fungai 1 resentment 0 resentment, resentment"); wordList.add ("Bunkazai 1 Cultural Property 3 Cultural Heritage, Cultural Remains"); wordList.add ("Bungyo 1 division of labor 0 division of labor"); wordList.add ("Bungo 1 literary 0 written language"); wordList.add ("Bunsan 1 variance 0 variance, spread"); wordList.add ("Bunshi 1 molecule 1 molecule"); wordList.add ("Funshi 1 Lost 0 Lost, Lost, Lost"); wordList.add ("Funshutsu 1 squirt 0 squirt, squirt"); wordList.add ("Bunsho 1 document 1 document, official text, text"); wordList.add ("Funso 1 Conflict 0 Conflict, End"); wordList.add ("Abundant 1 Plenty 0,1 Many, large amount"); wordList.add ("Buntan 1 share 0 minutes"); wordList.add ("Funto 1 Struggle 0 Struggle, Struggle"); wordList.add ("Bumpai 1 distribution 0 distribution"); wordList.add ("Bumbo 1 denominator 1 denominator"); wordList.add ("Funmatsu 1 powder 0 powder"); wordList.add ("Bunri 1 Separation 0 Separation"); wordList.add ("Bunretsu 1 split 0 split, dehiscence"); wordList.add ("pair 1 pair 1 one"); wordList.add ("Go 1 Weapon 1 Weapon, Weapon"); wordList.add ("Go 1 parallel 0 parallel, translation"); wordList.add ("Hey Ko 1 Closed 0 Mute Mute, Difficult, Undying"); wordList.add ("Heisa 1 Closed 0 Closed, Closed"); wordList.add ("Heishi 1 Soldier 1 Soldier, Warrior"); wordList.add ("Heijo 1 Normal 0 Normal, Normal"); wordList.add ("Hey 1 square 0 square"); wordList.add ("Heretsu 1 Parallel 0 Parallel Exclusion, Parallel"); wordList.add ("base 1 base 0,1 jar, basic"); wordList.add ("Heki-eki 1 Frustration 0 Awe, Involution"); wordList.add ("Pekopeko 1 Pekopeko 0/1 Hunger, Sky / Blackhead, Flirtatious"); wordList.add ("best 1 best / vest 1 best / back heart"); wordList.add ("Bestseller 1 best-seller 4 Noborusho"); wordList.add ("Heading 1 Separation 3 Phase Separation, Separation"); wordList.add ("Bekkyo 1 * 0 Separated 0 minutes"); wordList.add ("edge 1 edge 2 邊 緣"); wordList.add ("Humble 1 Humility 0,4 Humility, Humility"); wordList.add ("Hell 1 Pass 1 Pass, Pass"); wordList.add ("Benkai 1 Excuse 0 辨 辦 辦 mei"); wordList.add ("Henkaku 1 Transformation 0 Reform, Leather"); wordList.add ("Henkan 1 Return 0 Return"); wordList.add ("Bengi 1 Convenience 1 Convenience, Minoru"); wordList.add ("Henkyaku 1 * 0 Return 0 Return, Return"); wordList.add ("Henken 1 Prejudice 0 Prejudice, Paranoia"); wordList.add ("Bengo 1 Defense 1 Confidence"); wordList.add ("Hensai 1 repayment 0 repayment, repayment"); wordList.add ("Bensho 1 Compensation 0 Compensation"); wordList.add ("Hensen 1 Transition 0 Transition"); wordList.add ("Hentai 1 reply 0,3 answer"); wordList.add ("Hendou 1 Fluctuation 0 Movement, Modification"); wordList.add ("Benron 1 Oral 0 Houron"); wordList.add ("ho 1 ear 1 穗, tip"); wordList.add ("Hoiku 1 Childcare 0,1 Childcare"); wordList.add ("Boycott 1 boycott 3 Union Conflict"); wordList.add ("Point 1 point 0 (heavy) 點"); wordList.add ("Hoan 1 Bill 0 Draft Law, Bill"); wordList.add ("Bouei 1 Defense 0 Defense, Guard"); wordList.add ("Boka 1 Fire Prevention 0 Fire Prevention"); wordList.add ("Hokai 1 Collapse 0 Collapse"); wordList.add ("Bugai 1 Interference 0 Interference, Prevention"); wordList.add ("Hougaku 1 Law 1 Law, Law"); wordList.add ("Broom 1 Abandoned 1 Abandoned"); wordList.add ("Hoken 1 feudal 0 feudal"); wordList.add ("Hosaku 1 policy 0 policy"); wordList.add ("Hosaku 1 Good harvest 0"); wordList.add ("Hoshi 1 Service 0,1 Service, Efficacy"); wordList.add ("Hoshiki 1 method 0 method, handbook"); wordList.add ("Hosha 1 Radiation 0 Radiation"); wordList.add ("Hoshano 1 Radioactivity 3 Radioactivity"); wordList.add ("Hoshu 1 Reward 0 Reward, Construction Fund"); wordList.add ("Hoshutsu 1 release 0 release, release, theory"); wordList.add ("Hojiru ‧ Zuru 1 Report ‧ Report 0,3 Report, Report"); wordList.add ("Bouseki 1 Spinning 0 Spinning"); wordList.add ("Bozen 1 stunned, stunned 0 stunned, stunned"); wordList.add ("Hoch 1 neglected 0,1 neglected, neglected"); wordList.add ("Bouchi 1 Expansion 0 Expansion, Expansion, Increase"); wordList.add ("Hotei 1 Courtroom 0 Courtroom"); wordList.add ("How to 1 Report 0 Guidance"); wordList.add ("Bouto 1 Beginning 0 Beginning, Opening"); wordList.add ("Boudou 1 Riot 0 Riot"); wordList.add ("Prize 1 Reward 0 Prize, Prize"); wordList.add ("Bofu 1 Storm 3 Storm"); wordList.add ("Homuru 1 Burial 3 Burial, Disrespectful"); wordList.add ("Throw in 1 Throw in 4 Throw, Throw"); wordList.add ("Holding out 1 Throw out 4 扔 Departure, 踟 Open, Exclusion"); wordList.add ("Bourry 1 Violence 1 Armed Forces, Violence"); wordList.add ("Howa 1 Saturation 0 Saturation"); wordList.add ("Hose 1 hoos Dutch 1 Soft Tube"); wordList.add ("pose 1 pose / pause 1 posture, temporary suspension"); wordList.add ("Hall 1 hall / hole 1 Ohiro, assembly hall / hole, hole"); wordList.add ("Hoon 1 Insulation 0 Insulation"); wordList.add ("Other 1 capture 0 capture"); wordList.add ("Other 1 storage 0 storage"); wordList.add ("Hokyu 1 Replenishment 0 Replenishment, Supply"); wordList.add ("Hokyo 1 Reinforcement 0 Reinforcement, Reinforcement, Strengthening"); wordList.add ("Bokin 1 Donation 0 Donation"); wordList.add ("My 1 Pastor 0,1 Pastor"); wordList.add ("Hogei 1 Whaling 0 Whaling"); wordList.add ("Blur 1 Fallen, Stunned / Blurred 2 Halo / Vagueness"); wordList.add ("Hoken 1 Insurance 0 Insurance"); wordList.add ("Hogo 1 Protection 1 Protection"); wordList.add ("Boko 1 Mother School 1 Mother School"); wordList.add ("Bokoku 1 Homeland 1 Homeland"); wordList.add ("Dust 1 Proud 2 Proud, Proud, Proud"); wordList.add ("Fracture 1 Break 4 Break Line, Slightly Open"); wordList.add ("Hoshino ~ 1 Dried ~ 0 Dried (East and West)"); wordList.add ("Position 1 position 2 Position, (defensive) position"); wordList.add ("Hoshino 1 Dried fish 2,3 Dried east and west"); wordList.add ("Hoshu 1 Maintenance 1 Maintenance"); wordList.add ("Hoju 1 Replenishment 0 Replenishment"); wordList.add ("Hojo 1 Auxiliary 1 Auxiliary"); wordList.add ("Hosho 1 Guarantee 0 Guarantee"); wordList.add ("Hosho 1 Compensation 0 Compensation"); wordList.add ("Hosou 1 Pavement 0 Houji"); wordList.add ("Hosoku 1 Supplement 0 Replenishment"); wordList.add ("Bochi 1 Cemetery 1 Cemetery"); wordList.add ("Hossa 1 seizure 0 seizure"); wordList.add ("Bosshu 1 confiscation 0 confiscation"); wordList.add ("Slowly 1 started 0 established"); wordList.add ("Hot 1 Hot 0 輕 輕 sighing 樣子, absent-minded"); wordList.add ("pot 1 pot 1 (warm) pot, hot water bottle"); wordList.add ("Hoppeta 1 Cheek Peta 3 Gandan"); wordList.add ("Bumpy 1 Bumpy 1 Spotted, proud"); wordList.add ("Botsuraku 1 Fall 0 Fall"); wordList.add ("Unravel 1 Unsolve 3 Unravel"); wordList.add ("Squeeze 1 Apply 3 Enforcement"); wordList.add ("Bank 1 side 0,3 旁 邊, side"); wordList.add ("Boyaku 1 Boyaku 2 嘟嚷"); wordList.add ("Blur 1 Blurred 3 Vagueness"); wordList.add ("Hoyo 1 Recuperation 0 Recuperation"); wordList.add ("Horyo 1 POW 1 POW"); wordList.add ("Bolt 1 volt / bolt 0,1 / 0 Fushito / Screw plug"); wordList.add ("Hello 1 perish 0,3 perish"); wordList.add ("Horobu 1 * 0 Destroy 0,2 Destroy, Destroy"); wordList.add ("Horobosu 1 Destroy 0,3 Emissary ... Destroy"); wordList.add ("Honkaku 1 Authentic 0 Official"); wordList.add ("Honkan 1 Main Building 0 Original Building"); wordList.add ("Honki 1 Serious 0 Sincerity"); wordList.add ("Hongoku 1 Home Country 1 Home Country"); wordList.add ("real 1 essence 0 essence"); wordList.add ("Hontai 1 Body 1 Truth"); wordList.add ("Honestly 1 Real 0 True Heart Story"); wordList.add ("real 1 instinct 1,3 instinct"); wordList.add ("Honba 1 Authentic 0 Authentic Jinchi"); wordList.add ("Pump 1 pomp Dutch 1 泵, 幫 URA, water extraction horses"); wordList.add ("Honbun 1 Body 1 Body"); wordList.add ("honmyo 1 real name 1 true name"); wordList.add ("mark 1 mark 1 notation, mark"); wordList.add ("My ~ 1 my self ..."); wordList.add ("Microphone 1 microphone 4 Katsufu"); wordList.add ("Maizou 1 Buried 0 Buried"); wordList.add ("Mau 1 Dance 0 Feast"); wordList.add ("Maue 1 Directly above 3 Front surface"); wordList.add ("Maeuri 1 Advance 0 Deposit"); wordList.add ("Preface 1 Preface 0 Preamble"); wordList.add ("Before 1 In advance 3 Deposit"); wordList.add ("Leave 1 Leave 2"); wordList.add ("Make 1 lose 0 defeat"); wordList.add ("Supply 1 Cover 3 Maintain, Supply"); wordList.add ("Misleading 1 Misleading 5 Easy Chaotic"); wordList.add ("Mixed 1 Confused 3 chaos"); wordList.add ("Maku 1 film 2 thin film"); wordList.add ("Magokoro 1 Sincerity 2 Sincerity"); wordList.add ("Magical 1 Mistake 0 Surprise, Unknown Measures"); wordList.add ("Makoto 1 Makoto 0 Makoto"); wordList.add ("Truly 1 Really 0"); wordList.add ("Exactly 1 Correct 2 Accurate"); wordList.add ("1 win, 2 wins, strong"); wordList.add ("Better 1 ~ Increase"); wordList.add ("Mixed 1 mixed 3 crowded, Sakuwa"); wordList.add ("was 1 directly below 3 just below"); wordList.add ("Let's have one situation and one situation"); wordList.add ("Mixing 1 Crossing 3 Crossing, Crossing, Dating"); wordList.add ("Masui 1 Anesthesia 0 Mao"); wordList.add ("Mass media 1 mass communication 0 Daishinden, Daishinden"); wordList.add ("Also one fork, two forks, 岔"); wordList.add ("Straddle 1 straddle" on horse "3 straddle"); wordList.add ("Machiawase 1 Meeting 0 Equivalent Press Conference"); wordList.add ("Missing 1 Long-awaited 5 Suddenly hopeful"); wordList.add ("Machi nozomi 1 long-awaited 0 ambition, expectation"); wordList.add ("Machimachi 1 Ward 0,2 Shape Color Color"); wordList.add ("Matsu 1 end 0, 1 end, bottom"); wordList.add ("Maki 1 end 1 end"); wordList.add ("Massage 1 massage 3 Massage"); wordList.add ("Mapputatsu 1 Two 3 Half"); wordList.add ("Mato 1 target 0 target, purpose"); wordList.add ("Cohesion 1 Group 0 Concentration, Unity, Consistency"); wordList.add ("Summary 1 Summary 0 Induction, Collection"); wordList.add ("Escape 1 Exempt 4 Exempt"); wordList.add ("Maneki 1 Invitation 3 Invitation"); wordList.add ("Blinking 1 Blinking 3 Maze, Rushing"); wordList.add ("Mahi 1 Paralysis 1 Paralysis"); wordList.add ("covered 1 ~ covered 沾 滿"); wordList.add ("eyebrows 1 eyebrows 1 eyebrows"); wordList.add ("Mari 1 Temari 2 Temari"); wordList.add ("whole 1 whole 0 complete"); wordList.add ("Clearly 1 Roundly 5 at all"); wordList.add ("Marumaru 1 Marumaru Verb / Adverb 0/3 蜷 Song, 變 變 圓 / Complete, 胖嘟 嘟"); wordList.add ("Round 1 Round 0 Flirt"); wordList.add ("Mangetsu 1 Full Moon 1 Full Moon"); wordList.add ("Manjo 1 Full 0 All"); wordList.add ("Mansei 1 * 0 Chronic 0 Chronic"); wordList.add ("Manmae 1 right in front 3 right in front"); wordList.add ("Round 1 Round, Round 0,4 圓 圓 -like"); wordList.add ("Mi 1 ~ Taste"); wordList.add ("Miai 1 matchmaking 0 matchmaking"); wordList.add ("Match 1 Mate 0,4 Mutual view"); wordList.add ("Miotosu 1 overlook 0,3 missed"); wordList.add ("Mikai 1 unopened 0 unopened"); wordList.add ("Mikaku 1 Taste 0 Taste"); wordList.add ("I see 1 I see 0,3 I overlook"); wordList.add ("Miki 1 trunk 1 trunk"); wordList.add ("Miguru 1 Unsightly 4 Difficulty"); wordList.add ("Mikomi 1 Probability 0 Hope, Deposit"); wordList.add ("Mikon 1 unmarried 0 unmarried"); wordList.add ("Mijuku 1 immature 0,1 immature"); wordList.add ("Mijin 1 Fine Dust 0 Fine"); wordList.add ("Miss 1 Miss 1 Small 姐"); wordList.add ("Mizuki 1 Moisture 0 Moisture"); wordList.add ("misprint 1 misprint 4 typographical error, printing error"); wordList.add ("Shabby 1 Like a constriction 0,5 Destruction"); wordList.add ("Mrs. 1 Mrs. 1 Taita, Mrs."); wordList.add ("Show off 1 Show off 5 炫燿"); wordList.add ("Show 1 Show 3,4 Sightseeing"); wordList.add ("groove 1 groove 0 water groove"); wordList.add ("Mitasu 1 Satisfy 2 裝 滿"); wordList.add ("Midare 1 Disturbance 3 Strikes"); wordList.add ("Missing 1 Disturbed 3 雜 亂"); wordList.add ("Michi 1 Unknown 1 Unknown"); wordList.add ("Mijika 1 Familiar 0 Familiar 0 Fillet, Familiar"); wordList.add ("Michibata 1 * 0 Roadside 0 Roadside, Roadside"); wordList.add ("Michibiku 1 Lead 3 Guide"); wordList.add ("Misshu 1 Dense 0 Dense"); wordList.add ("Misetsu 1 Close 0 Close"); wordList.add ("Mitsudo 1 Density 1 Density"); wordList.add ("I'm going 1 estimate 0 total"); wordList.add ("Looking 1 undecided 0 undecided"); wordList.add ("Mitooshi 1 Outlook 0 Prophecy"); wordList.add ("Deem 1 to consider 0,2 Approval"); wordList.add ("Minamoto 1 source 0 water source, origin"); wordList.add ("Imitation 1 Apprentice 0 Apprentice"); wordList.add ("Minari 1 Body Shape 1 Strike"); wordList.add ("Mine 1 peak 0,2 Yamamine"); wordList.add ("Minoue 1 Personal 4 circumstances"); wordList.add ("Minogasu 1 miss 0 missed"); wordList.add ("Minomaru 1 Personal 0 Personal"); wordList.add ("Mihakarau 1 Estimate 0 Estimate, Consideration"); wordList.add ("Miharashi 1 View 0 View"); wordList.add ("Miburi 1 Gesture 0,1 Appearance"); wordList.add ("Myaku 1 pulse 2 blood vessel, pulse, hope"); wordList.add ("Music 1 music 1 Music"); wordList.add ("Miren 1 unskilled 1 unreliable"); wordList.add ("Miwatasu 1 overlook 0,3 view"); wordList.add ("Minshuku 1 Minshuku 0 Minshuku, Family Travel Shop"); wordList.add ("Minzoku 1 Folklore 1 Folklore"); wordList.add ("Minzoku 1 ethnic group 1 ethnic group"); wordList.add ("Muimi 1 meaningless 2 meaningless"); wordList.add ("Mood 1 mood 1 Fuki, Tendency"); wordList.add ("Mukuchi 1 Silent 1 Unloved fairy tale"); wordList.add ("Muko 1 Son 1 Son"); wordList.add ("Over 1 invalid 0 ineffective"); wordList.add ("Mugon 1 Silent 0 Silent, Silent Story"); wordList.add ("Mujaki 1 Innocent 1 Thought Jun, Childish"); wordList.add ("Mushiru 1 Masu 0 拔, 撕, 揪"); wordList.add ("Musubi 1 Yui 0 Tie, Unity, Rice Ball"); wordList.add ("Conclusion 1 Tie 0 聯繫, Join, Engagement"); wordList.add ("Conclusion 1 Connect 4 Affiliated, Formed Ichika"); wordList.add ("Conclude 1 Connect 5 Join"); wordList.add ("Musen 1 Radio 0 Radio, Radio"); wordList.add ("Wasteful 1 Wasteful 3 Wasteful"); wordList.add ("Unauthorized 1 Unauthorized 1 Self, Self"); wordList.add ("whip 1 ignorance 1 ignorance, ignorance"); wordList.add ("Mucha 1 Unreasonable 1 Shiháo Unreasonable, Hu 亂, 亂 來"); wordList.add ("Much messed up 1 Unreasonable 0 Unreasonable, 亂 78 糟, Excess"); wordList.add ("empty 1 empty, empty 3 empty 虛, absurd"); wordList.add ("Munen 1 Remorse 1 No check, no regret"); wordList.add ("Muno 1 Incompetence 0 Incompetence, Incompetence"); wordList.add ("Unnecessarily 1 Darkness 1 Hua, Excessive"); wordList.add ("Muyo 1 useless 0,1 use 處, 沒 處, 沒 need"); wordList.add ("Mura 1 spot 0 unevenness, non-conformity"); wordList.add ("Muragaru 1 Flock 3 Crowd"); wordList.add ("Of course 1 of course 0 useless, absurd"); wordList.add ("Mei-san 1 specialty 0 name"); wordList.add ("Meisho 1 Name 0 Meisho"); wordList.add ("Mechu 1 hit 0 hit"); wordList.add ("Meihaku 1 Obvious 0 Obvious"); wordList.add ("Meibo 1 list 0 masterpiece"); wordList.add ("Meiyo 1 Honor 1 Name"); wordList.add ("Meiryo 1 Clarity 0 Clarity"); wordList.add ("Meiro 1 Meiro 0 Meiro"); wordList.add ("maker 1 maker 0,1 manufacturer"); wordList.add ("Mekata 1st 0 Weight"); wordList.add ("Megumi 1 Grace 0 Grace"); wordList.add ("Megum 1 Blessing 2 Shi En"); wordList.add ("Turn 1 Turn 0 Koshita, Translate"); wordList.add ("Remarkable 1 Remarkable 4 Surprise"); wordList.add ("Awakening 1 Awakening 3 Awakening"); wordList.add ("Mesu 1 Call 1 Call"); wordList.add ("female 1 female 2 female"); wordList.add ("Metsuki 1 Eyed 1 Eye God"); wordList.add ("Message 1 message 1 Information, communication"); wordList.add ("Metsubo 1 extinction 0 extinction"); wordList.add ("media 1 media 1 medium"); wordList.add ( "prospect 1 goal 1 needle hole"); wordList.add ("Memori 1 scale 3 degrees, tick"); wordList.add ("melody 1 melody 1 melody"); wordList.add ("Menkai 1 Visit 0 Look"); wordList.add ("Menjo 1 exemption 1 exemption"); wordList.add ("Mensu 1 facing 3 facing"); wordList.add ("Menboku / Menmoku 1st side 0th side, Honor"); wordList.add ("also 1 * 0 mourning 0 mourning"); wordList.add ("Another 1 ~ Net Net"); wordList.add ("Make 1 Provide 3 Deposit"); wordList.add ("Already happy 1 offer 0,5 proposal"); wordList.add ("Moshikomi 1 Application 0 Report Name, Application"); wordList.add ("Already 1 offer 0 application"); wordList.add ("Already 1 offer 0 statement"); wordList.add ("Already 1 perfect 3 缺 點"); wordList.add ("Mouten 1 Blind Spot 1 Blind Spot"); wordList.add ("Moretsu 1 Furious 0 Furious"); wordList.add ("Motel 1 motel 1 Love Hotel, Train Ryokan"); wordList.add ("Struggle 1 Torsion 2 Movement"); wordList.add ("Mokuroku 1 Catalog 0 Table of Contents"); wordList.add ("Mokuromi 1 Plan 0,4 Plan"); wordList.add ("Mokei 1 model 0 model, template"); wordList.add ("Mosaku 1 Search 0 Search"); wordList.add ("Maybe 1 younger 1 Ryoka, Manichi"); wordList.add ("or 1 or 0 or someone"); wordList.add ("Bring 1 bring 0,3 帶 來"); wordList.add ("Mochikiri 1 Hold-out 0 Theory One Case"); wordList.add ("Mokka 1 at the moment 1 before"); wordList.add ("with 1 for 1"); wordList.add ("Exclusively 1 Exclusive 0,1 專 MON"); wordList.add ("Hospitality 1 Have 0,3 Waiting"); wordList.add ("You can have 1 You can have 2 Acceptance, scent, Noh"); wordList.add ("monitor 1 monitor 0,1 monitor, monitor"); wordList.add ("thing 1 ~ thing 2 east and west"); wordList.add ("Monozuki 1 Favorite 2 Curious"); wordList.add ("Not enough 1 Not enough 0,5 Not enough"); wordList.add ("No longer 1 already 1"); wordList.add ("Mohan 1 model 0 model"); wordList.add ("Moho 1 Imitation 0 Imitation"); wordList.add ("Momeru 1 Rubbing 0 Jijo"); wordList.add ("Moyoosu 1 host 0,3 hug, 擧 kou"); wordList.add ("Leak 1 Leak 2 Leak, Leak"); wordList.add ("Rise 1 Rise 4 Rise"); wordList.add ("Mole 1 Leak 2 Leak, Transparent"); wordList.add ("Leak 1 Leak 2 Leak, Leak, Lost"); wordList.add ("Fragile 1 Everything 1 Thorough Ground"); wordList.add ("Fragile 1 Fragile 2 I Ching"); wordList.add ("and 1 arrow 1 箭"); wordList.add ("Yagai 1 Outdoor 0,1 Suburbs"); wordList.add ("Yaku 1 ~ stamens, poisons"); wordList.add ("Yagu 1 Bedding 1 Bedding"); wordList.add ("Yakushoku 1 Job Title 0 Job Title"); wordList.add ("Yakuba 1 Government Office 3 Local Administration Machine"); wordList.add ("1 to abandon 1 to abandon 1 emergency, too"); wordList.add ("Yashiki 1 Mansion 3 Residential Land"); wordList.add ("Yashinau 1 Nourish 0,3 Nourishment, Culture"); wordList.add ("Yashin 1 Ambition 1 Ambition"); wordList.add ("Easy 1 Cheesy 4 Insane"); wordList.add ("Relax 1 Rest 3 Use Rest"); wordList.add ("Yasei 1 Wild 0 Wild (animals and plants)"); wordList.add ("That's 1 * 2 Yatama ni, Yatama and 0 隨 葉, optional, excess"); wordList.add ("guy 1 guy 1 [profanity] 傢 伙"); wordList.add ("Yato 1 Opposition 0,1 Residential 黨"); wordList.add ("Darkness 1 Darkness 2 Darkness"); wordList.add ("Stop 1 Sick 1 Sick"); wordList.add ("Complicated 1 Complicated 4 Complex, annoying"); wordList.add ("Yaritosu 1 Pass through 4"); wordList.add ("Complete 1 Complete 4 Complete"); wordList.add ("soften 1 soften 4 messenger"); wordList.add ("Young 1 young 1 year old"); wordList.add ("Yu 1 ~ Oil Oil"); wordList.add ("Yu 1 Yu 1 Excellent"); wordList.add ("Yui 1 Superiority 1 Superiority, Superiority"); wordList.add ("Yuutsu 1 Melancholy 0 Melancholy"); wordList.add ("Yueki 1 Beneficial 0 Beneficial"); wordList.add ("Yuetsu 1 Superiority 0 Superiority"); wordList.add ("Yukan 1 brave 0 brave"); wordList.add ("Yuki 1 Organic 1 Organic"); wordList.add ("Yugure 1 dusk 0 sideways, darkness"); wordList.add ("Yuushi 1 loan 1 loan"); wordList.add ("Yuzuu 1 Flexible 0 Borrowing, Nobutsu, Hakuki Osan"); wordList.add ("Yusu 1 has 3 Yes, Yes"); wordList.add ("Yusei 1 dominance 0 dominance"); wordList.add ("Yusen 1 priority 0 priority"); wordList.add ("Yudo 1 lead 0 lead"); wordList.add ("Yubi 1 Grace 1 Grace"); wordList.add ("Yubo 1 Promising 0 Promising (rare) Nozomi"); wordList.add ("Yuboku 1 Nomad 0 Yumaki"); wordList.add ("Yuyake 1 Sunset 0 Akira Kasumi"); wordList.add ("Yuryoku 1 Influential 0 Influential, Influential"); wordList.add ("Yurei 1 Ghost 1 Demon Soul"); wordList.add ("Yuwaku 1 Temptation 0 Invitation"); wordList.add ("because (ni) 1 reason (ni) 2 reason, situation"); wordList.add ("Distort 1 Distort 0 Bias"); wordList.add ("Yusaburu 1 Shaking 0 Akira"); wordList.add ("Rinse 1 Rinse 0 Wash, bleach"); wordList.add ("Yutori 1 Yutori 0 Torihiro"); wordList.add ("Unique 1 unique French 2 獨 Special, 獨 Ichiuni, Different, New"); wordList.add ("Uniform 1 uniform 1,2,3 uniform"); wordList.add ("Yubisasu 1 pointing 3 fingers"); wordList.add ("Yumi 1 bow 2 bow"); wordList.add ("Fluctuating 1 Fluctuation 0,2 Fluctuation"); wordList.add ("Loose 1 Loose 2 Poor, Relax"); wordList.add ("Loose 1 Loose 3 Loosening, Relaxation"); wordList.add ("Slow 1 Loose 2 Looseness, Slow"); wordList.add ("Yo I, 0, 1"); wordList.add ("Good 1 Good 1 Good"); wordList.add ("Yo 1 Western ~ 1 Western"); wordList.add ("Yoin 1 cause 0 main cause"); wordList.add ("Yoeki 1 solution 1 solution"); wordList.add ("Yoken 1 requirement 0,3 circumstances"); wordList.add ("Yogo 1 Nursing 1 Nursing"); wordList.add ("Yoshiki 1 Form 0 Form"); wordList.add ("Do 1 Need 3 Demand"); wordList.add ("Yousei 1 Request 0 Billing, Request"); wordList.add ("Yosei 1 Training 0 Culture"); wordList.add ("Yoso 1 aspect 0 樣子"); wordList.add ("Yohin 1 supplies 0 supplies"); wordList.add ("Yofu 1 Western style 0 Western style"); wordList.add ("Youho 1 Usage 0 Usage"); wordList.add ("Yobo 1 Request 0 Request"); wordList.add ("Yoka 1 Leisure 1 Leisure"); wordList.add ("Yokan 1 Premonition 0 Premonition"); wordList.add ("Yokyo 1 Sideshow 0 Sideshow"); wordList.add ("Yokin 1 Deposit 0 Existence"); wordList.add ("Often 1 Desire 2 Desire"); wordList.add ("Frequently hot 1 suppression 0 壓 system"); wordList.add ("Frequently 1 Bathroom 0 Bathroom"); wordList.add ("Frequently 1 * 0 Next day 0 Next day, Second heaven"); wordList.add ("Good luck 1 suppression 0 suppression"); wordList.add ("Frequently 1 Greedy 0,4 Greedy"); wordList.add ("Well done 1 Desire 0 Desire"); wordList.add ("Avoid 1 Avoid 2 Escape"); wordList.add ("Yogen 1 Prophecy 0 Prophecy"); wordList.add ("Yokozuna 1 Yokozuna 0 Yokozuna"); wordList.add ("Dirt 1 Dirty 0 污"); wordList.add ("Good 1 Good verb 1 OK, good, line"); wordList.add ("Good 1 Good 1 Good"); wordList.add ("Good and bad 1 Good and bad 1,2 Good luck"); wordList.add ("Yoso 1 Expected 0 Deposit"); wordList.add ("Aside 1 Findings 2, 3 Findings"); wordList.add ("Toddler 1 room 0,1 area"); wordList.add ("Therefore 1 cause, therefore" Reliance "0 Cause"); wordList.add ("Yoto 1 ruling party 0,1 administration"); wordList.add ("Call 1 Stop 4 Scream"); wordList.add ("Yofukashi 1 Stay up late 3 Hoya"); wordList.add ("Yofuke 1 Late Night 3 Midnight"); wordList.add ("It's about 1, about 0, it's a difference,"); wordList.add ("Read up 1 Read aloud 0,4 Declaration"); wordList.add ("Resurrection 1 * 2 Resurrection 3 Resurrection"); wordList.add (1 ~ closer to 0 靠, bias "); wordList.add ("more than 1 leaning 4 倚靠"); wordList.add ("Yoron 1 Public Opinion, Public Opinion 1 Public Opinion"); wordList.add ("Yawamaru 1 Weak 3 Weak"); wordList.add ("Screaming 1 Weakening 3 Weakness, Weakness"); wordList.add ("By 1 Weak 2 Weak"); wordList.add ("Raijo 1 visit 0 arrival"); wordList.add ("Rice 1 rice 1 rice"); wordList.add ("Rival 1 * 0 rival 1"); wordList.add ("Rakuno 1 Dairy 0 Dairy Livestock"); wordList.add ("Rakka 1 fall 0,1 fall"); wordList.add ("Rakkan 1 Optimism 0 樂 觀"); wordList.add ("label 1 label 0,1 label"); wordList.add ("lamp 1 lamp Dutch 1 lamp, oil lamp"); wordList.add ("Ranyo 1 Abuse 0 Abuse"); wordList.add ("Lead 1 lead 1 Leader, Destination"); wordList.add ("Rikutsu 1 Reason 0 Reason"); wordList.add ("Rishi 1 interest 1 interest"); wordList.add ("Rijun 1 Profit 0 Profit"); wordList.add ("Risei 1 Reason 1 Reason"); wordList.add ("Risoku 1 interest 0 interest"); wordList.add ("Ritai 1 solid 0 standing"); wordList.add ("Rippou 1 cube 0 cube"); wordList.add ("Rippou 1 Legislation 0 Legislation"); wordList.add ("Riten 1 Advantage 0 Yuu"); wordList.add ("Ryakugo 1 Abbreviation 0 Abbreviation"); wordList.add ("Ryakudatsu 1 Pillage 0 Pillage"); wordList.add ("Ryutsu 1 distribution 0 distribution"); wordList.add ("Ryoiki 1 area 0,1 area"); wordList.add ("Ryokai 1 OK 0 OK"); wordList.add ("Ryokai 1 territorial waters 0 territorial waters"); wordList.add ("Ryokyoku 1 bipolar 0 pole"); wordList.add ("Ryokou 1 Good 0 Good"); wordList.add ("Ryoshiki 1 Good sense 0 Akechi"); wordList.add ("Ryoshitsu 1 Good quality 0 Good quality"); wordList.add ("Ryosho 1 Accept 0 OK"); wordList.add ("Ryoshin 1 Conscience 1 Conscience"); wordList.add ("Ryocho 1 territory 1 territory"); wordList.add ("Ryodo 1 territory 1 territory"); wordList.add ("Ryoritsu 1 compatibility 0"); wordList.add ("Ryokaku 1 Passenger 0 Passenger"); wordList.add ("Ryoken 1 Passport 0 Gosho"); wordList.add ("Rireki 1 History 0 History"); wordList.add ("Riron 1 Theory 1 Theory"); wordList.add ("Ringyo 1 Forestry 0,1 Forestry"); wordList.add ("Rui 1 class 1"); wordList.add ("Ruiji 1 Similar 0 Similar"); wordList.add ("Ruisui 1 analogy 0 analogy"); wordList.add ("loose 1 loose 1 distracted"); wordList.add ("Rule 1 rule 1 Rule"); wordList.add ("Reikoku 1 Ruthless 0 Ruthless"); wordList.add ("Reizou 1 Refrigerator 0 Refrigerator"); wordList.add ("Reitan 1 Cold 3 Cold"); wordList.add ("race 1 race / lace 1 賽 跑 / hanabe, bud 絲"); wordList.add ("Regular 1 regular 1 Regular, regular, official player"); wordList.add ("Lesson 1 lesson 1 lesson (work)"); wordList.add ("Lady 1 lady 1 Lady"); wordList.add ("lever 1 lever" handle "1 board hand, rod"); wordList.add ("Renai 1 Love 0 Love"); wordList.add ("Renkyu 1 consecutive holidays 0 consecutive holidays"); wordList.add ("range 1 range 1 爐 子, range"); wordList.add ("Renjitsu 1 day 0 day"); wordList.add ("Rentai 1 Solidarity 0 Union"); wordList.add ("Rent-a-car 1 rent-a-car 3,4 tax train"); wordList.add ("Renchu 1 guys 0,1 companion"); wordList.add ("Roentgen 1 Röntgen German 0,3 X-ray, Rinkoto line"); wordList.add ("Renpo 1 Federation 0 Union"); wordList.add ("Renmei 1 Federation 0 Union"); wordList.add ("Rosui 1 Senescence 0 Senescence"); wordList.add ("Roudoku 1 Recitation 0 Recitation"); wordList.add ("Rohi 1 Waste 0,1 Waste"); wordList.add ("Royoku 1 effort 1 force"); wordList.add ("rope 1 rope 1 rope, rope"); wordList.add ("Ropeway 1 ropeway 5 (steel) cableway, aerial car"); wordList.add ("Roku 1 Go na / Go ni 0 Genuine, sufficient ground (Yo Negative Call)"); wordList.add ("Rokotsu 1 blatant 0 blatant"); wordList.add ("Romantic / Romantic 1 romantic 4 Fancy, Romantic, Luo Mangatsu"); wordList.add ("Rongi 1 Discussion 1 Discussion"); wordList.add ("Ronri 1 Logic 1 邏 輯"); wordList.add ("Wakamono 1 * 0 Youth 0 Years Aojin, Youth"); wordList.add ("Waku 1 frame 2 stile"); wordList.add ("Wakusei 1 Planet 0 Line Star"); wordList.add ("Movement 1 Technique 2 Skill"); wordList.add ("Troublesome 1 state 1 degree"); wordList.add ("Troublesome 1 Annoying 0,5 Annoying"); wordList.add ("Migratory 1 Migratory Bird 3 Bird"); wordList.add ("Watt 1 watt 1 tile (special)"); wordList.add ("Wabi 1 Apology 0 Remorse"); wordList.add ("Wafu 1 Japanese style 0 Japanese style"); wordList.add ("Wabun 1 Japanese 0 Japanese text"); wordList.add ("straw 1 straw 1 sardine"); wordList.add ("Rari 1 ~ Wari 1 ~ Naru"); wordList.add ("Attachment 1 allocation 0 minutes"); wordList.add ("Interruption 1 Interruption 3 Susumu"); wordList.add ("War thing 1 Bad guy 0 Tsutomu"); wordList.add ("We 1 I 1 I, Self"); return wordList; } }
Recommended Posts