-- MySQL dump 10.11
--
-- Host: localhost    Database: _db_study
-- ------------------------------------------------------
-- Server version	5.0.51a

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `m_category`
--

DROP TABLE IF EXISTS `m_category`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `m_category` (
  `id_category` int(10) unsigned NOT NULL auto_increment,
  `c_categoryName` varchar(50) NOT NULL,
  `c_categoryDisplayOrder` int(10) unsigned NOT NULL,
  `c_registtime` datetime NOT NULL,
  `c_updatetime` datetime NOT NULL,
  `c_delete` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  USING BTREE (`id_category`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `m_category`
--

LOCK TABLES `m_category` WRITE;
/*!40000 ALTER TABLE `m_category` DISABLE KEYS */;
INSERT INTO `m_category` VALUES (1,'英会話(できると)',0,'2009-08-23 08:10:53','2009-08-23 12:26:20',0),(2,'英会話(実践蓄積)',0,'2009-08-23 08:10:53','2009-08-28 20:11:41',0);
/*!40000 ALTER TABLE `m_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `m_category2`
--

DROP TABLE IF EXISTS `m_category2`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `m_category2` (
  `id_category2` int(10) unsigned NOT NULL auto_increment,
  `id_category` int(10) unsigned NOT NULL,
  `c_category2Name` varchar(50) NOT NULL,
  `c_category2DisplayOrder` int(10) unsigned NOT NULL,
  `c_registtime` datetime NOT NULL,
  `c_updatetime` datetime NOT NULL,
  `c_delete` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  USING BTREE (`id_category2`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `m_category2`
--

LOCK TABLES `m_category2` WRITE;
/*!40000 ALTER TABLE `m_category2` DISABLE KEYS */;
INSERT INTO `m_category2` VALUES (1,1,'英会話',0,'2009-08-23 08:11:14','2009-08-23 08:58:12',0),(2,2,'電話',0,'2009-08-23 08:39:45','2009-08-23 08:58:12',0),(3,2,'挨拶',0,'2009-08-23 08:39:45','2009-08-23 08:58:12',0),(4,2,'依頼',0,'2009-08-23 08:39:45','2009-08-23 08:39:45',0),(5,2,'会社',0,'2009-08-23 08:39:45','2009-08-23 08:39:45',0),(6,2,'買物',0,'2009-08-23 08:39:45','2009-08-23 08:39:45',0),(7,2,'銀行',0,'2009-08-23 08:39:45','2009-08-23 08:39:45',0),(8,2,'食事',0,'2009-08-23 08:39:45','2009-08-23 08:39:45',0),(9,2,'日常',0,'2009-08-23 08:39:45','2009-08-23 08:39:45',0),(10,2,'病気',0,'2009-08-23 08:39:45','2009-08-23 08:39:45',0),(11,2,'旅行',0,'2009-08-23 08:39:45','2009-08-23 08:39:45',0),(12,2,'その他',0,'2009-08-23 08:39:57','2009-08-23 08:39:57',0);
/*!40000 ALTER TABLE `m_category2` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `m_mycheck`
--

DROP TABLE IF EXISTS `m_mycheck`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `m_mycheck` (
  `id_mycheck` int(10) unsigned NOT NULL auto_increment,
  `id_account` int(10) unsigned NOT NULL,
  `id_study` int(10) unsigned NOT NULL,
  `c_check` int(10) unsigned NOT NULL,
  `c_registtime` datetime NOT NULL,
  `c_updatetime` datetime NOT NULL,
  PRIMARY KEY  USING BTREE (`id_mycheck`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `m_mycheck`
--

LOCK TABLES `m_mycheck` WRITE;
/*!40000 ALTER TABLE `m_mycheck` DISABLE KEYS */;
/*!40000 ALTER TABLE `m_mycheck` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `m_study`
--

DROP TABLE IF EXISTS `m_study`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `m_study` (
  `id_study` int(10) unsigned NOT NULL auto_increment,
  `id_category2` int(10) unsigned NOT NULL,
  `c_question` longtext NOT NULL,
  `c_answer` longtext NOT NULL,
  `c_registtime` datetime NOT NULL,
  `c_updatetime` datetime NOT NULL,
  `c_update_account` int(10) unsigned NOT NULL,
  `c_delete` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  USING BTREE (`id_study`)
) ENGINE=MyISAM AUTO_INCREMENT=979 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `m_study`
--

LOCK TABLES `m_study` WRITE;
/*!40000 ALTER TABLE `m_study` DISABLE KEYS */;
INSERT INTO `m_study` VALUES (1,1,'お名前をお願いします','may I ask your name ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(2,1,'今何時ですか','may I have the time ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(3,1,'このリンゴを食べてもいいですか','may I have this apple ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(4,1,'写真を撮ってもいいですか','may I take some pictures ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(5,1,'窓を開けてくれますか','will you open the window ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(6,1,'テレビをつけてくれますか','will you turn on the TV ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(7,1,'お名前を教えていただけますか','would you please tell me your name ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(8,1,'スピーチをしていただけますか','would you please make a speech ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(9,1,'ショッピングにいきませんか','shall we go shopping ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(10,1,'散歩をしましょうか','shall we go for a walk ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(11,1,'でかけましょう','let\'s start','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(12,1,'映画を見に行きましょう','let\'s go to the movies','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(13,1,'コーヒーはいかがですか','how about coffee ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(14,1,'一杯どうですか','how about a drink ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(15,1,'不可能です','it\'s impossible','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(16,1,'それを料理するのは簡単です','it\'s easy to cook it','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(17,1,'毛布がほしいです','I want a blanket','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(18,1,'歌手になりたい','I want to be a singer','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(19,1,'予約をしたい','I\'d like to make a reservation','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(20,1,'どこへいけばいいのか判りません','I don\'t know where to go','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(21,1,'いつ出発すればいいのか判りません','I don\'t know when to start','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(22,1,'なにをすればいいか教えて','please tell me what to do','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(23,1,'どこへ行けばいいのか教えて','please tell me where to go','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(24,1,'いつ伺えばいいのか教えて','please tell me when to come','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(25,1,'それを聞いて悲しいです','I\'m sad to hear that','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(26,1,'試合に勝って幸せです','I\'m happy to win the game','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(27,1,'お目にかかれてうれしいです','nice to meet you','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(28,1,'すぐいきます','I\'m coming right now ','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(29,1,'昨夜こちらへ来ました','I come here last night','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(30,1,'それが理解できるようになりますよ','You will come to understand it','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(31,1,'明日遊びに行きますよ','I\'ll go and see you tomorrow','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(32,1,'この通りを２００メートルいきなさい','go along this street for 200 meters','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(33,1,'雨になりそうです','It\'s going to rain','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(34,1,'彼は私に多くの助言をくれました','He gave me much advice','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(35,1,'彼らは昨夜パーティを開きました。','They gave a party last night','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(36,1,'別れの言葉をお願いします。','Would you give us a farewell speech','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(37,1,'そのパンフレットを配ってください。','Will you give away the pamphlets','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(38,1,'警察を呼んで。','Give me the police','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(39,1,'その部屋は海に面していますか。','Does the room give upon the sea','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(40,1,'たばこをやめるつもりです。','I\'m going to give up smoking','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(41,1,'タクシーにしましょうか','How about taking a cab','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(42,1,'これをください','I\'ll take this.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(43,1,'このバスに乗ると空港に行きます','this bus will take you to the airport','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(44,1,'深呼吸をしてください','take a deep breath, please','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(45,1,'今年の夏は一ヶ月の休みを取るつもりです','I\'m going to take a month off this summer','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(46,1,'それにはがまんできない','I can\'t take it','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(47,1,'こちらで靴を脱いでください','Please take off your shoes here','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(48,1,'その飛行機は定刻通りに離陸する予定です','The plane\'s going to take off on time','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(49,1,'気楽にしてください（別れ際に）じゃあね','Take it easy','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(50,1,'写真の写りがわるいんです。','I don\'t take well','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(51,1,'明日、犬の面倒を見てくれる。','Will you take care of my dog tomorrow ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(52,1,'そこへ行くのにわずか２分ほどです。','It only takes two minutes to get there.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(53,1,'ここへ来るのに思ったより時間がかかりました。','It took me longer than I thought to get here.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(54,1,'彼女は去年離婚しました。','She got a divorce last year.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(55,1,'今年の冬はたくさん雪が降るよ。','We\'re getting much snow this winter.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(56,1,'暑くなりましたね。','It gets hot, doesn\'t it ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(57,1,'彼の電話番号をしりたいわ。','I want to get his phone number.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(58,1,'それをどこで買ったの。','Where did you get it ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(59,1,'いかがお過ごしですか。（調子はどう）','How are you getting along ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(60,1,'さあ、仕事に取りかかろう。','Let\'s get down to work.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(61,1,'あさって帰ってくる予定です。','I\'ll get back the day after tomorrow.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(62,1,'私をがっかりさせないで。','Don\'t get me down.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(63,1,'ここで降りてください。','Please get down here.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(64,1,'降りるところで教えますよ。','I\'ll tell you when to get off.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(65,1,'彼は明日の朝到着しますよ。','He\'s getting in tomorrow morning.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(66,1,'今日は会議に出なくてはいけない。','I\'ve got to have a meeting today.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(67,1,'そのバスに乗りましょう。','Let\'s get on the bus.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(68,1,'私たちは夜遅くニューヨークに着きました。','We got to New York late at night.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(69,1,'いつも６時に起きます。','I usually get up at 6.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(70,1,'計画は軌道に乗ってきましたか','Is the plan getting going ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(71,1,'後ほど又連絡します。','I\'ll get back to you later.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(72,1,'それを早く済ませなさい。','Get down with it quickly.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(73,1,'今晩スピーチしなければいけません。','I have to make a speech this evening.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(74,1,'きっと彼女は有名な女優になるでしょう。','I\'m sure she will make a famous actress.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(75,1,'彼にそれを修理させます。','I\'ll make him fix it.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(76,1,'来週の土曜日にしよう。','Let\'s make it next Saturday.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(77,1,'私は毎朝５時に起きることにしている。','I make it a rule to get up at 5 every morning.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(78,1,'私は彼を重んじます。','I make much of him.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(79,1,'彼女を軽視するべきではない。','You should not make little of her.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(80,1,'彼女の言うことが理解できません。','I can\'t make out what she says.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(81,1,'応募者のリストを作ってくれる。','Will you make up the list of the applicants ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(82,1,'私は転職することに決めました。','I made up my mind to change my job.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(83,1,'あそこの男性を見てごらん。','Look at the man over there.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(84,1,'あなたは若く見えますね。','You look young, don\'t you ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(85,1,'雨のようです。','It looks like rain.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(86,1,'この部屋は南向きです。','This room looks to the south.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(87,1,'明日、私の犬の面倒を見てくれますか。','Would you look after my dog tomorrow ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(88,1,'なにを探しているの。','What are you looking for ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(89,1,'ちょっと立ち寄っていきませんか。','Won\'t you look in on us ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(90,1,'私がその件を調べてみましょう。','I\'ll look into the matter.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(91,1,'気をつけて','Watch out !','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(92,1,'左へ曲がってください。','Turn to the left.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(93,1,'右へ曲がってください。','Turn to the right.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(94,1,'曲がらないでまっすぐ歩いてください。','Don\'t turn but walk straight on.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(95,1,'この文を英語に訳してください。','Turn this sentence into English, please.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(96,1,'テレビをつけてくれる。','Will you turn on the TV ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(97,1,'水を止めてください。','Turn off the water, please.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(98,1,'ガスの火を弱くしましょうか。','Shall I turn down the gas ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(99,1,'ガスの火を強くしてください。','Turn up the gas, please.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(100,1,'そのニュースは本当だと判りました。','The news turned out to be true.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(101,1,'公園を走っているあの男性は誰ですか','Who is that man running in the park ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(102,1,'電池が切れてしまいました。','The battery has run down.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(103,1,'その手紙に目を通しましたか。','Did you run through the letter ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(104,1,'タクシーを呼んでください。','Call me a taxi, please.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(105,1,'この花を英語でなんと言いますか。','What do you call this flower in English ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(106,1,'明日、電話をしますよ。','I\'ll call you tomorrow.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(107,1,'お宅におじゃましてもいいですか。','May I call at your house ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(108,1,'昨日、彼を訪問しました。','I called on him yesterday.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(109,1,'今日はこれで終わりにしましょう。','Let\'s call it a day.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(110,1,'明日の朝電話しますよ。','I\'ll call you up tomorrow morning.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(111,1,'ペットを飼っていますか。','Do you have any pets ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(112,1,'あなたと一緒に夕食を食べたいのですが。','I\'d like to have dinner with you.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(113,1,'今日は楽しかったです。','I had a good time today.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(114,1,'偏頭痛がします。','I have a slight headache.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(115,1,'彼女はすてきなドレスを着ていますね。','She has on a nice dress, doesn\'t she ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(116,1,'昨日はひどい目にあったよ。','I had a hard time yesterday.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(117,1,'彼女を（外へ）招待したいです。','I want to have her out.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(118,1,'息子が一人と娘が二人います。','I have a son and daughters.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(119,1,'明かりを消してくれますか。','Will you turn off the light ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(120,1,'公園には数人の子供たちがいました。','There were some children in the park.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(121,1,'ビールを五杯お願いします。','Five glasses of beer, please.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(122,1,'彼女はかわいい女性です。','She is a pretty woman.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(123,1,'これとあれとは違います。','This is different from that.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(124,1,'事もたちのことが心配です。','I\'m anxious about my children.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(125,1,'なにに興味がありますか。','What are you interested in ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(126,1,'彼は親切ではなかったです。','He wasn\'t kind to me.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(127,1,'今は仕事で忙しいです。','I\'m busy with my work right now.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(128,1,'私は多くの本を持っていません。','I don\'t have many books.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(129,1,'こちらでは大雪が降りますか。','Do you have much snow here ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(130,1,'あまり時間がありません。','We don\'t have much time.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(131,1,'その事業には大金が必要です。','The project needs lots of money.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(132,1,'それをするだけの時間がありません。','I don\'t have enough time to do it.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(133,1,'昨夜は遅くまで起きていなければなりませんでした。','I had to sit up late last night.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(134,1,'（食事は）なににしますか。','What are you having ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(135,1,'今月末にハワイに行きます。','I\'m going to Hawaii at the end of this month.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(136,1,'どこでその製品は作られたのですか。','Where were the goods made ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(137,1,'昨日、ブラウンさんに夕食に招かれました。','Yesterday I was invited to dinner by Mr. Brown.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(138,1,'カナダでフランス語が話されています。','French is spoken in Canada.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(139,1,'私の会社では１００台以上のコンピューターが使われています。','More than one hundred computers are used in my office.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(140,1,'私のパスポートが盗まれました。','My passport was stolen.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(141,1,'それは地図ですか。','Is it a map ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(142,1,'あなたはそのとき学生でしたか。','Were you a student then ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(143,1,'昨日は疲れましたか。','Were you tired yesterday ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(144,1,'それは本当でしたか。','Was it true ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(145,1,'なぜ彼は怒ったのですか。','Why did he get angry ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(146,1,'私は責任者では有りません。','I am not the person in charge.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(147,1,'怖くないです。','I am not scared.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(148,1,'たばこをやめる気は有りません。','I am not going to quit smoking.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(149,1,'彼は音楽には興味有りません。','He isn\'t interested in music.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(150,1,'心配しないで。','Don\'t worry.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(151,1,'これらの手紙は忘れないように出して。','Don\'t forget to mail these letters.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(152,1,'ここでたばこを吸わないでください。','Please don\'t smoke here.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(153,1,'会議には遅れないでください。','Don\'t be late for the meeting, please.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(154,1,'気にしないで。','Never mind !','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(155,1,'彼は決して彼らの悪口を言いません。','He never calls them bad names.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(156,1,'そのことを信じられませんでした。','I could hardly believe that.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(157,1,'彼は会社に行ってしまいました。','He has already gone to his office.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(158,1,'パスポートをなくしてしまいました。','I have lost my passport.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(159,1,'何度もカナダへ行ったことがあります。','I have been to Canada many times.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(160,1,'香港へ行ったことがありますか。','Have you ever been to Hong Kong ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(161,1,'以前、彼にあったことがあります。','I\'ve seen him before.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(162,1,'私たちはそんな果物を食べたことがありません。','We have never eaten such a fruit.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(163,1,'シドニーにいたことがあります。','I\'ve been Sydney.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(164,1,'その本を２回読みました。','I\'ve read the book twice.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(165,1,'彼女に何回会ったことがありますか。','How many times have you seen her ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(166,1,'オーストラリアに行ったことがありますか。','Have you ever been to Australia ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(167,1,'いいえ。一度もありません。','No, I never have.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(168,1,'こちらに１０年間住んでいます。','I have lived here for ten years.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(169,1,'それをナイフで切ってください。','Cut it with the knife, please.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(170,1,'道に迷ったのですか。','Are you lost ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(171,1,'ここからかなり距離がありますよ。','It\'s quite a distance from here.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(172,1,'ここからそんなに遠くないですよ。','It\'s not so far from here.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(173,1,'この道をそのまま行ったところにあります。','It\'s down this road.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(174,1,'まっすぐ歩いてください。','Walk straight on.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(175,1,'並木道に沿って歩いてください。','Follow the avenue.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(176,1,'２ブロック先にあります。','It\'s two blocks away from here.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(177,1,'左側にあります。','It\'s on the left.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(178,2,'いつでもいいですよ','Anyday is fine with me','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(179,2,'聞こえますか？','Are you there?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(180,2,'電話する','calling you','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(181,2,'彼に代わってもらえますか・','Can you put him on?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(182,2,'電話があった事をお伝えください','Could I have inform calling you?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(183,2,'折り返し電話下さい','Could you call me back hold line','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(184,2,'xxx氏をお願い出来ますか？','Could you contacted Mr xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(185,2,'私の代わりに番号を探して下さい','Could you find my number for me?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(186,2,'電話番号教えてください','Could you give me phone number?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(187,2,'もう一度お願いします','Could you repeat your mean?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(188,2,'貴方の名前を綴っていただけませんか?','Could you spell your name out?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(189,2,'貴方は私の言ってることがわかりますか？','Do you follow me?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(190,2,'わかりますか？','Do you follow?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(191,2,'内線','extension line','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(192,2,'続けて下さい','go on','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(193,2,'彼は他の電話で話し中です','He is another line','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(194,2,'彼は居ません','He is not her','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(195,2,'彼は留守です（居ません）','He is not there','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(196,2,'彼はここに戻ります','He will be at alound her','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(197,2,'調子はどうですか？','How\'re you doing?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(198,2,'電話を切る','hung up','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(199,2,'聞き取れませんでした','I didn\'t catch your mean.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(200,2,'私は彼に掛け直をすよう伝えます','I will tell him call you back','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(201,2,'エマさんは居りますか？','Is Emma san there?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(202,2,'ジョン氏のお宅ですか？','Is this the Mr.Jon\'s residence?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(203,2,'ちょっと待ってください','Just a moment','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(204,2,'どちら様ですか？','May I ask who\'s calling please?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(205,2,'英語で会話してよろしいですか？','May I have a conversation by English? ','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(206,2,'ｘｘｘさんに代わって頂けますか？','May I have xxx, please?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(207,2,'私は日本語で話してよろしいですか？','May I speak Japanese?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(208,2,'xxx氏をお願いします。','May I speak Mrxxx?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(209,2,'鈴木ですが、ｘｘｘさん居ますか？','My name is Suzuki. Is xxx there please?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(210,2,'どう致しまして','Not at all','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(211,2,'わかりました。それでは伝言お願いします','OK, May I leave a message them?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(212,2,'もう一度お願いします','Once again please','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(213,2,'少し大きな声で話してください','Please took little large','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(214,2,'折り返し電話させますか？','Shall I have her, call you back?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(215,2,'大きな声で話す','speak louder','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(216,2,'落ち着いて話して下さい','take it easy talking','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(217,2,'お待たせしました','Thank you for waiting','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(218,2,'電話が切れました','The telephone line was disconnected. During the conversation　','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(219,2,'そのような人はおりません','There is nobody here that name.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(220,2,'信じて下さい','Trust me','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(221,2,'ちょっと待ってください','Wait a second','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(222,2,'ちょっと待ってください','Wait for a moment','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(223,2,'どちら様ですか？','Who is calling please?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(224,2,'すみません、もう一度貴方の名前をお願いします','Would you mind telling me your name again?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(225,2,'彼にｘｘｘを伝えて下さい','Would you tell him that xxx？','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(226,2,'ｘｘｘさんは居ません','xxx is not here','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(227,2,'私の言ってる意味がわかりますか？','You know what I mean?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(228,2,'どう致しまして','You\'re welcome','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(229,3,'ｘｘｘで会いましょう','At see you xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(230,3,'どうしましたか？','Do you need some help?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(231,3,'よかったね！','Goo for you','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(232,3,'こんにちは','Good afternoon','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(233,3,'さようなら','Good bye','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(234,3,'今晩は','Good evening','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(235,3,'おはようございます','Good morning','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(236,3,'お疲れ様','Good work today','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(237,3,'調子はどうですか？','Has good ready?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(238,3,'調子はどうですか？','Hello how are you doing?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(239,3,'ごきげんいかがですか？','How are getting along?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(240,3,'ごきげんいかがですか？','How have you been?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(241,3,'ごきげんいかがですか？','How is it going?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(242,3,'ごきげんいかがですか？','How is life?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(243,3,'元気です','I am fine','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(244,3,'私は元気ありません','I am in low spirits','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(245,3,'私は貴方に会えて嬉しい','I am pleased to see you ','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(246,3,'元気がありません','I am depressed','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(247,3,'私は貴方に会えて嬉しい','I am glad to see you','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(248,3,'悪くはないです','I am not too bad','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(249,3,'まあまあです','I am so-so','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(250,3,'私はあなたに感謝しています','I am thankful to you','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(251,3,'私は嬉しい','I am glad to hear that','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(252,3,'私はｘｘｘを楽しみにしています','I am looking forward to xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(253,3,'お気の毒に','I am so sorry to hear that','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(254,3,'私は感謝してもしきれません','I can\'t thank you enough','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(255,3,'又合うのを楽しみにしています','I have been looking forward to meeting..','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(256,3,'私は一人暮らしです','I live alone','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(257,3,'さようなら','I will catch you later','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(258,3,'貴方に会えて嬉しいです','It\'s a pleasure to meet you.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(259,3,'世話になり本当にありがとう','Many many thanks','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(260,3,'お久しぶりです','nice to see you again','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(261,3,'又お会いしましたね','Pleased see you again.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(262,3,'初めまして','Pleased to meet you.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(263,3,'さようなら','Take care','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(264,3,'ありがとうございます','Thank you for everything','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(265,3,'それはお気の毒に','That\'s too bad','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(266,3,'貴方の趣味は何ですか？','What are your hobby?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(267,3,'彼の印象はどうですか？','What is your impression of him?　','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(268,3,'どうしたの？','What\'s wrong?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(269,3,'どうしたの？','What\'s happened?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(270,3,'どうしましたか？','What\'s the matter?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(271,3,'どうしたの？','What\'s wrong?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(272,3,'xxxについてどんな印象ですか？','What\'s your impression of xxx ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(273,3,'貴方は何処から来ましたか？','Where you came from?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(274,3,'メンバーを紹介して頂けますか・','Would you introduce your paty?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(275,3,'はい！！','yeah','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(276,4,'私はｘｘｘをしてよろしいですか？','Can I xxx ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(277,4,'貴方にｘｘｘをしてもらいたいのですが？','Can you xxx?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(278,4,'郵便局へ行く方法を教えて下さい','Can you tell me how to get the post office?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(279,4,'お願いしていいですか？','Can you xxx?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(280,4,'私にｘｘｘをさせて頂けますか？','Could I have xxx?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(281,4,'お願いできますか？','Could you xxx ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(282,4,'お願いがあるのですが？','Could you do me favor?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(283,4,'学校に行き方教えてください','Could you tell me how to get to school？','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(284,4,'お願いしていいですか？','Could you xxx?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(285,4,'ちょっとよろしいですか？','Do you have minute？','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(286,4,'ｘｘｘを返して下さい','Give me back xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(287,4,'お願いがあります','I have favor to ask you','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(288,4,'私にｘｘｘをさせて下さい','Let me xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(289,4,'見させて下さい','Let me have a look','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(290,4,'ｘｘｘを調査させて下さい','Let me look into xxx it first','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(291,4,'ちょっと考えさせて下さい','Let me think for a moment','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(292,4,'私はｘｘｘしていいですか？','May I going to xxx ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(293,4,'私につずいてくりかえしてください','Want you repeat after me','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(294,4,'貴方にｘｘｘをしてもらいたいのですが？','Want you to xxx ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(295,4,'ｘｘｘしませんか？','Won\'t you xxx? (Will not you xxx?)','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(296,4,'貴方にｘｘｘをお願いしたいのですが？','Would you xxx ? ','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(297,4,'御願いがあるのですが？','Would you do me a favor?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(298,4,'ｘｘｘしませんか？','Would you like xxx？','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(299,4,'貴方に頼みたい事あるのですが？','Would you my help something?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(300,4,'お願いしていいですか？','Would you xxx?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(301,5,'主任','a chief','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(302,5,'株価','a stock prices','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(303,5,'係長','a subsection chief','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(304,5,'何か問題でもありますか？','Anyting wong with that','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(305,5,'評価する','appraise','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(306,5,'感謝する','appreciate','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(307,5,'準備いいですか？','Are you about ready?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(308,5,'質問は以上ですか？','Are you no more question?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(309,5,'xxxを担当する','be in charge of xxx ','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(310,5,'支店','branch','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(311,5,'期限','by xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(312,5,'お役に立つこと何かありませんか？','Can I be of some assistance?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(313,5,'収支','cash flow ','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(314,5,'会議','conference','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(315,5,'契約','contract','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(316,5,'方針を決める','decide on a policy','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(317,5,'部門、部、課、売り場　','department ','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(318,5,'私は明日貴方の為に働かねばならないですか？','Do I have to work tomorrow for your save?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(319,5,'xxxをしなくてもいい','don\'t have to xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(320,5,'無理しないで下さい','Don\'t work too hard','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(321,5,'従業員','employees','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(322,5,'入社する','enter a company','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(323,5,'見積もり、概算','estimate','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(324,5,'値段が高い','expansive','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(325,5,'やる気がある','feel up','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(326,5,'AからBまで','from A to 12 B','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(327,5,'10時から12時まで','from 10 o\'clock to 12 o\'clock','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(328,5,'承認を得る','get approval','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(329,5,'少なめに見積もる','give a low estimate','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(330,5,'通勤する','go to one\'s office','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(331,5,'辞表を出す','have in a resignation','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(332,5,'結果を回覧しなさい','Have the results circulated throughout the office','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(333,5,'彼はｘｘｘの担当者です','He is in charge of XXX.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(334,5,'何年つとめてますか？','How long be work here?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(335,5,'私は休みです','I am absent','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(336,5,'私は貴方の返事を待つ','I pose reply you','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(337,5,'私は貴方に同意します','I agree with you','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(338,5,'私は転勤します','I am going to be transfer job','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(339,5,'私はこの仕事を担当しています','I am in charge of this job','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(340,5,'私はNECに勤めています','I am with NEC ','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(341,5,'私は私の考えをまとめることができます','I can put my thoughts together','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(342,5,'xxxをまとめる','I can put xxx together','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(343,5,'私は仕事のやる気が無い','I don\'t feel up job','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(344,5,'気に入って頂ければいいのですが','I hope you like it','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(345,5,'あとに二週間待って下さい','I need only tow more week','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(346,5,'私は貴方と電子メールで連絡を取りあうでしょう','I will get in touch by e-mail with you','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(347,5,'ｘｘｘを発注したいのですが？','I would like to place an order xxx ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(348,5,'ご都合はいいですか？','Is that convenient for you?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(349,5,'それは貴方の過失ではありません','It\'s not your fault','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(350,5,'入社する','join a company','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(351,5,'その調子でがんばって下さい','Keep up the good work','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(352,5,'不足する','lack','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(353,5,'会社を辞める','leave a company','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(354,5,'さあ、始めましょう！','Let\'s start now, shall we','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(355,5,'契約する','make contract','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(356,5,'この会議を終了してよろしいですか？','May I finish this meeting?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(357,5,'この会議を始めてよろしいですか？','May I start this meeting?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(358,5,'xxxについての質問があります','May I ask question about xxx?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(359,5,'質問があります','May I ask something?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(360,5,'どんな問題ですか？','May I ask what problem?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(361,5,'質問は以上です','No more question.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(362,5,'開始時間','open hour','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(363,5,'許可証','permit','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(364,5,'発注する','place an order','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(365,5,'今かかえてる問題','problem at hand','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(366,5,'提案する','propose','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(367,5,'提供する','provide','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(368,5,'辞める','resign','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(369,5,'会社を辞める','resign a company','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(370,5,'辞表','resignation','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(371,5,'出荷する','ship','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(372,5,'出荷','shipping','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(373,5,'不足だ','short','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(374,5,'不足','shortage','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(375,5,'提案する,助言する','suggest','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(376,5,'これからお世話になりますので宜しくお願いします','Thank you in advance for your help','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(377,5,'それは難しい質問です','That\'s a hard one','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(378,5,'仕事の量','the amount of work','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(379,5,'ｘｘｘへ転属する','transfer to xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(380,5,'１２時までに届けます','We will deliver it by 12:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(381,5,'どうしましたか？、ご用件はなんですか？','What can I do for you?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(382,5,'貴方の担当はなんですか？','What is the taking charge of you?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(383,5,'貴方の仕事は何ですか？','What is your job?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(384,5,'仕事はどういう関係ですか？','What kind of work do you do?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(385,5,'これは日本語でなんと言いますか？','What this in Japanese?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(386,5,'どんな問題ですか？','What type is problem?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(387,5,'ご注文は何ですか？','What would you like to order?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(388,5,'納品はいつになりますか？','When can we expect delivery?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(389,5,'いつがいいでしょうか？','When is good for you?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(390,5,'次の会議はいつにしますか？','When is next meeting?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(391,5,'いつになりますか？','When will it be ready?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(392,5,'会議を始めませんか？','Why don\'t we begin conference?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(393,5,'ｘｘｘしたらいかがですか？','Why Don\'t you xxx?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(394,5,'会社に勤める','work for a company','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(395,5,'残業したいですか？','Would you like to over working?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(396,5,'私に午後５時まで回答をたのみます','Would you mind going to answer to me by 5 p.m?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(397,5,'ｘｘｘを頼みます','Would you mind going to xxx ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(398,5,'始めて下さい！','Would you start?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(399,5,'貴方はそれをしなくてもいいです','You don\'t have to do that','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(400,5,'よくやった','You have done an good job','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(401,5,'貴方はそれをしなくてもいいです','You have to do that','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(402,5,'貴方は許可証が必要ですよ','You have to have a permit','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(403,5,'良くやった','You really did a good job','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(404,5,'よくやって頂きありがとう','You really help me','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(405,6,'値段確認したいのですが？','Could I confirm price?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(406,6,'百貨店','department store','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(407,6,'一括払いでいいですか？','Do you want it all together?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(408,6,'貴方は予算はいくらですか？','How much would you like to spend?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(409,6,'支払いはクレジットカードでいいですか？','May I pay by credit card?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(410,6,'それを買いたいのですか？','Would you like to buy it ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(411,6,'50ドルにして頂けますか？','Would you take 50 dollares? ','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(412,6,'はいよろしいです','Yes you may','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(413,6,'新しいものを買ったほうがいいですよ','You\'d better off buying a new one','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(414,7,'口座','an account','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(415,7,'引き落とされる','be charged','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(416,7,'支払われる','be paid　','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(417,7,'金を借りる','borrow','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(418,7,'私の給料は私の銀行預金口座に自動的に振り込まれます','My salary is paid　automatically into my bank account','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(419,7,'料金は直接口座から毎月自動引き落としされます','The bill is charged directly to my bank account every month','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(420,8,'食べほうだい','All you can eat','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(421,8,'請求書','bill','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(422,8,'箸','chopsticks','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(423,8,'炒める','fry','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(424,8,'もしよかったらもっとどうぞ','Have some more, if you like.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(425,8,'これはいかがですか？','How do you like this?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(426,8,'支払いはどうしますか？','How would like to pay?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(427,8,'貴方が食べられないものはなんですか？','Is there anything you don\'t eat?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(428,8,'貴方にとって初めてですか？','Is this your fist time?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(429,8,'ｘｘｘはいかがですか？','Is xxx all right with you?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(430,8,'私に一杯驕らせて下さい','Let me byu drink','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(431,8,'宴会','party','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(432,8,'生卵','raw egg','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(433,8,'炒める','saute','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(434,8,'玉子焼き','sunny side up','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(435,8,'得意な料理はなんですか？','What a your best cooking?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(436,8,'お奨めの料理はなんですか？','What do you recommend?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(437,8,'何にしますか？','What would you like then?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(438,8,'貴方のお奨めはなんですか？','What would you recommend ?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(439,9,'本当ですか？','Are you sure?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(440,9,'私のｘｘｘになって下さい','Be my xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(441,9,'気にしないで','Don’t mind','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(442,9,'聞かないで下さい','Don\'t ask','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(443,9,'がっかりしないで、だいじょうぶだから','Don\'t be disappointed, it is ok','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(444,9,'気にしないで下さい','Don\'t feel bad.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(445,9,'私を誤解しないで下さい','Don\'t get me wrong.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(446,9,'貴方は心配しないで','Don\'t worry.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(447,9,'聞いたことありますか？','Have you heard?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(448,9,'彼は私の命の恩人です','He saven my life','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(449,9,'次の日曜日はいかがですか？','How about next Sunday?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(450,9,'ｘｘｘはいかがですか？','How about xxx?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(451,9,'貴方はどのようにしてこれを見つけましたか？','How did you find out about this?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(452,9,'この映画をどう思いますか？','How do you like this movie?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(453,9,'ｘｘｘをどうするつもりですか？','How going to xxx?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(454,9,'貴方は今までにｘｘｘをした事ありますか？','How you ever xxx?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(455,9,'私は皆に嫌われてます','I am disliked by everybody','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(456,9,'びっくりした','I am surprised','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(457,9,'本当です','I am sure','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(458,9,'私は取ってきます','I get one.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(459,9,'私はｘｘｘが嫌いです','I hate xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(460,9,'私はテニスレッスンをやることに決めた','I have decided to take tennis lessons','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(461,9,'私は間違いを起こしました','I made mistake','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(462,9,'私はそれをもってきます','I take it.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(463,9,'残念ですがｘｘｘと思います','I afraid xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(464,9,'誤解を解きます','I am clearing up a misunderstanding','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(465,9,'がっかりしました','I am disappointed','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(466,9,'私はｘｘｘをするつもりです','I am going to xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(467,9,'私はｘｘｘを望みます','I am hoping xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(468,9,'どういう意味？','I am in the dark','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(469,9,'私はｘｘｘが苦手です','I am no good at xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(470,9,'がっかりしました','I am not satisfied','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(471,9,'忙しいところすみませんが','I am sorry bother you.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(472,9,'そう思います','I believe so','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(473,9,'私は聞こえません','I cannot hear you','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(474,9,'できません','I can\'t do that','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(475,9,'私は聞こえません','I can\'t here you.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(476,9,'理解できません','I did not follow that','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(477,9,'私は貴方に反対します','I disagree with you','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(478,9,'私は気にしません','I don\'t care.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(479,9,'私は手掛かりをつかめません','I don\'t have clue','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(480,9,'私はどうすればいいですか？','I don\'t know how to that.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(481,9,'無理です','I don\'t think it\'s','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(482,9,'貴方は違うと思います','I don\'t think you are right','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(483,9,'貴方は本当に可哀そうです','I feel so bad for you','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(484,9,'私はｘｘｘを継続してます','I have been xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(485,9,'私はダイエットを決心しました','I have decided doing diet','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(486,9,'私は帰宅しなければならない','I have to go home','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(487,9,'私を許して下さい','I hope you will forgive me.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(488,9,'彼女から聞いたので知ってます','I know she told me','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(489,9,'貴方の考えてる事はわかります','I know what you mean','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(490,9,'ｘｘｘを探す','I look for xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(491,9,'私はかつて働き者でした','I used to be hard worker','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(492,9,'私はかつて働いたものだった','I used to work','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(493,9,'私はｘｘｘをしたい','I want to xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(494,9,'私は貴方にｘｘｘをしてもらいたい','I want you to xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(495,9,'やってみます','I will do my best','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(496,9,'私は弁償します','I will pay for any damage','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(497,9,'ちょっと聞いて下さい','I will tell you that xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(498,9,'私はｘｘｘをしたい','I wish to xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(499,9,'成功を祈ります','I wish you success','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(500,9,'もし私が鳥だったら','I wish, I was bird','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(501,9,'私はｘｘｘをしたい','I would like to xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(502,9,'直りますが修理代がかかります','It can be fixed but it will cost.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(503,9,'それはｘｘｘの一種です','It is kind of xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(504,9,'それは私の過失です','It is my fault','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(505,9,'よく似合ってます','It suits you very well.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(506,9,'済みました','It\'s done','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(507,9,'大した事ないよ','It\'s no big deal','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(508,9,'誰にも言わないで下さい','Keep your mouth shut','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(509,9,'聞かないで下さい','No comment','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(510,9,'エマさんのおかげで私は英語が話せます','Thanks to Emma san　I can speak English.　','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(511,9,'その必要はありません','There is no need','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(512,9,'私はここに何を書いたらいいですか？','What do I write here?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(513,9,'何処に行ってたのですか？','What do you been?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(514,9,'どういうことですか？','What do you mean?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(515,9,'貴方はxxxをどうおもいますか？','What do you think about xxx?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(516,9,'目的は何ですか？','What do you want?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(517,9,'私は何をしたらいいですか？','What shall I do?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(518,9,'私は何を持って行ったらいいですか？','What should I bring with me?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(519,9,'私は何をすべきですか？','What should I do for you?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(520,9,'私は何をすべきですか？','What should I do?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(521,9,'我々はどうしたらいいですか？','What should we do?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(522,9,'ここはどこですか？','Where am I?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(523,9,'私は誰でしょう？','Who am I?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(524,9,'だれに','whome','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(525,9,'これはだれのですか？','Whose is it?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(526,9,'さあ　知りません','Why don\'t know?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(527,9,'間違いない','Without a doubt','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(528,9,'貴方は」ｘｘｘしたいですか？','Would you like to xxx？','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(529,9,'冗談でしょう','You are kidding','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(530,9,'うらやましい','You are lucky','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(531,9,'貴方は嫌がっています','You are not in favour of it','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(532,9,'貴方は間違っている','You are wrong','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(533,9,'大丈夫です','You be ok','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(534,9,'貴方の負けです','You have lost','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(535,9,'貴方は悲しそうだ','You look sad','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(536,9,'貴方はｘｘｘそうだ','You look xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(537,9,'上達が早い','You make rapid progress','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(538,9,'貴方はｘｘｘをしたらどうでしょうか','You might want to xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(539,9,'貴方はｘｘｘをした方がいい','You should xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(540,9,'貴方は大丈夫でしょう','You will be all right','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(541,10,'炎症','an inflammation','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(542,10,'出血する','bleed','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(543,10,'彼女は健康保険を持っていましたか？','Did she have health insurance?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(544,10,'入院する','enter a hospital','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(545,10,'より良くなる','getting better','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(546,10,'入院する','hospitalize','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(547,10,'お母さんの具合はいかがですか？','How is your mother?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(548,10,'私はよくなりつつあります','I am getting better','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(549,10,'私は事故にあい、入院中です','I had an accident and has been hospitalised.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(550,10,'そう病','manic','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(551,10,'私の健康はよりよくなっています','My health is getting better ','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(552,10,'病気','sick','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(553,10,'貴方は熱があるなら入らないほうがいいです','When you have a fever you should not really','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(554,10,'風呂に入ってもいいですか？','Would it be ok to take a bath still?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(555,11,'乗り継ぎ便','a connecting flight','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(556,11,'搭乗する','board','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(557,11,'飛行機に乗り込み、そこに行きます','board an airplane and go there.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(558,11,'搭乗手続き','borading procedures','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(559,11,'乗り継ぎ','connecting ','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(560,11,'税関','customs','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(561,11,'通関手続','customs procedure','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(562,11,'出発する','depart','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(563,11,'出発','departure','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(564,11,'出国','departure from a country','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(565,11,'このバスは浜に行きますか？','Does this bus go to beach?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(566,11,'関税','duty','0000-00-00 00:00:00','2009-08-23 12:23:02',10001,0),(567,11,'入国','enter a country','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(568,11,'バスに乗る','get in a bus','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(569,11,'そこに行くにわどうすればいいですか？','How can I get there?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(570,11,'日本の印象はいかがですか？','How do you like Japan?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(571,11,'xxxはここからどのくらいですか？','How far xxx from here?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(572,11,'何日かかりますか？','How many days?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(573,11,'飛行機に乗る','I board an airplane.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(574,11,'私は次のバス停車駅で降車します','I get off at the next bus stop station.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(575,11,'自動車に乗る','I ride in a car.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(576,11,'飛行機に乗る','I take an airplane.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(577,11,'入国','immigrate into a country','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(578,11,'そこは駅から遠いですか？','Is it far from the station?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(579,11,'歩いていける距離です','It\'s with walking distance','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(580,11,'バイクに乗る','ride a byke','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(581,11,'風景','sight','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(582,11,'観光する','sightsee','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(583,11,'観光','sightseeing','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(584,11,'バスに乗る','take a bus','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(585,11,'写真を撮る','take a picture','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(586,11,'出発時間','the time of departure','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(587,11,'部屋のテレビがつきません','The TV does not work in my room','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(588,11,'ここが彼女がタクシーを降りた所です','This is where the taxi dropped her','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(589,11,'経路','transit','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(590,11,'乗り継ぎ手続きは何処ですか？','Where do I check in the connecting flight?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(591,11,'写真を撮っていただけますか？','Will you take picture?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(592,11,'xxx になったら教えて頂けますか？','Would you mind letting me know when we get xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(593,11,'貴方はバスの方がいいです','You should take a bus','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(594,12,'１０年前','10 years before','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(595,12,'１０年後','10 years later','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(596,12,'秀才','a brilliant person','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(597,12,'星座','a constellation','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(598,12,'口癖','a habit saying','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(599,12,'働き者','a hard worker','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(600,12,'少し','a little','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(601,12,'倍数','a multiple','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(602,12,'ｘｘｘの倍数','a multiple of xxx ','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(603,12,'単語帳','a note book for vocabulary','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(604,12,'悩みの種','a source of worry','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(605,12,'単語','a word','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(606,12,'絶対だ','absolutely','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(607,12,'絶対でない','absolutely　not','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(608,12,'受け入れる','accept','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(609,12,'偶然に','accidental by chance','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(610,12,'成し遂げる','accomplish','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(611,12,'ｘｘｘによると','according to xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(612,12,'実は','actually','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(613,12,'足算','addition','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(614,12,'今後','after this','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(615,12,'攻撃的だ','aggressive','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(616,12,'賛成する','agree','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(617,12,'同意','agreement','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(618,12,'許す','allow','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(619,12,'許して','allow me','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(620,12,'も又同様に','also','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(621,12,'常に','always','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(622,12,'驚嘆する','amazed','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(623,12,'怒る','angry','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(624,12,'ひょっとして','any chance','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(625,12,'今はもう','anymore','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(626,12,'誰でも','anyone','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(627,12,'何でも','anything','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(628,12,'何か、何でも','anything else','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(629,12,'いつでも','anytime','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(630,12,'とにかく','anyway','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(631,12,'謝罪','apology','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(632,12,'現れる','appear','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(633,12,'承認する','approve','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(634,12,'この周辺','around here','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(635,12,'今日現在','as for today','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(636,12,'評価','assessment','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(637,12,'避ける','Avoid','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(638,12,'恐れる','be afraid','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(639,12,'ｘｘｘが不得意','be bad xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(640,12,'xxxを基にしている','be based on xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(641,12,'頭が良い','be clever','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(642,12,'残念に思う','be disappointed','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(643,12,'ｘｘｘが行われる','be done xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(644,12,'派手な服装をする','be flashily dressed','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(645,12,'位置する','be located in','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(646,12,'必要である','be necessary','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(647,12,'女性に人気がある','be popular with women','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(648,12,'昇進する','be promoted','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(649,12,'満足する','be satisfied','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(650,12,'驚く','be surprised','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(651,12,'ｘｘｘに教わる','Be taught by xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(652,12,'原因','because of','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(653,12,'xxxの為','because of xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(654,12,'xxxに成る','become xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(655,12,'誘われる','being asked out','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(656,12,'そば','beside','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(657,12,'混ぜる','blend','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(658,12,'勇気','bravery','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(659,12,'放送する','broadcast','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(660,12,'偶然に','by chance','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(661,12,'ところで','by the way','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(662,12,'計算する','calculate','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(663,12,'計算','calculation','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(664,12,'連絡して下さい','Call me back','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(665,12,'落ち着いて下さい','Calm down　please','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(666,12,'来月','caming month','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(667,12,'かも知れない　（可能性大）','can be','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(668,12,'聞こえますか？','Can you hear me?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(669,12,'原因','cause','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(670,12,'祝福する','celebrate','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(671,12,'その通りです','certainly','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(672,12,'その通りでない','certainly not','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(673,12,'移行する','change over','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(674,12,'調べる','check','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(675,12,'元気をだしてください','cheer up','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(676,12,'キリスト','Christ','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(677,12,'雲','cloud','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(678,12,'逢う','come along','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(679,12,'現れる','come out','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(680,12,'やって来る','come over','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(681,12,'伝達する','communicate','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(682,12,'ｘｘｘに関する','concerned xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(683,12,'信頼','confidence','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(684,12,'確認する','confirm','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(685,12,'混乱する','confuse','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(686,12,'合意する','consent','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(687,12,'連絡','contact','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(688,12,'寄与する','contribute','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(689,12,'貢献する','contribute','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(690,12,'会話','conversation','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(691,12,'その通りです(正しい）','correct','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(692,12,'かもしれない　（可能性小）','could be','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(693,12,'最新だ','current','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(694,12,'習慣','custom','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(695,12,'いい加減にしてくれ','Cut it out','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(696,12,'飾り付ける','decorate','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(697,12,'減少','decrease','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(698,12,'頼る','depend','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(699,12,'憂うつで元気がない','depress','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(700,12,'破壊','destruction','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(701,12,'違い','difference','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(702,12,'反対する','disagree','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(703,12,'不満','discontent','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(704,12,'嫌がる','dislike','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(705,12,'割り算','divide','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(706,12,'慌てるな','Don\'t panic','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(707,12,'その都度','each time','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(708,12,'地震訓練','earthquake drill','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(709,12,'気楽な','easy going','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(710,12,'わかり易い','easy to understand','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(711,12,'食い過ぎ','eating to much','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(712,12,'効果','effect','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(713,12,'小学校','elementary school','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(714,12,'他に','else','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(715,12,'帝国','empire','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(716,12,'充分','enough','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(717,12,'評価する','evaluate','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(718,12,'さあ、いってみましょう','Every go','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(719,12,'全てＯＫです','Every thing OK','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(720,12,'誰','everybody','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(721,12,'誰でも','everyone','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(722,12,'全て','everything','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(723,12,'発展','evolution','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(724,12,'その通りです','exactly','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(725,12,'試験','examination','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(726,12,'例','example','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(727,12,'すばらしい','excellent','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(728,12,'除く','except','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(729,12,'予想する','expect','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(730,12,'予想','expectation','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(731,12,'説明する','explain','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(732,12,'延長する、拡張する','extend','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(733,12,'失敗する','fail ','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(734,12,'すばらしい','fantastic','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(735,12,'遠過ぎる','far way','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(736,12,'恐れる','fear','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(737,12,'宗教的な祭り','feast','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(738,12,'女','female','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(739,12,'祭り','festival','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(740,12,'調べる','finｄ out','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(741,12,'花火','fire cracker','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(742,12,'消火訓練','fire drill','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(743,12,'優しい','fond','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(744,12,'しばらく ','for a while','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(745,12,'参考の為に','for your information.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(746,12,'軍隊','force army','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(747,12,'予測','forecast','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(748,12,'許して下さい','Forgive me','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(749,12,'儀式','formality','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(750,12,'公式','formula','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(751,12,'わかったぞ！','found out','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(752,12,'率直に言うと','frankly speaking','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(753,12,'今後','from now on','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(754,12,'燃料','fuel','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(755,12,'ｘｘｘを避ける','get away from xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(756,12,'酔う','get drink','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(757,12,'それはないよ','gimme a break','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(758,12,'よい印象を与える','give a good impression','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(759,12,'うれしい','glad','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(760,12,'どうぞ','Go a head','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(761,12,'外出する','go out','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(762,12,'xxxが得意','good at xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(763,12,'頭が良い','good brain','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(764,12,'有罪','guilty','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(765,12,'手渡す','hand over','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(766,12,'うれしい','happy','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(767,12,'わかりにくい','hard to understand','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(768,12,'会話をする','have a conversation','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(769,12,'収入が多い','have a large income','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(770,12,'ｘｘｘしなければなららい','have got xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(771,12,'ｘｘｘしなければなららい','have to xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(772,12,'地獄','hell','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(773,12,'役にたつ','helpful','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(774,12,'ここにはペンがあります','Here is pen','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(775,12,'これをどうぞ','Here you are?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(776,12,'趣味','hobby','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(777,12,'ちょっと待ってください','Hold on please','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(778,12,'有望な','hopeful','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(779,12,'ｘｘｘの方法','how to get xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(780,12,'つまり','I mean ','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(781,12,'印象、感想','impression','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(782,12,'印象的な','impressive','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(783,12,'たいていの場合','In most cases','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(784,12,'言い換えると','in other word','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(785,12,'昼間、日中','in the daytime','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(786,12,'輸送中に','in transit','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(787,12,'含む','include','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(788,12,'xxxを含めて','including xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(789,12,'収入','Income','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(790,12,'増加する','increase','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(791,12,'示す','indicate','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(792,12,'産業','industry','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(793,12,'幼い','infantile','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(794,12,'影響する','influence','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(795,12,'知らせる','Inform','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(796,12,'検査する','Inspect','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(797,12,'知的','intelligence','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(798,12,'興味、利息','interest','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(799,12,'中断','intermission','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(800,12,'通訳する','interpret','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(801,12,'交差点','intersection','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(802,12,'紹介する','Introduce','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(803,12,'以上ですか？','Is that all?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(804,12,'全部消えてしまった','It is all gone','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(805,12,'参加する','join ','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(806,12,'xxx くらい','just about xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(807,12,'探す','keep looking','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(808,12,'ｘｘｘを避ける','keep out of xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(809,12,'習得する','learn','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(810,12,'去る、出発する','leave ','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(811,12,'長さ、縦','length','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(812,12,'うそ','liar','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(813,12,'解放する','liberate','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(814,12,'この様に','like this','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(815,12,'長い','long','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(816,12,'ｘｘｘに似ている','look like xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(817,12,'失う','lose','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(818,12,'出血する','lose blood','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(819,12,'敗北','loss','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(820,12,'多く','lot of','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(821,12,'音を大きく','louder ','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(822,12,'誤りを犯す','make a mistake ','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(823,12,'うまくやれ','Make it good','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(824,12,'男','male','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(825,12,'多く','many','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(826,12,'物質','matter','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(827,12,'多分','maybe','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(828,12,'測定する','measure','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(829,12,'かもしれない','might','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(830,12,'混ぜる','mix','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(831,12,'間違い、手違い','mix-up','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(832,12,'多くの','most','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(833,12,'動作','movement','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(834,12,'多く','much','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(835,12,'掛け算','multiplication','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(836,12,'xxxをしなければならない','must xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(837,12,'私の番です','my time','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(838,12,'原住民','native','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(839,12,'消極的','negative','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(840,12,'貴方は気にしないで','never mind','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(841,12,'隣','next-door','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(842,12,'いいえ　私は真剣です','No I am serious','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(843,12,'ダメです','No way','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(844,12,'貴族、高貴だ','noble','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(845,12,'許されない','not allowed','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(846,12,'無罪','not guilty','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(847,12,'xxxをさせないで下さい','Not let me xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(848,12,'注意','notice','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(849,12,'申し出','offer','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(850,12,'びっくりした','Oh my Goth','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(851,12,'時々','Once in a while','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(852,12,'もう一度','one more','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(853,12,'意見','opinion','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(854,12,'あっち','over there','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(855,12,'過負荷','overload','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(856,12,'清算する','paid off','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(857,12,'痛み','pain','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(858,12,'過去','past','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(859,12,'ＰＣは故障しました','PC has broken down.','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(860,12,'多分','perhaps','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(861,12,'許可','permission','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(862,12,'物理的、肉体','physical','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(863,12,'個々に','piece by piece','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(864,12,'ｘｘｘに来てください','Please come down to the xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(865,12,'喜ぶ','pleased','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(866,12,'示す','point out','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(867,12,'方針','policy','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(868,12,'礼儀正しい','polite','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(869,12,'位置する','position','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(870,12,'積極的','positive','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(871,12,'実行する','practice','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(872,12,'ｘｘｘを祈る','pray for xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(873,12,'現代','present ','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(874,12,'小学校','primary school','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(875,12,'進歩','progress','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(876,12,'浄化する','purify','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(877,12,'目的','purpose','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(878,12,'信頼する','put confidence','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(879,12,'量より質','Quality is more important than quantity','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(880,12,'急速だ','rapid','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(881,12,'本当','really','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(882,12,'受け取る','receive','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(883,12,'受付','reception','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(884,12,'再配置する','relocate','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(885,12,'尊敬する','respect','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(886,12,'改訂する','revise','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(887,12,'改訂','revision','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(888,12,'居ます','right here','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(889,12,'残念ですがだめです','sadly,no','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(890,12,'満足','satisfaction ','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(891,12,'おびえる','scared','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(892,12,'場面','scene','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(893,12,'廃棄する','scrap','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(894,12,'真剣に','serious','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(895,12,'ｘｘｘをすべきである','should xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(896,12,'示す','show','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(897,12,'派手な','showy','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(898,12,'並んで','side by side','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(899,12,'それ以来','since ','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(900,12,'敷地','site','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(901,12,'さあどうしようか？','So what\'re we gonna do?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(902,12,'解決、解答','solution','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(903,12,'もっと','some more','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(904,12,'いくつか欠けてます','some of the items are missing','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(905,12,'誰か','someone','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(906,12,'何か','something','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(907,12,'そのうち','sometime','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(908,12,'どこか','somewhere','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(909,12,'過す、費やす','spend','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(910,12,'時間を多く費やす','spend to much time','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(911,12,'四角形','square','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(912,12,'州、国家','state','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(913,12,'構築','structur','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(914,12,'引き算','subtraction','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(915,12,'成功する','succeed','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(916,12,'苦しむ','suffer','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(917,12,'囲む','surround','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(918,12,'xxxを見て','take a look xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(919,12,'気楽にやろう','take it easy','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(920,12,'メモする','take notes','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(921,12,'早口','talking quickly','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(922,12,'何だって！','talking about','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(923,12,'税金','tax','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(924,12,'教える','teach','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(925,12,'望遠鏡','telescope','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(926,12,'告げる','tell','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(927,12,'誘いをかける','tempt','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(928,12,'誘い','temptation','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(929,12,'10分前に','ten minute go','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(930,12,'今日の授業は以上です','That all today lesson','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(931,12,'すばらしい','That\'s cool','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(932,12,'おもしろい','That\'s fonny','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(933,12,'それだけです','That\'s it','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(934,12,'その通りです','That\'s right','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(935,12,'ＣＤが入らないのですが','The CD won\'t go in','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(936,12,'あさって','the day after tomorrow','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(937,12,'おととい','the day before yesterday','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(938,12,'理論','Theory','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(939,12,'そこ','there','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(940,12,'考える','think','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(941,12,'こっち','this way','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(942,12,'考え','thought','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(943,12,'正直に言うと','to be honest','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(944,12,'追跡する','trace','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(945,12,'小道','track','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(946,12,'従来の','traditional','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(947,12,'転送する','transfer','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(948,12,'翻訳する','translate','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(949,12,'三角形','triangle','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(950,12,'貨物車','truck','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(951,12,'信頼する','trust','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(952,12,'努力する','try hard','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(953,12,'テレビ局','TV station','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(954,12,'たそがれ','twilight','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(955,12,'典型的な','typical','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(956,12,'唯一の','unique','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(957,12,'ｘｘｘと違って','unlike　ｘｘｘ','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(958,12,'xxxまで状態が続く','untill xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(959,12,'調子を狂わす','upset','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(960,12,'緊急だ','urgent','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(961,12,'物の用法','usage','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(962,12,'かってｘｘｘしたものだ','used to xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(963,12,'かってｘｘｘだった','used to be xxx','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(964,12,'便利な','useful','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(965,12,'通常の','usual','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(966,12,'消滅する','vanish','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(967,12,'単語集','vocabulary','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(968,12,'財布','wallet','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(969,12,'お願い！','Want you please','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(970,12,'充分にあります','We have enough','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(971,12,'泣く','weep','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(972,12,'まあ、しょうがないか！','Well and good','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(973,12,'どうしたらいいですか？','What should I do?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(974,12,'なんのこと？','What about?','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(975,12,'だれの','whose','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(976,12,'習慣','wont','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(977,12,'書き留める','write down','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0),(978,12,'ｘｘｘが故障で機能しない','xxx does not work','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0);
/*!40000 ALTER TABLE `m_study` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Temporary table structure for view `v_category2`
--

DROP TABLE IF EXISTS `v_category2`;
/*!50001 DROP VIEW IF EXISTS `v_category2`*/;
/*!50001 CREATE TABLE `v_category2` (
  `id_category2` int(10) unsigned,
  `id_category` int(10) unsigned,
  `c_category2Name` varchar(50),
  `c_category2DisplayOrder` int(10) unsigned,
  `c_registtime` datetime,
  `c_updatetime` datetime,
  `c_delete` int(10) unsigned,
  `c_categoryName` varchar(50),
  `c_categoryDisplayOrder` int(10) unsigned
) */;

--
-- Temporary table structure for view `v_category_valid`
--

DROP TABLE IF EXISTS `v_category_valid`;
/*!50001 DROP VIEW IF EXISTS `v_category_valid`*/;
/*!50001 CREATE TABLE `v_category_valid` (
  `id_category` int(10) unsigned,
  `c_categoryName` varchar(50),
  `c_categoryDisplayOrder` int(10) unsigned,
  `c_delete` int(10) unsigned
) */;

--
-- Temporary table structure for view `v_mycheck`
--

DROP TABLE IF EXISTS `v_mycheck`;
/*!50001 DROP VIEW IF EXISTS `v_mycheck`*/;
/*!50001 CREATE TABLE `v_mycheck` (
  `id_mycheck` int(10) unsigned,
  `id_account` int(10) unsigned,
  `c_check` int(10) unsigned,
  `c_registtime` datetime,
  `c_updatetime` datetime,
  `id_study` int(10) unsigned,
  `c_question` longtext,
  `c_answer` longtext,
  `c_categoryName` varchar(50),
  `c_categoryDisplayOrder` int(10) unsigned,
  `c_category2Name` varchar(50),
  `c_category2DisplayOrder` int(10) unsigned
) */;

--
-- Temporary table structure for view `v_study`
--

DROP TABLE IF EXISTS `v_study`;
/*!50001 DROP VIEW IF EXISTS `v_study`*/;
/*!50001 CREATE TABLE `v_study` (
  `id_study` int(10) unsigned,
  `id_category2` int(10) unsigned,
  `c_question` longtext,
  `c_answer` longtext,
  `c_registtime` datetime,
  `c_updatetime` datetime,
  `c_update_account` int(10) unsigned,
  `c_delete` int(10) unsigned,
  `id_category` int(10) unsigned,
  `c_categoryName` varchar(50),
  `c_categoryDisplayOrder` int(10) unsigned,
  `c_category2Name` varchar(50),
  `c_category2DisplayOrder` int(10) unsigned
) */;

--
-- Final view structure for view `v_category2`
--

/*!50001 DROP TABLE `v_category2`*/;
/*!50001 DROP VIEW IF EXISTS `v_category2`*/;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `v_category2` AS select `m_category2`.`id_category2` AS `id_category2`,`m_category2`.`id_category` AS `id_category`,`m_category2`.`c_category2Name` AS `c_category2Name`,`m_category2`.`c_category2DisplayOrder` AS `c_category2DisplayOrder`,`m_category2`.`c_registtime` AS `c_registtime`,`m_category2`.`c_updatetime` AS `c_updatetime`,`m_category2`.`c_delete` AS `c_delete`,`m_category`.`c_categoryName` AS `c_categoryName`,`m_category`.`c_categoryDisplayOrder` AS `c_categoryDisplayOrder` from (`m_category2` left join `m_category` on((`m_category2`.`id_category` = `m_category`.`id_category`))) where (`m_category2`.`c_delete` = 0) */;

--
-- Final view structure for view `v_category_valid`
--

/*!50001 DROP TABLE `v_category_valid`*/;
/*!50001 DROP VIEW IF EXISTS `v_category_valid`*/;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `v_category_valid` AS select distinct `m_category`.`id_category` AS `id_category`,`m_category`.`c_categoryName` AS `c_categoryName`,`m_category`.`c_categoryDisplayOrder` AS `c_categoryDisplayOrder`,`m_category`.`c_delete` AS `c_delete` from (`m_category` join `m_category2` on((`m_category`.`id_category` = `m_category2`.`id_category`))) where (`m_category`.`c_delete` = 0) */;

--
-- Final view structure for view `v_mycheck`
--

/*!50001 DROP TABLE `v_mycheck`*/;
/*!50001 DROP VIEW IF EXISTS `v_mycheck`*/;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `v_mycheck` AS select `m_mycheck`.`id_mycheck` AS `id_mycheck`,`m_mycheck`.`id_account` AS `id_account`,`m_mycheck`.`c_check` AS `c_check`,`m_mycheck`.`c_registtime` AS `c_registtime`,`m_mycheck`.`c_updatetime` AS `c_updatetime`,`v_study`.`id_study` AS `id_study`,`v_study`.`c_question` AS `c_question`,`v_study`.`c_answer` AS `c_answer`,`v_study`.`c_categoryName` AS `c_categoryName`,`v_study`.`c_categoryDisplayOrder` AS `c_categoryDisplayOrder`,`v_study`.`c_category2Name` AS `c_category2Name`,`v_study`.`c_category2DisplayOrder` AS `c_category2DisplayOrder` from (`v_study` left join `m_mycheck` on((`m_mycheck`.`id_study` = `v_study`.`id_study`))) */;

--
-- Final view structure for view `v_study`
--

/*!50001 DROP TABLE `v_study`*/;
/*!50001 DROP VIEW IF EXISTS `v_study`*/;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`root`@`localhost` SQL SECURITY DEFINER */
/*!50001 VIEW `v_study` AS select `m_study`.`id_study` AS `id_study`,`m_study`.`id_category2` AS `id_category2`,`m_study`.`c_question` AS `c_question`,`m_study`.`c_answer` AS `c_answer`,`m_study`.`c_registtime` AS `c_registtime`,`m_study`.`c_updatetime` AS `c_updatetime`,`m_study`.`c_update_account` AS `c_update_account`,`m_study`.`c_delete` AS `c_delete`,`v_category2`.`id_category` AS `id_category`,`v_category2`.`c_categoryName` AS `c_categoryName`,`v_category2`.`c_categoryDisplayOrder` AS `c_categoryDisplayOrder`,`v_category2`.`c_category2Name` AS `c_category2Name`,`v_category2`.`c_category2DisplayOrder` AS `c_category2DisplayOrder` from (`m_study` left join `v_category2` on((`m_study`.`id_category2` = `v_category2`.`id_category2`))) where (`m_study`.`c_delete` = 0) */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2009-08-28 11:13:19
