t 2.4.0 → 2.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 21fe202b12086232bb16595821aa4ac6a0b91ce8
4
+ data.tar.gz: f2039d17a4b7906bb14c374755a58ca335f2d50a
5
+ SHA512:
6
+ metadata.gz: 4c03e3b542d43a71f756e74389c43ba5ed6e29f0f84631ea69ac341e4adf4b2ff53a8c082d3e458edff9310ea36fb805d404685c0289eaac8a688e6076df7ca6
7
+ data.tar.gz: 2aaf61577aeba5a14e9471fa4ba0e175a7830a27cdf1f4a14233560f651de713eff8bb5135c41d6a6d861d86fc7542bd706843af282e4d436b7da42863145fc8
data/README.md CHANGED
@@ -2,11 +2,11 @@
2
2
  [icon]: https://github.com/sferik/t/raw/master/icon/t.png
3
3
 
4
4
  # Twitter CLI
5
- [![Gem Version](https://badge.fury.io/rb/t.png)][gem]
6
- [![Build Status](https://secure.travis-ci.org/sferik/t.png?branch=master)][travis]
7
- [![Dependency Status](https://gemnasium.com/sferik/t.png?travis)][gemnasium]
8
- [![Coverage Status](https://coveralls.io/repos/sferik/t/badge.png?branch=master)][coveralls]
9
- [![Gittip](http://img.shields.io/gittip/gems.png)][gittip]
5
+ [![Gem Version](http://img.shields.io/gem/v/t.svg)][gem]
6
+ [![Build Status](http://img.shields.io/travis/sferik/t.svg)][travis]
7
+ [![Dependency Status](http://img.shields.io/gemnasium/sferik/t.svg)][gemnasium]
8
+ [![Coverage Status](http://img.shields.io/coveralls/sferik/t.svg)][coveralls]
9
+ [![Gittip](http://img.shields.io/gittip/gems.svg)][gittip]
10
10
 
11
11
  [gem]: https://rubygems.org/gems/t
12
12
  [travis]: http://travis-ci.org/sferik/t
data/lib/t/cli.rb CHANGED
@@ -25,6 +25,7 @@ module T
25
25
 
26
26
  DEFAULT_NUM_RESULTS = 20
27
27
  DIRECT_MESSAGE_HEADINGS = ['ID', 'Posted at', 'Screen name', 'Text']
28
+ MAX_SEARCH_RESULTS = 100
28
29
  TREND_HEADINGS = ['WOEID', 'Parent ID', 'Type', 'Name', 'Country']
29
30
 
30
31
  check_unknown_options!
@@ -55,14 +56,13 @@ module T
55
56
  if @rcfile.empty?
56
57
  say "Welcome! Before you can use t, you'll first need to register an"
57
58
  say 'application with Twitter. Just follow the steps below:'
58
- say ' 1. Sign in to the Twitter Developer site and click'
59
- say " \"Create a new application\"."
59
+ say ' 1. Sign in to the Twitter Application Management site and click'
60
+ say ' "Create New App".'
60
61
  say ' 2. Complete the required fields and submit the form.'
61
62
  say ' Note: Your application must have a unique name.'
62
- say " We recommend: \"<your handle>/t\"."
63
- say ' 3. Go to the Settings tab of your application, and change the'
64
- say " Access setting to \"Read, Write and Access direct messages\"."
65
- say ' 4. Go to the Details tab to view the consumer key and secret,'
63
+ say ' 3. Go to the Permissions tab of your application, and change the'
64
+ say ' Access setting to "Read, Write and Access direct messages".'
65
+ say ' 4. Go to the API Keys tab to view the consumer key and secret,'
66
66
  say " which you'll need to copy and paste below when prompted."
67
67
  say
68
68
  ask 'Press [Enter] to open the Twitter Developer site.'
@@ -78,9 +78,9 @@ module T
78
78
  say
79
79
  end
80
80
  require 'launchy'
81
- open_or_print('https://dev.twitter.com/apps', :dry_run => options['display-uri'])
82
- key = ask 'Enter your consumer key:'
83
- secret = ask 'Enter your consumer secret:'
81
+ open_or_print('https://apps.twitter.com', :dry_run => options['display-uri'])
82
+ key = ask 'Enter your API key:'
83
+ secret = ask 'Enter your API secret:'
84
84
  consumer = OAuth::Consumer.new(key, secret, :site => Twitter::REST::Client::ENDPOINT)
85
85
  request_token = consumer.get_request_token
86
86
  uri = generate_authorize_uri(consumer, request_token)
@@ -88,7 +88,7 @@ module T
88
88
  say 'In a moment, you will be directed to the Twitter app authorization page.'
89
89
  say 'Perform the following steps to complete the authorization process:'
90
90
  say ' 1. Sign in to Twitter.'
91
- say " 2. Press \"Authorize app\"."
91
+ say ' 2. Press "Authorize app".'
92
92
  say ' 3. Copy and paste the supplied PIN below when prompted.'
93
93
  say
94
94
  ask 'Press [Enter] to open the Twitter app authorization page.'
@@ -499,7 +499,13 @@ module T
499
499
  end
500
500
 
501
501
  desc 'matrix', 'Unfortunately, no one can be told what the Matrix is. You have to see it for yourself.'
502
- def_delegator :"T::Stream.new", :matrix # rubocop:disable SymbolName
502
+ def matrix
503
+ opts = {:count => MAX_SEARCH_RESULTS, :include_entities => false}
504
+ tweets = client.search('lang:ja', opts)
505
+ tweets.each do |tweet|
506
+ say(tweet.text.gsub(/[^\u3000\u3040-\u309f]/, '').reverse, [:bold, :green, :on_black], false)
507
+ end
508
+ end
503
509
 
504
510
  desc 'mentions', "Returns the #{DEFAULT_NUM_RESULTS} most recent Tweets mentioning you."
505
511
  method_option 'csv', :aliases => '-c', :type => :boolean, :desc => 'Output in CSV format.'
data/lib/t/stream.rb CHANGED
@@ -28,6 +28,8 @@ module T
28
28
  method_option 'csv', :aliases => '-c', :type => :boolean, :desc => 'Output in CSV format.'
29
29
  method_option 'decode_uris', :aliases => '-d', :type => :boolean, :desc => 'Decodes t.co URLs into their original form.'
30
30
  method_option 'long', :aliases => '-l', :type => :boolean, :desc => 'Output in long format.'
31
+ method_option 'no-replies', :type => :boolean, :desc => 'Exclude replies.'
32
+ method_option 'no-retweets', :type => :boolean, :desc => 'Exclude retweets.'
31
33
  def all
32
34
  streaming_client.before_request do
33
35
  if options['csv']
@@ -42,6 +44,8 @@ module T
42
44
  end
43
45
  streaming_client.sample do |tweet|
44
46
  next unless tweet.is_a?(Twitter::Tweet)
47
+ next if options['no-replies'] && tweet.reply?
48
+ next if options['no-retweets'] && tweet.retweet?
45
49
  if options['csv']
46
50
  print_csv_tweet(tweet)
47
51
  elsif options['long']
@@ -60,6 +64,8 @@ module T
60
64
  method_option 'decode_uris', :aliases => '-d', :type => :boolean, :desc => 'Decodes t.co URLs into their original form.'
61
65
  method_option 'id', :aliases => '-i', :type => :boolean, :desc => 'Specify user via ID instead of screen name.'
62
66
  method_option 'long', :aliases => '-l', :type => :boolean, :desc => 'Output in long format.'
67
+ method_option 'no-replies', :type => :boolean, :desc => 'Exclude replies.'
68
+ method_option 'no-retweets', :type => :boolean, :desc => 'Exclude retweets.'
63
69
  method_option 'reverse', :aliases => '-r', :type => :boolean, :desc => 'Reverse the order of the sort.'
64
70
  def list(user_list)
65
71
  owner, list_name = extract_owner(user_list, options)
@@ -74,6 +80,8 @@ module T
74
80
  user_ids = client.list_members(owner, list_name).collect(&:id)
75
81
  streaming_client.filter(:follow => user_ids.join(',')) do |tweet|
76
82
  next unless tweet.is_a?(Twitter::Tweet)
83
+ next if options['no-replies'] && tweet.reply?
84
+ next if options['no-retweets'] && tweet.retweet?
77
85
  if options['csv']
78
86
  print_csv_tweet(tweet)
79
87
  elsif options['long']
@@ -90,9 +98,14 @@ module T
90
98
 
91
99
  desc 'matrix', 'Unfortunately, no one can be told what the Matrix is. You have to see it for yourself.'
92
100
  def matrix
101
+ require 't/cli'
102
+ streaming_client.before_request do
103
+ cli = T::CLI.new
104
+ cli.matrix
105
+ end
93
106
  streaming_client.sample(:language => 'ja') do |tweet|
94
107
  next unless tweet.is_a?(Twitter::Tweet)
95
- say(tweet.full_text.gsub("\n", '').reverse, [:bold, :green, :on_black])
108
+ say(tweet.text.gsub(/[^\u3000\u3040-\u309f]/, '').reverse, [:bold, :green, :on_black], false)
96
109
  end
97
110
  end
98
111
 
@@ -100,6 +113,8 @@ module T
100
113
  method_option 'csv', :aliases => '-c', :type => :boolean, :desc => 'Output in CSV format.'
101
114
  method_option 'decode_uris', :aliases => '-d', :type => :boolean, :desc => 'Decodes t.co URLs into their original form.'
102
115
  method_option 'long', :aliases => '-l', :type => :boolean, :desc => 'Output in long format.'
116
+ method_option 'no-replies', :type => :boolean, :desc => 'Exclude replies.'
117
+ method_option 'no-retweets', :type => :boolean, :desc => 'Exclude retweets.'
103
118
  def search(keyword, *keywords)
104
119
  keywords.unshift(keyword)
105
120
  require 't/search'
@@ -112,6 +127,8 @@ module T
112
127
  end
113
128
  streaming_client.filter(:track => keywords.join(',')) do |tweet|
114
129
  next unless tweet.is_a?(Twitter::Tweet)
130
+ next if options['no-replies'] && tweet.reply?
131
+ next if options['no-retweets'] && tweet.retweet?
115
132
  if options['csv']
116
133
  print_csv_tweet(tweet)
117
134
  elsif options['long']
@@ -129,6 +146,8 @@ module T
129
146
  method_option 'csv', :aliases => '-c', :type => :boolean, :desc => 'Output in CSV format.'
130
147
  method_option 'decode_uris', :aliases => '-d', :type => :boolean, :desc => 'Decodes t.co URLs into their original form.'
131
148
  method_option 'long', :aliases => '-l', :type => :boolean, :desc => 'Output in long format.'
149
+ method_option 'no-replies', :type => :boolean, :desc => 'Exclude replies.'
150
+ method_option 'no-retweets', :type => :boolean, :desc => 'Exclude retweets.'
132
151
  def timeline
133
152
  require 't/cli'
134
153
  streaming_client.before_request do
@@ -140,6 +159,8 @@ module T
140
159
  end
141
160
  streaming_client.user do |tweet|
142
161
  next unless tweet.is_a?(Twitter::Tweet)
162
+ next if options['no-replies'] && tweet.reply?
163
+ next if options['no-retweets'] && tweet.retweet?
143
164
  if options['csv']
144
165
  print_csv_tweet(tweet)
145
166
  elsif options['long']
@@ -157,6 +178,8 @@ module T
157
178
  method_option 'csv', :aliases => '-c', :type => :boolean, :desc => 'Output in CSV format.'
158
179
  method_option 'decode_uris', :aliases => '-d', :type => :boolean, :desc => 'Decodes t.co URLs into their original form.'
159
180
  method_option 'long', :aliases => '-l', :type => :boolean, :desc => 'Output in long format.'
181
+ method_option 'no-replies', :type => :boolean, :desc => 'Exclude replies.'
182
+ method_option 'no-retweets', :type => :boolean, :desc => 'Exclude retweets.'
160
183
  def users(user_id, *user_ids)
161
184
  user_ids.unshift(user_id)
162
185
  user_ids.collect!(&:to_i)
@@ -173,6 +196,8 @@ module T
173
196
  end
174
197
  streaming_client.filter(:follow => user_ids.join(',')) do |tweet|
175
198
  next unless tweet.is_a?(Twitter::Tweet)
199
+ next if options['no-replies'] && tweet.reply?
200
+ next if options['no-retweets'] && tweet.retweet?
176
201
  if options['csv']
177
202
  print_csv_tweet(tweet)
178
203
  elsif options['long']
data/lib/t/version.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  module T
2
2
  class Version
3
3
  MAJOR = 2
4
- MINOR = 4
4
+ MINOR = 5
5
5
  PATCH = 0
6
6
  PRE = nil
7
7
 
data/spec/cli_spec.rb CHANGED
@@ -52,9 +52,9 @@ testcli
52
52
  it 'requests the correct resource' do
53
53
  expect($stdout).to receive(:print)
54
54
  expect($stdin).to receive(:gets).and_return("\n")
55
- expect($stdout).to receive(:print).with('Enter your consumer key: ')
55
+ expect($stdout).to receive(:print).with('Enter your API key: ')
56
56
  expect($stdin).to receive(:gets).and_return('abc123')
57
- expect($stdout).to receive(:print).with('Enter your consumer secret: ')
57
+ expect($stdout).to receive(:print).with('Enter your API secret: ')
58
58
  expect($stdin).to receive(:gets).and_return('asdfasd223sd2')
59
59
  expect($stdout).to receive(:print).with('Press [Enter] to open the Twitter app authorization page. ')
60
60
  expect($stdin).to receive(:gets).and_return("\n")
@@ -69,9 +69,9 @@ testcli
69
69
  expect do
70
70
  expect($stdout).to receive(:print)
71
71
  expect($stdin).to receive(:gets).and_return("\n")
72
- expect($stdout).to receive(:print).with('Enter your consumer key: ')
72
+ expect($stdout).to receive(:print).with('Enter your API key: ')
73
73
  expect($stdin).to receive(:gets).and_return('abc123')
74
- expect($stdout).to receive(:print).with('Enter your consumer secret: ')
74
+ expect($stdout).to receive(:print).with('Enter your API secret: ')
75
75
  expect($stdin).to receive(:gets).and_return('asdfasd223sd2')
76
76
  expect($stdout).to receive(:print).with('Press [Enter] to open the Twitter app authorization page. ')
77
77
  expect($stdin).to receive(:gets).and_return("\n")
@@ -90,9 +90,9 @@ testcli
90
90
  it 'requests the correct resource' do
91
91
  expect($stdout).to receive(:print)
92
92
  expect($stdin).to receive(:gets).and_return("\n")
93
- expect($stdout).to receive(:print).with('Enter your consumer key: ')
93
+ expect($stdout).to receive(:print).with('Enter your API key: ')
94
94
  expect($stdin).to receive(:gets).and_return('abc123')
95
- expect($stdout).to receive(:print).with('Enter your consumer secret: ')
95
+ expect($stdout).to receive(:print).with('Enter your API secret: ')
96
96
  expect($stdin).to receive(:gets).and_return('asdfasd223sd2')
97
97
  expect($stdout).to receive(:print).with('Press [Enter] to open the Twitter app authorization page. ')
98
98
  expect($stdin).to receive(:gets).and_return("\n")
@@ -107,9 +107,9 @@ testcli
107
107
  expect do
108
108
  expect($stdout).to receive(:print)
109
109
  expect($stdin).to receive(:gets).and_return("\n")
110
- expect($stdout).to receive(:print).with('Enter your consumer key: ')
110
+ expect($stdout).to receive(:print).with('Enter your API key: ')
111
111
  expect($stdin).to receive(:gets).and_return('abc123')
112
- expect($stdout).to receive(:print).with('Enter your consumer secret: ')
112
+ expect($stdout).to receive(:print).with('Enter your API secret: ')
113
113
  expect($stdin).to receive(:gets).and_return('asdfasd223sd2')
114
114
  expect($stdout).to receive(:print).with('Press [Enter] to open the Twitter app authorization page. ')
115
115
  expect($stdin).to receive(:gets).and_return("\n")
@@ -2186,6 +2186,22 @@ ID Created at Screen name Slug Members Subscribers Mode ...
2186
2186
  end
2187
2187
  end
2188
2188
 
2189
+ describe '#matrix' do
2190
+ before do
2191
+ stub_get('/1.1/search/tweets.json').with(:query => {:q => 'lang:ja', :count => 100, :include_entities => 'false'}).to_return(:body => fixture('matrix.json'))
2192
+ stub_get('/1.1/search/tweets.json').with(:query => {:q => 'lang:ja', :count => 100, :max_id => '434642935557021697'}).to_return(:body => fixture('empty_cursor.json'))
2193
+ end
2194
+ it 'requests the correct resource' do
2195
+ @cli.matrix
2196
+ expect(a_get('/1.1/search/tweets.json').with(:query => {:q => 'lang:ja', :count => 100, :include_entities => 'false'})).to have_been_made
2197
+ expect(a_get('/1.1/search/tweets.json').with(:query => {:q => 'lang:ja', :count => 100, :max_id => '434642935557021697'})).to have_been_made
2198
+ end
2199
+ it 'has the correct output' do
2200
+ @cli.matrix
2201
+ expect($stdout.string).to eq('すまてっんさすでらなるあでかんせまいるきでいおすでいたりにずらさなもはういとざいうよいなしにいおでんせまてっはもらかのはにののずらかかるれらけでついらかがはがすでろこといたいとにいおにばらなくいばれたあんゃちあさかじましたあいしのくうよめやのうとこういうそたみてっがんくをまさかうょしでのるれくていでいてってっねよるれなくとのもなんみばれなくとのがいななんそよいなくしてしかんけでのとのいいゃちめ んくけったっだもどけるあはえたっあてっのやににめたのあたっかしこそあしだうそもなねうろだんるなになとっもらたてっにもしもるうおんぶたすまりなにはにかいちんゃにぃちほでいなしにのいいばれしことななんみわだいわこま  いたきのわふわっふくじたすましらかいならわたでんびにでれそんけやなかのたっゃちしとかよたてちにのねいさだくてきすましにりぱっやにいつがたしまりあはろことうろいろいあまねんもだにうとがりあいなてえかしとこたれらててれさてれさてれさきはいなてえうなるがゃちっめつっおいばやらかたてっすでのいばやいばやまんほねよすでかだんなかたしでうそりはやいわかりきっすしがんせまりあはでのていつにのなかのいなはにいらくるがなもとまてめせるけぬしをるすいならをるすいなてめじなにずらわかかもにのなとんにあにあてうゃちんさばおよすでてくなゃじすではのるてっがんさがすましででのいなおはてっあがつやるすにいたみをるあのとのるでいなきでかしではんくどんえっへすでみらたぎすらかんさのらかれこかすでるけべとっずをねいさだくでんにでのなびなんそてんなだねるめたかとこのせゆるねいがすさたっかはのこいなえりあぇふっぇふっぇふいらくとだらかだいらくでいたみゃちっめっもはてくないくしてっやのゆこそこきとなんこういてみのたしねどけうといぞうどるえもでんなででのみるぐいぬでさのでででべなきでききでるてっでぬいねもでくつりがのうよしうどいなくたきうもわこのだねすでうそええいなえかしおらかてっとおよだのいがのてっなくないがういとだぎゃじなをたっかなえとおでまだんでんをのてきてちおらかかったっかなくきのけにいたけにをいなえかしにでてべすのいらくれそできがにももいたりをのそるえうそとたっかよにとこたえにえかすまりかわかるいてっがすまいでんがいながすでのるすをいむにのるすのるいていかをたまてっよにくいてっがらかりすうよたれさにまさいながいのとのるてったいとっょちぜだんなつやいいるてっなにとこなてれがのそっくみいたきいるあではにずはいがりよえかちてしとにせらがにでたえばつにでのるすをれことんほ いのと すがるかわるてしはのてんないならをれあるあがぁぁぁぐっっべやかえねゃじんすらなれこよてままいがとれそねよいもれそぱっやをいいねてしごをいしうとがりあもうとがりあもいさゃにみすやおいまうがのすましいおばろぉふらたっかよすまきだたいてせさろぉふすまいざごうとがりあのたしまりなくすできらかいのこたみていかたてってっいたみていにすまいざごうよはおすではつつらからかうもちっこうそあわうたっへこどにでとるぎすなんみがのうよてしのかはのいがかだとみゃしくにうよすまりあでるれでがのにのたっやいてっらこいによはらかだたっかなかついかしいらくいえてえかすまてっでねすでりえかおよたっゃちっいさなんめごたしあうろやでらながっええたしましうとがりあうろをできいさなみすやおるらがなえをいなのくべるなかうこでういうどのでかしつかはてさいばやはれそいばやいばやんらまたんらまたうもらかやきたっかとんほいめやおいなけでどけいたき')
2202
+ end
2203
+ end
2204
+
2189
2205
  describe '#mentions' do
2190
2206
  before do
2191
2207
  stub_get('/1.1/statuses/mentions_timeline.json').with(:query => {:count => '20', :include_entities => 'false'}).to_return(:body => fixture('statuses.json'))
@@ -0,0 +1 @@
1
+ {"statuses":[{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935930302465,"id_str":"434642935930302465","text":"\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u304a\u9858\u3044\u3067\u304d\u308b\u4eba\u3044\u307e\u305b\u3093\u304b\uff1f\u65e5\u672c\u8a9e\u3067\u793c\u7bc0\u3042\u308b\u4eba\u306a\u3089\u30aa\u30fc\u30eb\u30aa\u30c3\u30b1\u30fc\u3067\u3059\u3002\u7686\u3055\u3093\u5f85\u3063\u3066\u307e\u3059\uff01","source":"\u003ca href=\"http:\/\/tiger.s601.xrea.com\/tokenget.php\" rel=\"nofollow\"\u003e\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u652f\u63f4\u30c4\u30fc\u30eb\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2326336058,"id_str":"2326336058","name":"\u5927\u6c5f \u6075\u68a8\u9999","screen_name":"ooe_erika","location":"","description":"\u30b3\u30fc\u30e9\u306f\u30da\u30d7\u30b7\u6d3e","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":217,"friends_count":0,"listed_count":1,"created_at":"Tue Feb 04 02:13:31 +0000 2014","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2027,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/431345339526696960\/zWL79NTu_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/431345339526696960\/zWL79NTu_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935930294272,"id_str":"434642935930294272","text":"@rnexo \u5165\u308a\u305f\u3044\u3067\u3059\uff01(*^\u25ef^*)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":431765318310977536,"in_reply_to_status_id_str":"431765318310977536","in_reply_to_user_id":1722000524,"in_reply_to_user_id_str":"1722000524","in_reply_to_screen_name":"rnexo","user":{"id":2297256835,"id_str":"2297256835","name":"\u8c9d\u8c9d","screen_name":"xoxo_404","location":"","description":"TVXQ\/EXO\/Bigeast\/SMfamily\/ \u57fa\u672c\u540c\u3058\u5302\u3044\u306b\u304a\u3044\u304c\u3059\u308b\u4eba\u30d5\u30a9\u30ed\u3057\u307e\u3059^ ^\u2661\u3082\u3063\u3068\u30c8\u30f3\u307a\u3093\u3055\u3093\u3068\u4ef2\u826f\u304f\u306a\u308a\u305f\u3044JK\u3067\u3059(^_\u2212)\u2212\u2606\u30d5\u30a9\u30ed\u3088\u308d\u3057\u304f\u3067\u3059\u263b\u30d5\u30a9\u30ed\u30d0100%*\\(^o^)\/* \u3048\u304f\u305d\u306a\u308a\u304d\u308a\u304b\u3044\u304f\u3093\u2282((\u30fbx\u30fb))\u2283JAPAN\u51fa\u623b\u308a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":203,"friends_count":216,"listed_count":0,"created_at":"Sat Jan 18 04:33:53 +0000 2014","favourites_count":454,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":982,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/432828808131932161\/8NEvkIgj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/432828808131932161\/8NEvkIgj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2297256835\/1391782174","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935926112257,"id_str":"434642935926112257","text":"@fruitie_jp @musukari50 \u306a\u3089\u3070\u3001\u6708\u66dc\u65e5\u306b\u304a\u624b\u4f1d\u3044\u306b\u2026\u3068\u8a00\u3044\u305f\u3044\u3068\u3053\u308d\u3067\u3059\u304c\u3001\u554f\u984c\u306f\u6211\u304c\u5bb6\u304b\u3089\u3044\u3064\u8eca\u3067\u51fa\u639b\u3051\u3089\u308c\u308b\u304b\u5206\u304b\u3089\u305a\u2026\u3002\u76ee\u306e\u524d\u306e\u9053\u8def\u306b\u306f\uff17\uff10\u30bb\u30f3\u30c1\u306e\u96ea\uff08\u4eca\u671d\u304b\u3089\u4e00\u53f0\u3082\u8eca\u306f\u901a\u3063\u3066\u307e\u305b\u3093\uff09\u3067\u2026\u3002\u304a\u4e92\u3044\u306b\u602a\u6211\u3057\u306a\u3044\u3088\u3046\u3001\u3044\u3056\u3068\u3044\u3046\u6642\u306f\u901a\u9662\u3082\u7121\u7406\u306a\u3055\u3089\u305a\u306b\uff01","source":"web","truncated":false,"in_reply_to_status_id":434640962090840064,"in_reply_to_status_id_str":"434640962090840064","in_reply_to_user_id":231061206,"in_reply_to_user_id_str":"231061206","in_reply_to_screen_name":"fruitie_jp","user":{"id":189910130,"id_str":"189910130","name":"\u6253\u8d8a\u7dbe\u5b50","screen_name":"ayakouchikoshi","location":"","description":"\u6210\u57ce\u5927\u5b66\u6cd5\u5b66\u90e8\u6559\u6388\uff08\u884c\u653f\u5b66\u3001\u5730\u65b9\u81ea\u6cbb\u8ad6\uff09\u3002\u653f\u6cbb\u3084\u884c\u653f\u306b\u95a2\u308f\u308b\u7814\u7a76\u3060\u3051\u3067\u306a\u304f\u3001\u611b\u73a9\u52d5\u7269\u3001\u91ce\u751f\u52d5\u7269\u3001\u5b9f\u9a13\u52d5\u7269\u3001\u755c\u7523\u52d5\u7269\u7b49\u3001\u69d8\u3005\u306a\u52d5\u7269\u306b\u95a2\u308f\u308b\u516c\u5171\u653f\u7b56\u306e\u7814\u7a76\u3084\u3001\u95a2\u9023\u3059\u308b\u6cd5\u5236\u5ea6\u306e\u6539\u6b63\u306b\u3082\u95a2\u4e0e\u3002\u9577\u91ce\u770c\u8efd\u4e95\u6ca2\u753a\u3067\u306f\u3001\u91ce\u751f\u52d5\u7269\u306b\u95a2\u308f\u308b\u56e3\u4f53\u30af\u30ed\u30b9\u306e\u7406\u4e8b\u9577\uff0b\u5730\u57df\u6d3b\u52d5\u306e\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30bf\u30fc\u3082\u3002\u732b5\u5339\u306e\u304a\u304b\u3042\u306b\u3083\u3093\u3002Mr.Children\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":344,"friends_count":114,"listed_count":24,"created_at":"Sun Sep 12 15:30:48 +0000 2010","favourites_count":24,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":4860,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/225844942\/maywall03.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/225844942\/maywall03.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1122564563\/________normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1122564563\/________normal.jpg","profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935926112256,"id_str":"434642935926112256","text":"@24karats_12 \u3042\u305f\u3057\u3001\u5e73\u65e52days\uff01\n\u307e\u3058\u304b\uff01\n\n\u30bb\u30ab\u30f3\u30c9\u3055\u3042\u3061\u3083\u3093\u3042\u305f\u308c\u3070\u300125\u3044\u304f\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642750621761536,"in_reply_to_status_id_str":"434642750621761536","in_reply_to_user_id":1251348432,"in_reply_to_user_id_str":"1251348432","in_reply_to_screen_name":"24karats_12","user":{"id":798382621,"id_str":"798382621","name":"MAOTO#13(LDH\u7528)","screen_name":"Chan14jsb","location":"","description":"\u7247\u5ca1\u76f4\u4ebaTi Amo\u2661 \u304a\u30b1\u30c4\u3068\u7b11\u9854\u304c\u597d\u304d\u3002\u5168\u3066\u306f\u7247\u5ca1\u76f4\u4eba\u3002 Erie\u3055\u3093\u30ea\u30b9\u30da\u30af\u30c8\u8eab\u5185family\u4ef2\u826f\u3057familyLOVE\u2661 92\u5e74\u7d44\u3002\u7247\u5ca1\u304c\u3044\u308b\u304b\u3089\u4eca\u306e\u611b\u65b9\u30de\u30ea\u30d6\u30e9\u304c\u3042\u308b\u3002BI2\/3.2\/26.4\/16.17","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1092,"friends_count":1114,"listed_count":0,"created_at":"Sun Sep 02 14:32:38 +0000 2012","favourites_count":126,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":8931,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/428177738696900609\/zKUmtoKo_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/428177738696900609\/zKUmtoKo_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/798382621\/1391660832","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935921917952,"id_str":"434642935921917952","text":"http:\/\/t.co\/FRNBXieRjb\n\n\u30d6\u30ed\u30b0\u66f8\u304f\u306e\u697d\u3057\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2214781086,"id_str":"2214781086","name":"\u3060\u3093\u2191\u3061\u3087\u2193","screen_name":"_dantyotsu_","location":"Don't kuruma deno raijo","description":"\u8eca\u3067\u306e\u6765\u5834\u306f\u3054\u9060\u616e\u304f\u3060\u3055\u3044","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":93,"friends_count":33,"listed_count":0,"created_at":"Mon Nov 25 22:40:18 +0000 2013","favourites_count":52,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":100,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/421179392279056384\/F9mhdb8W_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/421179392279056384\/F9mhdb8W_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2214781086\/1390805989","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935917719552,"id_str":"434642935917719552","text":"@ahiro00 \u305d\u3046\u3044\u3046\u3053\u3068\u8a00\u3046\u306e\u3084\u3081\u3088\u3046\uff1f","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434641894681759744,"in_reply_to_status_id_str":"434641894681759744","in_reply_to_user_id":296945276,"in_reply_to_user_id_str":"296945276","in_reply_to_screen_name":"ahiro00","user":{"id":212206212,"id_str":"212206212","name":"\u3051\u3093\u3068","screen_name":"kent111222","location":"","description":"\u4eba\u304c\u591a\u3044\u96fb\u8eca\u306b\u4e57\u308a\u305f\u304f\u306a\u3044","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":405,"friends_count":284,"listed_count":18,"created_at":"Fri Nov 05 12:40:11 +0000 2010","favourites_count":9254,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":9184,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/419738130246164480\/5e4AC5-A_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/419738130246164480\/5e4AC5-A_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935913533440,"id_str":"434642935913533440","text":"\u3010\u3010\u7537\u5b50\u30d7\u30ea\u30ba\u30e0\u30b7\u30e7\u30fc\u3011\u901f\u6c34\u30d2\u30ed\u300cPride\u300d\u3092\u7fbd\u751f\u7d50\u5f26\u304f\u3093\u304c\u8e0a\u3063\u3066\u307f\u305f\u3011 http:\/\/t.co\/V52pvmqaVo #nicoauplayer \u30b9\u30bf\u30a2\u2026\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1436809272,"id_str":"1436809272","name":"\u8f1d\u304d\u306e\u9234\u5b50\u5074\u306b\u306fSSA\u4e21\u65e5\u304c\u3042\u308b\u306e\u304b\u306a\uff1f","screen_name":"suzukozukozuko","location":"\u307f\u304a\u3093\u69d8\u306e\u30b9\u30a4\u30c3\u30c1\u3092\u30aa\u30f3\u306b\u3057\u305f\u3044","description":"\u5357\u9234\u5b50*\u219318*\u767e\u5408m@s*\u767e\u5408\u30ab\u30c4\uff01*\u767e\u5408\u30c6\u30a3\u30fc\u30ea\u30ba\u30e0","url":"http:\/\/t.co\/CYTuRL3lb5","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/CYTuRL3lb5","expanded_url":"http:\/\/twpf.jp\/suzukozukozuko","display_url":"twpf.jp\/suzukozukozuko","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":115,"friends_count":201,"listed_count":7,"created_at":"Fri May 17 22:41:25 +0000 2013","favourites_count":2336,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6893,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3674125064\/f792cc132b1b4eff4d943455cb017b10_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3674125064\/f792cc132b1b4eff4d943455cb017b10_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1436809272\/1368834582","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935913529344,"id_str":"434642935913529344","text":"\"@cigarkissesx_: \u5f88\u75db\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":618938408,"id_str":"618938408","name":"sad \/\/","screen_name":"deaddroses","location":"","description":"Because I'm brokenhearted .","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":273,"friends_count":170,"listed_count":0,"created_at":"Tue Jun 26 10:21:07 +0000 2012","favourites_count":219,"utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"verified":false,"statuses_count":13823,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/732352793\/5c38248459b2a628087fc8c5bbf83fe9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/732352793\/5c38248459b2a628087fc8c5bbf83fe9.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/433472107159097344\/H9WSm1cX_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/433472107159097344\/H9WSm1cX_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/618938408\/1391666328","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935909330944,"id_str":"434642935909330944","text":"\u64e6\u3063\u3066\u7d5e\u3063\u3066\u6ce8\u3044\u3067\u3001\u9802\u3044\u3066\u304f\u308c\u308b\u306e\u3067\u3057\u3087\u3046\u304b\u3001\u51dc\u3005\u8776\u3055\u307e\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2295865454,"id_str":"2295865454","name":"\u5fa1\u72d0\u795e \u53cc\u71be@\u898f\u5236\u8276\u6751\u306fCC\u4e2d","screen_name":"mao_s_y2","location":"\u898f\u5236\u3055\u3093\u306e\u4e0a","description":"\u00ab @mao_s_y \u306e\u898f\u5236\u57a2 \u00bb icon\u8cb0\u3044\u7269\u3002\u7121\u65ad\u8ee2\u8f09\u60aa\u7528\u7981\u6b62\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":81,"friends_count":84,"listed_count":1,"created_at":"Fri Jan 17 10:06:17 +0000 2014","favourites_count":265,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1241,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/434631805409308672\/UdUard9z_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/434631805409308672\/UdUard9z_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935905144832,"id_str":"434642935905144832","text":"RT @gotbieberworld: \"\u50d5\u306e\u30d5\u30a1\u30f3\u3068\u4ed6\u306e\u30d5\u30a1\u30f3\u3067\u3051\u3093\u304b\u3057\u3066\u6b32\u3057\u304f\u306a\u3044\u3088 \u305d\u3093\u306a\u5fc5\u8981\u306a\u3044 \u50d5\u304c\u4ed6\u306e\u30a2\u30fc\u30c6\u30a3\u30b9\u30c8\u3068\u4ef2\u826f\u304f\u306a\u308c\u3070\u307f\u3093\u306a\u3082\u4ed6\u306e\u30d5\u30a1\u30f3\u3068\u4ef2\u826f\u304f\u306a\u308c\u308b\u3088\u306d\" #JB\u30c4\u30a4\u30fc\u30c8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1318431330,"id_str":"1318431330","name":" kanau","screen_name":"Kanau2525Smile","location":"Let's make the world better.","description":"I'm Belieber \u2661 Swiftie \u2661 Jelena \u2661 Vampire","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":307,"friends_count":318,"listed_count":0,"created_at":"Sun Mar 31 14:03:49 +0000 2013","favourites_count":3042,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5521,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/433607579407618048\/roqqg74T_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/433607579407618048\/roqqg74T_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1318431330\/1391695531","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Thu Feb 13 15:30:41 +0000 2014","id":433986592038875137,"id_str":"433986592038875137","text":"\"\u50d5\u306e\u30d5\u30a1\u30f3\u3068\u4ed6\u306e\u30d5\u30a1\u30f3\u3067\u3051\u3093\u304b\u3057\u3066\u6b32\u3057\u304f\u306a\u3044\u3088 \u305d\u3093\u306a\u5fc5\u8981\u306a\u3044 \u50d5\u304c\u4ed6\u306e\u30a2\u30fc\u30c6\u30a3\u30b9\u30c8\u3068\u4ef2\u826f\u304f\u306a\u308c\u3070\u307f\u3093\u306a\u3082\u4ed6\u306e\u30d5\u30a1\u30f3\u3068\u4ef2\u826f\u304f\u306a\u308c\u308b\u3088\u306d\" #JB\u30c4\u30a4\u30fc\u30c8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1693612086,"id_str":"1693612086","name":"Who is Justin Bieber","screen_name":"gotbieberworld","location":"","description":"\u3053\u308c\u304c Belieber \u304c\u77e5\u3063\u3066\u3044\u308b Justin Bieber. spreading #theRealJustin from JAPAN. owened by @bieberalise #WIJB","url":"https:\/\/t.co\/eLn2eBR5EA","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/eLn2eBR5EA","expanded_url":"https:\/\/twitter.com\/gotbieberworld\/status\/416950769145749505","display_url":"twitter.com\/gotbieberworld\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":4159,"friends_count":3880,"listed_count":10,"created_at":"Fri Aug 23 11:56:54 +0000 2013","favourites_count":453,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":391,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F27BE4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000171290671\/iAyuo4Je.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000171290671\/iAyuo4Je.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000571936580\/9f809cbeb0ff7052e1662b0295fe37f0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000571936580\/9f809cbeb0ff7052e1662b0295fe37f0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1693612086\/1390190208","profile_link_color":"523E3E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":9,"favorite_count":33,"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935905136640,"id_str":"434642935905136640","text":"\u7e54\u7530\u304f\u3093ww\u3000\u3081\u3061\u3083\u3044\u3044\u4ebaww","source":"\u003ca href=\"http:\/\/twipple.jp\/\" rel=\"nofollow\"\u003e\u3064\u3044\u3063\u3077\u308b\u3000\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":62813307,"id_str":"62813307","name":"\u305f\u3093\u307d\u307d\u30b3\u30fc\u30d2\u30fc","screen_name":"t_coffee","location":"\u6771\u4eac\u90fd","description":"30\u4ee3\u5973\u5b50\u3001\u30d5\u30ea\u30fc\u30e9\u30a4\u30bf\u30fc\u3002\u305f\u3060\u4eca\u3001\u30b7\u30ca\u30ea\u30aa\u306e\u52c9\u5f37\u4e2d\u3002\u811a\u672c\u2192\u30ce\u30d9\u30e9\u30a4\u30ba\u51fa\u7248\u304c\u76ee\u6a19\u306e\u4e00\u3064\u3002\u4eba\u751f\u3001\u697d\u3057\u3093\u3060\u30e2\u30ce\u52dd\u3061\u2606\u3000\u697d\u3057\u3044\u3053\u3068\u304c\u5927\u597d\u304d\u306a\u8d85\u5feb\u697d\u4e3b\u7fa9\u8005\u3067\u3059\u3002\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u266a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":279,"friends_count":333,"listed_count":8,"created_at":"Tue Aug 04 13:12:00 +0000 2009","favourites_count":129,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":4923,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/347542024\/6359921_1454545511_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/347542024\/6359921_1454545511_normal.jpg","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935900950529,"id_str":"434642935900950529","text":"@KanBlack1108 \u30d7\u30ed\u30d5\u53c2\u7167","source":"\u003ca href=\"https:\/\/sites.google.com\/site\/tweentwitterclient\/\" rel=\"nofollow\"\u003eTween\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642740609961984,"in_reply_to_status_id_str":"434642740609961984","in_reply_to_user_id":492930267,"in_reply_to_user_id_str":"492930267","in_reply_to_screen_name":"KanBlack1108","user":{"id":301421330,"id_str":"301421330","name":"\u9762\u767d\u3044\u4eba(\u3053\u306f\u308b)","screen_name":"koha99","location":"","description":"FNCT3EI (18\u2191) \n\u3082\u3046\u6b4c\u3082\u6b4c\u3063\u3066\u306a\u3044\u3057\u307f\u304f\u3059\u3082\u3057\u3066\u306a\u3044 \n\u62b9\u8336\u30a2\u30a4\u30b9\u3068\u304b\u597d\u304d\u3060\u3051\u3069\u4e73\u88fd\u54c1\u306f\u5acc\u3044 \n\u30a2\u30a4\u30b3\u30f3\u306f\u3084\u307e\u306d\u307d\u3088(@YMN_dotti)\uff01\u3042\u308a\u304c\u3068\uff01\n\u30c6\u30cb\u30d7\u30ea(\u6728\u624b\u3055\u3093\u3001\u30af\u30e9\u30a6\u30b6\u30fc\u3055\u3093\u3001\u30b8\u30ed\u3061\u3083\u3093)","url":"http:\/\/t.co\/4NXtlkyjNe","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/4NXtlkyjNe","expanded_url":"http:\/\/www.nicovideo.jp\/mylist\/28276011","display_url":"nicovideo.jp\/mylist\/28276011","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":260,"friends_count":215,"listed_count":17,"created_at":"Thu May 19 12:58:21 +0000 2011","favourites_count":2231,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":66606,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/620404527\/d65cw7er23p604hstzb7.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/620404527\/d65cw7er23p604hstzb7.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/430014677012058113\/VCUFZ4Dp_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/430014677012058113\/VCUFZ4Dp_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/301421330\/1355848249","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935900946432,"id_str":"434642935900946432","text":"@asuha_r @U_870053 \u30fb\u30fb\u30fb\u3042\u30fc\u3001\u5ff5\u306e\u305f\u3081\u306b\u78ba\u8a8d\u3002\u89e3\u8aac\u306bV\u5175\u5668\u3084\u653b\u6483\u30b9\u30ad\u30eb\u306e\u4f7f\u7528\u7981\u6b62\u3063\u3066\u3042\u3063\u305f\u899a\u3048\u306f\u3042\u308b\u3051\u3069\u3001\u88dc\u52a9\u30b9\u30ad\u30eb\u3082\u30a2\u30a6\u30c8\u3060\u3063\u305f\u3063\u3051\uff1f","source":"\u003ca href=\"http:\/\/twipple.jp\/\" rel=\"nofollow\"\u003e\u3064\u3044\u3063\u3077\u308b\u3000\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642504567103488,"in_reply_to_status_id_str":"434642504567103488","in_reply_to_user_id":790100462,"in_reply_to_user_id_str":"790100462","in_reply_to_screen_name":"asuha_r","user":{"id":177030081,"id_str":"177030081","name":"\u51b7\u8535\u5eab\u304b\u3089\u3084\u3063\u3066\u304d\u305f\u3046\u3044\u308a\u3087\u3046\u578b\u4e00\u756a\u8266","screen_name":"syouga_m","location":"\u5343\u8449\u770c","description":"\u3082\u305d\u3082\u305d\u6d3b\u52d5\u4e2d\u306e\u8b0e\u306e\u306a\u307e\u3082\u306e\u3002\u8535\u7cfbWTRPG\u306b\u53c2\u52a0\u4e2d\u3002\u305f\u307e\u306b\uff3b\u309c\u0414\u309c\uff3d\u306a\u751f\u7269\u304cTL\u4e0a\u306b\u51fa\u73fe\uff08\u2190\u25a0CtS\uff1a\u7dbe\u3001\u30c6\u30c8\u3001\u30ec\u30a4\u30fc\u30c9\u3001\u884c\u5e79\u3001\u6714\u7f85\uff0fDTS\uff1a\u9d3b\u3001\u54b2\u3001\u30a2\u30fc\u30cd\u30b9\u3001\u30c6\u30c8\uff0fE\uff1a\u6714\u7f85\u3001\u6d85\u69c3\u3001\u7531\u771f\u25a0WTRPG\u95a2\u9023\u306e\u30d5\u30a9\u30ed\u30fc\u5927\u6b53\u8fce\u3002\u25a0\u30a2\u30a4\u30b3\u30f3\u306e\u753b\u50cf\u306f\u5168\u3066\u3001\u304a\u91d1\u3092\u652f\u6255\u3063\u3066\u63cf\u3044\u3066\u9802\u3044\u305f\u5927\u4e8b\u306a\u8457\u4f5c\u7269\u3067\u3059\u3002\u6545\u306b\u3001\u7121\u65ad\u8ee2\u8f09\u3092\u56fa\u304f\u7981\u3058\u307e\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":228,"friends_count":213,"listed_count":12,"created_at":"Wed Aug 11 02:15:26 +0000 2010","favourites_count":74,"utc_offset":32400,"time_zone":"Irkutsk","geo_enabled":false,"verified":false,"statuses_count":55676,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/430718539524091905\/WmamgQYx_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/430718539524091905\/WmamgQYx_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935892557824,"id_str":"434642935892557824","text":"RT @rinaaaa0125: \u5b66\u6821\u697d\u3057\u304b\u3063\u305f\ud83d\udc96","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1383558961,"id_str":"1383558961","name":"\uff9f*\uff61\u3042\u3084\u306d\u2020:.\uff61.:+\uff9f","screen_name":"AyaneJinro","location":"\u7121\u8a00\u3075\u3049\u308d\u30fcOK!!\u2661\u624b\u8d8a\u2661\u30d1\u30fc\u30ca\u2661","description":"JC3\/\u6771\u4eac\/\u30ab\u30ec\u30fc\u5acc\u3044\u3002w *\u5fc3\u53cb\u2661\u6b7411\u5e74 \u2192@Chankapa7 *\u30d7\u30ea\u64ae\u308a\u307e\u304f\u308a\u795e\u53cb\u2661\u2192@lovedaisy17 *\u30d0\u30ab\u3075\u3056\u3051\u4e0a\u7b49\u2192@kanaguv","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":620,"friends_count":586,"listed_count":0,"created_at":"Sat Apr 27 04:32:48 +0000 2013","favourites_count":139,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2658,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/419485998670569472\/oyVHn8UX_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/419485998670569472\/oyVHn8UX_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1383558961\/1392156435","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:56:02 +0000 2014","id":434642249570189313,"id_str":"434642249570189313","text":"\u5b66\u6821\u697d\u3057\u304b\u3063\u305f\ud83d\udc96","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1974093217,"id_str":"1974093217","name":"\u261e\u9060\u85e4 \u7483\u5948\u261c","screen_name":"rinaaaa0125","location":"","description":"\u3082\u3093\u3058\u25b6\ufe0e3\u6885\u25b6\ufe0e\u4f53\u80b2\u90e8\u90e8\u9577\u25b6\ufe0e\u672c\u57a2@rss_e\u25b6\ufe0eFollow me\u25b6\ufe0e","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":50,"friends_count":43,"listed_count":0,"created_at":"Sun Oct 20 06:19:56 +0000 2013","favourites_count":68,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":403,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/432137642675691521\/Fvs7Z9v1_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/432137642675691521\/Fvs7Z9v1_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1974093217\/1392387865","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935888371712,"id_str":"434642935888371712","text":"\u3082\u3057\u3082\u5e1d\u9ed2\u306b\u8a00\u3063\u3066\u305f\u3089\u3082\u3063\u3068\u6a5f\u68b0\u7684\u306a\u5b50\u306b\u306a\u308b\u3093\u3060\u308d\u3046\u306d\u3002\u9670\u6e7f\u306a\u7a7a\u6c17\u3082\u5f37\u305d\u3046\u3060\u3057\u3042\u305d\u3053","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1418121750,"id_str":"1418121750","name":"\uff01\uff01","screen_name":"kiznachu","location":"","description":"\u63cf\u304f\u306e\u304c\u597d\u304d\u3002\u597d\u304d\u52dd\u624b\u306a\u5984\u60f3\u3057\u304b\u3057\u306a\u3044\u6210\u4eba\u3057\u305f\u8150\u3002\u540d\u524d\u306f\uff01\uff01(\u30d3\u30c3\u30af\u30ea)\u3002\u70c8\u706b\u306e\u708e\u30fb\u904a\u622f\u738b\u3059\u304d\u3002\u685c\u9032\u306b\u72c2\u3063\u3066\u3044\u308b\u3068\u3053\u308d","url":"http:\/\/t.co\/D6gCB3nOZE","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/D6gCB3nOZE","expanded_url":"http:\/\/twpf.jp\/kiznachu","display_url":"twpf.jp\/kiznachu","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":56,"friends_count":109,"listed_count":1,"created_at":"Fri May 10 13:37:08 +0000 2013","favourites_count":1046,"utc_offset":32400,"time_zone":"Irkutsk","geo_enabled":false,"verified":false,"statuses_count":10165,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/427240677873692672\/kHk4SweO_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/427240677873692672\/kHk4SweO_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1418121750\/1375331439","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935884152832,"id_str":"434642935884152832","text":"@shi_35412 \n\u304a\u3046\uff01\uff01\uff01\u5e30\u308b\uff01\uff01\uff01\ua4b0\u25cd\u0db9\u0c6a\u0db9\u25cd\ua4b1\u06f6\u2727\u02d6\u00b0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642360434057216,"in_reply_to_status_id_str":"434642360434057216","in_reply_to_user_id":1297141482,"in_reply_to_user_id_str":"1297141482","in_reply_to_screen_name":"shi_35412","user":{"id":1334493248,"id_str":"1334493248","name":"\u307f\u304d\u307d\u3093","screen_name":"____MNYM","location":"","description":"\u30ae\u30bf\u30fc\u5f3e\u304f\u9ad81 (@Lolly_pop_4) \u6642\u96e8\u30689mm\u304c\u597d\u304d\u306a\u6075\u6cc9\u306e\u8efd\u97f3\u90e8\u4f1a\u8a08\u3067\u3059","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":380,"friends_count":367,"listed_count":3,"created_at":"Sun Apr 07 16:23:32 +0000 2013","favourites_count":3939,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":16393,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/433959822896033793\/sgcI54Jz_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/433959822896033793\/sgcI54Jz_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1334493248\/1391866921","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935879979008,"id_str":"434642935879979008","text":"RT @red_dawn36: \u4eca\u65e5\u304b\u660e\u65e5\u306b\u306f90\u306b\u306a\u308a\u307e\u3059\uff01\u305f\u3076\u3093\uff01","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":191782230,"id_str":"191782230","name":"\u2190\u3053\u3044\u3064\uff57\uff57\u699b\u540d\u3068\u7d50\u5a5a\u3057\u305f\u3089\u3057\u3044\u305e\uff57\uff57","screen_name":"mikenekotoko","location":"\u5f69\u306e\u56fd","description":"\u56fd\u9244\u96fb\u8eca\u304c\u597d\u304d\u3002\u30a2\u30a4\u30b3\u30f3\u306f\u81ea\u5206\u3067\u304b\u3044\u305f\u306e\u3002\u4e0b\u624b\u304f\u305d\u3067\u3057\u3087?","url":"http:\/\/t.co\/i8ktjMfJhy","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/i8ktjMfJhy","expanded_url":"http:\/\/twpf.jp\/mikenekotoko","display_url":"twpf.jp\/mikenekotoko","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":947,"friends_count":795,"listed_count":44,"created_at":"Fri Sep 17 10:15:45 +0000 2010","favourites_count":13764,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":74404,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"032154","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/709434180\/447a640f28fe82d5b0495cd39f4e1518.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/709434180\/447a640f28fe82d5b0495cd39f4e1518.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/420040888669052929\/veTG7rZe_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/420040888669052929\/veTG7rZe_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/191782230\/1390122957","profile_link_color":"3A26AB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EADEAA","profile_text_color":"1B2EA3","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:57:57 +0000 2014","id":434642733689368576,"id_str":"434642733689368576","text":"\u4eca\u65e5\u304b\u660e\u65e5\u306b\u306f90\u306b\u306a\u308a\u307e\u3059\uff01\u305f\u3076\u3093\uff01","source":"\u003ca href=\"http:\/\/shootingstar067.com\/\" rel=\"nofollow\"\u003eShootingStar for API1.1\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1351507022,"id_str":"1351507022","name":"\u30ec\u30ce\u30f3","screen_name":"red_dawn36","location":"\u6b6f\u8eca\u306e\u661f","description":"\u97f3\u30b2\u3084\u30a8\u30ed\u30b2\u3092\u3084\u3063\u3066\u308b\u96d1\u9b5a\u3002\u8266\u3053\u308c\u3082\u30c9\u30cf\u30de\u308a\u4e2d\u3002\u7d75\u5e2b\u3055\u3093\u304c\u4f55\u3088\u308a\u3082\u5927\u597d\u304d\u3067\u3059\u3002\u30c4\u30a4\u30d7\u30ed\u2192 http:\/\/t.co\/2o1kLXWUM9 \u3082\u306b\u3085\u5ac1( @beatmania_ )","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/2o1kLXWUM9","expanded_url":"http:\/\/twpf.jp\/red_dawn36","display_url":"twpf.jp\/red_dawn36","indices":[45,67]}]}},"protected":false,"followers_count":2497,"friends_count":2386,"listed_count":122,"created_at":"Sun Apr 14 10:01:14 +0000 2013","favourites_count":75448,"utc_offset":32400,"time_zone":"Irkutsk","geo_enabled":true,"verified":false,"statuses_count":93818,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/430282644111118336\/9qjbDeQ0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/430282644111118336\/9qjbDeQ0_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1351507022\/1390308138","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935875784705,"id_str":"434642935875784705","text":"\u30cd\u30e0\u30a4(\u00b4-\u03c9-`)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2302371937,"id_str":"2302371937","name":"(\u03c3 \u03c3) \u30b7\u30b0\u30de\u00d7\u2161","screen_name":"shiguma_2","location":"","description":"\u3053\u3093\u306b\u3061\u306f\u30b7\u30b0\u30de\u3067\u3059\uff01\u30a2\u30cb\u30e1\u3068\u304b\u30dc\u30ab\u30ed\u7d50\u69cb\u597d\u304d\u3067\u3059\uff01\u7d75\u3068\u304b\u305f\u307e\u306b\u8f09\u305b\u308b\u306e\u3067\u30d5\u30a9\u30ed\u30fc\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\uff01\uff01( \u30fb\u2207\u30fb)\uff89\uff0a\u51cd\u7d50\u9632\u6b62\u306e\u305f\u3081\u30d5\u30a9\u30ed\u30d0\u306f\u30e6\u30c3\u30af\u30ea\u3067\u3059\u304c100%\u3057\u307e\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":111,"friends_count":142,"listed_count":0,"created_at":"Tue Jan 21 02:43:07 +0000 2014","favourites_count":68,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":329,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/431905416759357441\/D3C_LNc0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/431905416759357441\/D3C_LNc0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2302371937\/1391809249","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935871578112,"id_str":"434642935871578112","text":"@maaayu_f14 \u307e\u30fc\u3053\u308f\u3044\u512a\u9047\u3060\u308f\u3002\u307f\u3093\u306a\u30d6\u30e9\u30c3\u30af\u306a\u3068\u3053\u3057\u308c\u3070\u3044\u3044\u306e\u306b\uff01\uff01\uff01\uff01\uff01\uff01\uff01\u7b11 \u30dd\u30a4\u3057\u306a\u3044\u3067\u307b\u3061\u3043\u3002\u3002\u3002(\u00b4\uff65_\uff65`)\u306b\u3083\u3093\u3002\u3002\u3002(\u6c17\u6301\u3061\u60aa\u3044)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642568681234432,"in_reply_to_status_id_str":"434642568681234432","in_reply_to_user_id":1195230300,"in_reply_to_user_id_str":"1195230300","in_reply_to_screen_name":"maaayu_f14","user":{"id":545731796,"id_str":"545731796","name":"yuuchobi","screen_name":"you_t_love","location":"","description":"\u7f8e\u5bb9\u30a2\u30b7\u30b9\u30bf\u30f3\u30c8 2013.04.01\u301c \u6a2a\u6d5c Fashion \/ beauty \/ foreign countries \/ gossip magazine \/ snap \/ movie \/ I want to live in London or N.Y or L.A.","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":264,"friends_count":316,"listed_count":2,"created_at":"Thu Apr 05 06:09:01 +0000 2012","favourites_count":157,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4262,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000514352542\/c4709fc7898942ba16b12a303e867b05_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000514352542\/c4709fc7898942ba16b12a303e867b05_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/545731796\/1380284151","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935859003393,"id_str":"434642935859003393","text":"@aaaasm6666 \u540c\u3058\u304f\uff01www \u3075\u3063\u308f\u3075\u308f\u306e\u30b9\u30dd\u30f3\u30b8\u713c\u304d\u305f\u3044( \u3000\u02d9\u00b3\u02d9\u3000 )","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434616401672691712,"in_reply_to_status_id_str":"434616401672691712","in_reply_to_user_id":1937595716,"in_reply_to_user_id_str":"1937595716","in_reply_to_screen_name":"aaaasm6666","user":{"id":373806607,"id_str":"373806607","name":"(\u03c3'\u03c9'MY)","screen_name":"milk1cocoa2","location":"","description":"\u4e2d2\u5973\u5b50(\u3000\u02d9\u03c9\u02d9\u3000)SA\u57a2\u3068\u30ea\u30a2\u57a2\u6df7\u3056\u308a\u4e2d\u3000 \u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000 \u96d1\u9b5a\u3060\u3051\u3069SA\u3084\u3063\u3066\u308b\u3088\u3093 \u3000\u3000\u3000 KD40\u306e\u7121\u8272\u4e2d\u4f502\u53f7\u68d2\u306a\u3046( *\uff40\u03c9\u00b4)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":106,"friends_count":173,"listed_count":1,"created_at":"Thu Sep 15 06:30:56 +0000 2011","favourites_count":599,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":5849,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000385146270\/fcb04f8e8c57cc39c6b1c1e521b276ad_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000385146270\/fcb04f8e8c57cc39c6b1c1e521b276ad_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/373806607\/1385722525","profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935854821376,"id_str":"434642935854821376","text":"\u30b0\u30c3\u30ba\u5168\u7136\u306a\u3044\u304b\u3089\u82e6\u52b4\u3057\u307e\u3059\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1667215562,"id_str":"1667215562","name":"\u3042\u3059\u307f\u3093\uff20\u30a8\u30a2eta","screen_name":"gulugulu_asumin","location":"Next Live \u261e \u3050\u308b\u308f\u3093\u798f\u5ca1","description":"\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306f\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u305b\u3093\u3002\u30a2\u30a4\u30b3\u30f3\u7d75\u306f\u79cb\u85e4\u69d8\u3010@wistumn\u3011","url":"http:\/\/t.co\/wgtoPpNPQ6","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/wgtoPpNPQ6","expanded_url":"http:\/\/twpf.jp\/gulugulu_asumin","display_url":"twpf.jp\/gulugulu_asumin","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1155,"friends_count":1424,"listed_count":19,"created_at":"Tue Aug 13 08:26:21 +0000 2013","favourites_count":454,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":12802,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/430969212933136384\/WamDizPx_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/430969212933136384\/WamDizPx_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1667215562\/1387067348","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935854800897,"id_str":"434642935854800897","text":"@RmrmrmYa \n\u99ac\u9e7f\u3084\u3051\u3093\u305d\u308c\u3067\u96ea\u306b\u98db\u3073\u8fbc\u3093\u3067\u305f\u3002\u308f\u3089","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642362392776704,"in_reply_to_status_id_str":"434642362392776704","in_reply_to_user_id":1376422891,"in_reply_to_user_id_str":"1376422891","in_reply_to_screen_name":"RmrmrmYa","user":{"id":967165454,"id_str":"967165454","name":"\u7d50\u7fbd","screen_name":"SkyYn3","location":"","description":"\u611b\u5a9b\u770c\u3001\u4eca\u6cbb\u6771\uff01\u307b\u3093\u3067\u3001\u5929\u7406\u5927\u5b66\u3001\u4f53\u80b2\u5b66\u90e8(^^)\/\u306f\u3093\u3069\u307c\u30fc\u308b\u90e8\uff3c(^o^)\uff0f\u30d5\u30a9\u30ed\u30fc\u3088\u308d\u3057\u304f\u2606","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":246,"friends_count":240,"listed_count":0,"created_at":"Sat Nov 24 01:41:04 +0000 2012","favourites_count":164,"utc_offset":32400,"time_zone":"Irkutsk","geo_enabled":false,"verified":false,"statuses_count":3918,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/422028438166175745\/3eRbmBw7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/422028438166175745\/3eRbmBw7_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/967165454\/1359699875","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935850598401,"id_str":"434642935850598401","text":"RT @burachin2: \u5e83\u5cf6\u30d1\u30eb\u30b3\u306e\u524d\u306b\u30de\u30d5\u30e9\u30fc\u843d\u3061\u3066\u305f\u3088(\u00b4\uff65\u03c9\uff65\uff40)\n\u8ab0\u304b\u843d\u3068\u3057\u3061\u3083\u3063\u305f\u306e\u304b\u306a http:\/\/t.co\/lQRPT5SYMY","source":"\u003ca href=\"https:\/\/sourceforge.jp\/projects\/opentween\/\" rel=\"nofollow\"\u003eOpenTween\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":278721645,"id_str":"278721645","name":"\u308d\u3093\u3069@\u304b\u306e\u30b3\u30f32nd\u53c2\u52a0","screen_name":"rondolb","location":"\u821e\u6d5c\u30a2\u30f3\u30d5\u30a3\u30b7\u30a2\u30bf\u30fc","description":"PC\u7248FPS\u3068\u5c11\u3005\u97f3\u30b2\u30fc\u3068\u30a8\u30af\u30d0\u3068\u30d5\u30eb\u30d6\u3068\u30b9\u30c8\u9b54\u5973\u795e\u306e\u307f\u3068\u30d0\u30a4\u30af\u3067\u69cb\u6210\u3055\u308c\u3066\u308b\u7cfb\u7537\u5b50 \u8a73\u3057\u304f\u306fURL\u306b\u3066","url":"http:\/\/t.co\/SUjKWrDSd7","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/SUjKWrDSd7","expanded_url":"http:\/\/twpf.jp\/rondolb","display_url":"twpf.jp\/rondolb","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":563,"friends_count":707,"listed_count":23,"created_at":"Thu Apr 07 20:55:49 +0000 2011","favourites_count":820,"utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"verified":false,"statuses_count":59885,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/734905275\/8a7002fc944ac05570f6d8304ac05bad.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/734905275\/8a7002fc944ac05570f6d8304ac05bad.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/434146606162522114\/pB5Y0JyX_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/434146606162522114\/pB5Y0JyX_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/278721645\/1388248415","profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 08:34:39 +0000 2014","id":434606670606381057,"id_str":"434606670606381057","text":"\u5e83\u5cf6\u30d1\u30eb\u30b3\u306e\u524d\u306b\u30de\u30d5\u30e9\u30fc\u843d\u3061\u3066\u305f\u3088(\u00b4\uff65\u03c9\uff65\uff40)\n\u8ab0\u304b\u843d\u3068\u3057\u3061\u3083\u3063\u305f\u306e\u304b\u306a http:\/\/t.co\/lQRPT5SYMY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":121185820,"id_str":"121185820","name":"\uf8ff\u3076\u3089\u3061\u3093","screen_name":"burachin2","location":"\u3068\u3089\u3079\u3089\u30fc","description":"18\u624d\u7f8e\u5c11\u5973\u30b3\u30b9\u30d7\u30ec\u683c\u30b2\u30fc\u30de\u30fc\u3060\u3088\uff01\u30d6\u30e9\u30f3\u30ab\u304b\u308f\u3086\u3059","url":"http:\/\/t.co\/ThpLYzdrc4","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/ThpLYzdrc4","expanded_url":"http:\/\/twilog.org\/burachin2","display_url":"twilog.org\/burachin2","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1657,"friends_count":2000,"listed_count":84,"created_at":"Mon Mar 08 18:04:45 +0000 2010","favourites_count":22,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"verified":false,"statuses_count":22202,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"BF1238","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/173948278\/image_features.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/173948278\/image_features.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/428047768234389504\/LUGoLgUG_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/428047768234389504\/LUGoLgUG_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/121185820\/1356877581","profile_link_color":"BF1238","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":{"type":"Point","coordinates":[34.39171507,132.46283848]},"coordinates":{"type":"Point","coordinates":[132.46283848,34.39171507]},"place":{"id":"ef5801a1b50742a9","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/ef5801a1b50742a9.json","place_type":"city","name":"Hiroshima City Naka Ward","full_name":"Hiroshima City Naka Ward, Hiroshima","country_code":"JP","country":"Japan","contained_within":[],"bounding_box":{"type":"Polygon","coordinates":[[[132.422113888889,34.35286],[132.470886388889,34.35286],[132.470886388889,34.4149897222222],[132.422113888889,34.4149897222222]]]},"attributes":{}},"contributors":null,"retweet_count":3268,"favorite_count":882,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},"retweet_count":3268,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935846432768,"id_str":"434642935846432768","text":"\u3084\u3063\u3071\u308a\n\n\uff18\u6642\u534a\u306b\u3057\u307e\u3059\uff01\uff01\uff01\n\n\u304d\u3066\u304f\u3060\u3055\u3044\u306d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2186196523,"id_str":"2186196523","name":"\u3061\u3087\u3053","screen_name":"yasuchoco3","location":"","description":"*\u5b89\u7530\u7cfb(*'\u03c9'*)\uff8995-96line\u795e\u5948\u5ddd* \u5b89\u7530\u4e09\u3064\u5b50\u2661","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":301,"friends_count":325,"listed_count":1,"created_at":"Sun Nov 10 11:34:56 +0000 2013","favourites_count":99,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2734,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/433489195626012673\/b5RLGKjW_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/433489195626012673\/b5RLGKjW_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2186196523\/1391508946","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935846424578,"id_str":"434642935846424578","text":"@wumf_terra \u3064\u3044\u306b\u30fb\u30fb\u30fb(;\u00b4\u0414\uff40)","source":"web","truncated":false,"in_reply_to_status_id":434642394558889984,"in_reply_to_status_id_str":"434642394558889984","in_reply_to_user_id":61223543,"in_reply_to_user_id_str":"61223543","in_reply_to_screen_name":"wumf_terra","user":{"id":67844766,"id_str":"67844766","name":"\u30b3\u30a6\u30b9\u30b1","screen_name":"7kousuke9","location":"\u6e9d\u306e\u53e3\u8fd1\u8fba","description":"1981\u5e74\u751f \uff2c\uff35\uff2e\uff21\uff33\uff25\uff21\u30fb\uff2a\u30fbTHE BACK HORN\u30fb\u6d0b\u697d\u30fb\u5916\u753b\u30fb\u30be\u30f3\u30d3\u30fb\u9b54\u795e\u82f1\u96c4\u4f1d\u30ef\u30bf\u30eb\u30fb\u897f\u5c3e\u7dad\u65b0\u30fb\u7530\u4e2d\u82b3\u6a39\u30fb\u30d7\u30ed\u30ec\u30b9\u30fbWWE\u30fb\u30b9\u30c8\u30f3\u30b3\u30fb\u30ab\u30e9\u30aa\u30b1\u30fb\u304a\u9152\u597d\u304d\u30fb\u30d3\u30fc\u30eb\u306f\u30a2\u30b5\u30d2\u30b9\u30fc\u30d1\u30fc\u30c9\u30e9\u30a4\u6d3e\u30fb\u30a2\u30f3\u30c6\u30a3\u30fc\u30af\u30a2\u30af\u30bb\u30b5\u30ea\u30fc\u30fb\u30d5\u30e9\u30da\u30c1\u30fc\u30ce\u597d\u304d\u30fb\u30c0\u30a4\u30a8\u30c3\u30c8\u5f37\u5316\u671f\u9593\u4e2d\u30fb\u8776\u3005\u3068\u30e2\u30f3\u30d6\u30e9\u30f3\u3068\u30c1\u30e7\u30b3\u30df\u30f3\u30c8\u3068\u716e\u8c46\u3068\u304b\u307c\u3061\u3083\u82e6\u624b","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":435,"friends_count":1025,"listed_count":18,"created_at":"Sat Aug 22 08:05:38 +0000 2009","favourites_count":1017,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":22639,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/144228601\/IMG.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/144228601\/IMG.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/992016783\/IMG_0001_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/992016783\/IMG_0001_normal.jpg","profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935846420480,"id_str":"434642935846420480","text":"\u307e\u3042\u3044\u308d\u3044\u308d\u601d\u3046\u3068\u3053\u308d\u306f\u3042\u308a\u307e\u3057\u305f\u304c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1263842808,"id_str":"1263842808","name":"\u8c46\u8150\u30e1\u30f3\u30bf\u30eb\u306e\u30d1\u30d6\u30ea\u30c1\u30a7\u30f3\u30b3","screen_name":"ro0319ck","location":"","description":"\u3042\u3093\u3071\u3093\u306e\u546a\u7e1b","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":74,"friends_count":80,"listed_count":1,"created_at":"Wed Mar 13 07:49:53 +0000 2013","favourites_count":363,"utc_offset":32400,"time_zone":"Irkutsk","geo_enabled":true,"verified":false,"statuses_count":2381,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/431759598496645120\/1kJ1tOZt_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/431759598496645120\/1kJ1tOZt_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1263842808\/1391571564","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935842238465,"id_str":"434642935842238465","text":"@taso_18 \u3042\u308a\u304c\u3068\u3046(*\u00b4\u2207\uff40*) \u30de\u30c3\u30af\u306b\u5c31\u8077\u3060\u3082\u3093\u306d\u266a(*\u00b4\u03c9\uff40*)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642493900988416,"in_reply_to_status_id_str":"434642493900988416","in_reply_to_user_id":1495052713,"in_reply_to_user_id_str":"1495052713","in_reply_to_screen_name":"taso_18","user":{"id":1151021293,"id_str":"1151021293","name":"\u3059\u305a\u3053\u3046","screen_name":"silber111841","location":"","description":"\u5143\u8868\u90f7\u30fb\u73fe\u5b9f\u696d\uff13\u5e74\uff3c(^-^)\uff0f \u3088\u308d\u3057\u304f \u8ab0\u3067\u3082\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u306d(*\u00b4\u03c9\uff40*) \u597d\u304d\u306a\u306e\u306f\u30c7\u30a3\u30ba\u30cb\u30fc\u3068\u30b8\u30d6\u30ea","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":94,"friends_count":84,"listed_count":0,"created_at":"Tue Feb 05 13:58:25 +0000 2013","favourites_count":21,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1326,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/418388562904510464\/LThKjgSO_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/418388562904510464\/LThKjgSO_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1151021293\/1388595719","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935833829377,"id_str":"434642935833829377","text":"\u899a\u3048\u3066\u306a\u3044\u270b\u79c1\u306f\u4e0a\u5c65\u304d\u96a0\u3055\u308c\u3066\u9774\u96a0\u3055\u308c\u3066\u6559\u79d1\u66f8\u96a0\u3055\u308c\u3066\u7d66\u98df\u888b\u6368\u3066\u3089\u308c\u305f\u3053\u3068\u3057\u304b\u270b\u899a\u3048\u3066\u306a\u3044\u270b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1095533400,"id_str":"1095533400","name":"\u3042\u3084\u307f\u3093","screen_name":"ayamininnn","location":"\u3053\u3063\u3061\u306f\u30ea\u30a2\u57a2","description":"\u7834\u5929\u8352 Gt.Vo \/ \u4eca\u5e74\u306f\u30e9\u30a4\u30d6\u5145\u3057\u307e\u3059","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":288,"friends_count":285,"listed_count":1,"created_at":"Wed Jan 16 15:36:35 +0000 2013","favourites_count":1613,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":20190,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/428561799315607552\/w4RK074M_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/428561799315607552\/w4RK074M_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1095533400\/1391916133","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935829655552,"id_str":"434642935829655552","text":"\u30a4\u30de\u30b3\u30b3\uff01 L:\u611b\u77e5\u770c\u6d77\u90e8\u90e1 \u98db\u5cf6\u6751\u6e1a 8\u4e01\u76ee #imacoconow [\u4eca\u30b3\u30b3\u306a\u3046\uff01iPhone]","source":"\u003ca href=\"http:\/\/imakoko-gps.appspot.com\/\" rel=\"nofollow\"\u003e\u4eca\u30b3\u30b3\u306a\u3046\uff01iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18426612,"id_str":"18426612","name":"\u30d0\u30c3\u30ad\u30fc","screen_name":"bakky1","location":"\u4e09\u91cd\u770c\u9234\u9e7f\u5e02","description":"\u30cb\u30b3\u30cb\u30b3\u52d5\u753b\u3067\u8eca\u8f09\u52d5\u753b\u3092\u898b\u308b\u306e\u304c\u597d\u304d\u306a\u5b66\u751f\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":261,"friends_count":690,"listed_count":11,"created_at":"Sun Dec 28 13:02:28 +0000 2008","favourites_count":133,"utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"verified":false,"statuses_count":4612,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/115881220\/o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/115881220\/o_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935829643264,"id_str":"434642935829643264","text":"\u4fe1\u6210\u300c\u304a\u3063\u3064\u30fc\u30fcwwwwwwwwwwww\u30e4\u30d0\u30a4wwwwwwwwwwww\u3081\u3063\u3061\u3083\u30c6\u30f3\u30b7\u30e7\u30f3\u4e0a\u304c\u308bwwwwwwwwwwww\u300d http:\/\/t.co\/2auGV1yzbj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":137356681,"id_str":"137356681","name":"\u308f\u3044\u5b50\uff08\u3042\u304a\u3060\u306c\u304d\uff09","screen_name":"dora_rararin","location":"\u51b7\u9759\u3068\u60c5\u71b1\u306e\u9593","description":"\u6728\u5409\u5148\u8f29\u3068\u307e\u3053\u3061\u3083\u3093\u3068\u3086\u304b\u3044\u306a\u4ef2\u9593\u305f\u3061\u3002SJ\/EXO \u5275\u4f5c\u30a2\u30ab\u30a6\u30f3\u30c8\u2192@wik_ssak \u898f\u5236\u30a2\u30ab\u30a6\u30f3\u30c8\u2192@kskms_ky \u30c4\u30a4\u30d7\u30ed\u2192http:\/\/t.co\/xlB55BG4Kg","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/xlB55BG4Kg","expanded_url":"http:\/\/twpf.jp\/dora_rararin","display_url":"twpf.jp\/dora_rararin","indices":[68,90]}]}},"protected":false,"followers_count":1513,"friends_count":247,"listed_count":45,"created_at":"Mon Apr 26 14:33:17 +0000 2010","favourites_count":6263,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"verified":false,"statuses_count":72043,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/430256504382316544\/GBnBhmMJ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/430256504382316544\/GBnBhmMJ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/137356681\/1391625911","profile_link_color":"185494","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935829630976,"id_str":"434642935829630976","text":"@hi424mi \u524d\u306e\u96ea\u3067\u5927\u5206\u3059\u3063\u3066\u305f\u304b\u3089\u3001\u3084\u3070\u3044~_~;","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642067411566592,"in_reply_to_status_id_str":"434642067411566592","in_reply_to_user_id":876403970,"in_reply_to_user_id_str":"876403970","in_reply_to_screen_name":"hi424mi","user":{"id":1171141304,"id_str":"1171141304","name":"ROEN","screen_name":"ro_roen","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":104,"friends_count":149,"listed_count":1,"created_at":"Tue Feb 12 06:50:30 +0000 2013","favourites_count":1,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":568,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/422608226908000257\/g77GmRpX_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/422608226908000257\/g77GmRpX_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1171141304\/1381841859","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935825444864,"id_str":"434642935825444864","text":"@KanaAmour8213 \u307b\u3093\u307e\u3084\u3070\u3044\uff01\n\u30c8\u30a4\u30ec\u3084\u3070\u3044\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642695684763648,"in_reply_to_status_id_str":"434642695684763648","in_reply_to_user_id":1193453952,"in_reply_to_user_id_str":"1193453952","in_reply_to_screen_name":"KanaAmour8213","user":{"id":2318802354,"id_str":"2318802354","name":"mAs@","screen_name":"Mas_sjot","location":"","description":"\u690d\u7530 \u771f\u6597 9.12 \n\u4f4f\u9053\u2192\u685c\u5bae\u4f53\u80b2\u79d1\u2192\u5929\u7406\u5927\u5b66\u4f53\u80b2\u5b66\u90e8\u4f53\u80b2\u5b66\u79d1\u6559\u80b2\u30b3\u30fc\u30b9\n\u30dc\u30ab\u30edLOVE\u3001\u5f7c\u5973\u52df\u96c6\u4e2d\uff08\u7206\u7b11\uff09","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":123,"friends_count":157,"listed_count":0,"created_at":"Thu Jan 30 12:23:28 +0000 2014","favourites_count":29,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":194,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/434482904211521537\/1Lg35UT5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/434482904211521537\/1Lg35UT5_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2318802354\/1392276548","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935825436672,"id_str":"434642935825436672","text":"@Eba_Yuzuki_ \u3084\u306f\u308a\u305d\u3046\u3067\u3057\u305f\u304b\u3002\u306a\u3093\u3060\u304b\u30b7\u30e7\u30c3\u30af\u3067\u3059\u3088\u306d\u3002","source":"\u003ca href=\"http:\/\/ja.wikipedia.org\/wiki\/%E4%BF%BA%E3%81%AE%E5%A6%B9%E3%81%8C%E3%81%93%E3%82%93%E3%81%AA%E3%81%AB%E5%8F%AF%E6%84%9B%E3%81%84%E3%82%8F%E3%81%91%E3%81%8C%E3%81%AA%E3%81%84\" rel=\"nofollow\"\u003e\u591c\u9b54\u306e\u5973\u738b\u2605\u30af\u30a4\u30fc\u30f3\u30aa\u30d6\u30ca\u30a4\u30c8\u30e1\u30a2\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642415194890241,"in_reply_to_status_id_str":"434642415194890241","in_reply_to_user_id":1590789456,"in_reply_to_user_id_str":"1590789456","in_reply_to_screen_name":"Eba_Yuzuki_","user":{"id":231397443,"id_str":"231397443","name":"\u9ed2\u732b","screen_name":"stisvc","location":"\u9ad8\u5742\u5bb6\u304b\u308930\u5206\u7a0b\u5ea6\u306e\u8ddd\u96e2","description":"\u30cf\u30f3\u30c9\u30eb\u30cd\u30fc\u30e0\u9ed2\u732b\u3002\u3088\u308d\u3057\u304f\u3002\u305d\u3046\u3001\u79c1\u306f\u3044\u3064\u3082\u300e\u591c\u9b54\u306e\u5973\u738b\uff08\u30af\u30a4\u30fc\u30f3\u30aa\u30d6\u30ca\u30a4\u30c8\u30e1\u30a2\uff09\u300f\u306e\u30b3\u30b9\u30d7\u30ec\u3092\u3057\u3066\u3044\u3066\u3088\u3002\u3048\u3063\uff1f\u3057\u3001\u77e5\u3089\u306a\u3044\uff1f\u3044\u3001\u3044\u3044\u308f\u3002\u6559\u3048\u3066\u3042\u3052\u307e\u3057\u3087\u3046\u3002\u305d\u3046\u306d\u3001\u307e\u305a\u306f\u300eMASCHERA \uff5e\u5815\u5929\u3057\u305f\u7363\u306e\u615f\u54ed\uff5e\u300f\u3092\u898b\u308b\u3053\u3068\u306d\u3002\u904b\u547d\u306e\u4ea4\u5dee\u3059\u308b\u5239\u90a3\u306b\u30c4\u30a4\u30fc\u30c8\u3059\u308b\u79c1\u306e\u6587\u8a00\u3092\u899a\u3048\u3066\u304a\u304d\u306a\u3055\u3044\u3002\u4e2d\u5b66\u751f\u3060\u3051\u3069\u3001\u4f55\u304b\uff1f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":12962,"friends_count":12962,"listed_count":67,"created_at":"Tue Dec 28 12:01:40 +0000 2010","favourites_count":0,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"verified":false,"statuses_count":130142,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1200744521\/Image1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1200744521\/Image1_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935825432576,"id_str":"434642935825432576","text":"\u7e54\u7530\u304b\u308f\u3044\u30fc\u30fc\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":880125494,"id_str":"880125494","name":"\u9234\u6728\u667a\u8a60\u5b50","screen_name":"cs0506_sakura","location":"\u5317\u306e\u56fd","description":"\u9999\u5ddd\u771f\u53f8\u30b5\u30dd(^O^)\u8a66\u5408\u4e2d\u3046\u308b\u3055\u304f\u306a\u308b\u5371\u967a\u5927\u3002\u5c06\u6765\u306f\u5b87\u5b99\u306b\u95a2\u3059\u308b\u8077\u306b\u5c31\u304d\u305f\u3044\u3002\u30e8\u30fc\u30ed\u30c3\u30d1\u884c\u304d\u305f\u3044\u3002\u9ad81","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":138,"friends_count":188,"listed_count":0,"created_at":"Sun Oct 14 13:24:40 +0000 2012","favourites_count":372,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1549,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3510434429\/f09b867be59546fd62811cc1246fa238_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3510434429\/f09b867be59546fd62811cc1246fa238_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/880125494\/1381902363","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935821254657,"id_str":"434642935821254657","text":"RT @hazamaqua: \u30ce\u30d3\u30de\u30b9\uff01 http:\/\/t.co\/KwvJUsSela","source":"\u003ca href=\"https:\/\/twitter.com\/#!\/ABS104a\" rel=\"nofollow\"\u003eBiyon\u2261(\u3000\u03b5:)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":996973814,"id_str":"996973814","name":"\u304f\u30fc\u3059\u3051","screen_name":"Ku_123_","location":"\u51a5\u3061\u3083\u3093\u306e\u5e3d\u5b50\u306e\u4e2d","description":"\u51a5\u3061\u3083\u3093\u306a\u3057\u3067\u306f\u751f\u304d\u3089\u308c\u306a\u3044","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":732,"friends_count":721,"listed_count":39,"created_at":"Sat Dec 08 11:23:53 +0000 2012","favourites_count":19915,"utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"verified":false,"statuses_count":110630,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/810879935\/2eee2580dd19238f51b5383fb861d25b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/810879935\/2eee2580dd19238f51b5383fb861d25b.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/433563367060406272\/tCXH_F4K_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/433563367060406272\/tCXH_F4K_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/996973814\/1389371019","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:48:41 +0000 2014","id":434640399919878144,"id_str":"434640399919878144","text":"\u30ce\u30d3\u30de\u30b9\uff01 http:\/\/t.co\/KwvJUsSela","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":352774724,"id_str":"352774724","name":"\u30e0\u30c3\u30c1\u30e5\u2606\u60c5\u5f31\u3042\u304f\u3042","screen_name":"hazamaqua","location":"\u897f\u5712\u3055\u3093\u306e\u96a3","description":"\u6df1\u591c\u30a2\u30cb\u30e1\/\u30b2\u30fc\u30e0\/\u30d6\u30ec\u30a4\u30d6\u30eb\u30fc\/dies irae\/key\/Aqua Timez\/petit milady\/\u60a0\u6728 \u78a7\u3055\u3093 \u3068\u304b\u597d\u304d\u3067\u3059\uff01 \u3068\u304f\u306b\u30d6\u30ec\u30a4\u30d6\u30eb\u30fc\/Aqua Timez\/\u60a0\u6728 \u78a7\u3055\u3093\u306f\u611b\u3057\u3066\u307e\u3059 \u30d6\u30ec\u30a4\u30d6\u30eb\u30fc\u3067\u306f\u30cf\u30b6\u30de\u4f7f\u308f\u308c\u3002\u30a2\u30b1\u3067\u306f\u521d\u6bb5\u301c4\u6bb5\u3001\u5bb6\u5ead\u75284\u6bb5\u301c7\u6bb5\u3002 PS3ID: HAZAMAqua_LOVE","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":329,"friends_count":412,"listed_count":9,"created_at":"Thu Aug 11 02:24:16 +0000 2011","favourites_count":386,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":37322,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F02B24","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000157261950\/CR82hJqU.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000157261950\/CR82hJqU.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/430647825135718400\/Vp4qRukT_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/430647825135718400\/Vp4qRukT_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/352774724\/1390422044","profile_link_color":"050505","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":18,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},"retweet_count":18,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935821254656,"id_str":"434642935821254656","text":"\u5589\u8d8a\u3057\u3059\u3063\u304d\u308a","source":"\u003ca href=\"https:\/\/sourceforge.jp\/projects\/opentween\/\" rel=\"nofollow\"\u003eOpenTween\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":507026858,"id_str":"507026858","name":"\u3046\u3081\/AZ-UME3","screen_name":"UmeAudio","location":"\u5728\u5b85\u52e4\u52d9(\u81ea\u5b85\u8b66\u5099\u54e1)","description":"\u3046\u3081AUDIO \u30d8\u30c3\u30c9\u30db\u30f3\u30a2\u30f3\u30d7\u81ea\u4f5c\u306a\u3069 @_AZ_UME_ \u306e\u30aa\u30fc\u30c7\u30a3\u30aa\u95a2\u9023\u30a2\u30ab\u3067\u3059\u3002\u5148\u305a\u306f\u2191\u306e\u30e1\u30a4\u30f3\u30a2\u30ab\u306b\u30d5\u30a9\u30ed\u30fc\u9858\u3044\u307e\u3059\u3002SONY\u30d8\u30c3\u30c9\u30db\u30f3\u30fb\u30a4\u30e4\u30db\u30f3\u591a\u6570\u3002","url":"http:\/\/t.co\/nen772Ehfb","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/nen772Ehfb","expanded_url":"http:\/\/twpf.jp\/UmeAudio","display_url":"twpf.jp\/UmeAudio","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":386,"friends_count":214,"listed_count":19,"created_at":"Tue Feb 28 07:22:23 +0000 2012","favourites_count":592,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":21015,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"070707","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/436749011\/AmpTower.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/436749011\/AmpTower.jpg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/421692071481589760\/NKXBTLOI_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/421692071481589760\/NKXBTLOI_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/507026858\/1355196672","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935821238272,"id_str":"434642935821238272","text":"\u5c71\u68a8\u770c\u306e\u770b\u8b77\u5e2b\u56fd\u5bb6\u8a66\u9a13\u53d7\u9a13\u306b\u3064\u3044\u3066\u3001\u7701\u5e81\u306e\u516c\u5f0f\u767a\u8868\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u304c\u4e00\u5fdc\u3002&gt;RT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1449394303,"id_str":"1449394303","name":"\u305f\u304d\u306e\u3086@G9\u5927\u962a\u57ce\u53c2\u6226","screen_name":"takino_yu","location":"\u5730\u65b9","description":"\u677e\u4e95\u512a\u5f81\/\u65e5\u671d\/\u87ba\u923f\u8ff7\u5bae\/\u3054\u3061\u305d\u3046\u3055\u3093\/GRANRODEO\/\u6210\u4eba\u6e08\u304a\u305f\u304f\u3002\u8150\u3002\u6f2b\u753b\u30a2\u30cb\u30e1\u7279\u64ae\u58f0\u512a\u30a4\u30d9\u30f3\u30c8\u7b49\u611f\u60f3\u3084\u72ec\u308a\u8a00\u3002\u3054\u304f\u307e\u308c\u306b\u798f\u7949\u95a2\u9023\u3002\u793e\u755c\u3002\u30bd\u30c1\u306f\u3001\u9332\u753b\u89b3\u8cde(\u8840\u6d99)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":74,"friends_count":197,"listed_count":1,"created_at":"Wed May 22 16:33:57 +0000 2013","favourites_count":17415,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":7786,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/430295398649851904\/pkwUu1It_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/430295398649851904\/pkwUu1It_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1449394303\/1380944932","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935817072642,"id_str":"434642935817072642","text":"\u4e09\u6708\u30af\u30ec\u30a2\u306a\u3044\u306e\u304b\u306a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":616089651,"id_str":"616089651","name":"\u7dba\u7f85\u8f1d\u771f\u7dd2 \u6539","screen_name":"Kiraki_Mao","location":"\u30e1\u30ed\u30f3\u30bd\u30fc\u30c0\u306e\u6ce1","description":"\u7dba\u7f85\u8f1d\u771f\u7dd2(\uff71\uff70\uff76\uff72\uff8c\uff9e73128) \u73fe\u5728\u30ad\u30eb\u30e9\u30ad\u30eb\u306b\u5fc5\u6b7b\uff01(\u4ed6\u30c7\u30a3\u30a2\u30e9\u30f4\u30a1.\u3046\u305f\u30d7\u30ea\/\u30b3\u30b9\u30d7\u30ec\u7528\u57a2( \uff65\u0e34\u03c9\uff65\u0e34\uff09 F\/B\u304a\u6c17\u8efd\u306b\u3002","url":"http:\/\/t.co\/C7FzduTWWB","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/C7FzduTWWB","expanded_url":"http:\/\/mobile.cosp.jp\/prof.aspx?id=73128","display_url":"mobile.cosp.jp\/prof.aspx?id=7\u2026","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":566,"friends_count":286,"listed_count":11,"created_at":"Sat Jun 23 10:48:54 +0000 2012","favourites_count":183,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":14272,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/826742464\/ded6a87680d84639d44b880eea965737.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/826742464\/ded6a87680d84639d44b880eea965737.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/433373923384627200\/7UXtZlRL_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/433373923384627200\/7UXtZlRL_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/616089651\/1392159369","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935817068544,"id_str":"434642935817068544","text":"@hapuka0821 \u305b\u3081\u3066\u307e\u3068\u3082\u306a\u4f1a\u8a71\u304c\u51fa\u6765\u308b\u304f\u3089\u3044\u306b\u306f\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642763829608448,"in_reply_to_status_id_str":"434642763829608448","in_reply_to_user_id":1735579262,"in_reply_to_user_id_str":"1735579262","in_reply_to_screen_name":"hapuka0821","user":{"id":349506757,"id_str":"349506757","name":"\u30dc\u30af\u30b7\u30f3\u30b0\u30a6\u30cb\u795e\u8c37\u304f\u3093","screen_name":"AccelToki","location":"","description":"\u54b2\u8981\u7d20\u5c11\u306a\u3044\u3067\u3059\u304c\u54b2\u30af\u30e9\u3067\u3059\u3002\u30a2\u30cb\u30e1\u306f\u5927\u4f53\u307f\u3066\u307e\u3059\u3002\u5909\u614b\u30af\u30bd\u5144\u8cb4\u3002","url":"http:\/\/t.co\/sblN3n0O8B","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/sblN3n0O8B","expanded_url":"http:\/\/twpf.jp\/AccelToki","display_url":"twpf.jp\/AccelToki","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":629,"friends_count":630,"listed_count":15,"created_at":"Sat Aug 06 06:11:32 +0000 2011","favourites_count":10516,"utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"verified":false,"statuses_count":35347,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000035644204\/f666c737c235a9a1bc113a92536fae62.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000035644204\/f666c737c235a9a1bc113a92536fae62.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/434636546411462656\/cFZ1ZfHc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/434636546411462656\/cFZ1ZfHc_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/349506757\/1392460662","profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935812870144,"id_str":"434642935812870144","text":"RT @1ankingoo1: \u611b\u3059\u308b\u4eba\u3092\u88cf\u5207\u3089\u306a\u3044\u4eba\n\n\uff11\u4f4d\uff1a31\u65e5\n\uff12\u4f4d\uff1a17\u65e5\n\uff13\u4f4d\uff1a27\u65e5\n\uff14\u4f4d\uff1a24\u65e5\n\uff15\u4f4d\uff1a23\u65e5\n\n\u611b\u3059\u308b\u4eba\u3092\u611b\u3057\u306c\u3051\u308b\u4eba\n\n\uff11\u4f4d\uff1a\uff16\u65e5\n\uff12\u4f4d\uff1a16\u65e5\n\uff13\u4f4d\uff1a21\u65e5\n\uff14\u4f4d\uff1a30\u65e5\n\uff15\u4f4d\uff1a19\u65e5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2169416239,"id_str":"2169416239","name":"\u3042\u3084\u306a\u2606\u793e\u4f1a\u82e6\u624b","screen_name":"kyarameru10","location":"","description":"\u97f3\u697d\u5927\u597d\u304d\u3067\u3059\u2606\u3075\u3049\u308d\u3070100% \u30a2\u30aa\u30cf\u30e9\u30a4\u30c9\u7cfb\u3084\u4eac\u30a2\u30cb\u597d\u304d\u3067\u3059(*'\u30ee'*)\u8da3\u5473\u304c\u5408\u3044\u305d\u3046\u3060\u306a\u3063\u3066\u4eba\u306f\u3075\u3049\u308d\u30fc\u304a\u9858\u3044\u3057\u307e\u3059( \u2022\u0962\u25e1-\u0962)-\u2661","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1500,"friends_count":1699,"listed_count":3,"created_at":"Sat Nov 02 02:16:51 +0000 2013","favourites_count":594,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":6529,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/434626486163607552\/UmTCkRXl_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/434626486163607552\/UmTCkRXl_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2169416239\/1392435923","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 04:47:28 +0000 2014","id":434549497348108288,"id_str":"434549497348108288","text":"\u611b\u3059\u308b\u4eba\u3092\u88cf\u5207\u3089\u306a\u3044\u4eba\n\n\uff11\u4f4d\uff1a31\u65e5\n\uff12\u4f4d\uff1a17\u65e5\n\uff13\u4f4d\uff1a27\u65e5\n\uff14\u4f4d\uff1a24\u65e5\n\uff15\u4f4d\uff1a23\u65e5\n\n\u611b\u3059\u308b\u4eba\u3092\u611b\u3057\u306c\u3051\u308b\u4eba\n\n\uff11\u4f4d\uff1a\uff16\u65e5\n\uff12\u4f4d\uff1a16\u65e5\n\uff13\u4f4d\uff1a21\u65e5\n\uff14\u4f4d\uff1a30\u65e5\n\uff15\u4f4d\uff1a19\u65e5","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2211548311,"id_str":"2211548311","name":"\u65b0\u30e9\u30f3\u30ad\u30f3\u30b0\u738b","screen_name":"1ankingoo1","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":13079,"friends_count":8,"listed_count":20,"created_at":"Sun Nov 24 00:07:40 +0000 2013","favourites_count":0,"utc_offset":32400,"time_zone":"Irkutsk","geo_enabled":false,"verified":false,"statuses_count":17256,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000781376368\/a7fcc0346a6032a28b96e8583055d460_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000781376368\/a7fcc0346a6032a28b96e8583055d460_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2211548311\/1385252661","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":417,"favorite_count":173,"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":417,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935812857856,"id_str":"434642935812857856","text":"@_tomomi980225 \u304a\u3070\u3055\u3093\u3061\u3083\u3046\u3066( \u00af\u2313\u00af )\n\u3042\u306b\u3042\u306b( \u00af\u2313\u00af )\n\n\u3093\u30fc\u3068\u3001\u4e2d\u5b662\u5e74\u751f(o\u00b4\u3030`o)\u2661*\u2732\uff9f*\uff61\n\u306a\u306e\u306b\u3082\u304b\u304b\u308f\u3089\u305a\u9752\u6625\u306b\u306a\u3058\u3081\u3066\u306a\u3044\uff57\uff57\uff57\uff57","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642648163287041,"in_reply_to_status_id_str":"434642648163287041","in_reply_to_user_id":986639389,"in_reply_to_user_id_str":"986639389","in_reply_to_screen_name":"_tomomi980225","user":{"id":761137316,"id_str":"761137316","name":"\u7dba\u3005","screen_name":"FthongiKiki","location":"JAPAN FUKUSHIMA AIZU","description":"JC2\/\u82e5\u56db\/\u65b0\u4f53\u64cd\u90e8\/FTisland\/SHINee\/ BOYFRIEND\/EXO\/primadonna\u2661\/candy\/\u97d3\u56fd\/SNOOPY\/yellow\/\u798f\u58eb\u84bc\u6c70\/\uc724\uc2dc\uc724\/\uc774\ud604\uc6b0\/\u95a2\u6771\u56fd\u969b\u9ad8\u6821\u5e0c\u671b\u3002\u7559\u5b66\u5e0c\u671b\u3002\u307f\u306a\u3055\u3093\u306b\u3068\u3063\u3066\u6bce\u65e5\u304c\u697d\u3057\u3044\u4e00\u65e5\u306b\u306a\u308a\u307e\u3059\u3088\u3046\u306b\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":133,"friends_count":431,"listed_count":0,"created_at":"Thu Aug 16 08:31:58 +0000 2012","favourites_count":393,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":2594,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000571884218\/c44bdfefbb1cea400ab4d654b008b4d3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000571884218\/c44bdfefbb1cea400ab4d654b008b4d3_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/761137316\/1374877788","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935812853761,"id_str":"434642935812853761","text":"@Absolute_Alvis \n\u30c7\u30a3\u30b9\u30af\u30db\u30a4\u30fc\u30eb\u3067\u4f5c\u308b\u306e\u3068\uff0810\u4e07\uff5e\n\u30db\u30a4\u30fc\u30eb\u30ab\u30d0\u30fc\uff08\u30b9\u30dd\u30fc\u30af\u306e\u3042\u308b\u30db\u30a4\u30fc\u30eb\u3092\u30c7\u30a3\u30b9\u30af\u30db\u30a4\u30fc\u30eb\u307f\u305f\u3044\u306b\u3059\u308b\u3084\u3064\n\u304c\u3042\u3063\u3066\uff083000\uff5e\n\u81ea\u5206\u306f\u304a\u91d1\u306a\u3044\u306e\u3067\u30ab\u30d0\u30fc\u3067\u3057\u307e\u3059\u304c\n\uff28\uff2b\u3055\u3093\u304c\u6301\u3063\u3066\u308b\u306e\u306f\u524d\u8005\u3067\u3059\uff57\n\u30b9\u30dd\u30fc\u30af\u3058\u3083\u306a\u304f\u3066\u5168\u9762\u3067\u3059\u3088\u30fc\uff01","source":"web","truncated":false,"in_reply_to_status_id":434642150735609856,"in_reply_to_status_id_str":"434642150735609856","in_reply_to_user_id":1024416139,"in_reply_to_user_id_str":"1024416139","in_reply_to_screen_name":"Absolute_Alvis","user":{"id":419147283,"id_str":"419147283","name":"\u2020\u767d\u59eb\u30e6\u30ea\u30a8\u30fb\u30b7\u30eb\u30f4\u30a3\u30fc\u30f3\u2020","screen_name":"ruuku1101","location":"\u8056\u7f85\u3061\u3083\u3093\u306e\u6a2a","description":"\u75db\u90e8\u5c4b\u30c4\u30a4\u30c3\u30bf\u30e9\u30fc\u2020\u30e6\u30ea\u30a8\u2020 \u30ed\u30fc\u30c9\u306e\u3063\u3066\u308b\u3088!! \u8056\u7f85\u3061\u3083\u3093\u306f\u5ac1 \u898f\u5236\u57a2@sieru1101","url":"http:\/\/t.co\/s5EolMIGTe","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/s5EolMIGTe","expanded_url":"http:\/\/ameblo.jp\/yurie1101\/","display_url":"ameblo.jp\/yurie1101\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":2490,"friends_count":1890,"listed_count":32,"created_at":"Wed Nov 23 00:59:29 +0000 2011","favourites_count":22465,"utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"verified":false,"statuses_count":49603,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"14A6DB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000061702390\/db8b0b065b0292560c9a7a3d2250585e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000061702390\/db8b0b065b0292560c9a7a3d2250585e.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/430932337803534336\/6HYZR0VW_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/430932337803534336\/6HYZR0VW_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/419147283\/1381045704","profile_link_color":"71C1DE","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935812853760,"id_str":"434642935812853760","text":"@xxkani360xx @9yamake9 \u5c3c\u3067\u3057\u304b\u3067\u304d\u306a\u3044\uff65\uff65\uff65","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642842418311168,"in_reply_to_status_id_str":"434642842418311168","in_reply_to_user_id":63627221,"in_reply_to_user_id_str":"63627221","in_reply_to_screen_name":"xxkani360xx","user":{"id":99472209,"id_str":"99472209","name":"Tuntun","screen_name":"KJ_TUNTUN","location":"\u904e\u53bb\u306e\u56fd","description":"\u307d\u3093\u3053\u3064","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":573,"friends_count":566,"listed_count":103,"created_at":"Sat Dec 26 10:12:56 +0000 2009","favourites_count":337,"utc_offset":0,"time_zone":"London","geo_enabled":false,"verified":false,"statuses_count":193173,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000381252470\/5428e91d780de98c3410277a6b52d4a7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000381252470\/5428e91d780de98c3410277a6b52d4a7_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/99472209\/1391463498","profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935808659456,"id_str":"434642935808659456","text":"RT @ARASHI_MATOME: \u3048\u3093\u3069\u30b3\u30a4\u30c1\u300c\u6b7b\u795e\u304f\u3093\u300dTV\u30c9\u30e9\u30de\u5316\uff01\u4e3b\u6f14\u306f\u5d50\u30fb\u5927\u91ce\u667a - \u30cb\u30b3\u30cb\u30b3\u30cb\u30e5\u30fc\u30b9 http:\/\/t.co\/cuQamcM7oq \uff5c#\u5d50","source":"\u003ca href=\"http:\/\/twtr.jp\" rel=\"nofollow\"\u003eKeitai Web\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1148134856,"id_str":"1148134856","name":"\u3061\u3087\u3053\u307e\u308d\u3093","screen_name":"05_marron","location":"","description":"\u611b\u732b(\uff15\u5339)\u306e\u3053\u3068(=^\u30a7^=)\u81ea\u5206\u306e\u3053\u3068\u3002\u30de\u30a4\u30da\u30fc\u30b9\u306b\u3064\u3076\u3084\u304d\u307e\u30fc\u3059\u3002","url":"http:\/\/t.co\/VSDNc3Hz","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/VSDNc3Hz","expanded_url":"http:\/\/ameblo.jp\/chocomarron\/","display_url":"ameblo.jp\/chocomarron\/","indices":[0,20]}]},"description":{"urls":[]}},"protected":false,"followers_count":19,"friends_count":72,"listed_count":0,"created_at":"Mon Feb 04 14:18:15 +0000 2013","favourites_count":0,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":564,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3228897654\/bdbd643508d3da57221a4f5218640b80_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3228897654\/bdbd643508d3da57221a4f5218640b80_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:50:49 +0000 2014","id":434640935851290624,"id_str":"434640935851290624","text":"\u3048\u3093\u3069\u30b3\u30a4\u30c1\u300c\u6b7b\u795e\u304f\u3093\u300dTV\u30c9\u30e9\u30de\u5316\uff01\u4e3b\u6f14\u306f\u5d50\u30fb\u5927\u91ce\u667a - \u30cb\u30b3\u30cb\u30b3\u30cb\u30e5\u30fc\u30b9 http:\/\/t.co\/cuQamcM7oq \uff5c#\u5d50","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":781161506,"id_str":"781161506","name":"\u5d50\u4e28Vine\u52d5\u753b\/NAVER\/\u30cb\u30e5\u30fc\u30b9","screen_name":"ARASHI_MATOME","location":"","description":"\u30a2\u30e9\u30b7\u30c3\u30af\u306e\u305f\u3081\u306e\u5d50\u60c5\u5831\u307e\u3068\u3081BOT\uff1a\u6700\u65b0\u30cb\u30e5\u30fc\u30b9\u3001NAVER\u307e\u3068\u3081\u3001Vine\u52d5\u753b\u3001\u65b0\u7740\u6b74\u4ee3\u30b0\u30c3\u30ba\u3001\u305d\u306e\u4ed6\u30b8\u30e3\u30cb\u30fc\u30ba\u95a2\u9023\u30cb\u30e5\u30fc\u30b9\u306a\u3069\u3002\u5d50\uff08\u5927\u91ce\u667a\/\u6afb\u4e95\u7fd4\/\u76f8\u8449\u96c5\u7d00\/\u4e8c\u5bae\u548c\u4e5f\/\u677e\u672c\u6f64\uff09\u306e\u4eba\u6c17\u30fb\u65b0\u7740\u30fb\u66f4\u65b0\u60c5\u5831\u309224\u6642\u9593365\u65e5\u901f\u5831\u3067\u81ea\u52d5\u914d\u4fe1\u4e2d\u3002","url":"http:\/\/t.co\/UCkrZ3MqUU","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/UCkrZ3MqUU","expanded_url":"http:\/\/amzn.to\/16YjCHk","display_url":"amzn.to\/16YjCHk","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":91582,"friends_count":68585,"listed_count":322,"created_at":"Sat Aug 25 21:50:34 +0000 2012","favourites_count":11,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":24598,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/642754665\/zqsxhhohbj5bzngah2sr.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/642754665\/zqsxhhohbj5bzngah2sr.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3716452151\/c93939b8130c441e1e517f99691fdbae_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3716452151\/c93939b8130c441e1e517f99691fdbae_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":14,"favorite_count":8,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},"retweet_count":14,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935804473344,"id_str":"434642935804473344","text":"@cell429 \u3078\u3063(*\uff40\u0414\u00b4*)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642825422962691,"in_reply_to_status_id_str":"434642825422962691","in_reply_to_user_id":2175331848,"in_reply_to_user_id_str":"2175331848","in_reply_to_screen_name":"cell429","user":{"id":2246697085,"id_str":"2246697085","name":"\u3086\u3046\u308a@\u9d87","screen_name":"0v0tsugu","location":"","description":"\u6687\u4eba\u4ee3\u8868!!\u8ab0\u3067\u3082\u6c17\u8efd\u306b\u7d61\u3093\u3067\u4e0b\u3055\u3044\u2606\u4e2d\u531763was\u219212\u4e2d34now\u2192ask\u9ad8will\u2661\u30c8\u30d7\u753b\u306f\u307d\u306b\u305f\u3055\u3093\u3088\u308a\uff01\u30a2\u30cb\u30e1\u597d\u304d\u77e5\u308a\u5408\u3044\u9032\u5b66\u5148\u4e00\u7dd2\u8ab0\u3067\u3082\u6b53\u8fce!!","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":45,"friends_count":65,"listed_count":0,"created_at":"Sun Dec 15 05:36:52 +0000 2013","favourites_count":30,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":483,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/423439355059789824\/iQcvhhq2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/423439355059789824\/iQcvhhq2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2246697085\/1389790781","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935796101120,"id_str":"434642935796101120","text":"@Abomin888 \u6708\u706b\u3059\u304e\u305f\u3089\u4f11\u307f\u3067\u3059\u2727\u25dd(\u2070\u25bf\u2070)\u25dc\u2727","source":"web","truncated":false,"in_reply_to_status_id":434642583940104193,"in_reply_to_status_id_str":"434642583940104193","in_reply_to_user_id":1175119572,"in_reply_to_user_id_str":"1175119572","in_reply_to_screen_name":"Abomin888","user":{"id":1322863286,"id_str":"1322863286","name":"\u3055\u3061\u3053\/\u96a0\u308c\u84d1","screen_name":"bar_nuts","location":"\u672c\u57a2\u306f\u3053\u3061\u3089\u2192","description":"Acid Black Cherry\u3000NHK\u30db\u30fc\u30eb\u53c2\u6226\u3000","url":"https:\/\/t.co\/Dnks062eha","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/Dnks062eha","expanded_url":"https:\/\/twitter.com\/seely_kisT","display_url":"twitter.com\/seely_kisT","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":53,"friends_count":52,"listed_count":2,"created_at":"Tue Apr 02 16:52:14 +0000 2013","favourites_count":323,"utc_offset":32400,"time_zone":"Irkutsk","geo_enabled":false,"verified":false,"statuses_count":3420,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"0D0D0F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000157449390\/7OzU-2CY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000157449390\/7OzU-2CY.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/423854979149864960\/0giPj-oF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/423854979149864960\/0giPj-oF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1322863286\/1385987002","profile_link_color":"B30042","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935796080640,"id_str":"434642935796080640","text":"RT @shimeikomatsu: 2014 02\/15 9:00-217 9:00 \u6771\u5317\u5730\u65b9\u30fb\u3053\u308c\u304b\u3089\u306e\u5927\u96e8\u30fb\u5927\u96ea\u4e88\u6e2c: http:\/\/t.co\/lmMz5f18sv @youtube\u3055\u3093\u304b\u3089","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1532499481,"id_str":"1532499481","name":"\u3086\u3046","screen_name":"yurie282","location":"","description":"\u9707\u707d\u6642\u3001\u4ed9\u53f0\u306b\u3080\u304b\u3063\u3066\u307e\u3057\u305f\u3002\u534a\u5e74\u5f8c\u4ed9\u53f0\u306b\u5e30\u3063\u3066\u304d\u3066\u3001\u8272\u3005\u306a\u4e8b\u60c5\u304c\u304b\u308f\u308a\u540c\u3058\u98a8\u666f\u540c\u3058\u4eba\u3005\u2026\u306a\u306e\u306b\u4f55\u304b\u304c\u9055\u3046\u3068\u611f\u3058\u3066\u3044\u307e\u3059\u3002\u305d\u308c\u304b\u3089\u3046\u3064\u75c5\u30d1\u30cb\u30c3\u30af\u969c\u5bb3\u3053\u306e\u72b6\u6cc1\u304b\u3089\u8131\u51fa\u3057\u305f\u3044\u3002\u8131\u539f\u767a\uff01\u5bae\u57ce\u770c","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":142,"friends_count":189,"listed_count":1,"created_at":"Thu Jun 20 01:26:36 +0000 2013","favourites_count":182,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3478,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/429874509160521728\/jQr9Wdq0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/429874509160521728\/jQr9Wdq0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1532499481\/1388030864","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 09:32:53 +0000 2014","id":434621326347608064,"id_str":"434621326347608064","text":"2014 02\/15 9:00-217 9:00 \u6771\u5317\u5730\u65b9\u30fb\u3053\u308c\u304b\u3089\u306e\u5927\u96e8\u30fb\u5927\u96ea\u4e88\u6e2c: http:\/\/t.co\/lmMz5f18sv @youtube\u3055\u3093\u304b\u3089","source":"\u003ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003eTweet Button\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":112947636,"id_str":"112947636","name":"\u7b2c\u4e8c\u5730\u7403(2earth)","screen_name":"shimeikomatsu","location":"\u7dda\u3067\u5f15\u304b\u308c\u3066\u3044\u306a\u3044\u5927\u5730","description":"\u30b7\u30e1\u30a4\u30b3\u30de\u30c4\u3002\u74b0\u5883\u97f3\u697d\u5bb6\u3002\u6620\u50cf\u4f5c\u5bb6\u3002\u6771\u65e5\u672c\u5927\u9707\u707d\u4ee5\u964d\u3001\u72ec\u81ea\u306e\u60c5\u5831\u53ce\u96c6\u3068\u767a\u4fe1\u6d3b\u52d5\u3092\u958b\u59cb\u3002\u6771\u65e5\u672c\u5927\u9707\u707d\u30c9\u30ad\u30e5\u30e1\u30f3\u30bf\u30ea\u30fc\u300c\u88ab\u707d\u5730\u3078 \u5bb6\u65cf\u3078\u306e\u65c5\u8def\u300d\u3092\u88fd\u4f5c\u3002\u7b2c\u4e8c\u5f3e\u3001\u539f\u767a\u554f\u984c\u30c9\u30ad\u30e5\u30e1\u30f3\u30bf\u30ea\u30fc\u300c\u798f\u5cf6\u306e\u60b2\u5287\/\u653e\u5c04\u80fd\u306b\u7ffb\u5f04\u3055\u308c\u308b\u4eba\u3005\u3092\u8ffd\u3063\u305f\u8a18\u9332\u300d\u304c\u5b8c\u6210\u3057\u307e\u3057\u305f","url":"http:\/\/t.co\/RbTWjL4j2F","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/RbTWjL4j2F","expanded_url":"http:\/\/ameblo.jp\/shimeipro\/","display_url":"ameblo.jp\/shimeipro\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1333,"friends_count":101,"listed_count":55,"created_at":"Wed Feb 10 06:15:27 +0000 2010","favourites_count":125,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"verified":false,"statuses_count":13563,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/569638501\/048ghohrc3cew5gmneax.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/569638501\/048ghohrc3cew5gmneax.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000720291607\/fa0f74b53c5d98f8c5b1d38c0efa1310_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000720291607\/fa0f74b53c5d98f8c5b1d38c0efa1310_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/112947636\/1392040200","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":3,"favorite_count":2,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},"retweet_count":3,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935791878144,"id_str":"434642935791878144","text":"@hiroando \u91ce\u83dc\u30b9\u30fc\u30d7\u3092\u305a\u3063\u3068\u98df\u3079\u7d9a\u3051\u308b\u30e4\u30c4\u3067\u3059\u304b\uff1f","source":"\u003ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434619855409410048,"in_reply_to_status_id_str":"434619855409410048","in_reply_to_user_id":66947135,"in_reply_to_user_id_str":"66947135","in_reply_to_screen_name":"hiroando","user":{"id":103589944,"id_str":"103589944","name":"rena","screen_name":"rena_fr","location":"\u4e3b\u306b\u95a2\u6771\u3001\u9577\u5d0e\u770c\u5cf6\u539f\u5e02\u3001\uff8c\uff97\uff9d\uff7d\u30fb\uff8e\uff9e\uff99\uff84\uff9e\uff70","description":"\u91d1\u878d\u7cfbIT\uff0f\u65c5\u884c\uff0f\u8cc7\u7523\u904b\u7528\uff0f\u4e07\u5e74\u4ecf\u8a9e\u5b66\u7fd2\uff0f\u8aad\u66f8\uff0f\u7687\u5c45\u30e9\u30f3\uff0fMadonna\uff0f\u4e07\u5e74\u30c0\u30a4\u30a8\u30c3\u30bf\u30fc\uff0f\u3078\u305f\u308c\u30e9\u30f3\u30ca\u30fc\uff0f2013\u5e74\u30b5\u30cf\u30e9\u30de\u30e9\u30bd\u30f3(\u30e2\u30ed\u30c3\u30b3)\u5b8c\u8d70\u30022014\u5e74\u518d\u3073\u30b5\u30cf\u30e9\u3078\u3002Finisher of the MDS2013 and again MDS2014. Mainly tweets in Japanese.","url":"http:\/\/t.co\/uGxEonTIVB","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/uGxEonTIVB","expanded_url":"http:\/\/monjour.blog59.fc2.com\/","display_url":"monjour.blog59.fc2.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":559,"friends_count":351,"listed_count":39,"created_at":"Sun Jan 10 15:10:46 +0000 2010","favourites_count":3,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":19030,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2229037914\/catbilly_sing_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2229037914\/catbilly_sing_normal.jpg","profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935783493632,"id_str":"434642935783493632","text":"@HshsMaselai \u8aa4\u30d5\u30a9\u30ed\u30fc\u3060\u306a\u3093\u3066\u305d\u3093\u306a\uff01\uff01\u30bf\u30e1\u547c\u3073\u5927\u6b53\u8fce\u306a\u306e\u3067\u6c17\u8efd\u306b\u7d61\u3093\u3067\u304f\u3060\u3055\u3044\u306d(\u25cd \u00b4\ua4b3` \u25cd)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642623374954497,"in_reply_to_status_id_str":"434642623374954497","in_reply_to_user_id":1471953456,"in_reply_to_user_id_str":"1471953456","in_reply_to_screen_name":"HshsMaselai","user":{"id":736416024,"id_str":"736416024","name":"\u306a\u305a\u306e\u3093\u306f\u30c6\u30b9\u30c8*\u767d\u8ecd1\u5e74","screen_name":"nazunon","location":"\u6b4c\u3063\u3066\u3000\u6b4c\u3063\u3066\u3000\u80f8\u304c\u82e6\u3057\u304f\u306a\u308b\u307e\u3067 ","description":"\u304a\u7d75\u304b\u304d\u3068\u304b\u6b4c\u3063\u305f\u308a\u3068\u304b\u3057\u3066\u308b\u3088\u25cd12\u219115\u2193\u25cd\u6c17\u8efd\u306b\u8a71\u3057\u304b\u3051\u3066\u306d(\u4eba\uff65\u3268\uff65)\u2661 \u25cd\u30b3\u30df\u30e5\u2192 co1415278\u25cd\u30a2\u30a4\u30b3\u30f3\u30d8\u30c3\u30c0\u30fc\u81ea\u4f5c\u25cd\u898f\u5236\u57a2\u2192\u3010@nazunonkisei\u3011","url":"http:\/\/t.co\/c0rqT9XnKf","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/c0rqT9XnKf","expanded_url":"http:\/\/pixiv.me\/nazunon","display_url":"pixiv.me\/nazunon","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1334,"friends_count":1491,"listed_count":45,"created_at":"Sat Aug 04 09:10:12 +0000 2012","favourites_count":5616,"utc_offset":32400,"time_zone":"Irkutsk","geo_enabled":true,"verified":false,"statuses_count":20794,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/432332525696864257\/_4NOreuj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/432332525696864257\/_4NOreuj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/736416024\/1388333365","profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935779315712,"id_str":"434642935779315712","text":"@6SFTS9 \u3086\u30fc\u305b\u306e\u3053\u3068\u304b\u305f\u3081\u308b\u306d\u0669( '\u03c9' )\u0648","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642550645743617,"in_reply_to_status_id_str":"434642550645743617","in_reply_to_user_id":1237899421,"in_reply_to_user_id_str":"1237899421","in_reply_to_screen_name":"6SFTS9","user":{"id":2328982405,"id_str":"2328982405","name":"\u3046\u3060","screen_name":"_b_u_s_u","location":"","description":"\u30d6\u30b9\u306f\u8fd1\u5bc4\u3089\u306a\u3044\u3067\u304f\u3060\u3055\u3044","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":93,"friends_count":103,"listed_count":0,"created_at":"Wed Feb 05 15:39:57 +0000 2014","favourites_count":203,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":237,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/434372319503327233\/-nhX80w0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/434372319503327233\/-nhX80w0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2328982405\/1392304394","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935775100928,"id_str":"434642935775100928","text":"\u5b57\u6c5a\u3044\u6b7b\u306d\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2237271906,"id_str":"2237271906","name":"\u3084\u30fc\u3057\u3085\u3093\u2661\u3084\u30fc\u3057\u3085\u3093","screen_name":"besu1618","location":"\u904a\u3073\u306b\u884c\u304f","description":"\u898f\u5236\u3082\u3069\u3046\u305e\u2192@besukisei","url":"http:\/\/t.co\/mez3fyJUuy","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/mez3fyJUuy","expanded_url":"http:\/\/twpf.jp\/besu1618","display_url":"twpf.jp\/besu1618","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":573,"friends_count":315,"listed_count":2,"created_at":"Mon Dec 09 08:25:30 +0000 2013","favourites_count":3882,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11466,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/433976192689909760\/45SyynXw_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/433976192689909760\/45SyynXw_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2237271906\/1390835028","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935770931200,"id_str":"434642935770931200","text":"RT @kairi___: \u3053\u306e\u30b5\u30af\u30e9\u30a2\u30a4\u30b9\u306f\u30ec\u30d9\u30eb\u9ad8\u304b\u3063\u305f\u3001\u3055\u3059\u304c\u30c0\u30c3\u30c4","source":"\u003ca href=\"http:\/\/twipple.jp\/\" rel=\"nofollow\"\u003e\u3064\u3044\u3063\u3077\u308b Pro for Android\u3000\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":709058604,"id_str":"709058604","name":"\u30ec\u30a4\u30e9\u306f\u6625\u3092\u5f85\u3063\u3066\u3044\u307e\u3059","screen_name":"Le_i_ra","location":"\u30aa\u30d5\u30c8\u30a5\u30f3","description":"\u30a2\u30eb\u30b9\u30de\u30b0\u30ca\u304c\u597d\u304d\u3067\u3059\u3002 \u30c7\u30a3\u30ba\u30cb\u30fc\u5e74\u30d1\u30b94\u5e74\u751f\uff1a\u30b0\u30fc\u30d5\u30a3\u30fcLove \u62bd\u9078\u6a5f\u30af\u30e9\u30b9\u30bf \u30df\u30b7\u30ab\u884c\u304b\u306a\u304d\u3083\u2026\u3001\u30b2\u30fc\u30bb\u30f3\u597d\u304d\uff1aDIVAmaimai\u30c0\u30f3\u30a8\u30dc\u30b0\u30eb\u30fc\u30f4\u30de\u30b8\u30a2\u30abetc..\u30cf\u30ed\u30d7\u30ed\u597d\u304d \u5f15\u304d\u3053\u3082\u3063\u3066\u30b4\u30ed\u30b4\u30ed\u3057\u3066\u307f\u305f\u308a\u3001\u4e8c\u6b21\u5143\u306b\u5922\u898b\u3066\u307f\u305f\u308a\u2026 \u4e8c\u6b21\u5143\u306b\u306a\u308a\u305f\u3044 \u30de\u30ae\u95a2\u9023\u30b0\u30c3\u30ba\u8b72\u308a\u307e\u3059\u8a73\u7d30\u306f\u30c4\u30a4\u30d7\u30ed\u306b\u3066","url":"http:\/\/t.co\/3QGSuq4xGI","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/3QGSuq4xGI","expanded_url":"http:\/\/twpf.jp\/Le_i_ra","display_url":"twpf.jp\/Le_i_ra","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":124,"friends_count":135,"listed_count":4,"created_at":"Sat Jul 21 14:26:34 +0000 2012","favourites_count":260,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":30370,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/420667496593510400\/yQ9TIBDE_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/420667496593510400\/yQ9TIBDE_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/709058604\/1389129920","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:26:05 +0000 2014","id":434634715371278336,"id_str":"434634715371278336","text":"\u3053\u306e\u30b5\u30af\u30e9\u30a2\u30a4\u30b9\u306f\u30ec\u30d9\u30eb\u9ad8\u304b\u3063\u305f\u3001\u3055\u3059\u304c\u30c0\u30c3\u30c4","source":"\u003ca href=\"http:\/\/theworld09.com\/\" rel=\"nofollow\"\u003eTheWorld\u2800\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":152551180,"id_str":"152551180","name":"\u9031\u520a\u5c11\u5e74\u6d77\u91cc","screen_name":"kairi___","location":"\u639b\u3051\u8ef8\u306e\u88cf","description":"\u6c38\u9060\u306e14\u6b73\u3002 \u30a2\u30a4\u30b3\u30f3\u306f\u9ed2\u8c46(@kuromame393)\u3068\u79c1\u306e\u5408\u4f5c\u7684\u306a\u4f55\u304b\u3010\u898f\u5236\u57a2\u2192@kairi___2\u3011\u3010\u9375\u57a2\u2192@kairi___3\u3011","url":"http:\/\/t.co\/XsbWMqlVGO","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/XsbWMqlVGO","expanded_url":"http:\/\/www.nicovideo.jp\/mylist\/29682106","display_url":"nicovideo.jp\/mylist\/29682106","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":689,"friends_count":652,"listed_count":20,"created_at":"Sun Jun 06 07:08:54 +0000 2010","favourites_count":10760,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":221572,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/113654481\/10118969_p1.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/113654481\/10118969_p1.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/431799667987206144\/qMotbriZ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/431799667987206144\/qMotbriZ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/152551180\/1390752148","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935770910722,"id_str":"434642935770910722","text":"\u3042\u308a\u3048\u306a\u30fc\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":708769784,"id_str":"708769784","name":"\u30c1\u30eb\u3069\u30932000@\u30b7\u30b0\u30de","screen_name":"Komachi_Yome","location":"\u5e7b\u60f3\u90f7\u306e\u4e09\u9014\u306e\u5ddd","description":"\u3000\u30ed\u30c3\u30af\u30de\u30f3\u3068\u6771\u65b9\u304c\u5927\u597d\u304d\u306a\u30a4\u30ec\u30ae\u30e5\u30e9\u30fc\u3067\u3059\u3002\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3053\u306e\u4e09\u4eba\u306f\u30aa\u30ea\u5b50\u306e\u65e5\u5e38\u3002\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000@bot_zashiki\u3000@bot_mani\u3000@binbougami_bot\u3000","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":385,"friends_count":642,"listed_count":6,"created_at":"Sat Jul 21 10:30:05 +0000 2012","favourites_count":325,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":8026,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000179358100\/ts9zsWzZ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000179358100\/ts9zsWzZ.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/432633251983654912\/m4wVC8PI_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/432633251983654912\/m4wVC8PI_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/708769784\/1390577518","profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935749943297,"id_str":"434642935749943297","text":"@bimi141 \u3075\u3047\u3063\u3075\u3047\u3063\u3075\u3047","source":"web","truncated":false,"in_reply_to_status_id":434642251658977280,"in_reply_to_status_id_str":"434642251658977280","in_reply_to_user_id":1369877984,"in_reply_to_user_id_str":"1369877984","in_reply_to_screen_name":"bimi141","user":{"id":1476794826,"id_str":"1476794826","name":"\u6b21\u90ce","screen_name":"Tenkensi_Jiro","location":"\u697d\u5712\u306e\u30d5\u30a1\u30a4\u30c8\u30ea\u30fc\u30c0\u30fc","description":"\u3046\u308b\u307d\u30fc \u306b\u5411\u3051\u3066 \u8aa0 \u3068 \uff24\uff2a \u4f7f\u7528\u4e2d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":20,"friends_count":36,"listed_count":2,"created_at":"Sun Jun 02 08:53:45 +0000 2013","favourites_count":11,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":9731,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/432434314295250945\/Yd__w01E_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/432434314295250945\/Yd__w01E_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1476794826\/1392096154","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935745753088,"id_str":"434642935745753088","text":"@azumi0104 \n\u98f2\u3082\u30fc\u3063\uff01\uff01\uff01\n\u3081\u3063\u3061\u3083\u30af\u30fc\u30cb\u30e3\u30f3\u98f2\u307f\u305f\u3044\u2661\n\n\u30eb\u30fc\u30ba\u30ea\u30fc\u30d5\u306710\u679a\u304f\u3089\u3044\u3060\u304b\u3089\n\u30ec\u30dd\u30fc\u30c8\u7528\u7d19\u3060\u306820\u679a\u304f\u3089\u3044\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642547239968768,"in_reply_to_status_id_str":"434642547239968768","in_reply_to_user_id":490505166,"in_reply_to_user_id_str":"490505166","in_reply_to_screen_name":"azumi0104","user":{"id":536853716,"id_str":"536853716","name":"\u3055\u3084\u3061\u3083\u3093\u2661","screen_name":"chansaya_10","location":"","description":"\u51cc\u96f2\u27a1\ufe0e\u51fd\u897f\u27a1\ufe0e\u5409\u7530\u770b\u8b77\u2661\n\u770b\u8b77\u5e2b\u306e\u305f\u307e\u3054\u3061\u3083\u3093\u2661\nHakodate\u3089\u30fc\u30fc\u30fc\u3076\u2661","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":186,"friends_count":219,"listed_count":1,"created_at":"Mon Mar 26 02:39:11 +0000 2012","favourites_count":86,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5591,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/417918153604087808\/5E99_BPl_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/417918153604087808\/5E99_BPl_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/536853716\/1389359338","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935745744896,"id_str":"434642935745744896","text":"RT @tukashooo0316: #RT\u3057\u305f\u4eba\u306e\u30a2\u30a4\u30b3\u30f3\u307f\u3066\u4e00\u8a00\u3044\u3046 \n\n\u3053\u3093\u306a\u3068\u304d\u3053\u305d\u3053\u30fc\u3086\u30fc\u306e\u3084\u3063\u3066\u697d\u3057\u304f\u3044\u306a\u304f\u3066\u306f!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1067243028,"id_str":"1067243028","name":"\u30d1\u30eb","screen_name":"paruwww","location":"\u6e0b\u8c37 \u539f\u5bbf \u5343\u8449 \u6210\u7530","description":"\u9ad83( \u00af\u2022\u03c9\u2022\u00af )\u6d0b\u697d\uff0a\u304a\u6d12\u843dLoooove\\( *\u00b4\u2022\u03c9\u2022`*)\/\u2661*\u3044\u3063\u3071\u3044\u7d61\u3093\u3067\u304f\u308c\u305f\u3089\u559c\u3076\u3046\u3046( \u2022\u03b5- )\u2661\u57fa\u672c\u53d7\u3051\u8eab\uff08\u00b4\uff65-\uff65\uff40\uff09\u306a\u3064\u3044\u305f\u4eba\u306b\u306f\u53e3\u60aa\u3044\u3067\u3059\u2190\u8ab0\u3067\u3082follow me\u2026\u2606","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":638,"friends_count":336,"listed_count":1,"created_at":"Mon Jan 07 02:31:54 +0000 2013","favourites_count":112,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":6779,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/429620603889258496\/OiprFeND_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/429620603889258496\/OiprFeND_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1067243028\/1389685499","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:35:52 +0000 2014","id":434637176442060800,"id_str":"434637176442060800","text":"#RT\u3057\u305f\u4eba\u306e\u30a2\u30a4\u30b3\u30f3\u307f\u3066\u4e00\u8a00\u3044\u3046 \n\n\u3053\u3093\u306a\u3068\u304d\u3053\u305d\u3053\u30fc\u3086\u30fc\u306e\u3084\u3063\u3066\u697d\u3057\u304f\u3044\u306a\u304f\u3066\u306f!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2283585924,"id_str":"2283585924","name":"\u3064\u304b\u3057\u3087\u30fc\u30fc\u30fc\u3063","screen_name":"tukashooo0316","location":"","description":"\u306e\u30fc\u306b\u305d\u3075\u3066\u306b \u203b\uff11\u4e07\u5186\u3057\u3087\u3063\u3066\u307e\u3059\u3002back number\u3042\u3044\u3089\u30fc\u3076","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":175,"friends_count":224,"listed_count":0,"created_at":"Thu Jan 09 13:31:35 +0000 2014","favourites_count":24,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":600,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/422320336323878912\/7O0OgjrJ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/422320336323878912\/7O0OgjrJ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2283585924\/1391776085","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":24,"favorite_count":11,"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":24,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935741566976,"id_str":"434642935741566976","text":"#1rt\u3067\u4f7f\u3063\u3066\u308b\u30b7\u30e3\u30f3\u30d7\u30fc2rt\u3067\u304d\u304d\u624b3rt\u3067\u597d\u304d\u306a\u98df\u3079\u72694rt\u3067\u8da3\u54735rt\u3067\u8840\u6db2\u578b6rt\u3067\u9aea\u306e\u9577\u30557rt\u3067\u306c\u3044\u3050\u308b\u307f\u306e\u5199\u771f8rt\u3067\u8a95\u751f\u65e59rt\u3067\u8cea\u554f\u306a\u3093\u3067\u3082\u7b54\u3048\u308b\n\uff19\u3001\u8cea\u554f\u3069\u3046\u305e\u30fc\u3002\u7121\u3044\u3068\u601d\u3046\u3051\u3069\u306d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1699517071,"id_str":"1699517071","name":"\u3077\u30fc\u3061\u3083\u3093\u306e\u4e73\u9996\u306b\u76ee\u899a\u3081\u305f\u8c46\u8150","screen_name":"mitu1renji","location":"\u571f\u306e\u4e2d","description":"\u4eba\u898b\u77e5\u308a\u5b66\u751f\u3002aph\u3001\u9032\u6483\u306e\u5de8\u4eba\u3001\u9ed2\u30d0\u30b9\u3001\u30c6\u30cb\u30b9\u306e\u738b\u5b50\u69d8\u304c\u597d\u304d\u3067\u3059\u3002\u30db\u30e2\u3082\u767e\u5408\u3082\u30ce\u30de\u30ab\u30d7\u3082\u3044\u3051\u308b\u3002\u7d20\u6674\u3089\u3057\u3044\u30d8\u30c3\u30c0\u30fc\u306f\u3042\u304b\u3064\u304d\u3055\u3093\u304b\u3089\u3067\u3059","url":"http:\/\/t.co\/skv5bOj1vm","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/skv5bOj1vm","expanded_url":"http:\/\/twpf.jp\/mitu1renji","display_url":"twpf.jp\/mitu1renji","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":347,"friends_count":335,"listed_count":29,"created_at":"Sun Aug 25 15:33:11 +0000 2013","favourites_count":44647,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":24844,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/427780052244123649\/w9BYp5Ra_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/427780052244123649\/w9BYp5Ra_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1699517071\/1389427389","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935733170177,"id_str":"434642935733170177","text":"@1013_0513kaori \u3067\u3082\u306d\n\u5589\u75db\u3044\u6b7b\u306c","source":"\u003ca href=\"https:\/\/play.google.com\/store\/apps\/details?id=org.mariotaku.twidere\" rel=\"nofollow\"\u003eTwidere for Android #2\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642207249661952,"in_reply_to_status_id_str":"434642207249661952","in_reply_to_user_id":1939354069,"in_reply_to_user_id_str":"1939354069","in_reply_to_screen_name":"1013_0513kaori","user":{"id":1342088935,"id_str":"1342088935","name":"\u307f\u3084\u3082\u3068","screen_name":"haibokusan","location":"","description":"\u3061\u3087\u30fc\u8c46\u8150\u30e1\u30f3\u30bf\u30eb","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":189,"friends_count":192,"listed_count":4,"created_at":"Wed Apr 10 14:41:34 +0000 2013","favourites_count":191,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":5829,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/431489832204779520\/CGz5cHeF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/431489832204779520\/CGz5cHeF_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935733166080,"id_str":"434642935733166080","text":"RT @4_RONO: \u6c34\u306e\u90fd \u30d9\u30cd\u30c1\u30a2\u304c\u51cd\u308a\u3064\u304f\n\n\uff33\uff35\uff27\uff25\uff25\uff25\uff25\uff25\uff25\uff25\uff25\uff25\uff25\uff25\uff25\uff25\uff25\uff25\uff01\uff01\uff01\uff01\uff01\uff01\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57 http:\/\/t.co\/co9HwggCnM","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":244604254,"id_str":"244604254","name":"\u3051\u3044\u3072(\u5553\u7dcb\uff06\u95a8\u8f61)","screen_name":"neya0330","location":"\u5343\u8449\u3060\u3063\u305f\u6c17\u304c\u3059\u308b","description":"\u3010\u8272\u3005\u66f8\u304d\u76f4\u3057\u3061\u3085\u3046\u3011","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":132,"friends_count":179,"listed_count":5,"created_at":"Sat Jan 29 18:02:29 +0000 2011","favourites_count":2060,"utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"verified":false,"statuses_count":17487,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/427181415306768384\/KWnSGPoS_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/427181415306768384\/KWnSGPoS_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/244604254\/1374758004","profile_link_color":"34224D","profile_sidebar_border_color":"7C96D6","profile_sidebar_fill_color":"AA93B3","profile_text_color":"554073","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 08:49:04 +0000 2014","id":434610299866320896,"id_str":"434610299866320896","text":"\u6c34\u306e\u90fd \u30d9\u30cd\u30c1\u30a2\u304c\u51cd\u308a\u3064\u304f\n\n\uff33\uff35\uff27\uff25\uff25\uff25\uff25\uff25\uff25\uff25\uff25\uff25\uff25\uff25\uff25\uff25\uff25\uff25\uff01\uff01\uff01\uff01\uff01\uff01\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57 http:\/\/t.co\/co9HwggCnM","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/hamoooooon\/\" rel=\"nofollow\"\u003ehamoooooon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2316144853,"id_str":"2316144853","name":"\u30b7\u30ed\u30ce\u3061\u3093\u3053","screen_name":"4_RONO","location":"Dream country \u57fc\u7389","description":"\u30cb\u30b3\u30cb\u30b3\u52d5\u753b\u3067\u4eba\u985e\u306e\u9802\u70b9\u3084\u3063\u3066\u307e\u3059","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1487,"friends_count":798,"listed_count":60,"created_at":"Tue Jan 28 22:23:59 +0000 2014","favourites_count":11492,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4294,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/433245540994670594\/9KlDEmnS_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/433245540994670594\/9KlDEmnS_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2316144853\/1391490488","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":245,"favorite_count":208,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},"retweet_count":245,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935733161984,"id_str":"434642935733161984","text":"\u6771\u4eac\u306e\u96ea\u3053\u308f\u3082\u3046\u884c\u304d\u305f\u304f\u306a\u3044\u3069\u3046\u3057\u3088\u3046","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2311932176,"id_str":"2311932176","name":"\u898f\u6a21\u7e2e\u5c0f","screen_name":"rexrykz","location":"\u5929\u79e4\u5ea7","description":"\u3054\u308a\u308a\u3093","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":30,"friends_count":30,"listed_count":0,"created_at":"Sun Jan 26 14:21:29 +0000 2014","favourites_count":135,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":522,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/427447414392242178\/hRYgQk6X_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/427447414392242178\/hRYgQk6X_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2311932176\/1392457924","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935733157888,"id_str":"434642935733157888","text":"\u65e5\u5409\u5165\u5834\u898f\u5236\u3060","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":82339669,"id_str":"82339669","name":"\u305f\u304b\u3058\u4e3c@\u6625\u306f\u897f4\uff4e34b","screen_name":"TKG_sumy","location":"\u304d\u307f\u541b\u306e\u30ea\u30a2\u30cf\u30d6\u306e\u4e0a","description":"\u771f\u51db\u3068\u6771\u5dfb\u3068\u30e9\u30b0\u3068\u81ea\u8ee2\u8eca\u3068\u30b3\u30b9\u306b\u5922\u4e2d\u301c\u30a2\u30e1\u30b3\u30df\u3082\u597d\u304d\u3067\u3059\u3002\u3042\u3068\u3001\u3068\u304d\u3069\u304d\u5b57\u3082\u66f8\u304d\u307e\u3059\uff1e(\uff89)\u2299 \u03c9 \u2299(\u30fe)\uff1c\uff34\uff2c\u306f\u3072\u3069\u304f\u96d1\u591a\u3067\u3059\u304c\u3001\u30d4\u30f3\u3068\u304d\u305f\u3089\u30d5\u30a9\u30ed\u30fc\u3069\u3046\u305e\uff5e","url":"http:\/\/t.co\/ZyMLqQqiJU","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/ZyMLqQqiJU","expanded_url":"http:\/\/jjsumy.blog8.fc2.com\/blog-entry-1134.html","display_url":"jjsumy.blog8.fc2.com\/blog-entry-113\u2026","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":448,"friends_count":474,"listed_count":29,"created_at":"Wed Oct 14 11:45:22 +0000 2009","favourites_count":4069,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"verified":false,"statuses_count":86106,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/429035051\/450527190_small.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/429035051\/450527190_small.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/434224454852296704\/v-qGhsix_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/434224454852296704\/v-qGhsix_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/82339669\/1391949805","profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935728992256,"id_str":"434642935728992256","text":"@Atelier__Totori \u3048\u3048\u3001\u305d\u3046\u3067\u3059\u306d\u3002","source":"\u003ca href=\"http:\/\/jtc-proserpine.com\/Help\/wt_loginNew_appNew.html\" rel=\"nofollow\"\u003eOutbreak Company\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642451739852800,"in_reply_to_status_id_str":"434642451739852800","in_reply_to_user_id":781490616,"in_reply_to_user_id_str":"781490616","in_reply_to_screen_name":"Atelier__Totori","user":{"id":1967450311,"id_str":"1967450311","name":"\u30df\u30e5\u30bb\u30eb\u30fb\u30d5\u30a9\u30a2\u30e9\u30f3","screen_name":"MyucelFoalan","location":"","description":"\u3054\u4e3b\u4eba\u69d8\u3063","url":"http:\/\/t.co\/0Dg55y0jZW","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/0Dg55y0jZW","expanded_url":"http:\/\/anime.geocities.jp\/myucel_foalan\/","display_url":"anime.geocities.jp\/myucel_foalan\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":1965,"friends_count":2002,"listed_count":2,"created_at":"Thu Oct 17 19:03:17 +0000 2013","favourites_count":0,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":75970,"lang":"en","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000610398049\/e1352c9f071b51eaaa0c86999d7ad801_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000610398049\/e1352c9f071b51eaaa0c86999d7ad801_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935724789760,"id_str":"434642935724789760","text":"\u3010\u30a4\u30bf\u30ea\u30a2\u4eba\u306e\u53e3\u8aac\u304d\u6587\u53e5ver\u9ed2\u30d0\u30b9\u3011\n\n\u9ec4\u300c\u75db\u304f\u306a\u304b\u3063\u305f\u3063\u30b9\u304b\uff1f\u5929\u56fd\u304b\u3089\u304a\u3061\u3066\u304d\u3066\u300d\n\u9752\u300c\u4ffa\u81ea\u5206\u306e\u904b\u547d\u3092\u6068\u3093\u3067\u3093\u3060\u3002\u4eca\u307e\u3067\u304a\u524d\u3068\u51fa\u4f1a\u3048\u306a\u304b\u3063\u305f\u904b\u547d\u3092\u306a\u300d\n\u8d64\u300c\u4eca\u9803\u5929\u56fd\u3058\u3083\u5927\u9a12\u304e\u3060\u3002\u541b\u3068\u3044\u3046\u5929\u4f7f\u304c\u3044\u306a\u304f\u306a\u3063\u3066\u300d\n\u7dd1\u300c\u6700\u8fd1\u76ee\u306e\u8abf\u5b50\u304c\u60aa\u3044\u306e\u3060\u3088\u3002\u304a\u524d\u3068\u51fa\u4f1a\u3063\u3066\u304b\u3089\u304a\u524d\u3057\u304b\u898b\u3048\u306a\u3044\u300d","source":"\u003ca href=\"http:\/\/bit.ly\/UDldit\" rel=\"nofollow\"\u003eSaezuri\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":608147335,"id_str":"608147335","name":"\u5cf0\u3057\u304f\u3066\u3064\u3089\u3044\u304a\u3093","screen_name":"son58kb","location":"\u3042\u304a\u307f\u306d\u304f\u3093\u3000\u3042\u3042\u3042\u304a\u307f\u306d\u304f\u3093\u3000\u3042\u304a\u307f\u306d\u304f\u3093","description":"\u9752\u9ed2\u304c\u840c\u3048\u308b\uff0f\u9752\u5cf0\u541b\u304c\u3044\u308c\u3070\u3053\u306e\u4e16\u754c\u306f\u56de\u308b\u3068\u601d\u3063\u3066\u3044\u308b\uff0f\u5730\u96f7\u306f\u306a\u3044\uff0f\u307f\u3093\u306a\u597d\u304d\uff0f\u3067\u3082\u9752\u5cf0\u541b\uff0f\u6210\u4eba\u6e08\u3000\u3000\u203b\u4ed6\u30b8\u30e3\u30f3\u30eb\u306e\u8a71\u3082\u3061\u3087\u3044\u3061\u3087\u3044\u3059\u308b\u3088\uff01","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9715,"friends_count":334,"listed_count":160,"created_at":"Thu Jun 14 13:30:25 +0000 2012","favourites_count":2820,"utc_offset":32400,"time_zone":"Irkutsk","geo_enabled":false,"verified":false,"statuses_count":48701,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/666560924\/bd647a6e1db3b3a168d8f04767151230.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/666560924\/bd647a6e1db3b3a168d8f04767151230.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/433978032919810048\/RFw9ff6K_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/433978032919810048\/RFw9ff6K_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/608147335\/1385732918","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935720587264,"id_str":"434642935720587264","text":"RT @flumpool_bots: \u541b\u306b\u9022\u3048\u305f\u3053\u3068 \u672c\u5f53\u306b\u3088\u304b\u3063\u305f\u3068\u305d\u3046\u8a00\u3048\u308b\u305d\u306e\u7b11\u9854\u3092\u5b88\u308a\u305f\u3044 \u6765\u5e74\u3082\u518d\u6765\u5e74\u3082\u4eca\u4ee5\u4e0a\u306b\u541b\u304c\u597d\u304d\u3067 \u305d\u308c\u304f\u3089\u3044\u50d5\u306e\u3059\u3079\u3066\u3067 \u50d5\u306b\u3057\u304b\u8a00\u3048\u306a\u3044\u8a00\u8449\u3092\u4eca \u541b\u306b\u5c4a\u3051\u305f\u3044 \u266a\u541b\u306b\u5c4a\u3051 #flumpool","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1670503538,"id_str":"1670503538","name":"\u62d3\u4eba","screen_name":"takuto45290268","location":"","description":"\uff11\u5e74\uff12\u7d44\uff12\uff18\u756a \u30c6\u30cb\u30b9\u90e8","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":273,"friends_count":369,"listed_count":0,"created_at":"Wed Aug 14 13:22:58 +0000 2013","favourites_count":2,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1978,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/424515848758247424\/FeuZg1Ys_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/424515848758247424\/FeuZg1Ys_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1670503538\/1384933937","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:40:19 +0000 2014","id":434638294773547008,"id_str":"434638294773547008","text":"\u541b\u306b\u9022\u3048\u305f\u3053\u3068 \u672c\u5f53\u306b\u3088\u304b\u3063\u305f\u3068\u305d\u3046\u8a00\u3048\u308b\u305d\u306e\u7b11\u9854\u3092\u5b88\u308a\u305f\u3044 \u6765\u5e74\u3082\u518d\u6765\u5e74\u3082\u4eca\u4ee5\u4e0a\u306b\u541b\u304c\u597d\u304d\u3067 \u305d\u308c\u304f\u3089\u3044\u50d5\u306e\u3059\u3079\u3066\u3067 \u50d5\u306b\u3057\u304b\u8a00\u3048\u306a\u3044\u8a00\u8449\u3092\u4eca \u541b\u306b\u5c4a\u3051\u305f\u3044 \u266a\u541b\u306b\u5c4a\u3051 #flumpool","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":570843363,"id_str":"570843363","name":"flumpool_bot","screen_name":"flumpool_bots","location":"","description":"flumpool\u306e\u66f2\u306e\u6b4c\u8a5e\u3092bot\u3067\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u3044\u304d\u307e\u3059\u3002\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u306a\u306e\u3067\u3001\u30d5\u30a9\u30ed\u30ef\u30fc\u5897\u3084\u3057\u305f\u3044\u65b9\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044!\u81ea\u52d5\u30ea\u30d5\u30a9\u30ed\u30fc\u3067\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10553,"friends_count":3498,"listed_count":50,"created_at":"Fri May 04 11:43:21 +0000 2012","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":11631,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2189718029\/flumpool_080826_jacket1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2189718029\/flumpool_080826_jacket1_normal.jpg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":9,"favorite_count":3,"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":9,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935712210945,"id_str":"434642935712210945","text":"RT @imaneta777: \u301020\u4ee3\u7537\u5973\u306e\u6b63\u89e3\u738716%\u3011\r\u30ad\u30b9\u3059\u308b\u7537\u5973\u306e\u5199\u771f\u306b\u6f5c\u3080\u9593\u9055\u3044\r\r\u30ad\u30b9\u3092\u3059\u308b\u7537\u5973\u306e\u5199\u771f\u3067\u3059\u304c\u3001\u6c7a\u5b9a\u7684\u306a\u9593\u9055\u3044\u304c\u6f5c\u3093\u3067\u3044\u307e\u3059\u3002\r\r\u4f55\u304c\u9593\u9055\u3063\u3066\u3044\u308b\u304b\u308f\u304b\u308a\u307e\u3059\u304b\uff1f\r\r\u7b54\u3048\u21d2http:\/\/t.co\/zMilamXnOU http:\/\/t.co\/7A44\u2026","source":"\u003ca href=\"http:\/\/twwi.biz\/cm1\/index.php\" rel=\"nofollow\"\u003e20\u4ee3\u7537\u5973\u306e\u6b63\u89e3\u738716%\u306e\u9593\u9055\u3044\u3055\u304c\u3057\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":521407539,"id_str":"521407539","name":"\u3061\u3083\u3093\u307f\u3044@\u7389\u68ee","screen_name":"or_xoxo","location":"96line","description":"\uff34ama\uff2dori \uff39uta(\u3063^\u03c9^\uff43)\u300011\/15\u7d04\u675f\u9b42","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":533,"friends_count":195,"listed_count":3,"created_at":"Sun Mar 11 15:22:31 +0000 2012","favourites_count":43,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":4708,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/426893160623525889\/sahbANr-_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/426893160623525889\/sahbANr-_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/521407539\/1381627516","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Wed Feb 12 14:49:00 +0000 2014","id":433613714667757568,"id_str":"433613714667757568","text":"\u301020\u4ee3\u7537\u5973\u306e\u6b63\u89e3\u738716%\u3011\r\u30ad\u30b9\u3059\u308b\u7537\u5973\u306e\u5199\u771f\u306b\u6f5c\u3080\u9593\u9055\u3044\r\r\u30ad\u30b9\u3092\u3059\u308b\u7537\u5973\u306e\u5199\u771f\u3067\u3059\u304c\u3001\u6c7a\u5b9a\u7684\u306a\u9593\u9055\u3044\u304c\u6f5c\u3093\u3067\u3044\u307e\u3059\u3002\r\r\u4f55\u304c\u9593\u9055\u3063\u3066\u3044\u308b\u304b\u308f\u304b\u308a\u307e\u3059\u304b\uff1f\r\r\u7b54\u3048\u21d2http:\/\/t.co\/zMilamXnOU http:\/\/t.co\/7A449HpomK","source":"\u003ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2279426341,"id_str":"2279426341","name":"\u4eca\u3059\u3050\u8a71\u3057\u305f\u304f\u306a\u308b\u30cd\u30bf","screen_name":"imaneta777","location":"","description":"\u77e5\u3063\u3066\u3057\u307e\u3063\u305f\u3089\u8ab0\u304b\u306b\u8a71\u3055\u305a\u306b\u306f\u3044\u3089\u308c\u306a\u304f\u306a\u308b\u30cd\u30bf\u3092\u304a\u5c4a\u3051\u266a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":49730,"friends_count":0,"listed_count":54,"created_at":"Mon Jan 06 18:11:46 +0000 2014","favourites_count":1,"utc_offset":32400,"time_zone":"Irkutsk","geo_enabled":false,"verified":false,"statuses_count":1602,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000163686382\/nkCpNj-i.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000163686382\/nkCpNj-i.png","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/420256911087259648\/PtFQeP4M_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/420256911087259648\/PtFQeP4M_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2279426341\/1389032154","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":15792,"favorite_count":522,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},"retweet_count":15792,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935712194561,"id_str":"434642935712194561","text":"\u4f8b\u306b\u3088\u3063\u3066\u307e\u305f\u9020\u8a9e\u3092\u304b\u3044\u3066\u3044\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":269186257,"id_str":"269186257","name":"An","screen_name":"an_fillnote","location":"EDEN to \u7db1\u5cf6 I LOVE \u6cbc\u6d25","description":"AcuticNotes\u97f3\u697d\u62c5\u5f53 http:\/\/t.co\/YUJVeNa7fA \u66f2\u3092\u4f5c\u3063\u3066\u307e\u3059\u3002\u97f3\u3068\u304a\u5199\u771f\u304c\u597d\u304d\u3067\u3059 \u5404\u7a2e\u3001\u97f3\u306e\u304a\u4ed5\u4e8b\u3092\u5546\u696d\u30fb\u540c\u4eba\u554f\u308f\u305a\u53d7\u3051\u4ed8\u3051\u3066\u3044\u307e\u3059\u3002\u3054\u4f9d\u983c\u306fanproducts@hotmail.co.jp\u307e\u3067! 1992.5.26","url":"http:\/\/t.co\/DxQolLpXyS","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/DxQolLpXyS","expanded_url":"http:\/\/soundcloud.com\/an-fillnote","display_url":"soundcloud.com\/an-fillnote","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/YUJVeNa7fA","expanded_url":"http:\/\/acutic.net\/","display_url":"acutic.net","indices":[16,38]}]}},"protected":false,"followers_count":1290,"friends_count":406,"listed_count":88,"created_at":"Sun Mar 20 07:46:42 +0000 2011","favourites_count":5199,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"verified":false,"statuses_count":62140,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/425572278596689920\/pIWL4I_N_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/425572278596689920\/pIWL4I_N_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/269186257\/1369131114","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935707992064,"id_str":"434642935707992064","text":"@water_sapphireR \n\u30e9\u30a6\u30eb\u3044\u3044\u3084\u3064\u306a\u3093\u3060\u305c\uff65\uff65\uff65(\u3061\u3087\u3063\u3068\u6ce3\u3044\u305f)\n\u300c \u30e9\u30a6\u30eb\u3063\u3066\u308b \u300d\u3010\u8a00\u8449\u306e\u610f\u5473\u3011 1)\u7570\u6027\u3068\u306e\u51fa\u4f1a\u3044\u304c\u5c11\u306a\u3044\u3055\u307e\u3002 2)\u904b\u306b\u898b\u653e\u3055\u308c\u305f\u3088\u3046\u3059\u3002 3)\u5468\u308a\u304b\u3089\u4eba\u304c\u53bb\u3063\u3066\u3044\u304f\u72b6\u614b\u3002 http:\/\/t.co\/SKYbAuWwDZ","source":"web","truncated":false,"in_reply_to_status_id":434641467072450560,"in_reply_to_status_id_str":"434641467072450560","in_reply_to_user_id":2309297906,"in_reply_to_user_id_str":"2309297906","in_reply_to_screen_name":"water_sapphireR","user":{"id":2308699093,"id_str":"2308699093","name":"\u30c6\u30a3\u30c4\u30a3\u30a2\u30fc\u30ce","screen_name":"tiziano_rs","location":"\u30ea\u30d2\u30bf\u30eb\u30bc\u30f3","description":"\u3010\u308d\u3044\u3063\u305f\u30fc3\u671f\u5c02\u7528\u57a2\u3011\u4f1d\u7d71\u3042\u308b\u5927\u8056\u5802\u306e\u5730\u4e0b\u3067\u88cf\u30ab\u30b8\u30ce\u300c\u30a6\u30aa\u30f4\u30a9\uff65\u30c9\u30ed\u300d&\u95c7\u91d1\u878d\u3092\u904b\u55b6\u3059\u308b\u9b3c\u755c\u30af\u30baAB(\u6271\u3044\u3068\u3057\u3066\u306fNPC)R18\/BL\/NL\u65e2\u77e5\u95a2\u4fc2\u4f55\u3067\u3082\u30c9\u30a6\u30be\u3000\u203b\u30ab\u30b8\u30ce\u5f93\u696d\u54e1\u52df\u96c6\u4e2d!!\u660e\u308b\u304f\u3066\u697d\u3057\u3044\u8077\u5834\u3067\u3059!!\u8a73\u7d30\u306fURL\u304b\u3089!","url":"https:\/\/t.co\/YYh74pNkWG","entities":{"url":{"urls":[{"url":"https:\/\/t.co\/YYh74pNkWG","expanded_url":"https:\/\/www.evernote.com\/shard\/s383\/sh\/5a24b003-acb4-4478-b645-a3b999472599\/3c706ec0b8d833caea5b5d3b3e64acd5","display_url":"evernote.com\/shard\/s383\/sh\/\u2026","indices":[0,23]}]},"description":{"urls":[]}},"protected":false,"followers_count":228,"friends_count":235,"listed_count":67,"created_at":"Fri Jan 24 17:21:30 +0000 2014","favourites_count":3427,"utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"verified":false,"statuses_count":2806,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000175079023\/qKnjv4E0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000175079023\/qKnjv4E0.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/433316185493356544\/uTf1OJsO_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/433316185493356544\/uTf1OJsO_normal.png","profile_link_color":"A22041","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935699615745,"id_str":"434642935699615745","text":"RT @ww_ultimate: \u30de\u30c3\u30af\u306e\u30d0\u30eb\u30fc\u30f3\u304c\u5012\u308c\u3066\u5927\u5909\u306a\u3053\u3068\u306b\u306a\u3063\u3066\u308b\uff57\uff57\uff57 http:\/\/t.co\/g5Cs9yG0wi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2317678903,"id_str":"2317678903","name":"\u2741 Che.rie.","screen_name":"mintyc3","location":"\u3069\u3093\u306a\u6642\u3082 \u5bc2\u3057\u3044\u3061\u3083\u3093\u3060\u3082\u3093\u306d","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":9,"friends_count":19,"listed_count":0,"created_at":"Wed Jan 29 19:22:06 +0000 2014","favourites_count":11,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":190,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/434612779140390912\/PPrb2oFD_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/434612779140390912\/PPrb2oFD_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2317678903\/1392454735","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Fri Feb 14 17:09:46 +0000 2014","id":434373914785894401,"id_str":"434373914785894401","text":"\u30de\u30c3\u30af\u306e\u30d0\u30eb\u30fc\u30f3\u304c\u5012\u308c\u3066\u5927\u5909\u306a\u3053\u3068\u306b\u306a\u3063\u3066\u308b\uff57\uff57\uff57 http:\/\/t.co\/g5Cs9yG0wi","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1189139556,"id_str":"1189139556","name":"\u5b8c\u5168\u7a76\u6975\u614b\u30af\u30bd\u30ef\u30ed\u30b9wwwBOT","screen_name":"ww_ultimate","location":"\u51a5\u738b\u661f","description":"\u5b8c\u5168\u7a76\u6975\u614b\u30af\u30bd\u30ef\u30ed\u30b9wwwBOT\uff57\r\n\u30ef\u30ed\u30b9BOT\u306e\u306a\u304b\u3067\u3082\u3055\u3089\u306b\u30ef\u30ed\u30b9\u306a\u30c4\u30a4\u30fc\u30c8\u3092\u3064\u3076\u3084\u304d\u307e\u3059\u266a\u7b11\u3063\u305f\u3089RT","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":120675,"friends_count":10121,"listed_count":597,"created_at":"Sun Feb 17 11:07:42 +0000 2013","favourites_count":3,"utc_offset":32400,"time_zone":"Irkutsk","geo_enabled":false,"verified":false,"statuses_count":26878,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3498030666\/df67e6414f51571ea1d2e47a3687539e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3498030666\/df67e6414f51571ea1d2e47a3687539e_normal.jpeg","profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":139,"favorite_count":63,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},"retweet_count":139,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935695425536,"id_str":"434642935695425536","text":"\u30ea\u30dc\u30cd\u30b9\u30c8\u3044\u304d\u305f\u3044\uff01\u5730\u65b9\u4f4f\u307f\u304f\u3063\u305d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":496759322,"id_str":"496759322","name":"\u307e\u306a\u306a\u3093","screen_name":"mnnn30","location":"mie","description":"\u25bd \u5357\u53e3\u5948\u3005 \/ \u5897\u4e95\u307f\u304a \/ \u541b\u5cf6\u5149\u8f1d \u0669\ua4b0\u2362 \ua4b1\u06f6\u207c\u00b3\u208c\u2083","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":180,"friends_count":160,"listed_count":4,"created_at":"Sun Feb 19 08:23:32 +0000 2012","favourites_count":586,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":16538,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/433562828918624256\/X4FH-uMW_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/433562828918624256\/X4FH-uMW_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/496759322\/1380539999","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935695413249,"id_str":"434642935695413249","text":"RT @kikajin: \u3010\u7c73\u56fd\u3092\u4fb5\u98df\u3059\u308b\u97d3\u56fd\u306e\u53cd\u65e5\u5de5\u4f5c\u3011\n\u30ec\u30b9\u30c8\u30e9\u30f3\u3067\u300c\u30e9\u30fc\u30e1\u30f3\u306b\u3064\u3070\u300d\u300c\u51b7\u3048\u305f\u30e9\u30a4\u30b9\u300d\n\u6170\u5b89\u5a66\u3067\u5728\u7c73\u65e5\u672c\u4eba\u306b\u5acc\u304c\u3089\u305b\n\u4f4e\u8133\u30d0\u97d3\u4eba\u7a2e\u306b\u3001\u89aa\u65e5\u6c11\u65cf\u3068\u56e3\u7d50\u3057\u3066\u7acb\u3061\u5411\u304b\u3048\uff01\n\u89aa\u97d3\u3088\u308a\u53cd\u97d3\u304c\u591a\u3044\u306f\u305a\uff01\u7279\u306b\u30a2\u30d5\u30ea\u30ab\u7cfb\u3001ASAN\u7b49\u306f\u53cd\u97d3\u3067\u3042\u308b\uff01\n\nhttp:\/\/t.co\/\u2026","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":748809108,"id_str":"748809108","name":"batahari\uff17","screen_name":"batahari7","location":"","description":"\u9577\u5d0e\u5728\u4e2d\u306e\u3061\u3083\u3093\u307d\u3093\u5927\u597d\u304d\u4eba\u9593\u3067\u3059","url":"http:\/\/t.co\/tuQyd3Ei4L","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/tuQyd3Ei4L","expanded_url":"http:\/\/batahari9.blog.fc2.com\/","display_url":"batahari9.blog.fc2.com","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":355,"friends_count":192,"listed_count":0,"created_at":"Fri Aug 10 07:00:10 +0000 2012","favourites_count":1,"utc_offset":32400,"time_zone":"Irkutsk","geo_enabled":false,"verified":false,"statuses_count":7274,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/432417980308135936\/wj1DHeS6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/432417980308135936\/wj1DHeS6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/748809108\/1378940450","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Fri Feb 14 23:48:26 +0000 2014","id":434474245259657216,"id_str":"434474245259657216","text":"\u3010\u7c73\u56fd\u3092\u4fb5\u98df\u3059\u308b\u97d3\u56fd\u306e\u53cd\u65e5\u5de5\u4f5c\u3011\n\u30ec\u30b9\u30c8\u30e9\u30f3\u3067\u300c\u30e9\u30fc\u30e1\u30f3\u306b\u3064\u3070\u300d\u300c\u51b7\u3048\u305f\u30e9\u30a4\u30b9\u300d\n\u6170\u5b89\u5a66\u3067\u5728\u7c73\u65e5\u672c\u4eba\u306b\u5acc\u304c\u3089\u305b\n\u4f4e\u8133\u30d0\u97d3\u4eba\u7a2e\u306b\u3001\u89aa\u65e5\u6c11\u65cf\u3068\u56e3\u7d50\u3057\u3066\u7acb\u3061\u5411\u304b\u3048\uff01\n\u89aa\u97d3\u3088\u308a\u53cd\u97d3\u304c\u591a\u3044\u306f\u305a\uff01\u7279\u306b\u30a2\u30d5\u30ea\u30ab\u7cfb\u3001ASAN\u7b49\u306f\u53cd\u97d3\u3067\u3042\u308b\uff01\n\nhttp:\/\/t.co\/wohlSSPf2W","source":"\u003ca href=\"http:\/\/twitter.com\/tweetbutton\" rel=\"nofollow\"\u003eTweet Button\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":588156342,"id_str":"588156342","name":"Tuyoshi Kobayashi","screen_name":"kikajin","location":"\u5927\u962a\u5e02\u5185","description":"\u3010\u4e16\u754c\u306b\u5e73\u548c\u3092\u3011\u30a8\u30cd\u30eb\u30ae\u30fc\u30fb\u6c34\u6e90\u30fb\u98df\u6599\u7d1b\u4e89\u3092\r\n\u306a\u304f\u3057\u3066\u3001\u5b50\u4f9b\u305f\u3061\u306b\u672a\u6765\u3092\u6b8b\u305d\u3046\uff01\r\n\u5b9c\u3057\u304f\u304a\u9858\u3044\u81f4\u3057\u307e\u3059\u3002","url":"http:\/\/t.co\/kF6ZsFcagn","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/kF6ZsFcagn","expanded_url":"http:\/\/twipple.jp\/","display_url":"twipple.jp","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":19860,"friends_count":20773,"listed_count":82,"created_at":"Wed May 23 06:58:34 +0000 2012","favourites_count":418,"utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"verified":false,"statuses_count":9140,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2248033389\/Lighthouse_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2248033389\/Lighthouse_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/588156342\/1389638431","profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":24,"favorite_count":4,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},"retweet_count":24,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":true,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935695413248,"id_str":"434642935695413248","text":"\u308f\u304b\u308b\u6c17\u304c\u3059w\u3000Amazon\u3068\u697d\u5929\u306e\u9055\u3044\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\u3000\u307b\u3093\u3068\u3053\u308c\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57 - \u30ab\u30ca\u901f http:\/\/t.co\/Leq21gQdUg","source":"\u003ca href=\"http:\/\/www.dolphin-browser.com\" rel=\"nofollow\"\u003eDolphinBrowser\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1126674968,"id_str":"1126674968","name":"\u304f\u30fc\u3061\u3083\u3093\uff20\u4e00\u6642\u30cb\u30fc\u30c8","screen_name":"Deepimpact7864","location":"","description":"\u304f\u30fc\u3061\u3083\u3093\u306e\u7dca\u6025\u907f\u96e3\u5148\u3067\u3059\u3002\r\n\u4eca\u5f8c\u3068\u3082\u3088\u308d\u3057\u304f\u3067\u3059\u3002\r\n\u5f8c\u3067\u623b\u308b\u304b\u3082\u3067\u3059\uff57","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":225,"friends_count":476,"listed_count":1,"created_at":"Mon Jan 28 01:14:25 +0000 2013","favourites_count":4,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":3925,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3173140357\/3a2add980818a2bc4c795860c715c4d7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3173140357\/3a2add980818a2bc4c795860c715c4d7_normal.png","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935691231232,"id_str":"434642935691231232","text":"@fuj10ne \u3042\u308c\u3092\u77e5\u3089\u306a\u3044\u306a\u3093\u3066\u4eba\u751f\u306e0.02\uff5e0.03%\u306f\u640d\u3057\u3066\u308b","source":"web","truncated":false,"in_reply_to_status_id":434642845207519234,"in_reply_to_status_id_str":"434642845207519234","in_reply_to_user_id":169743436,"in_reply_to_user_id_str":"169743436","in_reply_to_screen_name":"fuj10ne","user":{"id":1328137471,"id_str":"1328137471","name":"\u65ed\u3055\u3093","screen_name":"asahi3jpn","location":"\u57fc\u7389\u770c\u306e\u5317\u306e\u65b9","description":"BMS(\u2605\u2605),DTM,IIDX,SDVX\u306a\u3069","url":"http:\/\/t.co\/QvsAzuWIr7","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/QvsAzuWIr7","expanded_url":"http:\/\/www.geocities.jp\/asahi3jpn\/","display_url":"geocities.jp\/asahi3jpn\/","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":346,"friends_count":346,"listed_count":25,"created_at":"Fri Apr 05 01:10:29 +0000 2013","favourites_count":4276,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":22258,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/431055626425229313\/8DO9itdg_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/431055626425229313\/8DO9itdg_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1328137471\/1386510889","profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935691223040,"id_str":"434642935691223040","text":"\u6708\u66dc\u65e5\u65701\u304c\u3042\u308b \uff1d \u8ab2\u984c\u63d0\u51fa \uff1d 1H\u6b7b\u4ea1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1490597732,"id_str":"1490597732","name":"\u3072\u304b\u308a","screen_name":"__ys83","location":"\u2764 \u5b89\u7530\u304f\u3093\u3068\u3086\u304b\u3044\u306a\u4ef2\u9593\u305f\u3061 \u2764","description":"\u9ad81 \/ \u8efd\u97f3 \/ \uff71\uff99\uff8a\uff9e\uff72\uff80\uff70 \/ \uff7c\uff9e\uff6c\uff86\uff66\uff80","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":44,"friends_count":47,"listed_count":0,"created_at":"Fri Jun 07 15:03:22 +0000 2013","favourites_count":3298,"utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"verified":false,"statuses_count":4860,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/433214065117110272\/rWXvK5QR_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/433214065117110272\/rWXvK5QR_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1490597732\/1392220504","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935691214848,"id_str":"434642935691214848","text":"@nana__agi \u300c\u307e\u3001\u307e\u3066\u3088\u2026\u3053\u308c\u7206\u5f3e\u306a\u3089\u7206\u767a\u3059\u3093\u3058\u3083\u306d\u3048\u304b\uff01\uff01\u3084\u3079\u3063\u2026\u2026\u3063\u3050\u3041\u3041\u3041\u2026\u2026\uff01\uff01\uff01((\u7206\u767a\u300d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642294818340864,"in_reply_to_status_id_str":"434642294818340864","in_reply_to_user_id":2278541436,"in_reply_to_user_id_str":"2278541436","in_reply_to_screen_name":"nana__agi","user":{"id":619707490,"id_str":"619707490","name":"Yuiway@\u767d\u8ecd1\u5e74\u5207\u308a\u8fbc\u307f\u968a\u9577","screen_name":"yui_otodama","location":"\u30cf\u30a4\u30e9\u30eb\u57ce\u4e0b\u753a\u301c\u30c8\u30a2\u30eb\u6751","description":"\u7dd1\u306e\u8863\u3092\u8eab\u306b\u307e\u3068\u3046\u3001\u795e\u306b\u9078\u3070\u308c\u3057\u5c11\u5973\u3002(wikipedia\u3088\u308a\u5f15\u7528)\u73fe\u5728\u3001\u6f14\u8005\u30fb\u6b4c\u3044\u624b\u3068\u3057\u3066\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u3092\u62e0\u70b9\u306b\u6d3b\u52d5\u3092\u3057\u3066\u3044\u308b\u3002\u30b5\u30e0\u30cd:\u30aa\u30aa\u30ab\u30df\u3055\u3093\u30d8\u30c3\u30c0\u30fc:\u81ea\u4f5c\u3010\u5b66\u6226\u3011","url":"http:\/\/t.co\/sjO4R8hVt0","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/sjO4R8hVt0","expanded_url":"http:\/\/nicovideo.jp\/mylist\/38859798","display_url":"nicovideo.jp\/mylist\/38859798","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":915,"friends_count":882,"listed_count":14,"created_at":"Wed Jun 27 05:27:07 +0000 2012","favourites_count":2824,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":54467,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/675520192\/c915a7b761b34bb021896a2a770f34b8.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/675520192\/c915a7b761b34bb021896a2a770f34b8.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/434561356256120832\/-H2dC_Jq_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/434561356256120832\/-H2dC_Jq_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/619707490\/1392442151","profile_link_color":"B40B43","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935687041024,"id_str":"434642935687041024","text":"@sergeant__k66 \u3084\u3063\u3071\u305d\u308c\u3082\u591a\u3044\u3088\u306d\u301c\u2026\u305d\u308c\u3068\u30a2\u30af\u30bb\u53f3\u4e0b\u304c\u591a\u3044\u30a4\u30e1\u30fc\u30b8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642508237111296,"in_reply_to_status_id_str":"434642508237111296","in_reply_to_user_id":602698940,"in_reply_to_user_id_str":"602698940","in_reply_to_screen_name":"sergeant__k66","user":{"id":553533618,"id_str":"553533618","name":"\u6b4c\u84ee","screen_name":"karenakagami","location":"\u4ffa\u306f\u30c7\u30d6\u3092\u3084\u3081\u308b\u305e\u30fc\u30c3\u30c3!!\u30b8\u30e7\u30b8\u30e7\u30fc!!","description":"\u8150\u3063\u3066\u307e\u3059\u3002\u96d1\u98df\u3067\u3059\u3002\u73fe\u5728 \u30a2\u30a4\u30ab\u30c4\/VG\/JOGIO \u3068\u304b\u306b\u304a\u71b1\u3067\u3059\uff01\u304b\u3048\u3067\u3061\u3083\u3093\uff01\u304b\u3048\u3067\u3061\u3083\u3093\uff01\u30a2\u30b5\u30ab\u3055\u3093\uff01\u30a2\u30b5\u30ab\u3055\u3093\uff01\u30b8\u30e7\u30cb\u30a3\u3061\u3083\u3093\uff01\u30b8\u30e7\u30cb\u30a3\u3061\u3083\u3093\uff01\u8a73\u3057\u304f\u306f\u3064\u3044\u30d7\u30ed\u3067\u898b\u3066\u304f\u3060\u3055\u3044\u3002\u30b3\u30b9\u30d7\u30ec\u3068\u304b\u3082\u3057\u307e\u3059\u3002","url":"http:\/\/t.co\/skcQN0jBWH","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/skcQN0jBWH","expanded_url":"http:\/\/twpf.jp\/home\/jump?p=http%253A%252F%252Ftwpf.jp%252Fkarenakagami","display_url":"twpf.jp\/home\/jump?p=ht\u2026","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":297,"friends_count":345,"listed_count":5,"created_at":"Sat Apr 14 11:17:47 +0000 2012","favourites_count":3439,"utc_offset":32400,"time_zone":"Irkutsk","geo_enabled":false,"verified":false,"statuses_count":25634,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/433925987785383936\/WGpqzNuN_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/433925987785383936\/WGpqzNuN_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/553533618\/1392425830","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935682854912,"id_str":"434642935682854912","text":"\u304a\u3084\u3059\u307f\u306b\u3083\u3055\u3044\u2606\u4eca\u65e5\u3082\u3042\u308a\u304c\u3068\u3046\u301c\u2606\u30d5\u30a9\u30ed\u30fc\u3082\u3042\u308a\u304c\u3068\u3046\u301c\u2606\u697d\u3057\u3044\u591c\u3092\u904e\u3054\u3057\u3066\u306d\u2606\u3044\u3044\u5922\u3092\u2606\uff3c\uff3eo\uff3e\uff0f\u2606","source":"\u003ca href=\"http:\/\/twtr.jp\" rel=\"nofollow\"\u003eKeitai Web\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1854329083,"id_str":"1854329083","name":"\u30a8\u30ea\u30fc\u2606\uff1d","screen_name":"excitingneko","location":"","description":"\u672c\u8aad\u3093\u3060\u308a\u97f3\u697d\u805e\u3044\u305f\u308a\u643a\u5e2f\u3044\u3058\u3063\u3066\u307e\u3059\u2606\u304a\u5316\u7ca7\u4ee5\u5916\u306e\u7f8e\u5bb9\u306e\u3053\u3068\u304c\u597d\u304d\u3067\u7f8e\u9854\u7b4b\u30c8\u30ec\u3068\u9020\u9854\u30de\u30c3\u30b5\u30fc\u30b8\u3068\u30ea\u30d5\u30c8\u30a2\u30c3\u30d7\u30de\u30c3\u30b5\u30fc\u30b8\u3068\u30ea\u30f3\u30d1\u30b1\u30a2\u3068\u30ba\u30f3\u30d0\u30c0\u30f3\u30b9\u3068\u30b7\u30f3\u30c7\u30a3\u306e\u30ef\u30fc\u30af\u30a2\u30a6\u30c8\u3068\u30c8\u30ec\u30fc\u30b7\u30fc\u30e1\u30bd\u30c3\u30c9\u3068\u30b5\u30fc\u30ad\u30c3\u30c8\u30c8\u30ec\u30fc\u30cb\u30f3\u30b0\u304c\u65e5\u8ab2\u3067\u3059\u2606\u57fa\u672c\u30e9\u30c3\u30ad\u30fc\u3067\u30cf\u30c3\u30d4\u30fc\u2606\u4f55\u304c\u3042\u3063\u3066\u3082\u30d4\u30f3\u30c1\u306f\u30c1\u30e3\u30f3\u30b9\u2606\u7121\u8a00\u3067\u3054\u3081\u3093\u306d\u2606","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":683,"friends_count":1060,"listed_count":1,"created_at":"Wed Sep 11 13:14:08 +0000 2013","favourites_count":958,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":6726,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000443005122\/5fc05da300db99e8d54e8938aa621115_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000443005122\/5fc05da300db99e8d54e8938aa621115_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935678640128,"id_str":"434642935678640128","text":"\u30cf\u30fc\u30b2\u30f3\u30c0\u30c3\u30c4\u306e\u30b5\u30af\u30e9\u304c\u3046\u307e\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":970230511,"id_str":"970230511","name":"\u306a\u3063\u3061\u3083\u3093","screen_name":"ours_0823","location":"","description":"\u770b\u8b77\u5e2b\u2661\u6bce\u65e5\u30cf\u30c3\u30d4\u30fc\uff3c(^o^)\uff0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":33,"friends_count":58,"listed_count":0,"created_at":"Sun Nov 25 15:24:11 +0000 2012","favourites_count":47,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":1397,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/426377814602829825\/JgtQugpc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/426377814602829825\/JgtQugpc_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/970230511\/1390911028","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935666073601,"id_str":"434642935666073601","text":"@airatoryosuke92 \n\u9045\u304f\u306a\u308a\u307e\u3057\u305f(\uff61\u2022\u0301\u03c9\u2022\u0300\uff61)\n\u30bf\u30b0\u306eRT\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059!!\n\u3075\u3049\u308d\u30fc\u3055\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3059(*\u00dc*)\n\u3088\u304b\u3063\u305f\u3089\u3075\u3049\u308d\u3070\u304a\u9858\u3044\u3057\u307e\u3059!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2237596914,"in_reply_to_user_id_str":"2237596914","in_reply_to_screen_name":"airatoryosuke92","user":{"id":2256433003,"id_str":"2256433003","name":"\u306f \u306a","screen_name":"chii__ange","location":"","description":"\u738b\u5b50\u69d8=\u3061\u306d\u3093\u3086\u3046\u308a","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":73,"friends_count":87,"listed_count":0,"created_at":"Sat Dec 21 12:43:54 +0000 2013","favourites_count":251,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":422,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/429190942432567296\/LRO9FrWF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/429190942432567296\/LRO9FrWF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2256433003\/1391340391","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935666065408,"id_str":"434642935666065408","text":"RT @morinosanpo1582: \u304a\u306f\u3088\u3046\u3054\u3056\u3044\u307e\u3059\uff5e\u3002\u524d\u306b\u63cf\u3044\u3066\u307f\u305f\u3044\u3063\u3066\u8a00\u3063\u3066\u305f\u30de\u30ae\u304b\u3044\u3066\u307f\u305f\u3002\u3053\u306e\uff13\u4eba\u53ef\u611b\u3044\u304b\u3089\u5927\u597d\u304d\u3067\u3059\uff56 http:\/\/t.co\/nmCm4yoLVm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":777277999,"id_str":"777277999","name":"\u30c6\u30b9\u30c8\u671f\u9593\u306e\u30b7\u30c0\u5e83\u306f\u30c4\u30a4\u6e1b\u3057\u305f\u3044","screen_name":"shida_hiro","location":"","description":"\u30d0\u30f3\u30ae\u30e3\u4e0a\u304c\u308a\u306e\u307d\u3053\u53a8\u3002\n\u308b\u30fc\u3075\u3041\u3044\u30842G\u304c\u597d\u304d\u3002\n\u30a2\u30a4\u30b3\u30f3\u306fnayu.\u6c0f\u4f5c\u3002\n\u3064\u3044\u3077\u308d\u306f\u898b\u308b\u3079\u304d\u3002 http:\/\/t.co\/ndA10OliX7","url":null,"entities":{"description":{"urls":[{"url":"http:\/\/t.co\/ndA10OliX7","expanded_url":"http:\/\/twpf.jp\/shida_hiro","display_url":"twpf.jp\/shida_hiro","indices":[51,73]}]}},"protected":false,"followers_count":444,"friends_count":447,"listed_count":2,"created_at":"Fri Aug 24 03:01:02 +0000 2012","favourites_count":20200,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":39437,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000689559264\/f16b2a54ef5f2c12bd4d60dd0fa82a2d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000689559264\/f16b2a54ef5f2c12bd4d60dd0fa82a2d_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Jan 11 01:17:30 +0000 2014","id":421813083737042944,"id_str":"421813083737042944","text":"\u304a\u306f\u3088\u3046\u3054\u3056\u3044\u307e\u3059\uff5e\u3002\u524d\u306b\u63cf\u3044\u3066\u307f\u305f\u3044\u3063\u3066\u8a00\u3063\u3066\u305f\u30de\u30ae\u304b\u3044\u3066\u307f\u305f\u3002\u3053\u306e\uff13\u4eba\u53ef\u611b\u3044\u304b\u3089\u5927\u597d\u304d\u3067\u3059\uff56 http:\/\/t.co\/nmCm4yoLVm","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1930761474,"id_str":"1930761474","name":"\u3082\u308a\u3061\u304b\u3053","screen_name":"morinosanpo1582","location":"","description":"\u6f2b\u753b\u5bb6\u306e\u3082\u308a\u3061\u304b\u3053\u3067\u3059\u3002\u3042\u3093\u307e\u308a\u306b\u3082\u30b5\u30a4\u30c8\u3092\u653e\u7f6e\u3059\u308b\u306e\u3067\u3001\u3053\u3063\u3061\u3067\u3072\u3063\u305d\u308a\u306e\u3093\u3073\u308a\u3068\u2026\u3002\u904e\u53bb\u4f5c\u54c1\u306f\u3053\u3044\u304d\u4e03\u5909\u5316\u3001\u30e9\u30e9\u30ca\u30ae\u3001\u30c1\u30e3\u30fc\u30e0\u30a8\u30f3\u30b8\u30a7\u30eb\u306a\u3069\u3002\u73fe\u5728\u3061\u3083\u304a\u3067\u5996\u602a\u30a6\u30a9\u30c3\u30c1\u9023\u8f09\u4e2d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":2297,"friends_count":8,"listed_count":44,"created_at":"Thu Oct 03 13:45:51 +0000 2013","favourites_count":2,"utc_offset":32400,"time_zone":"Irkutsk","geo_enabled":false,"verified":false,"statuses_count":453,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"F06216","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000087210452\/6806f2f98291a6b1ee0b77845d53eaa3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000087210452\/6806f2f98291a6b1ee0b77845d53eaa3.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/434600570968489985\/IqPfx8Uu_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/434600570968489985\/IqPfx8Uu_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":588,"favorite_count":1181,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},"retweet_count":588,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935666061312,"id_str":"434642935666061312","text":"\u521d\u898b\u3067\u3059w ( @man0125hiiiina \u30d1\u30b9\u30bf http:\/\/t.co\/sI3Y0NbhtS )","source":"\u003ca href=\"http:\/\/twitcasting.tv\/\" rel=\"nofollow\"\u003eTwitCasting\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1700591360,"id_str":"1700591360","name":"\u2729\u304b\u3081\u30d1\u30b9\u30bf\u2729","screen_name":"Reichel_Flower","location":"","description":"Flower\u2729\u9df2\u5c3e\u4f36\u83dc\u2729RESPECT\uff3c(^o^)\uff0f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":693,"friends_count":87,"listed_count":0,"created_at":"Mon Aug 26 01:11:42 +0000 2013","favourites_count":609,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":10682,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/430675476059668480\/rKJNUMwS_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/430675476059668480\/rKJNUMwS_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1700591360\/1392449612","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935657689088,"id_str":"434642935657689088","text":"@minene_ravens \n\u306f\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642827583049729,"in_reply_to_status_id_str":"434642827583049729","in_reply_to_user_id":2290167565,"in_reply_to_user_id_str":"2290167565","in_reply_to_screen_name":"minene_ravens","user":{"id":2300666719,"id_str":"2300666719","name":"\u30e4\u30df@\u3050\u306c\u306c\u2026\u2026","screen_name":"yami8383ib","location":"\u8cb4\u65b9\u306e\u5074\u2764\ufe0e\u3068\u304b\u8a00\u3063\u3068\u304f\uff1fwwww","description":"ToLove\u308b\u611b\u597d\u5bb6\u540c\u76dfNo.204\/ \u30cb\u30fc\u30cf\u30a4\u540c\u76dfNo.4\/\u6771\u65b9\/ToLOVE\u308b\/\u795e\u306e\u307f\/\u3044\u3064\u5929\/\u306b\u304c\u3082\u3093\u5f0f\/\u30ce\u30fc\u30b2\u30fc\u30e0\u30ce\u30fc\u30e9\u30a4\u30d5\/\u7d42\u308f\u308a\u306e\u30bb\u30e9\u30d5\/\u5225\u57a2\u3010@himea8316m_a\u3011\/\u30ea\u30e0\u308b\u306a\u3089\u3001\u30d5\u30a9\u30ed\u30fc\u3059\u3093\u306a\u2606","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":577,"friends_count":549,"listed_count":8,"created_at":"Mon Jan 20 02:59:36 +0000 2014","favourites_count":12307,"utc_offset":null,"time_zone":null,"geo_enabled":true,"verified":false,"statuses_count":13118,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/434641920388648960\/kSZpFXg8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/434641920388648960\/kSZpFXg8_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2300666719\/1392149311","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":1,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935657672704,"id_str":"434642935657672704","text":"@kppae86 \u3046\u308f\u3042\u3002\u5bd2\u305d\u3046(*\u2229\u03c9\u2229)\u3053\u3063\u3061\u3082\u3046\u304b\u3089\u304b\u3089\u7cfb\u2500=\u2261\u03a3((( \u3064\u2022\u0300\u03c9\u2022\u0301)\u3064","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434640029004992512,"in_reply_to_status_id_str":"434640029004992512","in_reply_to_user_id":1363909832,"in_reply_to_user_id_str":"1363909832","in_reply_to_screen_name":"kppae86","user":{"id":378899513,"id_str":"378899513","name":"Nao:)","screen_name":"naokombination","location":"","description":"Selena\/Justin\/Nicki\/Olsen\/GG\/\u5b89\u5ba4\u5948\u7f8e\u6075\/Hikki\/AK69\/TDL \u30df\u30ad\u30df\u30cb\u30c1\u30d7\/\u611b\u77e5Japan(\u2661\u00b0\u03c9\u00b0\u2661)","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":160,"friends_count":389,"listed_count":2,"created_at":"Sat Sep 24 00:56:31 +0000 2011","favourites_count":21,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":13506,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000720935030\/38c22b268a87acc4268f498ad53f8ea6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000720935030\/38c22b268a87acc4268f498ad53f8ea6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/378899513\/1392251236","profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935653466112,"id_str":"434642935653466112","text":"RT @geki_pri: \u6700\u8fd1\u306e\u5973\u5b50\u5927\u751f\u304c\n\u307f\u3093\u306a\u4f3c\u3059\u304e\u308b\u3068T\nwitter\u3067\u8a71\u984c\u306b\uff01\n\n\u500b\u6027\u3069\u3053\u3078\u884c\u3063\u305fwwww\n.\n.\n. http:\/\/t.co\/C4v3HMLsuo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1467254557,"id_str":"1467254557","name":"\u3086\u3046\u3061\u3083\u3093","screen_name":"yu_u_cha_n","location":"\u4eac\u90fd\u2192\u540d\u53e4\u5c4b\u2192\u5927\u962a\u2192\u57fc\u7389","description":"\u597d\u304d\u306a\u5730\u4e0b\u30a2\u30a4\u30c9\u30eb\n\u9b54\u6cd5\u5c11\u5973\u308a\u308a\u307d\u3080\u3000\u54b2\u5c71\u3057\u307b\u3000\u65e9\u4e59\u5973\u3086\u307f\u306e\u3000\u6708\u594f\u3081\u308b\u3000\u845b\u57ce\u53cb\u8cc0 \u3000\u306a\u307f\u3042\u3084\u304b\u3000\u4e00\u8272\u674f\u5b50\u3000\u5ddd\u6751 \u8679\u82b1\u3000\u6a2a\u5c71\u672a\u862d","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":169,"friends_count":117,"listed_count":0,"created_at":"Wed May 29 13:09:41 +0000 2013","favourites_count":300,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"verified":false,"statuses_count":9712,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/415145219332386816\/7Zfr4Fet_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/415145219332386816\/7Zfr4Fet_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1467254557\/1385212853","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:19:53 +0000 2014","id":434633154234564608,"id_str":"434633154234564608","text":"\u6700\u8fd1\u306e\u5973\u5b50\u5927\u751f\u304c\n\u307f\u3093\u306a\u4f3c\u3059\u304e\u308b\u3068T\nwitter\u3067\u8a71\u984c\u306b\uff01\n\n\u500b\u6027\u3069\u3053\u3078\u884c\u3063\u305fwwww\n.\n.\n. http:\/\/t.co\/C4v3HMLsuo","source":"\u003ca href=\"https:\/\/twitter.com\/geki_pri\" rel=\"nofollow\"\u003e\u3010\u8d85\u3011\u5f37\u70c8\u904e\u304e\u308b\u30d7\u30ea\u30af\u30e9\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2269741837,"id_str":"2269741837","name":"\u3010\u8d85\u3011\u5f37\u70c8\u904e\u304e\u308b\u30d7\u30ea\u30af\u30e9","screen_name":"geki_pri","location":"","description":"","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":5360,"friends_count":0,"listed_count":9,"created_at":"Tue Dec 31 02:41:05 +0000 2013","favourites_count":0,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":21138,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/417850262653390848\/lwXwu1g2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/417850262653390848\/lwXwu1g2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2269741837\/1388458062","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":18,"favorite_count":1,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},"retweet_count":18,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935649284096,"id_str":"434642935649284096","text":"\u660e\u65e5\u306e\u671d\u9053\u8def\u304c\u30c1\u30e3\u30ea\u3067\u8d70\u308c\u308b\u72b6\u614b\u3067\u3042\u308a\u307e\u3059\u3088\u3046\u306b\u2026(\u02c7\u03c9\u02c7)\u304f\u3057\u3083\u307f\u3068\u76ee\u3060\u304b\u982d\u304c\u75db\u3044\u306e\u306f\u98a8\u90aa\u304b\u3002\u30c8\u30c3\u30ad\u30e5\u30a6\u30b8\u30e3\u30fc\u306e\u9332\u753b\u4e88\u7d04\u3057\u3066\u5bdd\u3088\u3046","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":199128538,"id_str":"199128538","name":"\u3044\u308f","screen_name":"cdefgah_310","location":"\u7d0d\u8c46-\u9903\u5b50\u56fd\u5883","description":"\u3046\u3064\u3046\u3064\u306f\u3059\u308b\u3051\u3069\u8150\u3063\u3066\u308b\u3056\u3063\u3057\u3087\u304f\u306a\u304a\u305f\u304f\u3002\u3000\u3064\u3044\u3077\u308d\uff1ahttp:\/\/t.co\/6b7n6HZgEQ","url":"http:\/\/t.co\/c32klqfFMQ","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/c32klqfFMQ","expanded_url":"http:\/\/ss561.web.fc2.com\/top.htm","display_url":"ss561.web.fc2.com\/top.htm","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/6b7n6HZgEQ","expanded_url":"http:\/\/twpf.jp\/cdefgah_310","display_url":"twpf.jp\/cdefgah_310","indices":[29,51]}]}},"protected":false,"followers_count":151,"friends_count":253,"listed_count":7,"created_at":"Wed Oct 06 02:57:28 +0000 2010","favourites_count":4926,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":49421,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000173543697\/_k_NVUcf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000173543697\/_k_NVUcf.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/433268587436834817\/Bqx87ywu_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/433268587436834817\/Bqx87ywu_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/199128538\/1384595205","profile_link_color":"86A2C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000C29","profile_text_color":"784726","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935636688896,"id_str":"434642935636688896","text":"@kanjk420 \u3060\u304b\u3089\u306f\u3088\u898b\u306b\u3044\u3053\u3089\u3063\u3066\u8a00\u3044\u3084\u3063\u305f\u306e\u306b\u30fc(\uff61-_-\uff61)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434617542468833280,"in_reply_to_status_id_str":"434617542468833280","in_reply_to_user_id":953441522,"in_reply_to_user_id_str":"953441522","in_reply_to_screen_name":"kanjk420","user":{"id":2158769178,"id_str":"2158769178","name":"\u3068\u3082\u3080","screen_name":"1206Tomomu","location":"","description":"\u795e\u5cf6\u9ad8\u6821 2\u5e74D\u7d44 \u91ce\u7403\u90e8","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":244,"friends_count":282,"listed_count":0,"created_at":"Sun Oct 27 12:08:30 +0000 2013","favourites_count":24,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":229,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000787967659\/54901146224b2df22c1eea0f21699a26_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000787967659\/54901146224b2df22c1eea0f21699a26_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935624110080,"id_str":"434642935624110080","text":"\u30aa\u30e4\u30b7\u30ed\u69d8\u304f\u3089\u3044\u3057\u304b\u601d\u3044\u3064\u304b\u306a\u304b\u3063\u305f","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2231381520,"id_str":"2231381520","name":"\u6e80\u6f6e","screen_name":"michishio_not","location":"\u3053\u306e\u3078\u3093","description":"\u671d\u6f6e\u578b\u99c6\u9010\u8266\u3001\u4e09\u756a\u8266\u306e\u6e80\u6f6e\u975e\u516c\u5f0f\u306a\u308a\u304d\u308a\u30a2\u30ab\u30a6\u30f3\u30c8\u3088\u3002\u306a\u3093\u3067\u3053\u3093\u306aTwitter\u59cb\u3081\u305f\u306e\u304b\u3057\u3089\u3002\u4e0d\u99b4\u308c\u3060\u304b\u3089\u30ad\u30e3\u30e9\u5d29\u58ca\u304c\u542b\u307e\u308c\u308b\u304b\u3082\u3057\u308c\u306a\u3044\u308f\u3002\u30d5\u30a9\u30ed\u30fc\u306b\u306f\u6c17\u3092\u3064\u3051\u3066\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":390,"friends_count":255,"listed_count":29,"created_at":"Thu Dec 05 12:10:15 +0000 2013","favourites_count":1561,"utc_offset":32400,"time_zone":"Irkutsk","geo_enabled":false,"verified":false,"statuses_count":12744,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000151679426\/69NpJomG.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000151679426\/69NpJomG.jpeg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/434627404934311936\/fCH5k-Ym_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/434627404934311936\/fCH5k-Ym_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2231381520\/1388843412","profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935619911680,"id_str":"434642935619911680","text":"\u30d7\u30e9\u30c1\u30ca\u4e71\u6570\u3067\u7121\u90aa\u6c176v\u3063\u3066\u51fa\u6765\u307e\u3059\u304b\uff1f\u6559\u3048\u3066\u3001\u3048\uff52\u3044\u4eba\uff5e\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":563848890,"id_str":"563848890","name":"4429@\u8d85\u7d71\u4e00","screen_name":"4429sisi","location":"\u30a4\u30e2\u30a6\u30c8\u5171\u548c\u56fd","description":"\u30bf\u30a4\u30d7\u7d71\u4e00\u3092\u6975\u3081\u308b\u8005\uff08\u306b\u306a\u308a\u305f\u3044\uff09\u3000\u5f37\u3055\u3092\u6c42\u3081\u3069\u3053\u307e\u3067\u3082\u3064\u304d\u9032\u3080\u6570\u5b57\uff01 \n\u30bf\u30a4\u30d7\u7d71\u4e00\u4f7f\u3044\u306e\u4eba\u3068\u304a\u53cb\u9054\u306b\u306a\u308c\u308c\u3070\u8a00\u3044\u540d\u3068\u601d\u3063\u3066\u964d\u308a\u5897\u3059\u3002 \u304a\u6c17\u8efd\u306b\u7d61\u307f\u4ed8\u3044\u3066\u304d\u3066\u4e0b\u3055\u3044\u3001\u559c\u3073\u307e\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":160,"friends_count":166,"listed_count":4,"created_at":"Thu Apr 26 14:29:02 +0000 2012","favourites_count":116,"utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"verified":false,"statuses_count":4310,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/434317021879099393\/UhWixeLj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/434317021879099393\/UhWixeLj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/563848890\/1376488580","profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935615746050,"id_str":"434642935615746050","text":"@1118Kasumin \u611f\u8b1d\u3067\u3059\u306d\u2661\u2661","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642640659677184,"in_reply_to_status_id_str":"434642640659677184","in_reply_to_user_id":2199181938,"in_reply_to_user_id_str":"2199181938","in_reply_to_screen_name":"1118Kasumin","user":{"id":1232417166,"id_str":"1232417166","name":"\u6797 \u8056","screen_name":"KShohayashi","location":"","description":"\u57ce\u5357 \u6771\u798f\u5ca1 \u66f8\u9053","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":168,"friends_count":186,"listed_count":0,"created_at":"Sat Mar 02 01:49:21 +0000 2013","favourites_count":44,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1044,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/433431577033326593\/7UdwdDbR_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/433431577033326593\/7UdwdDbR_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1232417166\/1389881489","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935615733760,"id_str":"434642935615733760","text":"@tie_0118i_s \u304a\u304b\u3048\u308a\u30fc\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642712948531201,"in_reply_to_status_id_str":"434642712948531201","in_reply_to_user_id":2206575703,"in_reply_to_user_id_str":"2206575703","in_reply_to_screen_name":"tie_0118i_s","user":{"id":2247310044,"id_str":"2247310044","name":"AJ-10\u7fd4\u2282('\u03c9'\u2282 )))\u03a3\u2261","screen_name":"towa_2828","location":"","description":"\u660e\u65e5\u3082\u3001\u660e\u5f8c\u65e5\u3082\u3001\u6765\u5e74\u3082\u3001\u518d\u6765\u5e74\u3082\u300110\u5e74\u5f8c\u3082100\u5e74\u5f8c\u3082\u6765\u4e16\u3067\u3082\u7fd4\u3061\u3083\u3093\u3092\u611b\u3057\u3066\u307e\u3059\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":60,"friends_count":91,"listed_count":0,"created_at":"Sun Dec 15 14:46:16 +0000 2013","favourites_count":138,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1211,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/429932194300035072\/IFyomsbo_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/429932194300035072\/IFyomsbo_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2247310044\/1391086678","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935615717377,"id_str":"434642935615717377","text":"@1011_yuri \u30ce\u3063\u3061\u3083\u3063\u305f\u3088","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642820926697473,"in_reply_to_status_id_str":"434642820926697473","in_reply_to_user_id":2289335874,"in_reply_to_user_id_str":"2289335874","in_reply_to_screen_name":"1011_yuri","user":{"id":1690947979,"id_str":"1690947979","name":"\u6bdb\u7cf8@\u3082\u3075\u3082\u3075","screen_name":"keito1193","location":"\u30e6\u30a6\u30b8\u306e\u30d0\u30f3\u30c0\u30ca","description":"\u30c6\u30cb\u30d7\u30ea\u3068\u30c6\u30cb\u30df\u30e5\u3068D2\u306b\u304a\u71b1\u3002\u30a2\u30a4\u30b3\u30f3\u306f\u63cf\u3044\u3066\u3082\u3089\u3044\u307e\u3057\u305f\uff01\u30e6\u30a6\u30b8\u3092\u611b\u3059\u308b\u4f1a\u306e\u4f1a\u9577\u3002\u9b3c\u5fb9\u3068\u304b\u3082\u597d\u304d\u3060\u3088\uff01\u30de\u30a4\u30ca\u30fcCP\u3069\u3093\u3068\u3053\u3044\uff01\u7d75\u3092\u63cf\u3044\u3066\u304f\u308c\u305f\u3089\u4e00\u9031\u9593\u751f\u304d\u308c\u307e\u3059\u2190","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":83,"friends_count":114,"listed_count":2,"created_at":"Thu Aug 22 12:21:58 +0000 2013","favourites_count":1510,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4723,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/431754069518983169\/aRGfmPZQ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/431754069518983169\/aRGfmPZQ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1690947979\/1388679043","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935607328768,"id_str":"434642935607328768","text":"@K1203Misaki \u3054\u3081\u3093\u306a\u3055\u3044\uff01\u7b11","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434640296672911361,"in_reply_to_status_id_str":"434640296672911361","in_reply_to_user_id":1960488378,"in_reply_to_user_id_str":"1960488378","in_reply_to_screen_name":"K1203Misaki","user":{"id":1645043173,"id_str":"1645043173","name":"\u7d30\u4e95\u5f69\u5e0c","screen_name":"kamesanndaisuki","location":"\u611b\u77e5\u770c\u5ca1\u5d0e\u5e02","description":"\u516d\u30c3\u7f8e\u4e2d\u4e8c\u5e74\u30d0\u30ec\u30fc\u30dc\u30fc\u30eb\u90e8\u3067\u3059\u3002GReeeeN \u3086\u305a Mr.Children LOVE\uff01","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":191,"friends_count":300,"listed_count":1,"created_at":"Sun Aug 04 11:25:13 +0000 2013","favourites_count":3,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":227,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000715519748\/9e6f0bab4657e54674cad7a598ae49d9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000715519748\/9e6f0bab4657e54674cad7a598ae49d9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1645043173\/1381671880","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935603138561,"id_str":"434642935603138561","text":"@0925Syogo @AAhoooxx \u3042\u3057\u305f\u3001\u91ce\u7403\u90e8\u7df4\u7fd2\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642806338887681,"in_reply_to_status_id_str":"434642806338887681","in_reply_to_user_id":1698621048,"in_reply_to_user_id_str":"1698621048","in_reply_to_screen_name":"0925Syogo","user":{"id":1110572851,"id_str":"1110572851","name":"\u4e2d\u897f \u305f\u304b\u3055\u3068","screen_name":"taka_luv_soccer","location":"","description":"kashiba \u2192 houryuji 2nd , soccer #24 \u526fcaptain","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":225,"friends_count":224,"listed_count":1,"created_at":"Tue Jan 22 03:55:19 +0000 2013","favourites_count":435,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":3308,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000688775660\/b3de6dec2757d262a97f0eb23df12f6e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000688775660\/b3de6dec2757d262a97f0eb23df12f6e_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1110572851\/1390819211","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935598960640,"id_str":"434642935598960640","text":"\u96ea\u304c\u5fc3\u914d\u306a\u3089\u9759\u5ca1\u3067\u30e9\u30a4\u30d6\u3084\u308d\u3046\uff08\uff09","source":"\u003ca href=\"http:\/\/theworld09.com\/\" rel=\"nofollow\"\u003eTheWorld for iOS\u3000\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1097794962,"id_str":"1097794962","name":"\u307f\u305d\u3057\u301c\u308bZ","screen_name":"misoshiruP","location":"","description":"\u30bb\u30c3\u30af\u30b9\u30ec\u30b9\uff0817\u5e7411\u30f6\u6708\u76ee\uff09 \u898f\u5236\u57a2 \u2192@kurukuru8931","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":1082,"friends_count":1062,"listed_count":33,"created_at":"Thu Jan 17 10:38:46 +0000 2013","favourites_count":8101,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":39494,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/432924015569547265\/Ynqy1Xb0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/432924015569547265\/Ynqy1Xb0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1097794962\/1392046200","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:46 +0000 2014","id":434642935586361344,"id_str":"434642935586361344","text":"@nagino_nr \n\u3048\u3048\u3063!? http:\/\/t.co\/GqP9DX3o4f","source":"web","truncated":false,"in_reply_to_status_id":434642449554608128,"in_reply_to_status_id_str":"434642449554608128","in_reply_to_user_id":1941371720,"in_reply_to_user_id_str":"1941371720","in_reply_to_screen_name":"nagino_nr","user":{"id":2240386454,"id_str":"2240386454","name":"\u5411\u4e95\u6238\u307e\u306a\u304b","screen_name":"manaka_siosisio","location":"\u6c50\u9e7f\u751f","description":"\u5411\u4e95\u6238\u307e\u306a\u304b\u3067\u3059!!\u3000\u3061\u306a\u307f\u306b\u3001\u975e\u516c\u5f0f\u306a\u308a\u304d\u308a\u3067\u3059!!\u5b8c\u5168\u624b\u52d5\u3060\u304b\u308924\u6642\u9593\u5bfe\u5fdc\u3067\u304d\u307e\u305b\u3093\uff01\u30ad\u30e3\u30e9\u5d29\u58ca\u3082\u3042\u308b\u3068\u601d\u3046\u306e\u3067\u5acc\u306a\u4eba\u306f\u30d5\u30a9\u30ed\u30fc\u306f\u304a\u3059\u3059\u3081\u3057\u307e\u305b\u3093\u3002\u3000\u30c4\u30a4\u30d7\u30ed\u3082\u898b\u3066\u304f\u3060\u3055\u3044\u3002\u3053\u308c\u304b\u3089\u3088\u308d\u3057\u304f\u306d!\u304a\u6bcd\u3055\u3093:\u6f6e\u7559\u3042\u304b\u308a(@akari_nagiasu)\u5927\u5207\u306a\u4eba:\u3072\u30fc\u304f\u3093(@hikari__s)","url":"http:\/\/t.co\/8DIhr4i00X","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/8DIhr4i00X","expanded_url":"http:\/\/twpf.jp\/manaka_siosisio","display_url":"twpf.jp\/manaka_siosisio","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":75,"friends_count":73,"listed_count":0,"created_at":"Wed Dec 11 07:54:56 +0000 2013","favourites_count":182,"utc_offset":32400,"time_zone":"Irkutsk","geo_enabled":false,"verified":false,"statuses_count":1031,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/432140160705114112\/GicEVAXN_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/432140160705114112\/GicEVAXN_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2240386454\/1391864442","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"possibly_sensitive":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935577993216,"id_str":"434642935577993216","text":"@koiti112 \u30d5\u30a9\u30ed\u30fc\u3042\u308a\u304c\u3068\u3046\uff01\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3057\u305f\uff3e\uff3e","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1676112061,"in_reply_to_user_id_str":"1676112061","in_reply_to_screen_name":"koiti112","user":{"id":1443362539,"id_str":"1443362539","name":"*\u30e9\u30eb\u30af*@\u53d7\u9a13\u751f","screen_name":"syukariwon","location":"","description":"\u53d7\u9a13\u751f\u3067\u3059\u3002\u65e5\u3005\u3092\u306e\u3093\u3079\u3093\u3060\u3089\u308a\u3068\u904e\u3054\u3057\u3066\u307e\u3059\u3002\u3000\u597d\u304d\u306a\u30a2\u30cb\u30e1\u2192\u30c7\u30a3\u30a2\u30e9\u30d0\u3001\uff28\u00d7\uff28\u3001\u3042\u306e\u82b1\u3001\u30de\u30ae\u3001\u5883\u754c\u306e\u5f7c\u65b9\u3001\u30d6\u30e9\u30b3\u30f3\u3001\u3046\u305f\u30d7\u30ea\u3001\u30a2\u30e0\u30cd\u30b7\u30a2\u3001\u30de\u30af\u30ed\u30b9\uff26\u3001\uff26ree\u3001\u9b3c\u706f\u306e\u51b7\u5fb9\u306a\u3069\u306a\u3069\u2026\u3000\u4ed6\u306b\u3082\u30dc\u30ab\u30ed\u3001\u6b4c\u3044\u624b\u3001\u30b7\u30c9\u3068\u304b\u304c\u597d\u304d\u3067\u3059\uff01\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3057\u3061\u3083\u3063\u305f\u3089\u3059\u3044\u307e\u305b\u3093orz","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":352,"friends_count":483,"listed_count":4,"created_at":"Mon May 20 09:45:56 +0000 2013","favourites_count":163,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":1832,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/434639166186323968\/fzPCv5dI.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/434639166186323968\/fzPCv5dI.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/419746048106442752\/2AEMwLF5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/419746048106442752\/2AEMwLF5_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1443362539\/1392460912","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935577972736,"id_str":"434642935577972736","text":"\u7d19\u713c\u304d\u3067\u540d\u523a\u3092\u4f5c\u308d\u3046\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1973935776,"id_str":"1973935776","name":"\u76f8\u99ac\u6d0b","screen_name":"Soum_aHir","location":"","description":"\u307e\u3044\u3069\u304a\u306a\u3058\u307f\u6d41\u6d6a\u306e\uff13D\u5c4b\u3002","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":10,"friends_count":19,"listed_count":0,"created_at":"Sun Oct 20 05:44:23 +0000 2013","favourites_count":61,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":530,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000098248534\/67073fa3974be2fb01b982e6816762bf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000098248534\/67073fa3974be2fb01b982e6816762bf.jpeg","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/419501667524960259\/zUNnmH8Q_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/419501667524960259\/zUNnmH8Q_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935569608704,"id_str":"434642935569608704","text":"RT @igapu: \u3055\u3066\u3001\u3001\u660e\u65e5\u306f\u304b\u3064\u3057\u304b\u30b7\u30f3\u30d5\u30a9\u30cb\u30fc\u30db\u30fc\u30eb\u3067\u306e\u672c\u756a\u3001\u3069\u3046\u3044\u3046\u30eb\u30fc\u30c8\u3067\u884c\u3053\u3046\u304b\u3002\u3002\u306a\u308b\u3079\u304f\u9ad8\u4f4e\u5dee\u306e\u306a\u3044\u30eb\u30fc\u30c8\u3092\u8003\u3048\u306a\u304c\u3089\u5bdd\u308b\u3002\u304a\u3084\u3059\u307f\u306a\u3055\u3044\u3002\u3002","source":"\u003ca href=\"http:\/\/twipple.jp\/\" rel=\"nofollow\"\u003e\u3064\u3044\u3063\u3077\u308b\u3000\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":631990423,"id_str":"631990423","name":"\u6c34\u8c37\u7f8e\u6708\u3000\u3055\u3093\u306e\u544a\u77e5 @\u30c8\u30ec\u30c3\u30af2","screen_name":"beckburuce","location":"\u6771\u4eac\u90fd","description":"\u6c34\u8c37\u7f8e\u6708\u3055\u3093\u306e\u544a\u77e5\u4ee3\u884c\u305d\u306e\u4ed6\u60c5\u5831\u3092\u3001\u304a\u9001\u308a\u3059\u308b\u30a2\u30ab\u30a6\u30f3\u30c8\u2606\u6c34\u8c37\u7f8e\u6708\u3055\u3093\u306e\u30e9\u30a4\u30d6\u60c5\u5831\u7b49\u3092\u77e5\u308a\u305f\u3044\u65b9\u306f\u3001\u304a\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u4e0b\u3055\u3044\u3002\u6c34\u8c37\u7f8e\u6708:\u30d0\u30a4\u30aa\u30ea\u30cb\u30b9\u30c8\uff06\u30dc\u30fc\u30ab\u30ea\u30b9\u30c8 \u30cf\u30c3\u30b7\u30e5\u30bf\u30b0 #\u6c34\u8c37\u7f8e\u6708 \u3067\u7c21\u5358\u306b\u691c\u7d22\u51fa\u6765\u307e\u3059\u2606\u6c34\u8c37\u7f8e\u6708\u3055\u3093\u3092\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304b\u3089\u6765\u3066\u306d\u3002\u2192 https:\/\/t.co\/De6iTs8wGY\u3000\uff08by\u30c8\u30ec\u30c3\u30af\uff09","url":"http:\/\/t.co\/y8XKHHlXLk","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/y8XKHHlXLk","expanded_url":"http:\/\/ameblo.jp\/violin-voice","display_url":"ameblo.jp\/violin-voice","indices":[0,22]}]},"description":{"urls":[{"url":"https:\/\/t.co\/De6iTs8wGY","expanded_url":"https:\/\/twitter.com\/Mizuki_Mizutani","display_url":"twitter.com\/Mizuki_Mizutani","indices":[127,150]}]}},"protected":false,"followers_count":127,"friends_count":131,"listed_count":6,"created_at":"Tue Jul 10 13:36:35 +0000 2012","favourites_count":29,"utc_offset":32400,"time_zone":"Irkutsk","geo_enabled":false,"verified":false,"statuses_count":10610,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2990553592\/f39e1054bf59e2344964d92db0c8d2dd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2990553592\/f39e1054bf59e2344964d92db0c8d2dd_normal.jpeg","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Fri Feb 14 19:38:05 +0000 2014","id":434411238987022336,"id_str":"434411238987022336","text":"\u3055\u3066\u3001\u3001\u660e\u65e5\u306f\u304b\u3064\u3057\u304b\u30b7\u30f3\u30d5\u30a9\u30cb\u30fc\u30db\u30fc\u30eb\u3067\u306e\u672c\u756a\u3001\u3069\u3046\u3044\u3046\u30eb\u30fc\u30c8\u3067\u884c\u3053\u3046\u304b\u3002\u3002\u306a\u308b\u3079\u304f\u9ad8\u4f4e\u5dee\u306e\u306a\u3044\u30eb\u30fc\u30c8\u3092\u8003\u3048\u306a\u304c\u3089\u5bdd\u308b\u3002\u304a\u3084\u3059\u307f\u306a\u3055\u3044\u3002\u3002","source":"web","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59420153,"id_str":"59420153","name":"\u4e94\u5341\u5d50\u5b8f\u6cbb Koji Igarashi","screen_name":"igapu","location":"\u6771\u4eac\u90fd","description":"SoundProduce,Compose,Arrange,Piano,Keyboards.\u300c\u3042\u306e\u6d77\u304c\u898b\u3048\u308b\u5834\u6240\u3078\u300d\u300cX'masSongBook\u300dnow on sale.http:\/\/t.co\/sHKPaSOgJI","url":"http:\/\/t.co\/dYOPpAeq0B","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/dYOPpAeq0B","expanded_url":"http:\/\/ameblo.jp\/igapu\/","display_url":"ameblo.jp\/igapu\/","indices":[0,22]}]},"description":{"urls":[{"url":"http:\/\/t.co\/sHKPaSOgJI","expanded_url":"http:\/\/igapu.popcorestudio.com\/","display_url":"igapu.popcorestudio.com","indices":[84,106]}]}},"protected":false,"followers_count":2109,"friends_count":380,"listed_count":144,"created_at":"Thu Jul 23 10:24:23 +0000 2009","favourites_count":354,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":10865,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/77242862\/091106_141251.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/77242862\/091106_141251.jpg","profile_background_tile":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1404545505\/RIMG0210_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1404545505\/RIMG0210_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59420153\/1356663105","profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"default_profile":false,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},"retweet_count":1,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935569592321,"id_str":"434642935569592321","text":"@kmy963 \u3084\u3070\u3044\u3084\u3070\u3044\u305d\u308c\u306f\u7d76\u5bfe\u3084\u3070\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642713082732544,"in_reply_to_status_id_str":"434642713082732544","in_reply_to_user_id":91948534,"in_reply_to_user_id_str":"91948534","in_reply_to_screen_name":"kmy963","user":{"id":501545140,"id_str":"501545140","name":"\u30d0\u30eb\u30b5\u30df\u30b3\u9162","screen_name":"_10_24","location":"","description":"\u3088\u304f\u3067\u304d\u307e\u3057\u305f","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":75,"friends_count":86,"listed_count":1,"created_at":"Fri Feb 24 07:27:52 +0000 2012","favourites_count":175,"utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"verified":false,"statuses_count":10394,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000648375449\/477256f861679e984f1385ac253a55fd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000648375449\/477256f861679e984f1385ac253a55fd_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/501545140\/1378853552","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935561216000,"id_str":"434642935561216000","text":"@Blood_Key\n \u304a!?\u656c\u8a9e\u3084\u3081\u3044\uff01(\u2229^o^)\u2283\u2501\u2606\uff9f.*\uff65\uff61\u2190\n\u307b\u3093\u3068\u53ef\u611b\u304b\u3063\u305f\uff01\u732b\u597d\u304d\u3084\u304b\u3089\u3082\u3046\u305f\u307e\u3089\u3093\u305f\u307e\u3089\u3093\u30fe(\u2312(\uff89\uff7c ^q^)\uff89\uff7c\u2190","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642594593636352,"in_reply_to_status_id_str":"434642594593636352","in_reply_to_user_id":385940141,"in_reply_to_user_id_str":"385940141","in_reply_to_screen_name":"Blood_Key","user":{"id":1153970616,"id_str":"1153970616","name":"\u304d\u3088\u305f\u305f\u305f","screen_name":"kiyorei69","location":"\u5f3e\u304d\u8a9e\u308a\u30ad\u30e3\u30b9\u3057\u3066\u307e\u3059","description":"\u304a\u7d75\u63cf\u304d\/\u5f3e\u304d\u8a9e\u308a\u30ad\u30e3\u30b9\/\u304a\u6d12\u843d","url":"http:\/\/t.co\/9sWE8j4PBV","entities":{"url":{"urls":[{"url":"http:\/\/t.co\/9sWE8j4PBV","expanded_url":"http:\/\/twpf.jp\/kiyorei69","display_url":"twpf.jp\/kiyorei69","indices":[0,22]}]},"description":{"urls":[]}},"protected":false,"followers_count":332,"friends_count":582,"listed_count":1,"created_at":"Wed Feb 06 13:10:51 +0000 2013","favourites_count":1165,"utc_offset":32400,"time_zone":"Irkutsk","geo_enabled":false,"verified":false,"statuses_count":11216,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/432508675849064449\/DD7quue2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/432508675849064449\/DD7quue2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1153970616\/1392213680","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"},{"metadata":{"result_type":"recent","iso_language_code":"ja"},"created_at":"Sat Feb 15 10:58:45 +0000 2014","id":434642935557021698,"id_str":"434642935557021698","text":"@ym_5555 \u884c\u304d\u305f\u3044\u3051\u3069\u96ea\u3067\u8eca\u52d5\u3051\u306a\u3044\uff08\u7b11\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":434642731097264129,"in_reply_to_status_id_str":"434642731097264129","in_reply_to_user_id":852846966,"in_reply_to_user_id_str":"852846966","in_reply_to_screen_name":"ym_5555","user":{"id":1386263702,"id_str":"1386263702","name":"\u304d\u3087\u3093\u304d\u3087\u3093","screen_name":"kyouhei0119","location":"","description":"Twitter\u3084\u308a\u76f4\u3057\u307e\u3057\u305f\u3002\u5143\u5357\u4e2d\u3002\u7fbd\u5b9f\u5352\u696d\u3002\u793e\u4f1a\u4eba\u266a\u4eca\u3001\u82e6\u60a9\u3057\u306a\u304c\u3089\u3082\u7cbe\u4e00\u676f\u751f\u304d\u3066\u307e\u3059\u2026\u30021\u670819\u306719\u6b73\u795d\u3063\u3066\u306aw","url":null,"entities":{"description":{"urls":[]}},"protected":false,"followers_count":186,"friends_count":230,"listed_count":1,"created_at":"Sun Apr 28 06:24:04 +0000 2013","favourites_count":425,"utc_offset":null,"time_zone":null,"geo_enabled":false,"verified":false,"statuses_count":4970,"lang":"ja","contributors_enabled":false,"is_translator":false,"is_translation_enabled":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/425643976410947584\/Di4Ijs9r_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/425643976410947584\/Di4Ijs9r_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1386263702\/1392388251","profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"default_profile":true,"default_profile_image":false,"following":false,"follow_request_sent":false,"notifications":false},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweet_count":0,"favorite_count":0,"favorited":false,"retweeted":false,"lang":"ja"}],"search_metadata":{"completed_in":0.131,"max_id":434642935930302465,"max_id_str":"434642935930302465","next_results":"?max_id=434642935557021697&q=lang%3Aja&count=100","query":"lang%3Aja","refresh_url":"?since_id=434642935930302465&q=lang%3Aja","count":100,"since_id":0,"since_id_str":"0"}}
data/spec/helper.rb CHANGED
@@ -10,7 +10,7 @@ SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
10
10
 
11
11
  SimpleCov.start do
12
12
  add_filter '/spec/'
13
- minimum_coverage(99.24)
13
+ minimum_coverage(99.26)
14
14
  end
15
15
 
16
16
  require 't'
data/spec/stream_spec.rb CHANGED
@@ -130,16 +130,25 @@ describe T::Stream do
130
130
 
131
131
  describe '#matrix' do
132
132
  before do
133
- allow(@streaming_client).to receive(:sample).and_yield(@status)
133
+ stub_get('/1.1/search/tweets.json').with(:query => {:q => 'lang:ja', :count => 100, :include_entities => 'false'}).to_return(:body => fixture('empty_cursor.json'))
134
134
  end
135
135
  it 'outputs the tweet status' do
136
+ allow(@streaming_client).to receive(:before_request).and_return
137
+ allow(@streaming_client).to receive(:sample).and_yield(@status)
136
138
  expect(@stream).to receive(:say).with(any_args)
137
139
  @stream.matrix
138
140
  end
139
- it 'invokes Twitter::Streaming::Client.sample' do
141
+ it 'invokes Twitter::Streaming::Client#sample' do
142
+ allow(@streaming_client).to receive(:before_request).and_return
143
+ allow(@streaming_client).to receive(:sample).and_yield(@status)
140
144
  expect(@streaming_client).to receive(:sample)
141
145
  @stream.matrix
142
146
  end
147
+ it 'requests the correct resource' do
148
+ allow(@streaming_client).to receive(:before_request).and_yield
149
+ @stream.matrix
150
+ expect(a_get('/1.1/search/tweets.json').with(:query => {:q => 'lang:ja', :count => 100, :include_entities => 'false'})).to have_been_made
151
+ end
143
152
  end
144
153
 
145
154
  describe '#search' do
data/t.gemspec CHANGED
@@ -10,11 +10,10 @@ Gem::Specification.new do |spec|
10
10
  spec.add_dependency 'oauth', '~> 0.4.7'
11
11
  spec.add_dependency 'retryable', '~> 1.3'
12
12
  spec.add_dependency 'thor', ['>= 0.18.1', '< 2']
13
- spec.add_dependency 'twitter', '~> 5.7'
13
+ spec.add_dependency 'twitter', '~> 5.8'
14
14
  spec.add_development_dependency 'bundler', '~> 1.0'
15
15
  spec.author = 'Erik Michaels-Ober'
16
16
  spec.bindir = 'bin'
17
- spec.cert_chain = %w[certs/sferik.pem]
18
17
  spec.description = %q{A command-line power tool for Twitter.}
19
18
  spec.email = 'sferik@gmail.com'
20
19
  spec.executables = %w[t]
@@ -28,7 +27,6 @@ Gem::Specification.new do |spec|
28
27
  spec.require_paths = %w[lib]
29
28
  spec.required_ruby_version = '>= 1.9.2'
30
29
  spec.required_rubygems_version = '>= 1.3.5'
31
- spec.signing_key = File.expand_path('~/.gem/private_key.pem') if $PROGRAM_NAME =~ /gem\z/
32
30
  spec.summary = %q{CLI for Twitter}
33
31
  spec.test_files = Dir.glob('spec/**/*')
34
32
  spec.version = T::Version
metadata CHANGED
@@ -1,41 +1,18 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: t
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.0
5
- prerelease:
4
+ version: 2.5.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Erik Michaels-Ober
9
8
  autorequire:
10
9
  bindir: bin
11
- cert_chain:
12
- - |
13
- -----BEGIN CERTIFICATE-----
14
- MIIDLjCCAhagAwIBAgIBADANBgkqhkiG9w0BAQUFADA9MQ8wDQYDVQQDDAZzZmVy
15
- aWsxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkWA2NvbTAe
16
- Fw0xMzAyMDMxMDAyMjdaFw0xNDAyMDMxMDAyMjdaMD0xDzANBgNVBAMMBnNmZXJp
17
- azEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPyLGQBGRYDY29tMIIB
18
- IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAl0x5dx8uKxi7TkrIuyBUTJVB
19
- v1o93nUB9j/y4M96gV2rYwAci1JPBseNd6Fybzjo3YGuHl7EQHuSHNaf1p2lxew/
20
- y60JXIJBBgPcDK/KCP4NUHofm0jfoYD+H5uNJfHCNq7/ZsTxOtE3Ra92s0BCMTpm
21
- wBMMlWR5MtdEhIYuBO4XhnejYgH0L/7BL2lymntVnsr/agdQoojQCN1IQmsRJvrR
22
- duZRO3tZvoIo1pBc4JEehDuqCeyBgPLOqMoKtQlold1TQs1kWUBK7KWMFEhKC/Kg
23
- zyzKRHQo9yDYwOvYngoBLY+T/lwCT4dyssdhzRbfnxAhaKu4SAssIwaC01yVowID
24
- AQABozkwNzAJBgNVHRMEAjAAMB0GA1UdDgQWBBS0ruDfRak5ci1OpDNX/ZdDEkIs
25
- iTALBgNVHQ8EBAMCBLAwDQYJKoZIhvcNAQEFBQADggEBAHHSMs/MP0sOaLkEv4Jo
26
- zvkm3qn5A6t0vaHx774cmejyMU+5wySxRezspL7ULh9NeuK2OhU+Oe3TpqrAg5TK
27
- R8GQILnVu2FemGA6sAkPDlcPtgA6ieI19PZOF6HVLmc/ID/dP/NgZWWzEeqQKmcK
28
- 2+HM+SEEDhZkScYekw4ZOe164ZtZG816oAv5x0pGitSIkumUp7V8iEZ/6ehr7Y9e
29
- XOg4eeun5L/JjmjARoW2kNdvkRD3c2EeSLqWvQRsBlypHfhs6JJuLlyZPGhU3R/v
30
- Sf3lVKpBCWgRpGTvy45XVpB+59y33PJmEuQ1PTEOYvQyao9UKMAAaAN/7qWQtjl0
31
- hlw=
32
- -----END CERTIFICATE-----
33
- date: 2014-02-14 00:00:00.000000000 Z
10
+ cert_chain: []
11
+ date: 2014-03-10 00:00:00.000000000 Z
34
12
  dependencies:
35
13
  - !ruby/object:Gem::Dependency
36
14
  name: launchy
37
15
  requirement: !ruby/object:Gem::Requirement
38
- none: false
39
16
  requirements:
40
17
  - - "~>"
41
18
  - !ruby/object:Gem::Version
@@ -43,7 +20,6 @@ dependencies:
43
20
  type: :runtime
44
21
  prerelease: false
45
22
  version_requirements: !ruby/object:Gem::Requirement
46
- none: false
47
23
  requirements:
48
24
  - - "~>"
49
25
  - !ruby/object:Gem::Version
@@ -51,7 +27,6 @@ dependencies:
51
27
  - !ruby/object:Gem::Dependency
52
28
  name: geokit
53
29
  requirement: !ruby/object:Gem::Requirement
54
- none: false
55
30
  requirements:
56
31
  - - ">="
57
32
  - !ruby/object:Gem::Version
@@ -62,7 +37,6 @@ dependencies:
62
37
  type: :runtime
63
38
  prerelease: false
64
39
  version_requirements: !ruby/object:Gem::Requirement
65
- none: false
66
40
  requirements:
67
41
  - - ">="
68
42
  - !ruby/object:Gem::Version
@@ -73,7 +47,6 @@ dependencies:
73
47
  - !ruby/object:Gem::Dependency
74
48
  name: htmlentities
75
49
  requirement: !ruby/object:Gem::Requirement
76
- none: false
77
50
  requirements:
78
51
  - - "~>"
79
52
  - !ruby/object:Gem::Version
@@ -81,7 +54,6 @@ dependencies:
81
54
  type: :runtime
82
55
  prerelease: false
83
56
  version_requirements: !ruby/object:Gem::Requirement
84
- none: false
85
57
  requirements:
86
58
  - - "~>"
87
59
  - !ruby/object:Gem::Version
@@ -89,7 +61,6 @@ dependencies:
89
61
  - !ruby/object:Gem::Dependency
90
62
  name: oauth
91
63
  requirement: !ruby/object:Gem::Requirement
92
- none: false
93
64
  requirements:
94
65
  - - "~>"
95
66
  - !ruby/object:Gem::Version
@@ -97,7 +68,6 @@ dependencies:
97
68
  type: :runtime
98
69
  prerelease: false
99
70
  version_requirements: !ruby/object:Gem::Requirement
100
- none: false
101
71
  requirements:
102
72
  - - "~>"
103
73
  - !ruby/object:Gem::Version
@@ -105,7 +75,6 @@ dependencies:
105
75
  - !ruby/object:Gem::Dependency
106
76
  name: retryable
107
77
  requirement: !ruby/object:Gem::Requirement
108
- none: false
109
78
  requirements:
110
79
  - - "~>"
111
80
  - !ruby/object:Gem::Version
@@ -113,7 +82,6 @@ dependencies:
113
82
  type: :runtime
114
83
  prerelease: false
115
84
  version_requirements: !ruby/object:Gem::Requirement
116
- none: false
117
85
  requirements:
118
86
  - - "~>"
119
87
  - !ruby/object:Gem::Version
@@ -121,7 +89,6 @@ dependencies:
121
89
  - !ruby/object:Gem::Dependency
122
90
  name: thor
123
91
  requirement: !ruby/object:Gem::Requirement
124
- none: false
125
92
  requirements:
126
93
  - - ">="
127
94
  - !ruby/object:Gem::Version
@@ -132,7 +99,6 @@ dependencies:
132
99
  type: :runtime
133
100
  prerelease: false
134
101
  version_requirements: !ruby/object:Gem::Requirement
135
- none: false
136
102
  requirements:
137
103
  - - ">="
138
104
  - !ruby/object:Gem::Version
@@ -143,23 +109,20 @@ dependencies:
143
109
  - !ruby/object:Gem::Dependency
144
110
  name: twitter
145
111
  requirement: !ruby/object:Gem::Requirement
146
- none: false
147
112
  requirements:
148
113
  - - "~>"
149
114
  - !ruby/object:Gem::Version
150
- version: '5.7'
115
+ version: '5.8'
151
116
  type: :runtime
152
117
  prerelease: false
153
118
  version_requirements: !ruby/object:Gem::Requirement
154
- none: false
155
119
  requirements:
156
120
  - - "~>"
157
121
  - !ruby/object:Gem::Version
158
- version: '5.7'
122
+ version: '5.8'
159
123
  - !ruby/object:Gem::Dependency
160
124
  name: bundler
161
125
  requirement: !ruby/object:Gem::Requirement
162
- none: false
163
126
  requirements:
164
127
  - - "~>"
165
128
  - !ruby/object:Gem::Version
@@ -167,7 +130,6 @@ dependencies:
167
130
  type: :development
168
131
  prerelease: false
169
132
  version_requirements: !ruby/object:Gem::Requirement
170
- none: false
171
133
  requirements:
172
134
  - - "~>"
173
135
  - !ruby/object:Gem::Version
@@ -183,8 +145,8 @@ files:
183
145
  - LICENSE.md
184
146
  - README.md
185
147
  - Rakefile
186
- - t.gemspec
187
148
  - bin/t
149
+ - lib/t.rb
188
150
  - lib/t/cli.rb
189
151
  - lib/t/collectable.rb
190
152
  - lib/t/core_ext/kernel.rb
@@ -200,7 +162,6 @@ files:
200
162
  - lib/t/stream.rb
201
163
  - lib/t/utils.rb
202
164
  - lib/t/version.rb
203
- - lib/t.rb
204
165
  - spec/cli_spec.rb
205
166
  - spec/delete_spec.rb
206
167
  - spec/editor_spec.rb
@@ -228,6 +189,7 @@ files:
228
189
  - spec/fixtures/lists.json
229
190
  - spec/fixtures/locations.json
230
191
  - spec/fixtures/long.png
192
+ - spec/fixtures/matrix.json
231
193
  - spec/fixtures/me.jpg
232
194
  - spec/fixtures/not_following.json
233
195
  - spec/fixtures/not_found.json
@@ -260,30 +222,30 @@ files:
260
222
  - spec/set_spec.rb
261
223
  - spec/stream_spec.rb
262
224
  - spec/utils_spec.rb
225
+ - t.gemspec
263
226
  homepage: http://sferik.github.com/t/
264
227
  licenses:
265
228
  - MIT
229
+ metadata: {}
266
230
  post_install_message:
267
231
  rdoc_options: []
268
232
  require_paths:
269
233
  - lib
270
234
  required_ruby_version: !ruby/object:Gem::Requirement
271
- none: false
272
235
  requirements:
273
236
  - - ">="
274
237
  - !ruby/object:Gem::Version
275
238
  version: 1.9.2
276
239
  required_rubygems_version: !ruby/object:Gem::Requirement
277
- none: false
278
240
  requirements:
279
241
  - - ">="
280
242
  - !ruby/object:Gem::Version
281
243
  version: 1.3.5
282
244
  requirements: []
283
245
  rubyforge_project:
284
- rubygems_version: 1.8.29
246
+ rubygems_version: 2.2.2
285
247
  signing_key:
286
- specification_version: 3
248
+ specification_version: 4
287
249
  summary: CLI for Twitter
288
250
  test_files:
289
251
  - spec/cli_spec.rb
@@ -313,6 +275,7 @@ test_files:
313
275
  - spec/fixtures/lists.json
314
276
  - spec/fixtures/locations.json
315
277
  - spec/fixtures/long.png
278
+ - spec/fixtures/matrix.json
316
279
  - spec/fixtures/me.jpg
317
280
  - spec/fixtures/not_following.json
318
281
  - spec/fixtures/not_found.json