tradier 0.4.0 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 449b7877390ee6691113e738fc3ebf638eecc09f
4
- data.tar.gz: ec4c89c64ee72eb5665e92b7f4144a0353076075
3
+ metadata.gz: cc39b99f58af5595068c9fe62f4944ad074f9442
4
+ data.tar.gz: 821df12c86f2b4aa3562d39d4303186802289673
5
5
  SHA512:
6
- metadata.gz: c7c24a2ca8b67075d6b5b2bea0aef327c0b044bee2bae19a61bbc5057821abcd390a79799630d2af8535cade2db7b82b2fada66244660bff99b11121aec2f612
7
- data.tar.gz: 9610f12009bb0a19f1f01c78c0718d3e95278a1b131f29c9a0403e4081a7bd172798ca85099eaa26139acb778c3975997fb4fbfdcc632ab781fba09c206e02c1
6
+ metadata.gz: d1a51249b2e4ed5269a2f812a6460fc5ecaf904f235d0f130fdcfcfd8f7a79c70c2cd2ce1990c5ea997d792a39edd03869dd2be8d98cc786ff741c55e6b6a521
7
+ data.tar.gz: 64537c65004133ee7a0609bca41102fc22b707ba73fb1759957c0ce5ef3d426838115c4b1ca67a5d0ea2e306cc9cdc8088e713c8b6a5ae74954bd4fed0fb3333
@@ -13,17 +13,27 @@ module Tradier
13
13
  end
14
14
 
15
15
  def positions
16
- @attrs[:positions][:position].map { |a| Tradier::Position.new(a) }
16
+ @attrs.fetch(:positions, {}).
17
+ fetch(:position, []).
18
+ map { |a| Tradier::Position.new(a) }
17
19
  end
18
20
 
19
21
  def orders
20
- @attrs[:orders][:order].map { |a| Tradier::Order.new(a) }
22
+ @attrs.fetch(:orders, {}).
23
+ fetch(:order, []).
24
+ map { |a| Tradier::Order.new(a) }
21
25
  end
22
26
 
23
27
  def gainloss
28
+ @attrs.fetch(:gainloss, {}).
29
+ fetch(:closed_position, []).
30
+ map { |a| Tradier::Position.new(a) }
24
31
  end
25
32
 
26
33
  def history
34
+ @attrs.fetch(:history, {}).
35
+ fetch(:event, []).
36
+ map { |a| Tradier::Event.new(a) }
27
37
  end
28
38
 
29
39
  def individual_account?
@@ -123,7 +123,7 @@ module Tradier
123
123
  # @raise [Tradier::Error::Unauthorized] Error raised when supplied user credentials are not valid.
124
124
  def search(q, options={})
125
125
  options.merge!('q' => q)
126
- object_from_response(Tradier::API::Utils::Search, :get, '/markets/search', options).body
126
+ object_from_response(Tradier::API::Utils::Security, :get, '/markets/search', options).body
127
127
  end
128
128
 
129
129
  # @see https://developer.tradier.com/documentation/markets/get-lookup
@@ -137,7 +137,16 @@ module Tradier
137
137
  # @raise [Tradier::Error::Unauthorized] Error raised when supplied user credentials are not valid.
138
138
  def lookup(q, options={})
139
139
  options.merge!('q' => q)
140
- object_from_response(Tradier::API::Utils::Search, :get, '/markets/lookup', options).body
140
+ object_from_response(Tradier::API::Utils::Security, :get, '/markets/lookup', options).body
141
+ end
142
+
143
+ # @rate_limited Yes
144
+ # @authentication Requires user context
145
+ # Retrieve the Easy-To-Borrow list.
146
+ # @return [Array<Tradier::Security>] An array of securities.
147
+ # @raise [Tradier::Error::Unauthorized] Error raised when supplied user credentials are not valid.
148
+ def etb
149
+ object_from_response(Tradier::API::Utils::Security, :get, '/markets/etb').body
141
150
  end
142
151
 
143
152
  private
@@ -24,7 +24,7 @@ require 'tradier/api/utils/option_quote'
24
24
  require 'tradier/api/utils/order'
25
25
  require 'tradier/api/utils/position'
26
26
  require 'tradier/api/utils/quote'
27
- require 'tradier/api/utils/search'
27
+ require 'tradier/api/utils/security'
28
28
  require 'tradier/api/utils/strike'
29
29
  require 'tradier/api/utils/timesales'
30
30
  require 'tradier/api/utils/watchlist'
@@ -3,7 +3,7 @@ require 'tradier/api/utils/base'
3
3
  module Tradier
4
4
  module API
5
5
  module Utils
6
- class Search < Tradier::API::Utils::Base
6
+ class Security < Tradier::API::Utils::Base
7
7
 
8
8
  def body
9
9
  nested_array(Tradier::Security, [:securities, :security])
@@ -38,10 +38,9 @@ module Tradier
38
38
  end unless defined? Tradier::Default::MIDDLEWARE
39
39
 
40
40
  class << self
41
-
42
41
  # @return [Hash]
43
42
  def options
44
- Hash[Tradier::Configurable.keys.map{|key| [key, send(key)]}]
43
+ Hash[Tradier::Configurable.keys.map { |key| [key, send(key)] }]
45
44
  end
46
45
 
47
46
  # @return [String]
@@ -69,7 +68,6 @@ module Tradier
69
68
  def middleware
70
69
  MIDDLEWARE
71
70
  end
72
-
73
71
  end
74
72
  end
75
73
  end
@@ -2,7 +2,7 @@ require 'tradier/base'
2
2
 
3
3
  module Tradier
4
4
  class Security < Tradier::Base
5
- attr_reader :symbol, :exchange, :description, :type
5
+ attr_reader :symbol, :exchange, :description, :type, :shares
6
6
 
7
7
  def ==(quote)
8
8
  self.symbol == quote.symbol
@@ -1,3 +1,3 @@
1
1
  module Tradier
2
- VERSION = "0.4.0"
2
+ VERSION = "0.5.0"
3
3
  end
@@ -0,0 +1 @@
1
+ {"securities":{"security":[{"symbol":"AAV","exchange":"N","type":"stock","description":"Advantage Oil & Gas Ltd Ordinary Shares","shares":2668800},{"symbol":"ABB","exchange":"N","type":"stock","description":"ABB Ltd Common Stock","shares":407900},{"symbol":"ABEV","exchange":"N","type":"stock","description":"Ambev S.A. American Depositary Shares (Each representing 1 Common Share)","shares":63837300},{"symbol":"ABX","exchange":"N","type":"stock","description":"Barrick Gold Corporation Common Stock","shares":7681000},{"symbol":"ABY","exchange":"Q","type":"stock","description":"Abengoa Yield plc - Ordinary Shares","shares":3692200},{"symbol":"ACE","exchange":"N","type":"stock","description":"Ace Limited Common Stock","shares":29383800},{"symbol":"ACG","exchange":"N","type":"stock","description":"Alliancebernstein Income Fund","shares":2720800},{"symbol":"ACGL","exchange":"Q","type":"stock","description":"Arch Capital Group Ltd. - Common Stock","shares":7811300},{"symbol":"ACN","exchange":"N","type":"stock","description":"Accenture plc. Class A Ordinary Shares (Ireland)","shares":39194500},{"symbol":"ACT","exchange":"N","type":"stock","description":"Actavis plc Ordinary Shares","shares":15851900},{"symbol":"AEG","exchange":"N","type":"stock","description":"AEGON N.V. Common Stock","shares":4540700},{"symbol":"AEM","exchange":"N","type":"stock","description":"Agnico Eagle Mines Limited Common Stock","shares":1479000},{"symbol":"AER","exchange":"N","type":"stock","description":"Aercap Holdings N.V. Ordinary Shares","shares":3600700},{"symbol":"AFH","exchange":"Q","type":"stock","description":"Atlas Financial Holdings, Inc. - Ordinary Shares","shares":262300},{"symbol":"AFMD","exchange":"Q","type":"stock","description":"Affimed N.V. - Common Stock","shares":115800},{"symbol":"AG","exchange":"N","type":"stock","description":"First Majestic Silver Corp. Ordinary Shares (Canada)","shares":3591500},{"symbol":"AGI","exchange":"N","type":"stock","description":"Alamos Gold Inc Ordinary Shares","shares":4680500},{"symbol":"AGII","exchange":"Q","type":"stock","description":"Argo Group International Holdings, Ltd. - Common Stock","shares":3549300},{"symbol":"AGM","exchange":"N","type":"stock","description":"Federal Agricultural Mortgage Corporation Common Stock","shares":1204800},{"symbol":"AGO","exchange":"N","type":"stock","description":"Assured Guaranty Ltd. Common Stock","shares":11057600},{"symbol":"AGRO","exchange":"N","type":"stock","description":"Adecoagro S.A. Common Shares","shares":5407200},{"symbol":"AGU","exchange":"N","type":"stock","description":"Agrium Inc. Common Stock","shares":1519300},{"symbol":"AHL","exchange":"N","type":"stock","description":"Aspen Insurance Holdings Limited Ordinary Shares","shares":8514300},{"symbol":"ALKS","exchange":"Q","type":"stock","description":"Alkermes plc - Ordinary Shares","shares":14739300},{"symbol":"ALLE","exchange":"N","type":"stock","description":"Allegion plc Ordinary Shares","shares":5323400},{"symbol":"ALLY","exchange":"N","type":"stock","description":"Ally Financial Inc. Common Stock","shares":9871300},{"symbol":"ALU","exchange":"N","type":"stock","description":"Alcatel-Lucent Common Stock","shares":710700},{"symbol":"ALV","exchange":"N","type":"stock","description":"Autoliv, Inc. Common Stock","shares":275000},{"symbol":"AMBC","exchange":"Q","type":"stock","description":"Ambac Financial Group, Inc. - Common Stock","shares":1226200},{"symbol":"AMFW","exchange":"N","type":"stock","description":"AMEC Foster Wheeler plc American Depositary Shares","shares":137300},{"symbol":"AMX","exchange":"N","type":"stock","description":"America Movil, S.A.B. de C.V. American Depository Receipt Series L","shares":23738300},{"symbol":"AOD","exchange":"N","type":"stock","description":"Alpine Total Dynamic Dividend Fund Common Stock","shares":635500},{"symbol":"AON","exchange":"N","type":"stock","description":"Aon plc Class A Ordinary Shares (UK)","shares":27284000},{"symbol":"AOSL","exchange":"Q","type":"stock","description":"Alpha and Omega Semiconductor Limited - Common Shares","shares":2198100},{"symbol":"APAGF","exchange":"Q","type":"stock","description":"Apco Oil and Gas International Inc. - Ordinary Shares","shares":813300},{"symbol":"APB","exchange":"N","type":"stock","description":"Asia Pacific Fund, Inc. (The)","shares":178100},{"symbol":"APF","exchange":"N","type":"stock","description":"Morgan Stanley Asia-Pacific Fund, Inc.","shares":252400},{"symbol":"ARMH","exchange":"Q","type":"stock","description":"ARM Holdings plc - American Depositary Shares each representing 3 Ordinary Shares","shares":8905000},{"symbol":"ASC","exchange":"N","type":"stock","description":"Ardmore Shipping Corporation Common Stock","shares":508500},{"symbol":"ASML","exchange":"Q","type":"stock","description":"ASML Holding N.V. - ADS represents 1 ordinary share","shares":3767600},{"symbol":"ASR","exchange":"N","type":"stock","description":"Grupo Aeroportuario del Sureste, S.A. de C.V. Common Stock","shares":978400},{"symbol":"ASX","exchange":"N","type":"stock","description":"Advanced Semiconductor Engineering, Inc. Common Stock","shares":5048300},{"symbol":"ATTO","exchange":"N","type":"stock","description":"Atento S.A. Ordinary Shares","shares":129800},{"symbol":"ATTU","exchange":"Q","type":"stock","description":"Attunity Ltd. - Ordinary Shares","shares":253000},{"symbol":"AU","exchange":"N","type":"stock","description":"AngloGold Ashanti Limited Common Stock","shares":24084600},{"symbol":"AUDC","exchange":"Q","type":"stock","description":"AudioCodes Ltd. - Ordinary Shares","shares":41400},{"symbol":"AUO","exchange":"N","type":"stock","description":"AU Optronics Corp American Depositary Shares","shares":9080300},{"symbol":"AUY","exchange":"N","type":"stock","description":"Yamana Gold Inc. Ordinary Shares (Canada)","shares":37311200},{"symbol":"AVAL","exchange":"N","type":"stock","description":"Grupo Aval Acciones y Valores S.A. ADR (Each representing 20 preferred shares)","shares":963000},{"symbol":"AVG","exchange":"N","type":"stock","description":"AVG Technologies N.V. Ordinary Shares","shares":3043100},{"symbol":"AVGO","exchange":"Q","type":"stock","description":"Avago Technologies Limited - Ordinary Shares","shares":16656500},{"symbol":"AVH","exchange":"N","type":"stock","description":"Avianca Holdings S.A. American Depositary Shares (Each representing 8 preferred Shares)","shares":552300},{"symbol":"AVIV","exchange":"N","type":"stock","description":"Aviv REIT, Inc. Common Stock","shares":1075100},{"symbol":"AWH","exchange":"N","type":"stock","description":"Allied World Assurance Company Holdings, AG (Switzerland)","shares":8344400},{"symbol":"AXS","exchange":"N","type":"stock","description":"Axis Capital Holdings Limited Common Stock","shares":10674500},{"symbol":"AYR","exchange":"N","type":"stock","description":"Aircastle Limited Common Stock","shares":5579200},{"symbol":"AZN","exchange":"N","type":"stock","description":"Astrazeneca PLC Common Stock","shares":4924000},{"symbol":"BABA","exchange":"N","type":"stock","description":"Alibaba Group Holding Limited","shares":8153400},{"symbol":"BAK","exchange":"N","type":"stock","description":"Braskem SA ADR","shares":805300},{"symbol":"BAM","exchange":"N","type":"stock","description":"Brookfield Asset Management Inc. Common Stock","shares":2546900},{"symbol":"BAP","exchange":"N","type":"stock","description":"Credicorp Ltd. Common Stock","shares":5775600},{"symbol":"BBD","exchange":"N","type":"stock","description":"Banco Bradesco Sa American Depositary Shares","shares":50363700},{"symbol":"BBL","exchange":"N","type":"stock","description":"BHP Billiton plc Sponsored ADR","shares":428800},{"symbol":"BBRY","exchange":"Q","type":"stock","description":"BlackBerry Limited - Common Stock","shares":595700},{"symbol":"BBVA","exchange":"N","type":"stock","description":"Banco Bilbao Vizcaya Argentaria S.A. Common Stock","shares":3183500},{"symbol":"BCE","exchange":"N","type":"stock","description":"BCE, Inc. Common Stock","shares":653200},{"symbol":"BCRH","exchange":"N","type":"stock","description":"Blue Capital Reinsurance Holdings Ltd. Common Shares","shares":216800},{"symbol":"BCS","exchange":"N","type":"stock","description":"Barclays PLC Common Stock","shares":1062600},{"symbol":"BCX","exchange":"N","type":"stock","description":"BlackRock Resources Common Shares of Beneficial Interest","shares":614600},{"symbol":"BEL","exchange":"N","type":"stock","description":"Belmond Ltd. Class A Common Stock","shares":13670800},{"symbol":"BELFB","exchange":"Q","type":"stock","description":"Bel Fuse Inc. - Class B Common Stock","shares":1298000},{"symbol":"BEP","exchange":"N","type":"stock","description":"Brookfield Renewable Energy Partners LP Partnership Units (Bermuda)","shares":50700},{"symbol":"BFR","exchange":"N","type":"stock","description":"BBVA Banco Frances S.A. Common Stock","shares":226100},{"symbol":"BG","exchange":"N","type":"stock","description":"Bunge Limited Bunge Limited","shares":9857900},{"symbol":"BGH","exchange":"N","type":"stock","description":"Babson Capital Global Short Duration High Yield Fund Common Shares of Beneficial Interests","shares":179800},{"symbol":"BHP","exchange":"N","type":"stock","description":"BHP Billiton Limited Common Stock","shares":768700},{"symbol":"BIN","exchange":"N","type":"stock","description":"Progressive Waste Solutions Ltd. Common Shares","shares":1164300},{"symbol":"BITA","exchange":"N","type":"stock","description":"Bitauto Holdings Limited American Depositary Shares (each representing one ordinary share)","shares":145900},{"symbol":"BKT","exchange":"N","type":"stock","description":"BlackRock Income Trust Inc. (The)","shares":269100},{"symbol":"BLX","exchange":"N","type":"stock","description":"Banco Latinoamericano de Comercio Exterior, S.A.","shares":1192000},{"symbol":"BMO","exchange":"N","type":"stock","description":"Bank Of Montreal Common Stock","shares":2456500},{"symbol":"BNS","exchange":"N","type":"stock","description":"Bank Nova Scotia Halifax Pfd 3 Ordinary Shares","shares":3050900},{"symbol":"BOE","exchange":"N","type":"stock","description":"Blackrock Global Blackrock Global Opportunities Equity Trust Common Shares of Beneficial Interest","shares":310300},{"symbol":"BP","exchange":"N","type":"stock","description":"BP p.l.c. Common Stock","shares":13878500},{"symbol":"BPOP","exchange":"Q","type":"stock","description":"Popular, Inc. - Common Stock","shares":11688200},{"symbol":"BRFS","exchange":"N","type":"stock","description":"BRF S.A.","shares":4525000},{"symbol":"BRP","exchange":"N","type":"stock","description":"Brookfield Residential Properties Inc. Common Stock","shares":1035200},{"symbol":"BSAC","exchange":"N","type":"stock","description":"Banco Santander - Chile ADS","shares":4574400},{"symbol":"BT","exchange":"N","type":"stock","description":"BT Group plc Common Stock","shares":287100},{"symbol":"BTE","exchange":"N","type":"stock","description":"Baytex Energy Corp","shares":280300},{"symbol":"BTI","exchange":"A","type":"stock","description":"British American Tobacco Industries, p.l.c. Common Stock ADR","shares":365400},{"symbol":"BTZ","exchange":"N","type":"stock","description":"BlackRock Credit Allocation Income Trust","shares":269100},{"symbol":"BUD","exchange":"N","type":"stock","description":"Anheuser-Busch Inbev SA Sponsored ADR (Belgium)","shares":2109500},{"symbol":"BVN","exchange":"N","type":"stock","description":"Buenaventura Mining Company Inc.","shares":15186000},{"symbol":"BWINB","exchange":"Q","type":"stock","description":"Baldwin & Lyons, Inc. - Class B (nonvoting) Common Stock","shares":1185300},{"symbol":"CAE","exchange":"N","type":"stock","description":"CAE Inc. Ordinary Shares","shares":2927500},{"symbol":"CAF","exchange":"N","type":"stock","description":"Morgan Stanley China A Share Fund Inc. Common Stock","shares":377200},{"symbol":"CAJ","exchange":"N","type":"stock","description":"Canon, Inc. American Depositary Shares","shares":325200},{"symbol":"CBD","exchange":"N","type":"stock","description":"Companhia Brasileira de Distribuicao ADS","shares":1133600},{"symbol":"CBI","exchange":"N","type":"stock","description":"Chicago Bridge & Iron Company N.V. Common Stock","shares":2998900},{"symbol":"CBS","exchange":"N","type":"stock","description":"CBS Corporation Class B Common Stock","shares":26080500},{"symbol":"CCJ","exchange":"N","type":"stock","description":"Cameco Corporation Common Stock","shares":4492300},{"symbol":"CCL","exchange":"N","type":"stock","description":"Carnival Corporation Common Stock","shares":47554000},{"symbol":"CCU","exchange":"N","type":"stock","description":"Compania Cervecerias Unidas, S.A. Common Stock","shares":335300},{"symbol":"CEE","exchange":"N","type":"stock","description":"Central Europe, Russia and Turkey Fund, Inc. (The) Common Stock","shares":512200},{"symbol":"CENTA","exchange":"Q","type":"stock","description":"Central Garden & Pet Company - Class A Common Stock Nonvoting","shares":4383600},{"symbol":"CEO","exchange":"N","type":"stock","description":"CNOOC Limited Common Stock","shares":123600},{"symbol":"CHA","exchange":"N","type":"stock","description":"China Telecom Corp Ltd ADS","shares":312300},{"symbol":"CHEV","exchange":"Q","type":"stock","description":"Cheviot Financial Corp - Common Stock","shares":45800},{"symbol":"CHKP","exchange":"Q","type":"stock","description":"Check Point Software Technologies Ltd. - Ordinary Shares","shares":6328100},{"symbol":"CHL","exchange":"N","type":"stock","description":"China Mobile Limited Common Stock","shares":6329300},{"symbol":"CHT","exchange":"N","type":"stock","description":"Chunghwa Telecom Co., Ltd.","shares":282300},{"symbol":"CHU","exchange":"N","type":"stock","description":"China Unicom (Hong Kong) Ltd Common Stock","shares":7294500},{"symbol":"CIB","exchange":"N","type":"stock","description":"BanColombia S.A. Common Stock","shares":1308000},{"symbol":"CIG","exchange":"N","type":"stock","description":"Comp En De Mn Cemig ADS American Depositary Shares","shares":17422500},{"symbol":"CISG","exchange":"Q","type":"stock","description":"CNinsure Inc. - American depositary shares, each representing 20 ordinary shares","shares":118600},{"symbol":"CKSW","exchange":"Q","type":"stock","description":"ClickSoftware Technologies Ltd. - Ordinary Shares","shares":1066700},{"symbol":"CLB","exchange":"N","type":"stock","description":"Core Laboratories N.V. Common Stock","shares":790700},{"symbol":"CLS","exchange":"N","type":"stock","description":"Celestica, Inc. Common Stock","shares":1168200},{"symbol":"CMCSK","exchange":"Q","type":"stock","description":"Comcast Corporation - Class A Special Common Stock","shares":8629700},{"symbol":"CMK","exchange":"N","type":"stock","description":"MFS Intermarket Income Trust I Common Stock","shares":126500},{"symbol":"CNI","exchange":"N","type":"stock","description":"Canadian National Railway Company Common Stock","shares":3276000},{"symbol":"CNQ","exchange":"N","type":"stock","description":"Canadian Natural Resources Limited Common Stock","shares":7659000},{"symbol":"CO","exchange":"N","type":"stock","description":"China Cord Blood Corporation Common Stock","shares":344200},{"symbol":"COT","exchange":"N","type":"stock","description":"Cott Corporation Common Stock","shares":1925800},{"symbol":"COV","exchange":"N","type":"stock","description":"Covidien plc. Ordinary Shares (Ireland)","shares":27865600},{"symbol":"CP","exchange":"N","type":"stock","description":"Canadian Pacific Railway Limited Common Stock","shares":3035600},{"symbol":"CPA","exchange":"N","type":"stock","description":"Copa Holdings, S.A. Copa Holdings, S.A. Class A Common Stock","shares":1925900},{"symbol":"CPAC","exchange":"N","type":"stock","description":"Cementos Pacasmayo S.A.A. American Depositary Shares, each representing five Common Shares","shares":340000},{"symbol":"CPHR","exchange":"Q","type":"stock","description":"Cipher Pharmaceuticals Inc. - Common Shares","shares":40300},{"symbol":"CPL","exchange":"N","type":"stock","description":"CPFL Energia S.A. CPFL Energia S.A. American Depositary Shares","shares":434200},{"symbol":"CRESY","exchange":"Q","type":"stock","description":"Cresud S.A.C.I.F. y A. - American Depositary Shares, each representing ten shares of Common Stock","shares":254700},{"symbol":"CRH","exchange":"N","type":"stock","description":"CRH PLC American Depositary Shares","shares":2848900},{"symbol":"CRTO","exchange":"Q","type":"stock","description":"Criteo S.A. - American Depositary Shares","shares":475700},{"symbol":"CS","exchange":"N","type":"stock","description":"Credit Suisse Group American Depositary Shares","shares":684800},{"symbol":"CSIQ","exchange":"Q","type":"stock","description":"Canadian Solar Inc. - common shares","shares":902300},{"symbol":"CSTE","exchange":"Q","type":"stock","description":"CaesarStone Sdot-Yam Ltd. - Ordinary Shares","shares":2266400},{"symbol":"CSTM","exchange":"N","type":"stock","description":"Constellium N.V. Ordinary Shares","shares":8401400},{"symbol":"CTRP","exchange":"Q","type":"stock","description":"Ctrip.com International, Ltd. - American Depositary Shares","shares":6300100},{"symbol":"CTRX","exchange":"Q","type":"stock","description":"Catamaran Corporation - Common Stock","shares":7703800},{"symbol":"CUK","exchange":"N","type":"stock","description":"Carnival Plc ADS ADS","shares":471500},{"symbol":"CVE","exchange":"N","type":"stock","description":"Cenovus Energy Inc Common Stock","shares":3511000},{"symbol":"CWCO","exchange":"Q","type":"stock","description":"Consolidated Water Co. Ltd. - Ordinary Shares","shares":57200},{"symbol":"CX","exchange":"N","type":"stock","description":"Cemex, S.A.B. de C.V. Sponsored ADR","shares":19927000},{"symbol":"CYBR","exchange":"Q","type":"stock","description":"CyberArk Software Ltd. - Ordinary Shares","shares":37500},{"symbol":"CYD","exchange":"N","type":"stock","description":"China Yuchai International Limited Common Stock","shares":589600},{"symbol":"CZZ","exchange":"N","type":"stock","description":"Cosan Limited Class A Common Stock","shares":5311200},{"symbol":"DB","exchange":"N","type":"stock","description":"Deutsche Bank AG Common Stock","shares":1134600},{"symbol":"DBL","exchange":"N","type":"stock","description":"DoubleLine Opportunistic Credit Fund Common Shares of Beneficial Interest","shares":40900},{"symbol":"DBVT","exchange":"Q","type":"stock","description":"DBV Technologies S.A. - American Depositary Shares","shares":253100},{"symbol":"DCM","exchange":"N","type":"stock","description":"NTT DOCOMO, Inc American Depositary Shares","shares":474400},{"symbol":"DCUA","exchange":"N","type":"stock","description":"Dominion Resources, Inc. Corporate Unit 2013 Series A","shares":783800},{"symbol":"DCUB","exchange":"N","type":"stock","description":"Dominion Resources, Inc. Corporate Unit 2013 Series B","shares":723700},{"symbol":"DCUC","exchange":"N","type":"stock","description":"Dominion Resources, Inc. VA New 2014 Series A Corp Unit","shares":2252500},{"symbol":"DDC","exchange":"N","type":"stock","description":"Dominion Diamond Corporation Common Stock","shares":451600},{"symbol":"DEG","exchange":"N","type":"stock","description":"Etablissements Delhaize Freres et Cie \"Le Lion\" S.A. Common Stock","shares":814800},{"symbol":"DEO","exchange":"N","type":"stock","description":"Diageo plc Common Stock","shares":1923200},{"symbol":"DHT","exchange":"N","type":"stock","description":"DHT Holdings, Inc.","shares":720200},{"symbol":"DISCK","exchange":"Q","type":"stock","description":"Discovery Communications, Inc. - Series C Common Stock","shares":26532400},{"symbol":"DLPH","exchange":"N","type":"stock","description":"Delphi Automotive plc Ordinary Shares","shares":34343200},{"symbol":"DOOR","exchange":"N","type":"stock","description":"Masonite International Corporation Ordinary Shares (Canada)","shares":999800},{"symbol":"DOX","exchange":"Q","type":"stock","description":"Amdocs Limited - Ordinary Shares","shares":12692100},{"symbol":"DQ","exchange":"N","type":"stock","description":"DAQO New Energy Corp. American Depositary Shares, each representing five ordinary shares","shares":88900},{"symbol":"DSGX","exchange":"Q","type":"stock","description":"The Descartes Systems Group Inc. - Common Stock","shares":51800},{"symbol":"DSL","exchange":"N","type":"stock","description":"DoubleLine Income Solutions Fund Common Shares of Beneficial Interests","shares":64300},{"symbol":"DYN","exchange":"N","type":"stock","description":"Dynegy Inc. Common Stock","shares":8172900},{"symbol":"E","exchange":"N","type":"stock","description":"ENI S.p.A. Common Stock","shares":613600},{"symbol":"EAGLU","exchange":"Q","type":"stock","description":"Silver Eagle Acquisition Corp. - Unit","shares":1593400},{"symbol":"ECA","exchange":"N","type":"stock","description":"Encana Corporation","shares":2955800},{"symbol":"EDN","exchange":"N","type":"stock","description":"Empresa Distribuidora Y Comercializadora Norte S.A. (Edenor) Empresa Distribuidora Y Comercializadora Norte S.A. (Edenor) American Depositary Shares","shares":77800},{"symbol":"EEA","exchange":"N","type":"stock","description":"The European Equity Fund, Inc. Common Stock","shares":135500},{"symbol":"EFR","exchange":"N","type":"stock","description":"Eaton Vance Senior Floating-Rate Fund Common Shares of Beneficial Interest","shares":46800},{"symbol":"EGO","exchange":"N","type":"stock","description":"Eldorado Gold Corporation Ordinary Shares","shares":26176800},{"symbol":"EHI","exchange":"N","type":"stock","description":"Western Asset Global High Income Fund Inc Common Stock","shares":191500},{"symbol":"ELOS","exchange":"Q","type":"stock","description":"Syneron Medical Ltd. - Ordinary Shares","shares":688400},{"symbol":"ELP","exchange":"N","type":"stock","description":"Companhia Paranaense de Energia (COPEL) Common Stock","shares":835200},{"symbol":"ENB","exchange":"N","type":"stock","description":"Enbridge Inc Common Stock","shares":6516900},{"symbol":"ENDP","exchange":"Q","type":"stock","description":"Endo International plc - Ordinary Shares","shares":3826800},{"symbol":"ENH","exchange":"N","type":"stock","description":"Endurance Specialty Holdings Ltd Common Stock","shares":5327300},{"symbol":"ENI","exchange":"N","type":"stock","description":"Enersis S A Common Stock","shares":18263500},{"symbol":"EOC","exchange":"N","type":"stock","description":"Empresa Nacional de Electricidad S.A. Common Stock","shares":580400},{"symbol":"ERF","exchange":"N","type":"stock","description":"Enerplus Corporation Common Stock","shares":707800},{"symbol":"ERIC","exchange":"Q","type":"stock","description":"Ericsson - ADS each representing 1 underlying Class B share","shares":3337000},{"symbol":"ERJ","exchange":"N","type":"stock","description":"Embraer S.A. Common Stock","shares":4036600},{"symbol":"EROS","exchange":"N","type":"stock","description":"Eros International PLC A Ordinary Shares","shares":88100},{"symbol":"ESD","exchange":"N","type":"stock","description":"Western Asset Emerging Markets Debt Fund Inc Common Stock","shares":131900},{"symbol":"ESGR","exchange":"Q","type":"stock","description":"Enstar Group Limited - Ordinary Shares","shares":604800},{"symbol":"ESNT","exchange":"N","type":"stock","description":"Essent Group Ltd. Common Shares","shares":3992300},{"symbol":"ESV","exchange":"N","type":"stock","description":"Ensco plc Class A Ordinary Shares","shares":7053500},{"symbol":"ETF","exchange":"A","type":"stock","description":"Aberdeen Emerging Markets Company Oppotunities Fund, Inc. Common Stock","shares":457800},{"symbol":"ETN","exchange":"N","type":"stock","description":"Eaton Corporation, PLC Ordinary Shares","shares":21875100},{"symbol":"EVTC","exchange":"N","type":"stock","description":"Evertec, Inc. Common Stock","shares":4752100},{"symbol":"EVV","exchange":"A","type":"stock","description":"Eaton Vance Limited Duration Income Fund Common Shares of Beneficial Interest","shares":54900},{"symbol":"EXCU","exchange":"N","type":"stock","description":"Exelon Corp. Conv Unit","shares":670800},{"symbol":"EXG","exchange":"N","type":"stock","description":"Eaton Vance Tax-Managed Global Diversified Equity Income Fund Eaton Vance Tax-Managed Global Diversified Equity Income Fund Common Shares of Beneficial Interest","shares":66000},{"symbol":"FBP","exchange":"N","type":"stock","description":"First BanCorp. New Common Stock","shares":11048200},{"symbol":"FBR","exchange":"N","type":"stock","description":"Fibria Celulose S.A.","shares":889000},{"symbol":"FCAU","exchange":"N","type":"stock","description":"Fiat Chrysler Automobiles N.V. Common Shares","shares":416400},{"symbol":"FDI","exchange":"N","type":"stock","description":"Fort Dearborn Income Securities, Inc. Common Stock","shares":235500},{"symbol":"FDP","exchange":"N","type":"stock","description":"Fresh Del Monte Produce, Inc. Common Stock","shares":826500},{"symbol":"FI","exchange":"N","type":"stock","description":"Frank's International N.V. Common Stock","shares":1033300},{"symbol":"FLEX","exchange":"Q","type":"stock","description":"Flextronics International Ltd. - Ordinary Shares","shares":53882300},{"symbol":"FLML","exchange":"Q","type":"stock","description":"Flamel Technologies S.A. - American Depositary Shares each representing one Ordinary Share","shares":1258500},{"symbol":"FLTX","exchange":"N","type":"stock","description":"Fleetmatics Group PLC Ordinary Shares","shares":615500},{"symbol":"FLY","exchange":"N","type":"stock","description":"Fly Leasing Limited","shares":500100},{"symbol":"FMS","exchange":"N","type":"stock","description":"Fresenius Medical Care AG Common Stock","shares":130500},{"symbol":"FMX","exchange":"N","type":"stock","description":"Fomento Economico Mexicano S.A.B. de C.V. Common Stock","shares":8833800},{"symbol":"FMY","exchange":"N","type":"stock","description":"First Trust Motgage Income Fund Common Shares of Beneficial Interest","shares":67900},{"symbol":"FN","exchange":"N","type":"stock","description":"Fabrinet Ordinary Shares","shares":2439600},{"symbol":"FNFV","exchange":"N","type":"stock","description":"FNFV Group of Fidelity National Financial, Inc. Common Stock","shares":6242600},{"symbol":"FNV","exchange":"N","type":"stock","description":"Franco-Nevada Corporation","shares":580800},{"symbol":"FOX","exchange":"Q","type":"stock","description":"Twenty-First Century Fox, Inc. - Class B Common Stock","shares":32840100},{"symbol":"FSL","exchange":"N","type":"stock","description":"Freescale Semiconductor, Ltd Common Shares","shares":1009300},{"symbol":"FSRV","exchange":"Q","type":"stock","description":"FirstService Corporation - Subordinate Voting Shares","shares":367900},{"symbol":"FTF","exchange":"A","type":"stock","description":"Franklin Limited Duration Income Trust Common Shares of Beneficial Interest","shares":91400},{"symbol":"FTT","exchange":"N","type":"stock","description":"Federated Enhanced Treasury Income Fund Common Shares of Beneficial Interest","shares":171700},{"symbol":"G","exchange":"N","type":"stock","description":"Genpact Limited Common Stock","shares":12150400},{"symbol":"GAME","exchange":"Q","type":"stock","description":"Shanda Games Limited - American Depositary Shares representing 2 Class A Ordinary Shares","shares":1664900},{"symbol":"GBLI","exchange":"Q","type":"stock","description":"Global Indemnity plc - Class A Common Shares","shares":960000},{"symbol":"GCH","exchange":"N","type":"stock","description":"Aberdeen Greater China Fund, Inc. Common Stock","shares":66300},{"symbol":"GER","exchange":"N","type":"stock","description":"Goldman Sachs MLP Energy Renaissance Fund","shares":87800},{"symbol":"GF","exchange":"N","type":"stock","description":"New Germany Fund, Inc. (The) Common Stock","shares":282700},{"symbol":"GFI","exchange":"N","type":"stock","description":"Gold Fields Limited American Depositary Shares","shares":45943500},{"symbol":"GG","exchange":"N","type":"stock","description":"Goldcorp Inc. Common Stock","shares":14396500},{"symbol":"GGAL","exchange":"Q","type":"stock","description":"Grupo Financiero Galicia S.A. - American Depositary Shares, Class B Shares underlying","shares":133500},{"symbol":"GGB","exchange":"N","type":"stock","description":"Gerdau S.A. Common Stock","shares":22352100},{"symbol":"GHY","exchange":"N","type":"stock","description":"Prudential Global Short Duration High Yield Fund, Inc. Common Stock","shares":273700},{"symbol":"GIB","exchange":"N","type":"stock","description":"CGI Group, Inc. Common Stock","shares":1449500},{"symbol":"GIL","exchange":"N","type":"stock","description":"Gildan Activewear, Inc. Class A Sub. Vot. Common Stock","shares":1336800},{"symbol":"GLOG","exchange":"N","type":"stock","description":"GasLog Ltd. Common Shares","shares":56900},{"symbol":"GLRE","exchange":"Q","type":"stock","description":"Greenlight Reinsurance, Ltd. - Class A Ordinary Shares","shares":3483500},{"symbol":"GNE","exchange":"N","type":"stock","description":"Genie Energy Ltd. Class B Common Stock Stock","shares":632900},{"symbol":"GOL","exchange":"N","type":"stock","description":"Gol Linhas Aereas Inteligentes S.A. Sponsored ADR representing Pfd Shares","shares":1151500},{"symbol":"GOOG","exchange":"Q","type":"stock","description":"Google Inc. - Class C Capital Stock","shares":20964600},{"symbol":"GRAM","exchange":"N","type":"stock","description":"Grana y Montero S.A.A. American Depositary Shares, each representing five Common Shares","shares":407000},{"symbol":"GRFS","exchange":"Q","type":"stock","description":"Grifols, S.A. - American Depositary Shares","shares":1054500},{"symbol":"GSH","exchange":"N","type":"stock","description":"Guangshen Railway Company Limited Common Stock","shares":418200},{"symbol":"GSIG","exchange":"Q","type":"stock","description":"GSI Group, Inc. - Common Stock","shares":3256000},{"symbol":"GSK","exchange":"N","type":"stock","description":"GlaxoSmithKline PLC Common Stock","shares":6897500},{"symbol":"GSL","exchange":"N","type":"stock","description":"Global Ship Lease Inc New Class A Common Shares","shares":117600},{"symbol":"GSOL","exchange":"Q","type":"stock","description":"Global Sources Ltd. - Common Stock","shares":48600},{"symbol":"GTN","exchange":"N","type":"stock","description":"Gray Communications Systems, Inc. Common Stock","shares":4120600},{"symbol":"GTS","exchange":"N","type":"stock","description":"Triple-S Management Corporation Class B Common Stock","shares":2851400},{"symbol":"HAWKB","exchange":"Q","type":"stock","description":"Blackhawk Network Holdings, Inc. - Class B Common Stock","shares":1576900},{"symbol":"HBM","exchange":"N","type":"stock","description":"Hudbay Minerals Inc Ordinary Shares (Canada)","shares":688300},{"symbol":"HDB","exchange":"N","type":"stock","description":"HDFC Bank Limited Common Stock","shares":10563100},{"symbol":"HDRAU","exchange":"Q","type":"stock","description":"Hydra Industries Acquisition Corp. - Units","shares":503600},{"symbol":"HEI","exchange":"N","type":"stock","description":"Heico Corporation Common Stock","shares":1204600},{"symbol":"HELE","exchange":"Q","type":"stock","description":"Helen of Troy Limited - Common Stock","shares":4537200},{"symbol":"HELI","exchange":"N","type":"stock","description":"CHC Group Ltd. Ordinary Shares","shares":64700},{"symbol":"HHY","exchange":"N","type":"stock","description":"Brookfield High Income Fund Inc.","shares":42100},{"symbol":"HIX","exchange":"N","type":"stock","description":"Western Asset High Income Fund II Inc. Common Stock","shares":461900},{"symbol":"HLSS","exchange":"Q","type":"stock","description":"Home Loan Servicing Solutions, Ltd. - Ordinary Shares","shares":2398300},{"symbol":"HMC","exchange":"N","type":"stock","description":"Honda Motor Company, Ltd. Common Stock","shares":875600},{"symbol":"HOLI","exchange":"Q","type":"stock","description":"Hollysys Automation Technologies, Ltd. - Common Stock","shares":2203100},{"symbol":"HSBC","exchange":"N","type":"stock","description":"HSBC Holdings, plc. Common Stock","shares":1155100},{"symbol":"HTR","exchange":"N","type":"stock","description":"Brookfield Total Return Fund Inc. (The) Common Stock","shares":122600},{"symbol":"HVT","exchange":"N","type":"stock","description":"Haverty Furniture Companies, Inc. Common Stock","shares":2709600},{"symbol":"HZNP","exchange":"Q","type":"stock","description":"Horizon Pharma plc - common stock","shares":486200},{"symbol":"I","exchange":"N","type":"stock","description":"Intelsat S.A. Common Shares","shares":337600},{"symbol":"IBA","exchange":"N","type":"stock","description":"Industrias Bachoco, S.A.B. de C.V. Common Stock","shares":128400},{"symbol":"IBN","exchange":"N","type":"stock","description":"ICICI Bank Limited Common Stock","shares":16928100},{"symbol":"ICA","exchange":"N","type":"stock","description":"Empresas Ica Soc Contrladora Common Stock","shares":1585700},{"symbol":"ICD","exchange":"N","type":"stock","description":"Independence Contract Drilling, Inc. Common Stock","shares":1942200},{"symbol":"ICLR","exchange":"Q","type":"stock","description":"ICON plc - Ordinary Shares","shares":5206200},{"symbol":"IF","exchange":"A","type":"stock","description":"Aberdeen Indonesia Fund, Inc. (Common Stock","shares":249000},{"symbol":"IFN","exchange":"N","type":"stock","description":"India Fund, Inc. (The) Common Stock","shares":279000},{"symbol":"IGD","exchange":"N","type":"stock","description":"Voya Global Equity Dividend and Premium Opportunity Fund","shares":129200},{"symbol":"IGR","exchange":"N","type":"stock","description":"CBRE Clarion Global Real Estate Income Fund Common Stock","shares":280800},{"symbol":"IIF","exchange":"N","type":"stock","description":"Morgan Stanley India Investment Fund, Inc. Common Stock","shares":106200},{"symbol":"IMAX","exchange":"N","type":"stock","description":"Imax Corporation Common Stock","shares":1283200},{"symbol":"IMO","exchange":"A","type":"stock","description":"Imperial Oil Limited Common Stock","shares":1284400},{"symbol":"IMOS","exchange":"Q","type":"stock","description":"ChipMOS TECHNOLOGIES (Bermuda) LTD. - Common Shares","shares":1614900},{"symbol":"INFY","exchange":"N","type":"stock","description":"Infosys Limited American Depositary Shares","shares":696400},{"symbol":"ING","exchange":"N","type":"stock","description":"ING Group, N.V. Common Stock","shares":2706400},{"symbol":"INXN","exchange":"N","type":"stock","description":"InterXion Holding N.V. Ordinary Shares (0.01 nominal value)","shares":1515800},{"symbol":"IOC","exchange":"N","type":"stock","description":"InterOil Corporation","shares":87000},{"symbol":"IR","exchange":"N","type":"stock","description":"Ingersoll-Rand plc (Ireland)","shares":12358700},{"symbol":"IRL","exchange":"N","type":"stock","description":"New Ireland Fund, Inc (The) Common Stock","shares":58900},{"symbol":"ISD","exchange":"N","type":"stock","description":"Prudential Short Duration High Yield Fund, Inc. Common Stock","shares":57200},{"symbol":"IVZ","exchange":"N","type":"stock","description":"Invesco Plc New Common Stock","shares":43892300},{"symbol":"JAZZ","exchange":"Q","type":"stock","description":"Jazz Pharmaceuticals plc - Ordinary Shares","shares":2898100},{"symbol":"JD","exchange":"Q","type":"stock","description":"JD.com, Inc. - American Depositary Shares","shares":121900},{"symbol":"JE","exchange":"N","type":"stock","description":"Just Energy Group, Inc. Ordinary Shares (Canada)","shares":834600},{"symbol":"JEQ","exchange":"N","type":"stock","description":"Aberdeen Japan Equity Fund, Inc. Common Stock","shares":372400},{"symbol":"JFC","exchange":"N","type":"stock","description":"JPMorgan China Region Fund, Inc. Common Stock","shares":297000},{"symbol":"JHP","exchange":"N","type":"stock","description":"Nuveen Quality Preferred Income Fund 3 Preferred Income 3","shares":47800},{"symbol":"JMM","exchange":"N","type":"stock","description":"Nuveen Multi-Market Income Fund (MA)","shares":44200},{"symbol":"JOBS","exchange":"Q","type":"stock","description":"51job, Inc. - American Depositary Shares, each representing two common shares","shares":295000},{"symbol":"JOF","exchange":"N","type":"stock","description":"Japan Smaller Capitalization Fund Inc Common Stock","shares":581900},{"symbol":"JPC","exchange":"N","type":"stock","description":"Nuveen Preferred Income Opportunities Fund","shares":67600},{"symbol":"KB","exchange":"N","type":"stock","description":"KB Financial Group Inc","shares":3656800},{"symbol":"KEF","exchange":"N","type":"stock","description":"Korea Equity Fund, Inc. Common Stock","shares":566400},{"symbol":"KEP","exchange":"N","type":"stock","description":"Korea Electric Power Corporation Common Stock","shares":2358000},{"symbol":"KFX","exchange":"Q","type":"stock","description":"Kofax Limited - Common Shares","shares":2113800},{"symbol":"KING","exchange":"N","type":"stock","description":"King Digital Entertainment plc Ordinary Share","shares":555200},{"symbol":"KNOP","exchange":"N","type":"stock","description":"KNOT Offshore Partners LP Common Units representing Limited Partner Interests","shares":46900},{"symbol":"KOF","exchange":"N","type":"stock","description":"Coca Cola Femsa S.A.B. de C.V. Common Stock","shares":120600},{"symbol":"KOG","exchange":"N","type":"stock","description":"Kodiak Oil & Gas Corp Common Stock","shares":10556100},{"symbol":"KORS","exchange":"N","type":"stock","description":"Michael Kors Holdings Limited Ordinary Shares","shares":21023800},{"symbol":"KOS","exchange":"N","type":"stock","description":"Kosmos Energy Ltd. Common Shares","shares":8191800},{"symbol":"KT","exchange":"N","type":"stock","description":"KT Corporation Common Stock","shares":886300},{"symbol":"KYO","exchange":"N","type":"stock","description":"Kyocera Corporation Common Stock","shares":105500},{"symbol":"LAQ","exchange":"A","type":"stock","description":"Aberdeen Latin America Equity Fund, Inc.","shares":312500},{"symbol":"LAZ","exchange":"N","type":"stock","description":"Lazard LTD. Lazard, LTD. Class A Common Stock","shares":2804700},{"symbol":"LBRDK","exchange":"Q","type":"stock","description":"Liberty Broadband Corporation - Class C Common Stock","shares":1474000},{"symbol":"LBTYA","exchange":"Q","type":"stock","description":"Liberty Global plc - Class A Ordinary Shares","shares":3064300},{"symbol":"LBTYK","exchange":"Q","type":"stock","description":"Liberty Global plc - Class C Ordinary Shares","shares":21412700},{"symbol":"LDF","exchange":"N","type":"stock","description":"Latin American Discovery Fund, Inc. (The) Common Stock","shares":183100},{"symbol":"LE","exchange":"Q","type":"stock","description":"Lands' End, Inc. - Common Stock","shares":321400},{"symbol":"LFC","exchange":"N","type":"stock","description":"China Life Insurance Company Limited American Depositary Shares","shares":449800},{"symbol":"LFL","exchange":"N","type":"stock","description":"LATAM Airlines Group S.A.","shares":1194400},{"symbol":"LGF","exchange":"N","type":"stock","description":"Lions Gate Entertainment Corporation Common Stock","shares":1976400},{"symbol":"LMCK","exchange":"Q","type":"stock","description":"Liberty Media Corporation - Series C Common Stock","shares":10126100},{"symbol":"LMNS","exchange":"Q","type":"stock","description":"Lumenis Ltd. - Class B Ordinary Shares","shares":112600},{"symbol":"LOGI","exchange":"Q","type":"stock","description":"Logitech International S.A. - Registered Shares","shares":334100},{"symbol":"LPG","exchange":"N","type":"stock","description":"Dorian LPG Ltd. Common Stock","shares":363500},{"symbol":"LPL","exchange":"N","type":"stock","description":"LG Display Co, Ltd AMERICAN DEPOSITORY SHARES","shares":4504700},{"symbol":"LUX","exchange":"N","type":"stock","description":"Luxottica Group, S.p.A. Common Stock","shares":294900},{"symbol":"LXFR","exchange":"N","type":"stock","description":"Luxfer Holdings PLC American Depositary Shares (each representing one-half of an Ordinary Share)","shares":1485100},{"symbol":"LYB","exchange":"N","type":"stock","description":"LyondellBasell Industries NV Ordinary Shares Class A (Netherlands)","shares":37877300},{"symbol":"LYG","exchange":"N","type":"stock","description":"Lloyds Banking Group Plc American Depositary Shares","shares":5404200},{"symbol":"MCR","exchange":"N","type":"stock","description":"MFS Charter Income Trust Common Stock","shares":62200},{"symbol":"MDCA","exchange":"Q","type":"stock","description":"MDC Partners Inc. - Class A Subordinate Voting Shares","shares":1601700},{"symbol":"MDGN","exchange":"A","type":"stock","description":"Medgenics, Inc. Common Stock","shares":136800},{"symbol":"MDM","exchange":"A","type":"stock","description":"Mountain Province Diamonds Inc. Common Stock","shares":90800},{"symbol":"MDR","exchange":"N","type":"stock","description":"McDermott International, Inc. Common Stock","shares":7503700},{"symbol":"MDWD","exchange":"Q","type":"stock","description":"MediWound Ltd. - Ordinary Shares","shares":155300},{"symbol":"MEOH","exchange":"Q","type":"stock","description":"Methanex Corporation - Common Stock","shares":1294200},{"symbol":"MFC","exchange":"N","type":"stock","description":"Manulife Financial Corporation Common Stock","shares":3887900},{"symbol":"MGA","exchange":"N","type":"stock","description":"Magna International, Inc. Common Stock","shares":746200},{"symbol":"MGF","exchange":"N","type":"stock","description":"MFS Government Markets Income Trust Common Stock","shares":43500},{"symbol":"MHI","exchange":"N","type":"stock","description":"Pioneer Municipal High Income Trust Common Shares of Beneficial Interest","shares":155300},{"symbol":"MHLD","exchange":"Q","type":"stock","description":"Maiden Holdings, Ltd. - Common Stock","shares":5793200},{"symbol":"MIL","exchange":"N","type":"stock","description":"MFC Industrial Ltd.","shares":40200},{"symbol":"MITL","exchange":"Q","type":"stock","description":"Mitel Networks Corporation - Common Shares","shares":2361100},{"symbol":"MIXT","exchange":"N","type":"stock","description":"MiX Telematics Limited American Depositary Shares, each representing 25 Ordinary Shares","shares":828800},{"symbol":"MKC","exchange":"N","type":"stock","description":"McCormick & Company, Incorporated Common Stock","shares":5910000},{"symbol":"MLNX","exchange":"Q","type":"stock","description":"Mellanox Technologies, Ltd. - Ordinary Shares","shares":2898700},{"symbol":"MRH","exchange":"N","type":"stock","description":"Montpelier Re Holdings Ltd.","shares":4072000},{"symbol":"MRKT","exchange":"Q","type":"stock","description":"Markit Ltd. - Common Shares","shares":2707900},{"symbol":"MRVL","exchange":"Q","type":"stock","description":"Marvell Technology Group Ltd. - Common Stock","shares":30185900},{"symbol":"MSF","exchange":"N","type":"stock","description":"Morgan Stanley Emerging Markets Fund, Inc. Common Stock","shares":480400},{"symbol":"MTS","exchange":"N","type":"stock","description":"Montgomery Street Income Securities, Inc. Common Stock","shares":540300},{"symbol":"MTU","exchange":"N","type":"stock","description":"Mitsubishi UFJ Financial Group, Inc. Common Stock","shares":11688200},{"symbol":"MUS","exchange":"N","type":"stock","description":"Blackrock MuniHoldings Quality Fund, Inc Common Stock","shares":39300},{"symbol":"MVC","exchange":"N","type":"stock","description":"MVC Capital, Inc. Common Stock","shares":369800},{"symbol":"MYN","exchange":"N","type":"stock","description":"Blackrock MuniYield New York Quality Fund, Inc.Common Stock","shares":158200},{"symbol":"NAT","exchange":"N","type":"stock","description":"Nordic American Tankers Limited Common Stock","shares":1034800},{"symbol":"NBR","exchange":"N","type":"stock","description":"Nabors Industries Ltd.","shares":33157900},{"symbol":"NCLH","exchange":"Q","type":"stock","description":"Norwegian Cruise Line Holdings Ltd. - Ordinary Shares","shares":3166700},{"symbol":"NCZ","exchange":"N","type":"stock","description":"AllianzGI Convertible & Income Fund II Common Shares of Beneficial Interest","shares":55000},{"symbol":"NE","exchange":"N","type":"stock","description":"Noble Corporation Ordinary Shares (UK)","shares":10614100},{"symbol":"NEA","exchange":"N","type":"stock","description":"Nuveen AMT-Free Municipal Income Fund Common Shares of Beneficial Interest Par Value $.01","shares":53400},{"symbol":"NGD","exchange":"A","type":"stock","description":"New Gold Inc.","shares":21950000},{"symbol":"NGG","exchange":"N","type":"stock","description":"National Grid Transco, PLC National Grid PLC (NEW) American Depositary Shares","shares":351100},{"symbol":"NGHC","exchange":"Q","type":"stock","description":"National General Holdings Corp - Common Stock","shares":1244800},{"symbol":"NICE","exchange":"Q","type":"stock","description":"NICE-Systems Limited - American Depositary Shares each representing one Ordinary Share","shares":916500},{"symbol":"NICK","exchange":"Q","type":"stock","description":"Nicholas Financial, Inc. - Common Stock","shares":55400},{"symbol":"NLSN","exchange":"N","type":"stock","description":"Nielsen N.V. Common Stock","shares":7283100},{"symbol":"NMR","exchange":"N","type":"stock","description":"Nomura Holdings Inc ADR American Depositary Shares","shares":801800},{"symbol":"NNY","exchange":"N","type":"stock","description":"Nuveen New York Municipal Value Fund, Inc. Common Stock","shares":124700},{"symbol":"NOA","exchange":"N","type":"stock","description":"North American Energy Partners, Inc. Common Shares (no par)","shares":187900},{"symbol":"NOAH","exchange":"N","type":"stock","description":"Noah Holdings Limited","shares":68600},{"symbol":"NOK","exchange":"N","type":"stock","description":"Nokia Corporation Sponsored American Depositary Shares","shares":13006000},{"symbol":"NORD","exchange":"N","type":"stock","description":"Nord Anglia Education, Inc. Ordinary Shares","shares":660200},{"symbol":"NRCIA","exchange":"Q","type":"stock","description":"National Research Corporation - Class A Common Stock","shares":444200},{"symbol":"NSU","exchange":"A","type":"stock","description":"Nevsun Resources Ltd Ordinary Shares","shares":348800},{"symbol":"NTES","exchange":"Q","type":"stock","description":"NetEase, Inc. - American Depositary Shares, each representing 25 ordinary shares","shares":3098300},{"symbol":"NTL","exchange":"N","type":"stock","description":"Nortel Inversora SA, ADR Common Stock","shares":120300},{"symbol":"NTP","exchange":"N","type":"stock","description":"Nam Tai Property Inc. Common Stock","shares":722700},{"symbol":"NTT","exchange":"N","type":"stock","description":"Nippon Telegraph and Telephone Corporation Common Stock","shares":414300},{"symbol":"NUV","exchange":"N","type":"stock","description":"Nuveen Municipal Value Fund, Inc. Common Stock","shares":57400},{"symbol":"NVDQ","exchange":"Q","type":"stock","description":"Novadaq Technologies Inc - Common Shares","shares":1839800},{"symbol":"NVGS","exchange":"N","type":"stock","description":"Navigator Holdings Ltd. Ordinary Shares (Marshall Islands)","shares":800100},{"symbol":"NVMI","exchange":"Q","type":"stock","description":"Nova Measuring Instruments Ltd. - Ordinary Shares","shares":218800},{"symbol":"NVO","exchange":"N","type":"stock","description":"Novo Nordisk A\/S Common Stock","shares":9009200},{"symbol":"NVS","exchange":"N","type":"stock","description":"Novartis AG Common Stock","shares":8343200},{"symbol":"NWS","exchange":"Q","type":"stock","description":"News Corporation - Class B Common Stock","shares":1007700},{"symbol":"NXPI","exchange":"Q","type":"stock","description":"NXP Semiconductors N.V. - Common Stock","shares":18443200},{"symbol":"NXZ","exchange":"A","type":"stock","description":"Nuveen Dividend Advantage Municipal Fund 2 Share of Beneficial Interest","shares":48100},{"symbol":"OB","exchange":"N","type":"stock","description":"OneBeacon Insurance Group, Ltd. Class A Common Stock","shares":2054500},{"symbol":"OFG","exchange":"N","type":"stock","description":"OFG Bancorp Common Stock","shares":869400},{"symbol":"OFIX","exchange":"Q","type":"stock","description":"Orthofix International N.V. - Common Stock","shares":1848000},{"symbol":"OMAM","exchange":"N","type":"stock","description":"OM Asset Management plc Ordinary Shares","shares":1478700},{"symbol":"ORBK","exchange":"Q","type":"stock","description":"Orbotech Ltd. - Ordinary Shares","shares":2588700},{"symbol":"OTEX","exchange":"Q","type":"stock","description":"Open Text Corporation - Common Shares","shares":932300},{"symbol":"OXBR","exchange":"Q","type":"stock","description":"Oxbridge Re Holdings Limited - Ordinary Shares","shares":133400},{"symbol":"OXFD","exchange":"Q","type":"stock","description":"Oxford Immunotec Global PLC - Ordinary Shares","shares":83000},{"symbol":"PAAS","exchange":"Q","type":"stock","description":"Pan American Silver Corp. - Common Stock","shares":5182900},{"symbol":"PACD","exchange":"N","type":"stock","description":"Pacific Drilling S.A. Common Shares","shares":1062700},{"symbol":"PAM","exchange":"N","type":"stock","description":"Pampa Energia S.A. Pampa Energia S.A.","shares":293400},{"symbol":"PBA","exchange":"N","type":"stock","description":"Pembina Pipeline Corp. Ordinary Shares (Canada)","shares":1874200},{"symbol":"PBR","exchange":"N","type":"stock","description":"Petroleo Brasileiro S.A.- Petrobras Common Stock","shares":23976700},{"symbol":"PCI","exchange":"N","type":"stock","description":"PIMCO Dynamic Credit Income Fund Common Shares of Beneficial Interest","shares":455800},{"symbol":"PCOM","exchange":"Q","type":"stock","description":"Points International, Ltd. - Common Shares","shares":204800},{"symbol":"PDI","exchange":"N","type":"stock","description":"PIMCO Dynamic Income Fund Common Stock","shares":382500},{"symbol":"PDS","exchange":"N","type":"stock","description":"Precision Drilling Corporation Common Stock","shares":7326800},{"symbol":"PEI","exchange":"N","type":"stock","description":"Pennsylvania Real Estate Investment Trust Common Stock","shares":1140000},{"symbol":"PERI","exchange":"Q","type":"stock","description":"Perion Network Ltd - ordinary shares","shares":66500},{"symbol":"PFN","exchange":"N","type":"stock","description":"PIMCO Income Strategy Fund II","shares":341500},{"symbol":"PGN","exchange":"N","type":"stock","description":"Paragon Offshore plc Ordinary Shares","shares":123300},{"symbol":"PHD","exchange":"N","type":"stock","description":"Pioneer Floating Rate Trust Pioneer Floating Rate Trust Shares of Beneficial Interest","shares":122500},{"symbol":"PHG","exchange":"N","type":"stock","description":"Koninklijke Philips N.V. NY Registry Shares","shares":4687400},{"symbol":"PHI","exchange":"N","type":"stock","description":"Philippine Long Distance Telephone Company Sponsored ADR","shares":938100},{"symbol":"PHIIK","exchange":"Q","type":"stock","description":"PHI, Inc. - Non-Voting Common Stock","shares":945700},{"symbol":"PIM","exchange":"N","type":"stock","description":"Putnam Master Intermediate Income Trust Common Stock","shares":771600},{"symbol":"PKO","exchange":"N","type":"stock","description":"Pimco Income Opportunity Fund Common Shares of Beneficial Interest","shares":92400},{"symbol":"PKX","exchange":"N","type":"stock","description":"POSCO Common Stock","shares":2602500},{"symbol":"PNR","exchange":"N","type":"stock","description":"Pentair plc. Ordinary Share","shares":4879700},{"symbol":"PNTR","exchange":"Q","type":"stock","description":"Pointer Telocation Ltd. - Ordinary Shares","shares":44400},{"symbol":"POT","exchange":"N","type":"stock","description":"Potash Corporation of Saskatchewan Inc. Common Stock","shares":9125500},{"symbol":"PPP","exchange":"N","type":"stock","description":"Primero Mining Corp. New Common Shares (Canada)","shares":5255800},{"symbol":"PPT","exchange":"N","type":"stock","description":"Putnam Premier Income Trust Common Stock","shares":233900},{"symbol":"PRE","exchange":"N","type":"stock","description":"PartnerRe Ltd. Common Stock","shares":5505800},{"symbol":"PRGO","exchange":"N","type":"stock","description":"Perrigo Company plc Ordinary Shares","shares":10533300},{"symbol":"PRTA","exchange":"Q","type":"stock","description":"Prothena Corporation plc - Ordinary Shares","shares":1858800},{"symbol":"PSG","exchange":"N","type":"stock","description":"Performance Sports Group Ltd. Ordinary Shares (Canada)","shares":1755000},{"symbol":"PSO","exchange":"N","type":"stock","description":"Pearson, Plc Common Stock","shares":1717400},{"symbol":"PTNR","exchange":"Q","type":"stock","description":"Partner Communications Company Ltd. - American Depositary Shares, each representing one ordinary share","shares":115300},{"symbol":"PTP","exchange":"N","type":"stock","description":"Platinum Underwriters Holdings, Ltd","shares":3560200},{"symbol":"PTR","exchange":"N","type":"stock","description":"PetroChina Company Limited Common Stock","shares":208400},{"symbol":"PUK","exchange":"N","type":"stock","description":"Prudential Public Limited Company Common Stock","shares":883500},{"symbol":"PVG","exchange":"N","type":"stock","description":"Pretium Resources, Inc. Ordinary Shares (Canada)","shares":401100},{"symbol":"PWE","exchange":"N","type":"stock","description":"Penn West Petroleum Ltd","shares":1933500},{"symbol":"PZE","exchange":"N","type":"stock","description":"Petrobras Argentina S.A. ADS","shares":542300},{"symbol":"QADA","exchange":"Q","type":"stock","description":"QAD Inc. - Class A Common Stock","shares":614100},{"symbol":"QLTI","exchange":"Q","type":"stock","description":"QLT Inc. - Common Shares","shares":413600},{"symbol":"QUNR","exchange":"Q","type":"stock","description":"Qunar Cayman Islands Limited - American Depositary Shares","shares":79900},{"symbol":"QURE","exchange":"Q","type":"stock","description":"uniQure N.V. - Ordinary Shares","shares":73900},{"symbol":"RBA","exchange":"N","type":"stock","description":"Ritchie Bros. Auctioneers Incorporated Common Stock","shares":3313000},{"symbol":"RBS","exchange":"N","type":"stock","description":"Royal Bank of Scotland Group Plc New (The) ADS","shares":865200},{"symbol":"RCI","exchange":"N","type":"stock","description":"Rogers Communication, Inc. Common Stock","shares":259100},{"symbol":"RCL","exchange":"N","type":"stock","description":"Royal Caribbean Cruises Ltd. Common Stock","shares":11862300},{"symbol":"RDC","exchange":"N","type":"stock","description":"Rowan Companies plc Class A Ordinary Shares","shares":9300900},{"symbol":"RDCM","exchange":"Q","type":"stock","description":"Radcom Ltd. - Ordinary Shares","shares":53000},{"symbol":"ORAN","exchange":"N","type":"stock","description":"Orange","shares":809900},{"symbol":"RDWR","exchange":"Q","type":"stock","description":"Radware Ltd. - Ordinary Shares","shares":2455200},{"symbol":"RDY","exchange":"N","type":"stock","description":"Dr. Reddy's Laboratories Ltd Common Stock","shares":1051700},{"symbol":"RE","exchange":"N","type":"stock","description":"Everest Re Group, Ltd. Common Stock","shares":4943600},{"symbol":"RIGP","exchange":"N","type":"stock","description":"Transocean Partners LLC Common Units Representing Limited Liability Company Interests","shares":417200},{"symbol":"RIO","exchange":"N","type":"stock","description":"Rio Tinto Plc Common Stock","shares":286700},{"symbol":"RMT","exchange":"N","type":"stock","description":"Royce Micro-Cap Trust, Inc. Common Stock","shares":47200},{"symbol":"RNE","exchange":"N","type":"stock","description":"Morgan Stanley Eastern Europe Fund, Inc. Common Stock","shares":94800},{"symbol":"RNR","exchange":"N","type":"stock","description":"RenaissanceRe Holdings Ltd. Common Stock","shares":1471900},{"symbol":"RUSHB","exchange":"Q","type":"stock","description":"Rush Enterprises, Inc. - Class B Common Stock","shares":714300},{"symbol":"RY","exchange":"N","type":"stock","description":"Royal Bank Of Canada Common Stock","shares":4288500},{"symbol":"SA","exchange":"N","type":"stock","description":"Seabridge Gold, Inc. Ordinary Shares (Canada)","shares":89900},{"symbol":"SBGL","exchange":"N","type":"stock","description":"Sibanye Gold Limited American Depositary Shares (Each representing four ordinary shares)","shares":13979700},{"symbol":"SDRL","exchange":"N","type":"stock","description":"Seadrill Limited Ordinary Shares (Bermuda)","shares":348300},{"symbol":"SEMI","exchange":"Q","type":"stock","description":"SunEdison Semiconductor Limited - Ordinary Shares","shares":393500},{"symbol":"SFL","exchange":"N","type":"stock","description":"Ship Finance International Limited","shares":545200},{"symbol":"SGF","exchange":"N","type":"stock","description":"Aberdeen Singapore Fund, Inc. Common Stock","shares":218200},{"symbol":"SHG","exchange":"N","type":"stock","description":"Shinhan Financial Group Co Ltd American Depositary Shares","shares":1953400},{"symbol":"SHI","exchange":"N","type":"stock","description":"SINOPEC Shangai Petrochemical Company, Ltd. Common Stock","shares":68500},{"symbol":"SHPG","exchange":"Q","type":"stock","description":"Shire plc - American Depositary Shares, each representing three Ordinary Shares","shares":1548400},{"symbol":"SIG","exchange":"N","type":"stock","description":"Signet Jewelers Limited Common Shares","shares":5226600},{"symbol":"SINA","exchange":"Q","type":"stock","description":"Sina Corporation - Ordinary Shares","shares":1189500},{"symbol":"SJR","exchange":"N","type":"stock","description":"Shaw Communications Inc. Common Stock","shares":50600},{"symbol":"SKM","exchange":"N","type":"stock","description":"SK Telecom Co., Ltd. Common Stock","shares":1894200},{"symbol":"SLB","exchange":"N","type":"stock","description":"Schlumberger N.V. Common Stock","shares":89739400},{"symbol":"SLF","exchange":"N","type":"stock","description":"Sun Life Financial Inc. Common Stock","shares":345700},{"symbol":"SLW","exchange":"N","type":"stock","description":"Silver Wheaton Corp Common Shares (Canada)","shares":14262900},{"symbol":"SMI","exchange":"N","type":"stock","description":"Semiconductor Manufacturing International Corporation ADR","shares":1353800},{"symbol":"SNE","exchange":"N","type":"stock","description":"Sony Corporation Common Stock","shares":5248400},{"symbol":"SNN","exchange":"N","type":"stock","description":"Smith & Nephew SNATS, Inc. Common Stock","shares":1083300},{"symbol":"SNP","exchange":"N","type":"stock","description":"China Petroleum & Chemical Corporation Common Stock","shares":1239900},{"symbol":"SNY","exchange":"N","type":"stock","description":"Sanofi American Depositary Shares (Each repstg one-half of one ordinary share)","shares":5837800},{"symbol":"SPIL","exchange":"Q","type":"stock","description":"Siliconware Precision Industries Company, Ltd. - ADS represents common shares","shares":1568300},{"symbol":"SPNS","exchange":"Q","type":"stock","description":"Sapiens International Corporation N.V. - Common Shares","shares":317200},{"symbol":"SQM","exchange":"N","type":"stock","description":"Sociedad Quimica y Minera S.A. Common Stock","shares":2470700},{"symbol":"SRSC","exchange":"Q","type":"stock","description":"Sears Canada Inc. - Common Shares","shares":729000},{"symbol":"SSL","exchange":"N","type":"stock","description":"Sasol Ltd. American Depositary Shares","shares":2780600},{"symbol":"SSLT","exchange":"N","type":"stock","description":"Sesa Sterlite Limited American Depositary Shares (Each representing four equity shares)","shares":2001000},{"symbol":"SSRI","exchange":"Q","type":"stock","description":"Silver Standard Resources Inc. - Common Stock","shares":7096100},{"symbol":"ST","exchange":"N","type":"stock","description":"Sensata Technologies Holding N.V. Ordinary Shares","shares":6625500},{"symbol":"STKL","exchange":"Q","type":"stock","description":"SunOpta, Inc. - Common Stock","shares":2884500},{"symbol":"STM","exchange":"N","type":"stock","description":"STMicroelectronics N.V. Common Stock","shares":530900},{"symbol":"STN","exchange":"N","type":"stock","description":"Stantec Inc Common Stock","shares":736900},{"symbol":"STNG","exchange":"N","type":"stock","description":"Scorpio Tankers Inc. Common Shares","shares":1401900},{"symbol":"STNR","exchange":"Q","type":"stock","description":"Steiner Leisure Limited - Common Shares","shares":1791700},{"symbol":"STO","exchange":"N","type":"stock","description":"Statoil ASA","shares":1517000},{"symbol":"STX","exchange":"Q","type":"stock","description":"Seagate Technology. - Common Stock","shares":18698200},{"symbol":"SU","exchange":"N","type":"stock","description":"Suncor Energy Inc. Common Stock","shares":6777400},{"symbol":"SVA","exchange":"Q","type":"stock","description":"Sinovac Biotech, Ltd. - Ordinary Shares (Antigua\/Barbudo)","shares":74800},{"symbol":"SWH","exchange":"N","type":"stock","description":"Stanley Black & Decker, Inc. Corp Unit 2013","shares":118900},{"symbol":"SWIR","exchange":"Q","type":"stock","description":"Sierra Wireless, Inc. - Common Stock","shares":58100},{"symbol":"SWU","exchange":"N","type":"stock","description":"Stanley Black & Decker, Inc Corporate Units","shares":381500},{"symbol":"SWZ","exchange":"N","type":"stock","description":"Swiss Helvetia Fund, Inc. (The) Common Stock","shares":551800},{"symbol":"SYT","exchange":"N","type":"stock","description":"Syngenta AG Common Stock","shares":1414100},{"symbol":"TAC","exchange":"N","type":"stock","description":"TransAlta Corporation Ordinary Shares","shares":161500},{"symbol":"TAHO","exchange":"N","type":"stock","description":"Tahoe Resources, Inc. Ordinary Shares (Canada)","shares":687600},{"symbol":"TARO","exchange":"N","type":"stock","description":"Taro Pharmaceutical Industries Ltd. Ordinary Shares","shares":95000},{"symbol":"TAT","exchange":"A","type":"stock","description":"TransAtlantic Petroleum Ltd Ordinary Shares (Bermuda)","shares":133800},{"symbol":"TBPH","exchange":"Q","type":"stock","description":"Theravance Biopharma, Inc. - Ordinary Shares","shares":219300},{"symbol":"TCK","exchange":"N","type":"stock","description":"Teck Resources Ltd Ordinary Shares","shares":1075800},{"symbol":"TCPI","exchange":"N","type":"stock","description":"TCP International Holdings Ltd. Common Shares","shares":175900},{"symbol":"TCX","exchange":"Q","type":"stock","description":"Tucows Inc. - Common Stock","shares":148500},{"symbol":"TD","exchange":"N","type":"stock","description":"Toronto Dominion Bank (The) Common Stock","shares":3784600},{"symbol":"TDF","exchange":"N","type":"stock","description":"Templeton Dragon Fund, Inc. Common Stock","shares":796500},{"symbol":"TEF","exchange":"N","type":"stock","description":"Telefonica SA Common Stock","shares":1636700},{"symbol":"TEL","exchange":"N","type":"stock","description":"TE Connectivity Ltd. New Switzerland Registered Shares","shares":27781900},{"symbol":"TEO","exchange":"N","type":"stock","description":"Telecom Argentina SA","shares":99500},{"symbol":"TESO","exchange":"Q","type":"stock","description":"Tesco Corporation - Common Stock","shares":3754100},{"symbol":"TEVA","exchange":"N","type":"stock","description":"Teva Pharmaceutical Industries Limited American Depositary Shares","shares":34551500},{"symbol":"TGH","exchange":"N","type":"stock","description":"Textainer Group Holdings Limited Common Shares","shares":131600},{"symbol":"TGS","exchange":"N","type":"stock","description":"Transportadora de Gas del Sur SA TGS Common Stock","shares":463500},{"symbol":"THI","exchange":"N","type":"stock","description":"Tim Hortons Inc. Common Shares (Canada)","shares":1124300},{"symbol":"TI","exchange":"N","type":"stock","description":"Telecom Italia S.P.A. New","shares":2101400},{"symbol":"TK","exchange":"N","type":"stock","description":"Teekay Corporation Common Stock","shares":1200400},{"symbol":"TKC","exchange":"N","type":"stock","description":"Turkcell Iletisim Hizmetleri AS Common Stock","shares":1992200},{"symbol":"TLK","exchange":"N","type":"stock","description":"PT Telekomunikasi Indonesia, Tbk","shares":2132900},{"symbol":"TLM","exchange":"N","type":"stock","description":"Talisman Energy Inc. Common Stock","shares":9695500},{"symbol":"TM","exchange":"N","type":"stock","description":"Toyota Motor Corporation Common Stock","shares":517700},{"symbol":"TOT","exchange":"N","type":"stock","description":"Total S.A.","shares":2828000},{"symbol":"TPRE","exchange":"N","type":"stock","description":"Third Point Reinsurance Ltd. Common Shares","shares":3393300},{"symbol":"TRI","exchange":"N","type":"stock","description":"Thomson Reuters Corp Ordinary Shares","shares":2333500},{"symbol":"TRIB","exchange":"Q","type":"stock","description":"Trinity Biotech plc - American Depositary Shares each representing 4 A Ordinary Shares","shares":694600},{"symbol":"TRNX","exchange":"Q","type":"stock","description":"Tornier N.V. - Ordinary Shares","shares":612500},{"symbol":"TROX","exchange":"N","type":"stock","description":"Tronox Limited Ordinary Shares Class A $0.01 par","shares":3375900},{"symbol":"TRP","exchange":"N","type":"stock","description":"TransCanada Corporation Common Stock","shares":1199100},{"symbol":"TS","exchange":"N","type":"stock","description":"Tenaris S.A. American Depositary Shares","shares":6547300},{"symbol":"TSE","exchange":"N","type":"stock","description":"Trinseo S.A. Ordinary Shares","shares":630600},{"symbol":"TSEM","exchange":"Q","type":"stock","description":"Tower Semiconductor Ltd. - Ordinary Shares","shares":146800},{"symbol":"TSM","exchange":"N","type":"stock","description":"Taiwan Semiconductor Manufacturing Company Ltd.","shares":34132200},{"symbol":"TSNU","exchange":"N","type":"stock","description":"Tyson Foods, Inc. Tangible Equity Unit 1 Prepaid Stock Purchase Contact & 1 Sr (Amortorizing NT)","shares":2493000},{"symbol":"TSU","exchange":"N","type":"stock","description":"TIM Participacoes S.A. American Depositary Shares (Each representing 5 Common Shares)","shares":5426900},{"symbol":"TTF","exchange":"N","type":"stock","description":"Thai Fund, Inc. (The) Common Stock","shares":514700},{"symbol":"TTM","exchange":"N","type":"stock","description":"Tata Motors Ltd Tata Motors Limited","shares":8566600},{"symbol":"TU","exchange":"N","type":"stock","description":"Telus Corporation Ordinary Shares","shares":146400},{"symbol":"TV","exchange":"N","type":"stock","description":"Grupo Televisa S.A. Common Stock","shares":16555900},{"symbol":"TWN","exchange":"N","type":"stock","description":"Taiwan Fund, Inc. (The) Common Stock","shares":355100},{"symbol":"TY","exchange":"N","type":"stock","description":"Tri Continental Corporation Common Stock","shares":45500},{"symbol":"TYC","exchange":"N","type":"stock","description":"Tyco International plc (Ireland) Ordinary Share","shares":37555900},{"symbol":"UBA","exchange":"N","type":"stock","description":"Urstadt Biddle Properties Inc. Common Stock","shares":2122200},{"symbol":"UL","exchange":"N","type":"stock","description":"Unilever PLC Common Stock","shares":4023000},{"symbol":"UTF","exchange":"N","type":"stock","description":"Cohen & Steers Infrastructure Fund, Inc Common Stock","shares":164900},{"symbol":"UTIW","exchange":"Q","type":"stock","description":"UTi Worldwide Inc. - Ordinary Shares","shares":3658000},{"symbol":"UUUU","exchange":"A","type":"stock","description":"Energy Fuels Inc Ordinary Shares (Canada)","shares":81300},{"symbol":"VALE","exchange":"N","type":"stock","description":"VALE S.A. American Depositary Shares Each Representing one common share","shares":1566100},{"symbol":"VBLT","exchange":"Q","type":"stock","description":"Vascular Biogenics Ltd. - Ordinary Shares","shares":383800},{"symbol":"VE","exchange":"N","type":"stock","description":"Veolia Environn American Depositary Shares","shares":340900},{"symbol":"VIAB","exchange":"Q","type":"stock","description":"Viacom Inc. - Class B Common Stock","shares":33476100},{"symbol":"VIP","exchange":"Q","type":"stock","description":"VimpelCom Ltd. - American Depositary Shares","shares":3048300},{"symbol":"VIPS","exchange":"N","type":"stock","description":"Vipshop Holdings Limited American Depositary Shares, each representing two ordinary shares","shares":5038800},{"symbol":"VIV","exchange":"N","type":"stock","description":"Telefonica Brasil, S.A. ADS","shares":2173500},{"symbol":"VLRS","exchange":"N","type":"stock","description":"Controladora Vuela Compania de Aviacion, S.A.B. de C.V. American Depositary Shares, each representing ten (10) Ordinary Participation Certificates","shares":1306400},{"symbol":"VOD","exchange":"Q","type":"stock","description":"Vodafone Group Plc - American Depositary Shares each representing ten Ordinary Shares","shares":10201000},{"symbol":"VR","exchange":"N","type":"stock","description":"Validus Holdings, Ltd. Common Shares","shares":8698800},{"symbol":"VRX","exchange":"N","type":"stock","description":"Valeant Pharmaceuticals International, Inc.","shares":3416100},{"symbol":"WFT","exchange":"N","type":"stock","description":"Weatherford International plc (Ireland)","shares":40817300},{"symbol":"WIT","exchange":"N","type":"stock","description":"Wipro Limited Common Stock","shares":1825200},{"symbol":"WNS","exchange":"N","type":"stock","description":"WNS (Holdings) Limited Sponsored ADR (Jersey)","shares":3413700},{"symbol":"WPPGY","exchange":"Q","type":"stock","description":"WPP plc - American Depositary Shares each representing five Ordinary Shares","shares":189200},{"symbol":"WSH","exchange":"N","type":"stock","description":"Willis Group Holdings Public Limited (Ireland) Common Stock","shares":17678300},{"symbol":"WTM","exchange":"N","type":"stock","description":"White Mountains Insurance Group, Ltd. Common Stock","shares":334000},{"symbol":"WUBA","exchange":"N","type":"stock","description":"58.com Inc. American Depositary Shares, each representing 2 Class A Ordinary Shares","shares":78400},{"symbol":"WX","exchange":"N","type":"stock","description":"WuXi PharmaTech (Cayman) Inc. American Depositary Shares","shares":2947000},{"symbol":"XL","exchange":"N","type":"stock","description":"XL Group plc","shares":32419300},{"symbol":"YNDX","exchange":"Q","type":"stock","description":"Yandex N.V. - Class A Ordinary Shares","shares":6566900},{"symbol":"YOKU","exchange":"N","type":"stock","description":"Youku Tudou Inc. American Depositary Shares, each representing 18 Class A ordinary shares.","shares":3895500},{"symbol":"YPF","exchange":"N","type":"stock","description":"YPF Sociedad Anonima Common Stock","shares":3510500},{"symbol":"YY","exchange":"Q","type":"stock","description":"YY Inc. - American Depositary Shares","shares":139000},{"symbol":"ZNH","exchange":"N","type":"stock","description":"China Southern Airlines Company Limited Common Stock","shares":59300},{"symbol":"ZLTQ","exchange":"Q","type":"stock","description":"ZELTIQ Aesthetics Inc","shares":375600},{"symbol":"AMBR","exchange":"N","type":"stock","description":"Amber Road Inc","shares":1012800},{"symbol":"PLOW","exchange":"N","type":"stock","description":"Douglas Dynamics Inc","shares":1960700},{"symbol":"IHC","exchange":"N","type":"stock","description":"Independence Holding Co","shares":835700},{"symbol":"FFNW","exchange":"Q","type":"stock","description":"First Financial Northwest Inc","shares":894300},{"symbol":"ASH","exchange":"N","type":"stock","description":"Ashland Inc","shares":4785400},{"symbol":"MAR","exchange":"Q","type":"stock","description":"Marriott International Inc","shares":12475100},{"symbol":"MSCC","exchange":"Q","type":"stock","description":"Microsemi Corp","shares":9654700},{"symbol":"SAM","exchange":"N","type":"stock","description":"Boston Beer Co Inc","shares":92300},{"symbol":"PRO","exchange":"N","type":"stock","description":"Pros Holdings Inc","shares":2850000},{"symbol":"NC","exchange":"N","type":"stock","description":"Nacco Industries Inc","shares":570000},{"symbol":"WSBF","exchange":"Q","type":"stock","description":"Waterstone Financial Inc","shares":1247300},{"symbol":"ORBC","exchange":"Q","type":"stock","description":"ORBCOMM Inc","shares":6091500},{"symbol":"EGAN","exchange":"Q","type":"stock","description":"EGain Corp","shares":94100},{"symbol":"EIX","exchange":"N","type":"stock","description":"Edison International","shares":30181900},{"symbol":"CUZ","exchange":"N","type":"stock","description":"Cousins Properties Inc","shares":14413500},{"symbol":"ZEN","exchange":"N","type":"stock","description":"Zendesk Inc","shares":95500},{"symbol":"ECOM","exchange":"N","type":"stock","description":"ChannelAdvisor Corp","shares":982700},{"symbol":"FNSR","exchange":"Q","type":"stock","description":"Finisar Corp","shares":1907100},{"symbol":"FNF","exchange":"N","type":"stock","description":"Fidelity National Financial Inc","shares":13712900},{"symbol":"GSVC","exchange":"Q","type":"stock","description":"GSV Capital Corp","shares":275400},{"symbol":"LPI","exchange":"N","type":"stock","description":"Laredo Petroleum Inc","shares":1229800},{"symbol":"BURL","exchange":"N","type":"stock","description":"Burlington Stores Inc","shares":2141900},{"symbol":"NXTM","exchange":"Q","type":"stock","description":"NxStage Medical Inc","shares":2945600},{"symbol":"WPG","exchange":"N","type":"stock","description":"Washington Prime Group Inc","shares":3144700},{"symbol":"EQC","exchange":"N","type":"stock","description":"Equity Commonwealth","shares":3079500},{"symbol":"DIOD","exchange":"Q","type":"stock","description":"Diodes Inc","shares":6325600},{"symbol":"TRLA","exchange":"N","type":"stock","description":"Trulia Inc","shares":188500},{"symbol":"MHH","exchange":"A","type":"stock","description":"Mastech Holdings Inc","shares":128800},{"symbol":"IHS","exchange":"N","type":"stock","description":"IHS Inc","shares":7322700},{"symbol":"RCMT","exchange":"Q","type":"stock","description":"RCM Technologies Inc","shares":868400},{"symbol":"SFG","exchange":"N","type":"stock","description":"StanCorp Financial Group Inc","shares":3856700},{"symbol":"PLCM","exchange":"Q","type":"stock","description":"Polycom Inc","shares":17410100},{"symbol":"NWL","exchange":"N","type":"stock","description":"Newell Rubbermaid Inc","shares":20784900},{"symbol":"AXE","exchange":"N","type":"stock","description":"Anixter International Inc","shares":4139700},{"symbol":"CMC","exchange":"N","type":"stock","description":"Commercial Metals Co","shares":14174900},{"symbol":"FIX","exchange":"N","type":"stock","description":"Comfort Systems USA Inc","shares":4593000},{"symbol":"HNI","exchange":"N","type":"stock","description":"HNI Corp","shares":2464700},{"symbol":"ALB","exchange":"N","type":"stock","description":"Albemarle Corp","shares":1709100},{"symbol":"TNET","exchange":"N","type":"stock","description":"Trinet Group Inc","shares":2800600},{"symbol":"AAP","exchange":"N","type":"stock","description":"Advance Auto Parts Inc","shares":7381400},{"symbol":"PRLB","exchange":"N","type":"stock","description":"Proto Labs Inc","shares":296800},{"symbol":"BCEI","exchange":"N","type":"stock","description":"Bonanza Creek Energy Inc","shares":3281500},{"symbol":"BRKS","exchange":"Q","type":"stock","description":"Brooks Automation Inc","shares":8453400},{"symbol":"CXP","exchange":"N","type":"stock","description":"Columbia Property Trust, Inc.","shares":3726000},{"symbol":"ISLE","exchange":"Q","type":"stock","description":"Isle of Capri Casinos Inc","shares":2702400},{"symbol":"QNST","exchange":"Q","type":"stock","description":"QuinStreet Inc","shares":3440400},{"symbol":"CSFL","exchange":"Q","type":"stock","description":"Centerstate Banks Inc","shares":1173100},{"symbol":"DEST","exchange":"Q","type":"stock","description":"Destination Maternity Corp","shares":878800},{"symbol":"STAG","exchange":"N","type":"stock","description":"Stag Industrial Inc","shares":4172300},{"symbol":"ICUI","exchange":"Q","type":"stock","description":"ICU Medical Inc","shares":1496400},{"symbol":"ICAD","exchange":"Q","type":"stock","description":"icad Inc","shares":380000},{"symbol":"IGT","exchange":"N","type":"stock","description":"International Game Technology","shares":11424900},{"symbol":"SP","exchange":"Q","type":"stock","description":"SP Plus Corp","shares":1840400},{"symbol":"NATR","exchange":"Q","type":"stock","description":"Natures Sunshine Products Inc","shares":341000},{"symbol":"BEAV","exchange":"Q","type":"stock","description":"B\/E Aerospace Inc","shares":6748600},{"symbol":"FOXF","exchange":"Q","type":"stock","description":"Fox Factory Holding Corp","shares":2003100},{"symbol":"WCC","exchange":"N","type":"stock","description":"Wesco International Inc","shares":2743700},{"symbol":"PZN","exchange":"N","type":"stock","description":"Pzena Investment Management LLC","shares":1002900},{"symbol":"COST","exchange":"Q","type":"stock","description":"Costco Wholesale Corp","shares":31832100},{"symbol":"PSB","exchange":"N","type":"stock","description":"PS Business Parks Inc","shares":1537000},{"symbol":"BRX","exchange":"N","type":"stock","description":"Brixmor Property Group Inc","shares":8994000},{"symbol":"PRSC","exchange":"Q","type":"stock","description":"Providence Service Corp","shares":1649100},{"symbol":"DLTR","exchange":"Q","type":"stock","description":"Dollar Tree Stores Inc","shares":11343400},{"symbol":"JOE","exchange":"N","type":"stock","description":"St Joe Corp","shares":1067500},{"symbol":"AVX","exchange":"N","type":"stock","description":"AVX Corp","shares":3683500},{"symbol":"CALA","exchange":"Q","type":"stock","description":"Calithera Biosciences Inc","shares":348600},{"symbol":"STML","exchange":"Q","type":"stock","description":"Stemline Therapeutics Inc","shares":50600},{"symbol":"KN","exchange":"N","type":"stock","description":"Knowles Corporation","shares":937600},{"symbol":"OCFC","exchange":"Q","type":"stock","description":"Oceanfirst Financial Corp","shares":1035000},{"symbol":"WDFC","exchange":"Q","type":"stock","description":"WD-40 Co","shares":989900},{"symbol":"TW","exchange":"N","type":"stock","description":"Towers Watson & Co","shares":4000300},{"symbol":"ATNM","exchange":"A","type":"stock","description":"Actinium Pharmaceuticals Inc","shares":44700},{"symbol":"CIO","exchange":"N","type":"stock","description":"City Office REIT Inc","shares":206800},{"symbol":"VRSN","exchange":"Q","type":"stock","description":"VeriSign Inc","shares":2225800},{"symbol":"CLX","exchange":"N","type":"stock","description":"Clorox Co","shares":8370300},{"symbol":"HDS","exchange":"Q","type":"stock","description":"HD Supply Holdings Inc","shares":7141500},{"symbol":"MELR","exchange":"Q","type":"stock","description":"Melrose Bancorp Inc","shares":52900},{"symbol":"CAC","exchange":"Q","type":"stock","description":"Camden National Corp","shares":343900},{"symbol":"TYPE","exchange":"Q","type":"stock","description":"Monotype Imaging Holdings Inc","shares":3643800},{"symbol":"CATO","exchange":"N","type":"stock","description":"Cato Corp","shares":2306800},{"symbol":"BCBP","exchange":"Q","type":"stock","description":"BCB Bancorp Inc","shares":199500},{"symbol":"NTAP","exchange":"Q","type":"stock","description":"NetApp Inc","shares":30631000},{"symbol":"NTGR","exchange":"Q","type":"stock","description":"Netgear Inc","shares":6101700},{"symbol":"OXM","exchange":"N","type":"stock","description":"Oxford Industries Inc","shares":1920100},{"symbol":"NAII","exchange":"Q","type":"stock","description":"Natural Alternatives International","shares":297700},{"symbol":"PVA","exchange":"N","type":"stock","description":"Penn Virginia Corp","shares":3680800},{"symbol":"OHAI","exchange":"Q","type":"stock","description":"OHA Investment Corp","shares":114200},{"symbol":"FOXA","exchange":"Q","type":"stock","description":"Twenty-First Century Fox Inc","shares":116209800},{"symbol":"SLGN","exchange":"Q","type":"stock","description":"Silgan Holdings Inc","shares":3062600},{"symbol":"BWLD","exchange":"Q","type":"stock","description":"Buffalo Wild Wings Inc","shares":972300},{"symbol":"MTRN","exchange":"N","type":"stock","description":"Materion Corp","shares":2127600},{"symbol":"OGE","exchange":"N","type":"stock","description":"OGE Energy Corp","shares":13283900},{"symbol":"AMSWA","exchange":"Q","type":"stock","description":"American Software Inc","shares":3285200},{"symbol":"AGNC","exchange":"Q","type":"stock","description":"American Capital Agency Corp","shares":13065500},{"symbol":"AGX","exchange":"N","type":"stock","description":"Argan Inc","shares":1386700},{"symbol":"CATM","exchange":"Q","type":"stock","description":"Cardtronics Inc","shares":4305800},{"symbol":"ANF","exchange":"N","type":"stock","description":"Abercrombie & Fitch Co","shares":1149700},{"symbol":"LNKD","exchange":"N","type":"stock","description":"LinkedIn Corp","shares":11653400},{"symbol":"PSMI","exchange":"Q","type":"stock","description":"Peregrine Semiconductor Corp","shares":646700},{"symbol":"QDEL","exchange":"Q","type":"stock","description":"Quidel Corp","shares":1912100},{"symbol":"GUID","exchange":"Q","type":"stock","description":"Guidance Software Inc","shares":466500},{"symbol":"MRLN","exchange":"Q","type":"stock","description":"Marlin Business Services Corp","shares":1247900},{"symbol":"WWD","exchange":"Q","type":"stock","description":"Woodward Inc","shares":4743400},{"symbol":"SCCO","exchange":"N","type":"stock","description":"Southern Copper Corp","shares":3868900},{"symbol":"POWL","exchange":"Q","type":"stock","description":"Powell Industries Inc","shares":738700},{"symbol":"RTI","exchange":"N","type":"stock","description":"RTI International Metals Inc","shares":5130800},{"symbol":"AZPN","exchange":"Q","type":"stock","description":"Aspen Technology Inc","shares":9366200},{"symbol":"MASI","exchange":"Q","type":"stock","description":"Masimo Corp","shares":3285500},{"symbol":"CDE","exchange":"N","type":"stock","description":"Coeur Mining Inc","shares":6798900},{"symbol":"HCI","exchange":"N","type":"stock","description":"HCI Group Inc","shares":638600},{"symbol":"GLYC","exchange":"Q","type":"stock","description":"GlycoMimetics Inc","shares":313300},{"symbol":"EXPE","exchange":"Q","type":"stock","description":"Expedia Inc","shares":8725800},{"symbol":"ZAYO","exchange":"N","type":"stock","description":"Zayo Group Holdings Inc","shares":676500},{"symbol":"MGI","exchange":"Q","type":"stock","description":"MoneyGram International Inc","shares":1786000},{"symbol":"NEM","exchange":"N","type":"stock","description":"Newmont Mining Corp","shares":45130700},{"symbol":"UHT","exchange":"N","type":"stock","description":"Universal Health Realty Income Trust","shares":633000},{"symbol":"BOKF","exchange":"Q","type":"stock","description":"BOK Financial Corp","shares":1121900},{"symbol":"CVT","exchange":"N","type":"stock","description":"Cvent Inc","shares":150000},{"symbol":"AEIS","exchange":"Q","type":"stock","description":"Advanced Energy Industries Inc","shares":5809000},{"symbol":"HUN","exchange":"N","type":"stock","description":"Huntsman Corp","shares":14743500},{"symbol":"LANC","exchange":"Q","type":"stock","description":"Lancaster Colony Corp","shares":1618300},{"symbol":"REG","exchange":"N","type":"stock","description":"Regency Centers Corp","shares":6786700},{"symbol":"RWT","exchange":"N","type":"stock","description":"Redwood Trust Inc","shares":1430400},{"symbol":"SCHN","exchange":"Q","type":"stock","description":"Schnitzer Steel Industries Inc","shares":2407100},{"symbol":"IRF","exchange":"N","type":"stock","description":"International Rectifier","shares":6089000},{"symbol":"TRW","exchange":"N","type":"stock","description":"TRW Automotive Holdings Corp","shares":5563200},{"symbol":"GLDD","exchange":"Q","type":"stock","description":"Great Lakes Dredge & Dock Corp","shares":10017200},{"symbol":"SSE","exchange":"N","type":"stock","description":"Seventy Seven Energy Inc","shares":1426200},{"symbol":"PBI","exchange":"N","type":"stock","description":"Pitney Bowes Inc","shares":14351000},{"symbol":"ESRT","exchange":"N","type":"stock","description":"Empire State Realty Trust Inc","shares":3628800},{"symbol":"ASYS","exchange":"Q","type":"stock","description":"Amtech Systems Inc","shares":224000},{"symbol":"AAOI","exchange":"Q","type":"stock","description":"Applied Optoelectronics Inc","shares":182200},{"symbol":"MIG","exchange":"N","type":"stock","description":"Meadowbrook Insurance Group Inc","shares":3467400},{"symbol":"EIG","exchange":"N","type":"stock","description":"Employers Holdings Inc","shares":3284600},{"symbol":"DTLK","exchange":"Q","type":"stock","description":"Datalink Corp","shares":2175800},{"symbol":"CLR","exchange":"N","type":"stock","description":"Continental Resources Inc","shares":2344000},{"symbol":"EML","exchange":"Q","type":"stock","description":"Eastern Co","shares":806500},{"symbol":"CYNO","exchange":"Q","type":"stock","description":"Cynosure Inc","shares":3525700},{"symbol":"EVEP","exchange":"Q","type":"stock","description":"EV Energy Partners LP","shares":134300},{"symbol":"QSII","exchange":"Q","type":"stock","description":"Quality Systems Inc","shares":3748100},{"symbol":"SBBX","exchange":"Q","type":"stock","description":"Sussex Bancorp","shares":64400},{"symbol":"KMG","exchange":"N","type":"stock","description":"KMG Chemicals Inc","shares":510700},{"symbol":"MTDR","exchange":"N","type":"stock","description":"Matador Resources Co","shares":3448100},{"symbol":"AHC","exchange":"N","type":"stock","description":"A H Belo Corp","shares":1967600},{"symbol":"EGHT","exchange":"Q","type":"stock","description":"8x8 Inc","shares":6017100},{"symbol":"RSTI","exchange":"Q","type":"stock","description":"Rofin-Sinar Technologies Inc","shares":3474600},{"symbol":"DLX","exchange":"N","type":"stock","description":"Deluxe Corp","shares":3369800},{"symbol":"GCAP","exchange":"N","type":"stock","description":"GAIN Capital Holdings Inc","shares":1133200},{"symbol":"HMN","exchange":"N","type":"stock","description":"Horace Mann Educators","shares":7074800},{"symbol":"CLUB","exchange":"Q","type":"stock","description":"Town Sports International Holdings Inc","shares":510300},{"symbol":"SAIA","exchange":"Q","type":"stock","description":"Saia Inc","shares":3386800},{"symbol":"LGIH","exchange":"Q","type":"stock","description":"LGI Homes Inc","shares":63900},{"symbol":"PRCP","exchange":"Q","type":"stock","description":"Perceptron Inc","shares":882200},{"symbol":"WFC","exchange":"N","type":"stock","description":"Wells Fargo & Co","shares":345819700},{"symbol":"URI","exchange":"N","type":"stock","description":"United Rentals Inc","shares":9464900},{"symbol":"FDS","exchange":"N","type":"stock","description":"FactSet Research Systems, Inc.","shares":1265100},{"symbol":"EXR","exchange":"N","type":"stock","description":"Extra Space Storage Inc","shares":7341100},{"symbol":"STT","exchange":"N","type":"stock","description":"State Street Corp","shares":49365200},{"symbol":"PMCS","exchange":"Q","type":"stock","description":"PMC-Sierra Inc","shares":12347400},{"symbol":"HCA","exchange":"N","type":"stock","description":"HCA Holdings Inc","shares":12463600},{"symbol":"DPM","exchange":"N","type":"stock","description":"DCP Midstream Partners LP","shares":145500},{"symbol":"EXLP","exchange":"Q","type":"stock","description":"Exterran Partners LP","shares":417400},{"symbol":"ICLD","exchange":"Q","type":"stock","description":"InterCloud Systems Inc","shares":58500},{"symbol":"EEFT","exchange":"Q","type":"stock","description":"Euronet Worldwide Inc","shares":3429100},{"symbol":"WIBC","exchange":"Q","type":"stock","description":"Wilshire Bancorp Inc","shares":8105100},{"symbol":"WLH","exchange":"N","type":"stock","description":"William Lyon Homes","shares":2366400},{"symbol":"MYE","exchange":"N","type":"stock","description":"Myers Industries Inc","shares":3766200},{"symbol":"OII","exchange":"N","type":"stock","description":"Oceaneering International","shares":7385200},{"symbol":"FRGI","exchange":"Q","type":"stock","description":"Fiesta Restaurant Group Inc","shares":2866300},{"symbol":"ETFC","exchange":"Q","type":"stock","description":"E*Trade Financial Corp","shares":29876500},{"symbol":"BOOM","exchange":"Q","type":"stock","description":"Dynamic Materials Corp","shares":1384400},{"symbol":"ABM","exchange":"N","type":"stock","description":"ABM Industries Inc","shares":5985100},{"symbol":"CLRO","exchange":"Q","type":"stock","description":"ClearOne Inc","shares":266000},{"symbol":"WWAV","exchange":"N","type":"stock","description":"The Whitewave Foods Company","shares":13987600},{"symbol":"LVS","exchange":"N","type":"stock","description":"Las Vegas Sands Corp","shares":23446900},{"symbol":"FLR","exchange":"N","type":"stock","description":"Fluor Corp","shares":12198200},{"symbol":"TREC","exchange":"N","type":"stock","description":"Trecora Resources","shares":1075800},{"symbol":"TWIN","exchange":"Q","type":"stock","description":"Twin Disc Inc","shares":667000},{"symbol":"TUP","exchange":"N","type":"stock","description":"Tupperware Brands Corp","shares":2080300},{"symbol":"SNBC","exchange":"Q","type":"stock","description":"Sun Bancorp Inc","shares":356100},{"symbol":"SGBK","exchange":"Q","type":"stock","description":"Stonegate Bank","shares":88500},{"symbol":"AVHI","exchange":"Q","type":"stock","description":"A V Homes Inc","shares":1042000},{"symbol":"JAKK","exchange":"Q","type":"stock","description":"Jakks Pacific Inc","shares":168400},{"symbol":"ORI","exchange":"N","type":"stock","description":"Old Republic International Corporation","shares":16484900},{"symbol":"BAGR","exchange":"Q","type":"stock","description":"Diversified Restaurant Holdings Inc","shares":725100},{"symbol":"SLTC","exchange":"Q","type":"stock","description":"Selectica Inc","shares":131100},{"symbol":"PCP","exchange":"N","type":"stock","description":"Precision Castparts Corp","shares":13217800},{"symbol":"SRDX","exchange":"Q","type":"stock","description":"SurModics Inc","shares":1047400},{"symbol":"ICON","exchange":"Q","type":"stock","description":"Iconix Brand Group Inc","shares":3325100},{"symbol":"LLL","exchange":"N","type":"stock","description":"L-3 Communications Holdings Inc","shares":7715300},{"symbol":"SPN","exchange":"N","type":"stock","description":"Superior Energy Services Inc","shares":16758600},{"symbol":"TOL","exchange":"N","type":"stock","description":"Toll Brothers Inc","shares":11223700},{"symbol":"SRLP","exchange":"N","type":"stock","description":"Sprague Resources LP","shares":62100},{"symbol":"ALTR","exchange":"Q","type":"stock","description":"Altera Corp","shares":26916500},{"symbol":"PERF","exchange":"Q","type":"stock","description":"Perfumania Holdings Inc","shares":245100},{"symbol":"FOSL","exchange":"Q","type":"stock","description":"Fossil Group Inc","shares":3102600},{"symbol":"HURN","exchange":"Q","type":"stock","description":"Huron Consulting Group Inc","shares":2747900},{"symbol":"KELYA","exchange":"Q","type":"stock","description":"Kelly Services Inc","shares":942900},{"symbol":"RARE","exchange":"Q","type":"stock","description":"Ultragenyx Pharmaceutical Inc","shares":596700},{"symbol":"NCFT","exchange":"N","type":"stock","description":"Norcraft Companies Inc","shares":438900},{"symbol":"SAVE","exchange":"Q","type":"stock","description":"Spirit Airlines Inc","shares":9871700},{"symbol":"ORIT","exchange":"Q","type":"stock","description":"Oritani Financial Corp","shares":3880000},{"symbol":"CTSH","exchange":"Q","type":"stock","description":"Cognizant Technology Solutions Corp","shares":50100800},{"symbol":"TTWO","exchange":"Q","type":"stock","description":"Take-Two Interactive Software Inc","shares":5964700},{"symbol":"MTRX","exchange":"Q","type":"stock","description":"Matrix Service Co","shares":4531800},{"symbol":"TPLM","exchange":"A","type":"stock","description":"Triangle Petroleum Corp","shares":228400},{"symbol":"JNS","exchange":"N","type":"stock","description":"Janus Capital Group Inc","shares":4737500},{"symbol":"AGYS","exchange":"Q","type":"stock","description":"Agilysys Inc","shares":2086700},{"symbol":"PFSW","exchange":"Q","type":"stock","description":"PFSweb Inc","shares":153800},{"symbol":"NWE","exchange":"N","type":"stock","description":"NorthWestern Corp","shares":3565200},{"symbol":"WST","exchange":"N","type":"stock","description":"West Pharmaceutical Services Inc","shares":5254400},{"symbol":"LCI","exchange":"N","type":"stock","description":"Lannett Co Inc","shares":1232500},{"symbol":"VLY","exchange":"N","type":"stock","description":"Valley National Bancorp","shares":897600},{"symbol":"HTBK","exchange":"Q","type":"stock","description":"Heritage Commerce Corp","shares":1076300},{"symbol":"CGI","exchange":"N","type":"stock","description":"Celadon Group Inc","shares":3187800},{"symbol":"SGI","exchange":"Q","type":"stock","description":"Silicon Graphics International Corp","shares":1981300},{"symbol":"ALGT","exchange":"Q","type":"stock","description":"Allegiant Travel Co LLC","shares":1002500},{"symbol":"ATRI","exchange":"Q","type":"stock","description":"Atrion Corp","shares":77900},{"symbol":"KRC","exchange":"N","type":"stock","description":"Kilroy Realty Corp","shares":7138100},{"symbol":"EGY","exchange":"N","type":"stock","description":"VAALCO Energy Inc","shares":8448300},{"symbol":"MPX","exchange":"N","type":"stock","description":"Marine Products Corp","shares":1000400},{"symbol":"GILD","exchange":"Q","type":"stock","description":"Gilead Sciences Inc","shares":115594700},{"symbol":"KYTH","exchange":"Q","type":"stock","description":"KYTHERA Biopharmaceuticals Inc","shares":385700},{"symbol":"QTS","exchange":"N","type":"stock","description":"QTS Realty Trust Inc","shares":240500},{"symbol":"ARTNA","exchange":"Q","type":"stock","description":"Artesian Resource Corp","shares":227600},{"symbol":"GB","exchange":"N","type":"stock","description":"Greatbatch Inc","shares":4316000},{"symbol":"CRWS","exchange":"Q","type":"stock","description":"Crown Crafts Inc","shares":273200},{"symbol":"CTBI","exchange":"Q","type":"stock","description":"Community Trust Bancorp Inc","shares":727600},{"symbol":"UDR","exchange":"N","type":"stock","description":"UDR Inc","shares":20826400},{"symbol":"UIS","exchange":"N","type":"stock","description":"Unisys Corp","shares":2678100},{"symbol":"MEI","exchange":"N","type":"stock","description":"Methode Electronics Inc","shares":4944800},{"symbol":"ENVA","exchange":"N","type":"stock","description":"Enova International Inc","shares":2858600},{"symbol":"OFLX","exchange":"Q","type":"stock","description":"Omega Flex Inc","shares":186300},{"symbol":"VOYA","exchange":"N","type":"stock","description":"Voya Financial Inc","shares":17084800},{"symbol":"EXA","exchange":"Q","type":"stock","description":"Exa Corp","shares":432200},{"symbol":"WFM","exchange":"Q","type":"stock","description":"Whole Foods Market Inc","shares":18620100},{"symbol":"UTMD","exchange":"Q","type":"stock","description":"Utah Medical Products Inc","shares":214600},{"symbol":"TROW","exchange":"Q","type":"stock","description":"T. Rowe Price Group Inc","shares":13751400},{"symbol":"BCR","exchange":"N","type":"stock","description":"CR Bard Inc","shares":8159100},{"symbol":"CHSP","exchange":"N","type":"stock","description":"Chesapeake Lodging Trust","shares":5174500},{"symbol":"SSS","exchange":"N","type":"stock","description":"Sovran Self Storage Inc","shares":1994600},{"symbol":"ROST","exchange":"Q","type":"stock","description":"Ross Stores Inc","shares":19041800},{"symbol":"XLNX","exchange":"Q","type":"stock","description":"Xilinx Inc","shares":21766900},{"symbol":"FRM","exchange":"N","type":"stock","description":"Furmanite Corp","shares":3541500},{"symbol":"ATU","exchange":"N","type":"stock","description":"Actuant Corp","shares":7935100},{"symbol":"SNR","exchange":"N","type":"stock","description":"New Senior Investment Group Inc","shares":943400},{"symbol":"EHTH","exchange":"Q","type":"stock","description":"eHealth Inc","shares":1003400},{"symbol":"MSO","exchange":"N","type":"stock","description":"Martha Stewart Living Omnimedia Inc","shares":904700},{"symbol":"GPN","exchange":"N","type":"stock","description":"Global Payments Inc","shares":7229400},{"symbol":"WHR","exchange":"N","type":"stock","description":"Whirlpool Corp","shares":7910300},{"symbol":"CLDX","exchange":"Q","type":"stock","description":"Celldex Therapeutics Inc","shares":896300},{"symbol":"SNAK","exchange":"Q","type":"stock","description":"Inventure Foods Inc","shares":1439500},{"symbol":"CTCM","exchange":"Q","type":"stock","description":"CTC Media Inc","shares":1050200},{"symbol":"HGT","exchange":"N","type":"stock","description":"Hugoton Royalty Trust","shares":75700},{"symbol":"ATK","exchange":"N","type":"stock","description":"Alliant Techsystems Inc","shares":2165000},{"symbol":"OVAS","exchange":"Q","type":"stock","description":"OvaScience Inc","shares":507900},{"symbol":"GRC","exchange":"A","type":"stock","description":"Gorman-Rupp Co","shares":855800},{"symbol":"LPSN","exchange":"Q","type":"stock","description":"LivePerson Inc","shares":2567000},{"symbol":"IACI","exchange":"Q","type":"stock","description":"IAC\/InterActiveCorp","shares":4323600},{"symbol":"SC","exchange":"N","type":"stock","description":"Santander Consumer USA Holdings Inc","shares":6242600},{"symbol":"SOHO","exchange":"Q","type":"stock","description":"Sotherly Hotels Inc","shares":107100},{"symbol":"SPAR","exchange":"Q","type":"stock","description":"Spartan Motors","shares":3132100},{"symbol":"GSIT","exchange":"Q","type":"stock","description":"GSI Technology Inc","shares":165800},{"symbol":"KLIC","exchange":"Q","type":"stock","description":"Kulicke & Soffa Industries Inc","shares":8869300},{"symbol":"FPO","exchange":"N","type":"stock","description":"First Potomac Realty Trust","shares":7966600},{"symbol":"CMN","exchange":"N","type":"stock","description":"Cantel Medical Corp","shares":5199700},{"symbol":"CSL","exchange":"N","type":"stock","description":"Carlisle Companies Inc","shares":4942800},{"symbol":"BOCH","exchange":"Q","type":"stock","description":"Bank of Commerce Holdings Inc","shares":198300},{"symbol":"SCS","exchange":"N","type":"stock","description":"Steelcase Inc","shares":12474000},{"symbol":"FSC","exchange":"Q","type":"stock","description":"Fifth Street Finance Corporation","shares":2024900},{"symbol":"MGEE","exchange":"Q","type":"stock","description":"MGE Energy Inc","shares":1312600},{"symbol":"SIGI","exchange":"Q","type":"stock","description":"Selective Insurance Group","shares":6880800},{"symbol":"WTI","exchange":"N","type":"stock","description":"W&T Offshore Inc","shares":909600},{"symbol":"CCK","exchange":"N","type":"stock","description":"Crown Holdings Inc","shares":14394500},{"symbol":"AFAM","exchange":"Q","type":"stock","description":"Almost Family Inc","shares":641300},{"symbol":"MATR","exchange":"Q","type":"stock","description":"Mattersight Corp","shares":143600},{"symbol":"KFY","exchange":"N","type":"stock","description":"Korn\/Ferry International","shares":10870000},{"symbol":"DKS","exchange":"N","type":"stock","description":"Dick's Sporting Goods Inc","shares":7616000},{"symbol":"AVD","exchange":"N","type":"stock","description":"American Vanguard Corp","shares":608700},{"symbol":"YUM","exchange":"N","type":"stock","description":"Yum Brands Inc","shares":35794800},{"symbol":"SGC","exchange":"Q","type":"stock","description":"Superior Uniform Group","shares":460100},{"symbol":"PFMT","exchange":"Q","type":"stock","description":"Performant Financial Corp","shares":1992100},{"symbol":"THFF","exchange":"Q","type":"stock","description":"First Financial Corporation","shares":813000},{"symbol":"THG","exchange":"N","type":"stock","description":"Hanover Insurance Group Inc","shares":5931200},{"symbol":"DHI","exchange":"N","type":"stock","description":"DR Horton Inc","shares":23376300},{"symbol":"SLRC","exchange":"Q","type":"stock","description":"Solar Capital Ltd.","shares":1447300},{"symbol":"RSE","exchange":"N","type":"stock","description":"Rouse Properties Inc","shares":155400},{"symbol":"KAR","exchange":"N","type":"stock","description":"KAR Auction Services Inc","shares":11488400},{"symbol":"CBNJ","exchange":"Q","type":"stock","description":"Cape Bancorp Inc","shares":288000},{"symbol":"BRCD","exchange":"Q","type":"stock","description":"Brocade Communications Systems Inc","shares":44145000},{"symbol":"ASMB","exchange":"Q","type":"stock","description":"Assembly Biosciences Inc","shares":326700},{"symbol":"IRM","exchange":"N","type":"stock","description":"Iron Mountain Inc","shares":5346900},{"symbol":"GS","exchange":"N","type":"stock","description":"Goldman Sachs Group Inc","shares":28109400},{"symbol":"MMI","exchange":"N","type":"stock","description":"Marcus & Millichap, Inc.","shares":915900},{"symbol":"AE","exchange":"A","type":"stock","description":"Adams Resources & Energy Inc","shares":381900},{"symbol":"STC","exchange":"N","type":"stock","description":"Stewart Information Services Inc","shares":3669900},{"symbol":"NWN","exchange":"N","type":"stock","description":"Northwest Natural Gas","shares":568400},{"symbol":"NTRS","exchange":"Q","type":"stock","description":"Northern Trust Corp","shares":14757200},{"symbol":"FUL","exchange":"N","type":"stock","description":"H.B. Fuller Company","shares":4641200},{"symbol":"WNC","exchange":"N","type":"stock","description":"Wabash National Corp","shares":5706800},{"symbol":"PLPC","exchange":"Q","type":"stock","description":"Preformed Line Products Co","shares":280600},{"symbol":"DAIO","exchange":"Q","type":"stock","description":"Data I\/O Corp","shares":231200},{"symbol":"WAB","exchange":"N","type":"stock","description":"Westinghouse Air Brake Technologies Corp","shares":8620900},{"symbol":"COTY","exchange":"N","type":"stock","description":"Coty Inc","shares":2593900},{"symbol":"GEVA","exchange":"Q","type":"stock","description":"Synageva BioPharma Corp","shares":71700},{"symbol":"CBB","exchange":"N","type":"stock","description":"Cincinnati Bell Inc","shares":13193900},{"symbol":"SHLX","exchange":"N","type":"stock","description":"Shell Midstream Partners LP","shares":2110100},{"symbol":"CMLS","exchange":"Q","type":"stock","description":"Cumulus Media Inc","shares":9028600},{"symbol":"DNOW","exchange":"N","type":"stock","description":"Now Inc","shares":268300},{"symbol":"TILE","exchange":"Q","type":"stock","description":"Interface Inc","shares":8161600},{"symbol":"VSEC","exchange":"Q","type":"stock","description":"VSE Corp","shares":367000},{"symbol":"SSP","exchange":"N","type":"stock","description":"E W Scripps Co","shares":2687900},{"symbol":"PCAR","exchange":"Q","type":"stock","description":"PACCAR Inc","shares":15527800},{"symbol":"NLS","exchange":"N","type":"stock","description":"Nautilus Inc","shares":4084400},{"symbol":"PWR","exchange":"N","type":"stock","description":"Quanta Services Inc","shares":22559500},{"symbol":"JOY","exchange":"N","type":"stock","description":"Joy Global Inc","shares":4136100},{"symbol":"PEP","exchange":"N","type":"stock","description":"PepsiCo Inc","shares":106839700},{"symbol":"MDC","exchange":"N","type":"stock","description":"M D C Holdings Inc","shares":1166600},{"symbol":"CSOD","exchange":"Q","type":"stock","description":"Cornerstone OnDemand Inc","shares":959000},{"symbol":"PH","exchange":"N","type":"stock","description":"Parker Hannifin Corp","shares":10888900},{"symbol":"AKR","exchange":"N","type":"stock","description":"Acadia Realty Trust","shares":4731300},{"symbol":"AAWW","exchange":"Q","type":"stock","description":"Atlas Air Worldwide Holdings Inc","shares":3175800},{"symbol":"TSCO","exchange":"Q","type":"stock","description":"Tractor Supply Co","shares":11012700},{"symbol":"ARI","exchange":"N","type":"stock","description":"Apollo Commercial Real Estate Finance Inc","shares":1681500},{"symbol":"SKY","exchange":"A","type":"stock","description":"Skyline Corp","shares":108100},{"symbol":"ARIA","exchange":"Q","type":"stock","description":"ARIAD Pharmaceuticals Inc","shares":242800},{"symbol":"ESE","exchange":"N","type":"stock","description":"ESCO Technologies Inc","shares":2835500},{"symbol":"NWHM","exchange":"N","type":"stock","description":"The New Home Company Inc","shares":483200},{"symbol":"MWW","exchange":"N","type":"stock","description":"Monster Worldwide Inc","shares":8561600},{"symbol":"TSC","exchange":"Q","type":"stock","description":"TriState Capital Holdings Inc","shares":1614800},{"symbol":"JBHT","exchange":"Q","type":"stock","description":"JB Hunt Transport Services Inc","shares":4184100},{"symbol":"HLT","exchange":"N","type":"stock","description":"Hilton Worldwide Holdings Inc","shares":31706400},{"symbol":"RPM","exchange":"N","type":"stock","description":"RPM International Inc","shares":8783400},{"symbol":"PETX","exchange":"Q","type":"stock","description":"Aratana Therapeutics Inc","shares":3100600},{"symbol":"HST","exchange":"N","type":"stock","description":"Host Hotels & Resorts Inc","shares":68044700},{"symbol":"HBNC","exchange":"Q","type":"stock","description":"Horizon Bancorp Industries","shares":435600},{"symbol":"EARN","exchange":"N","type":"stock","description":"Ellington Residential Mortgage REIT","shares":88000},{"symbol":"MMP","exchange":"N","type":"stock","description":"Magellan Midstream Partners, L.P.","shares":1832700},{"symbol":"AXLL","exchange":"N","type":"stock","description":"Axiall Corp","shares":6665900},{"symbol":"BGG","exchange":"N","type":"stock","description":"Briggs & Stratton Corporation","shares":2272700},{"symbol":"TTPH","exchange":"Q","type":"stock","description":"Tetraphase Pharmaceuticals Inc","shares":1225700},{"symbol":"FEIM","exchange":"Q","type":"stock","description":"Frequency Electronics","shares":598700},{"symbol":"GLPI","exchange":"Q","type":"stock","description":"Gaming and Leisure Properties, Inc.","shares":1031900},{"symbol":"KNX","exchange":"N","type":"stock","description":"Knight Transportation, Inc.","shares":4618300},{"symbol":"MGPI","exchange":"Q","type":"stock","description":"MGP Ingredients Inc","shares":981600},{"symbol":"CBZ","exchange":"N","type":"stock","description":"CBIZ Inc","shares":5458400},{"symbol":"LRCX","exchange":"Q","type":"stock","description":"Lam Research Corp","shares":15863200},{"symbol":"LG","exchange":"N","type":"stock","description":"Laclede Group Inc","shares":2189100},{"symbol":"FBC","exchange":"N","type":"stock","description":"Flagstar Bancorp, Inc.","shares":3153200},{"symbol":"FE","exchange":"N","type":"stock","description":"FirstEnergy Corp","shares":28710700},{"symbol":"BKH","exchange":"N","type":"stock","description":"Black Hills Corp","shares":3330000},{"symbol":"LEN","exchange":"N","type":"stock","description":"Lennar Corp","shares":4468200},{"symbol":"LADR","exchange":"N","type":"stock","description":"Ladder Capital Corp","shares":1258300},{"symbol":"MDSO","exchange":"Q","type":"stock","description":"Medidata Solutions Inc","shares":4297600},{"symbol":"CHE","exchange":"N","type":"stock","description":"Chemed Corp","shares":311000},{"symbol":"AZO","exchange":"N","type":"stock","description":"AutoZone Inc","shares":2739000},{"symbol":"TNGO","exchange":"Q","type":"stock","description":"Tangoe Inc","shares":739900},{"symbol":"HPY","exchange":"N","type":"stock","description":"Heartland Payment Systems Inc","shares":2716100},{"symbol":"PARR","exchange":"A","type":"stock","description":"Par Petroleum Corp","shares":342600},{"symbol":"PSEM","exchange":"Q","type":"stock","description":"Pericom Semiconductor Corp","shares":3804800},{"symbol":"NSC","exchange":"N","type":"stock","description":"Norfolk Southern Corp","shares":21882900},{"symbol":"LKFN","exchange":"Q","type":"stock","description":"Lakeland Financial Corp","shares":1162800},{"symbol":"PGC","exchange":"Q","type":"stock","description":"Peapack Gladstone Financial Corp","shares":392700},{"symbol":"F","exchange":"N","type":"stock","description":"Ford Motor Co","shares":163789300},{"symbol":"NEWS","exchange":"Q","type":"stock","description":"NewStar Financial Inc","shares":1719400},{"symbol":"BHBK","exchange":"Q","type":"stock","description":"Blue Hills Bancorp Inc","shares":798000},{"symbol":"IBTX","exchange":"Q","type":"stock","description":"Independent Bank Group Inc","shares":228300},{"symbol":"CTRE","exchange":"Q","type":"stock","description":"CareTrust REIT Inc","shares":1406300},{"symbol":"SIEN","exchange":"Q","type":"stock","description":"Sientra Inc","shares":421100},{"symbol":"ELY","exchange":"N","type":"stock","description":"Callaway Golf Co","shares":6022000},{"symbol":"CCUR","exchange":"Q","type":"stock","description":"Concurrent Computer Corp","shares":640100},{"symbol":"CRK","exchange":"N","type":"stock","description":"Comstock Resources Inc","shares":717500},{"symbol":"PII","exchange":"N","type":"stock","description":"Polaris Industries Inc","shares":2056700},{"symbol":"GTIM","exchange":"Q","type":"stock","description":"Good Times Restaurants Inc","shares":63400},{"symbol":"MSFT","exchange":"Q","type":"stock","description":"Microsoft Corp","shares":563574400},{"symbol":"PULB","exchange":"Q","type":"stock","description":"Pulaski Financial Corp","shares":598200},{"symbol":"HOS","exchange":"N","type":"stock","description":"Hornbeck Offshore Services Inc","shares":2909100},{"symbol":"CFX","exchange":"N","type":"stock","description":"Colfax Corp","shares":7902600},{"symbol":"BPI","exchange":"N","type":"stock","description":"Bridgepoint Education Inc","shares":1378400},{"symbol":"GNW","exchange":"N","type":"stock","description":"Genworth Financial Inc","shares":42233800},{"symbol":"ASPN","exchange":"N","type":"stock","description":"Aspen Aerogels Inc","shares":162400},{"symbol":"AMP","exchange":"N","type":"stock","description":"Ameriprise Financial Inc","shares":24216100},{"symbol":"CUB","exchange":"N","type":"stock","description":"Cubic Corp","shares":2985100},{"symbol":"ASTE","exchange":"Q","type":"stock","description":"Astec Industries Inc","shares":1586000},{"symbol":"RGS","exchange":"N","type":"stock","description":"Regis Corp","shares":7291300},{"symbol":"RGC","exchange":"N","type":"stock","description":"Regal Entertainment Group","shares":399800},{"symbol":"ZEP","exchange":"N","type":"stock","description":"Zep Inc","shares":1811900},{"symbol":"PERY","exchange":"Q","type":"stock","description":"Perry Ellis International Inc","shares":1382600},{"symbol":"HAR","exchange":"N","type":"stock","description":"Harman International Industries Inc","shares":6715100},{"symbol":"DHR","exchange":"N","type":"stock","description":"Danaher Corp","shares":51981700},{"symbol":"UPS","exchange":"N","type":"stock","description":"United Parcel Service Inc (UPS)","shares":41793900},{"symbol":"TA","exchange":"N","type":"stock","description":"TravelCenters of America LLC","shares":1966300},{"symbol":"BMR","exchange":"N","type":"stock","description":"BioMed Realty Trust Inc","shares":17676200},{"symbol":"VPFG","exchange":"Q","type":"stock","description":"ViewPoint Financial Group Inc","shares":3733900},{"symbol":"CVX","exchange":"N","type":"stock","description":"Chevron Corp","shares":118614700},{"symbol":"AWAY","exchange":"Q","type":"stock","description":"HomeAway Inc","shares":7810500},{"symbol":"FXCM","exchange":"N","type":"stock","description":"FXCM Inc","shares":1764400},{"symbol":"ERIE","exchange":"Q","type":"stock","description":"Erie Indemnity Co","shares":478600},{"symbol":"QLGC","exchange":"Q","type":"stock","description":"QLogic Corp","shares":12469600},{"symbol":"GWRE","exchange":"N","type":"stock","description":"Guidewire Software Inc","shares":5239300},{"symbol":"SNI","exchange":"N","type":"stock","description":"Scripps Networks Interactive Inc","shares":3446800},{"symbol":"PEGI","exchange":"Q","type":"stock","description":"Pattern Energy Group Inc","shares":1388500},{"symbol":"FHCO","exchange":"Q","type":"stock","description":"Female Health Co","shares":307400},{"symbol":"HFWA","exchange":"Q","type":"stock","description":"Heritage Financial Corp","shares":2013300},{"symbol":"DXCM","exchange":"Q","type":"stock","description":"DexCom Inc","shares":7365700},{"symbol":"MBWM","exchange":"Q","type":"stock","description":"Mercantile Bank Corp","shares":807000},{"symbol":"DPS","exchange":"N","type":"stock","description":"Dr Pepper Snapple Group Inc","shares":18991100},{"symbol":"CRZO","exchange":"Q","type":"stock","description":"Carrizo Oil & Gas Inc","shares":5845200},{"symbol":"RATE","exchange":"N","type":"stock","description":"Bankrate Inc","shares":5191400},{"symbol":"EXC","exchange":"N","type":"stock","description":"Exelon Corp","shares":50657400},{"symbol":"HSII","exchange":"Q","type":"stock","description":"Heidrick & Struggles International Inc","shares":1907900},{"symbol":"DNR","exchange":"N","type":"stock","description":"Denbury Resources Inc","shares":24399500},{"symbol":"DAL","exchange":"N","type":"stock","description":"Delta Air Lines Inc","shares":62363800},{"symbol":"GTLS","exchange":"Q","type":"stock","description":"Chart Industries Inc","shares":2610900},{"symbol":"SPLS","exchange":"Q","type":"stock","description":"Staples Inc","shares":26479600},{"symbol":"STMP","exchange":"Q","type":"stock","description":"Stamps.com Inc","shares":1255300},{"symbol":"OSUR","exchange":"Q","type":"stock","description":"OraSure Technologies Inc","shares":4004000},{"symbol":"SCI","exchange":"N","type":"stock","description":"Service Corp International Inc","shares":11532500},{"symbol":"ATLS","exchange":"N","type":"stock","description":"Atlas Energy LP","shares":251700},{"symbol":"CSGS","exchange":"Q","type":"stock","description":"CSG Systems International Inc","shares":3845200},{"symbol":"HIBB","exchange":"Q","type":"stock","description":"Hibbett Sports Inc","shares":1104600},{"symbol":"USCR","exchange":"Q","type":"stock","description":"US Concrete Inc","shares":222200},{"symbol":"TR","exchange":"N","type":"stock","description":"Tootsie Roll Industries","shares":48300},{"symbol":"FSFR","exchange":"Q","type":"stock","description":"Fifth Street Senior Floating Rate Corp","shares":336300},{"symbol":"ALL","exchange":"N","type":"stock","description":"Allstate Corp","shares":41363700},{"symbol":"SCMP","exchange":"Q","type":"stock","description":"Sucampo Pharmaceuticals Inc","shares":271200},{"symbol":"GNCMA","exchange":"Q","type":"stock","description":"General Communication","shares":3110700},{"symbol":"GPI","exchange":"N","type":"stock","description":"Group 1 Automotive Inc","shares":1607100},{"symbol":"FIS","exchange":"N","type":"stock","description":"Fidelity National Information Services Inc","shares":25097200},{"symbol":"WOR","exchange":"N","type":"stock","description":"Worthington Industries Inc","shares":4225000},{"symbol":"DIS","exchange":"N","type":"stock","description":"Walt Disney Co","shares":100376600},{"symbol":"GWW","exchange":"N","type":"stock","description":"W W Grainger Inc","shares":3836600},{"symbol":"TAST","exchange":"Q","type":"stock","description":"Carrols Restaurant Group Inc","shares":3721500},{"symbol":"CBPO","exchange":"Q","type":"stock","description":"China Biologic Products Inc","shares":50300},{"symbol":"IIVI","exchange":"Q","type":"stock","description":"II-VI Inc","shares":4257300},{"symbol":"NOR","exchange":"N","type":"stock","description":"Noranda Aluminum Holding Corp","shares":5059700},{"symbol":"FLDM","exchange":"Q","type":"stock","description":"Fluidigm Corp","shares":1830200},{"symbol":"EEI","exchange":"Q","type":"stock","description":"Ecology and Environment Inc","shares":130300},{"symbol":"CSGP","exchange":"Q","type":"stock","description":"CoStar Group Inc","shares":2304600},{"symbol":"DAR","exchange":"N","type":"stock","description":"Darling Ingredients Inc","shares":14770100},{"symbol":"SONS","exchange":"Q","type":"stock","description":"Sonus Networks Inc","shares":18620400},{"symbol":"RH","exchange":"N","type":"stock","description":"Restoration Hardware Holdings Inc","shares":1296500},{"symbol":"FL","exchange":"N","type":"stock","description":"Foot Locker Inc","shares":13485000},{"symbol":"SMCI","exchange":"Q","type":"stock","description":"Super Micro Computer Inc","shares":4282400},{"symbol":"NYCB","exchange":"N","type":"stock","description":"New York Community Bancorp Inc","shares":5848700},{"symbol":"HSNI","exchange":"Q","type":"stock","description":"HSN Inc","shares":2624800},{"symbol":"CNBKA","exchange":"Q","type":"stock","description":"Century Bancorp Inc","shares":159900},{"symbol":"RCPT","exchange":"Q","type":"stock","description":"Receptos Inc","shares":2066400},{"symbol":"ARGS","exchange":"Q","type":"stock","description":"Argos Therapeutics Inc","shares":547200},{"symbol":"NDAQ","exchange":"Q","type":"stock","description":"NASDAQ OMX Group, Inc.","shares":9348200},{"symbol":"KTOS","exchange":"Q","type":"stock","description":"Kratos Defense & Security Solutions Inc","shares":3668000},{"symbol":"RESI","exchange":"N","type":"stock","description":"Altisource Residential Corporation","shares":1194000},{"symbol":"MBUU","exchange":"Q","type":"stock","description":"Malibu Boats Inc","shares":1367700},{"symbol":"CMCSA","exchange":"Q","type":"stock","description":"Comcast Corp","shares":30033000},{"symbol":"MLR","exchange":"N","type":"stock","description":"Miller Industries Inc.","shares":1341200},{"symbol":"CECO","exchange":"Q","type":"stock","description":"Career Education Corp","shares":5553900},{"symbol":"VLO","exchange":"N","type":"stock","description":"Valero Energy Corp","shares":49713700},{"symbol":"LMAT","exchange":"Q","type":"stock","description":"LeMaitre Vascular Inc","shares":812900},{"symbol":"CBRL","exchange":"Q","type":"stock","description":"Cracker Barrel Old Country Store Inc","shares":445700},{"symbol":"CL","exchange":"N","type":"stock","description":"Colgate-Palmolive Co","shares":58023500},{"symbol":"MERU","exchange":"Q","type":"stock","description":"MERU Networks Inc","shares":52100},{"symbol":"NCR","exchange":"N","type":"stock","description":"NCR Corp","shares":10477300},{"symbol":"DCT","exchange":"N","type":"stock","description":"DCT Industrial Trust Inc","shares":3153900},{"symbol":"PDFS","exchange":"Q","type":"stock","description":"PDF Solutions Inc","shares":2431200},{"symbol":"NCT","exchange":"N","type":"stock","description":"Newcastle Investment Corporation","shares":2504200},{"symbol":"LLTC","exchange":"Q","type":"stock","description":"Linear Technology Corp","shares":14617000},{"symbol":"PRTO","exchange":"Q","type":"stock","description":"Proteon Therapeutics Inc","shares":77200},{"symbol":"VOLC","exchange":"Q","type":"stock","description":"Volcano Corp","shares":1532800},{"symbol":"MCBC","exchange":"Q","type":"stock","description":"Macatawa Bank Corp","shares":600400},{"symbol":"FNLC","exchange":"Q","type":"stock","description":"First Bancorp Inc","shares":399500},{"symbol":"YORW","exchange":"Q","type":"stock","description":"York Water Co","shares":281100},{"symbol":"COHR","exchange":"Q","type":"stock","description":"Coherent Inc","shares":3274600},{"symbol":"VC","exchange":"N","type":"stock","description":"Visteon Corp","shares":2057900},{"symbol":"DWCH","exchange":"Q","type":"stock","description":"Datawatch Corp","shares":151500},{"symbol":"TRGP","exchange":"N","type":"stock","description":"Targa Resources Corp","shares":2448800},{"symbol":"ECPG","exchange":"Q","type":"stock","description":"Encore Capital Group Inc","shares":589300},{"symbol":"UTX","exchange":"N","type":"stock","description":"United Technologies Corp","shares":62152900},{"symbol":"ELGX","exchange":"Q","type":"stock","description":"Endologix Inc","shares":2558100},{"symbol":"SF","exchange":"N","type":"stock","description":"Stifel Financial Corp","shares":8608800},{"symbol":"SPWR","exchange":"Q","type":"stock","description":"SunPower Corp","shares":43000},{"symbol":"BBX","exchange":"N","type":"stock","description":"BBX Capital Corp","shares":477400},{"symbol":"RENT","exchange":"Q","type":"stock","description":"Rentrak Corp","shares":950000},{"symbol":"AFOP","exchange":"Q","type":"stock","description":"Alliance Fiber Optic Products Inc","shares":72400},{"symbol":"UA","exchange":"N","type":"stock","description":"Under Armour Inc","shares":6235200},{"symbol":"UIL","exchange":"N","type":"stock","description":"UIL Holdings Corp","shares":3071400},{"symbol":"EFX","exchange":"N","type":"stock","description":"Equifax Inc","shares":11915900},{"symbol":"MATX","exchange":"N","type":"stock","description":"Matson Inc","shares":5435000},{"symbol":"FINL","exchange":"Q","type":"stock","description":"Finish Line Inc","shares":4504400},{"symbol":"LION","exchange":"Q","type":"stock","description":"Fidelity Southern Corp","shares":1197300},{"symbol":"KS","exchange":"N","type":"stock","description":"KapStone Paper And Packaging Corp","shares":7756400},{"symbol":"CYN","exchange":"N","type":"stock","description":"City National Corp","shares":3529500},{"symbol":"IFF","exchange":"N","type":"stock","description":"International Flavors & Fragrances","shares":4128900},{"symbol":"LCUT","exchange":"Q","type":"stock","description":"Lifetime Brands Inc","shares":1097800},{"symbol":"ITRI","exchange":"Q","type":"stock","description":"Itron Inc","shares":2818700},{"symbol":"WD","exchange":"N","type":"stock","description":"Walker & Dunlop Inc","shares":1860200},{"symbol":"CLNY","exchange":"N","type":"stock","description":"Colony Financial Inc","shares":5912200},{"symbol":"DGI","exchange":"N","type":"stock","description":"DigitalGlobe Inc","shares":5276100},{"symbol":"ACHC","exchange":"Q","type":"stock","description":"Acadia Healthcare Co Inc","shares":3719500},{"symbol":"CTP","exchange":"A","type":"stock","description":"CTPartners Executive Search Inc","shares":871600},{"symbol":"ADS","exchange":"N","type":"stock","description":"Alliance Data Systems Corp","shares":3757900},{"symbol":"IMS","exchange":"N","type":"stock","description":"IMS Health Holdings Inc","shares":2006500},{"symbol":"ANGO","exchange":"Q","type":"stock","description":"AngioDynamics Inc","shares":4344400},{"symbol":"ALOG","exchange":"Q","type":"stock","description":"Analogic Corp","shares":1287400},{"symbol":"INTC","exchange":"Q","type":"stock","description":"Intel Corp","shares":261474200},{"symbol":"IG","exchange":"A","type":"stock","description":"IGI Inc","shares":1864200},{"symbol":"WETF","exchange":"Q","type":"stock","description":"WisdomTree Investments Inc","shares":1186700},{"symbol":"PKE","exchange":"N","type":"stock","description":"Park Electrochemical Corp","shares":2355100},{"symbol":"NFLX","exchange":"Q","type":"stock","description":"Netflix Inc","shares":4225100},{"symbol":"CIVI","exchange":"N","type":"stock","description":"Civitas Solutions Inc","shares":201200},{"symbol":"DOW","exchange":"N","type":"stock","description":"Dow Chemical Co","shares":67043900},{"symbol":"CMP","exchange":"N","type":"stock","description":"Compass Minerals International Inc","shares":2288000},{"symbol":"AFFX","exchange":"Q","type":"stock","description":"Affymetrix Inc","shares":3845200},{"symbol":"TNAV","exchange":"Q","type":"stock","description":"Telenav Inc","shares":1579400},{"symbol":"NAVI","exchange":"Q","type":"stock","description":"Navient Corp","shares":35765200},{"symbol":"RP","exchange":"Q","type":"stock","description":"Realpage Inc","shares":1923400},{"symbol":"SWX","exchange":"N","type":"stock","description":"Southwest Gas Corp","shares":4256500},{"symbol":"ASUR","exchange":"Q","type":"stock","description":"Asure Software Inc","shares":58500},{"symbol":"ATNI","exchange":"Q","type":"stock","description":"Atlantic Tele-Network Inc","shares":913000},{"symbol":"OLN","exchange":"N","type":"stock","description":"Olin Corp","shares":3687700},{"symbol":"SLH","exchange":"N","type":"stock","description":"Solera Holdings Inc","shares":6096600},{"symbol":"BERY","exchange":"N","type":"stock","description":"Berry Plastics Group Inc","shares":14980500},{"symbol":"INAP","exchange":"Q","type":"stock","description":"Internap Network Services Corp","shares":4288000},{"symbol":"WHG","exchange":"N","type":"stock","description":"Westwood Holdings Group Inc","shares":312100},{"symbol":"DCO","exchange":"N","type":"stock","description":"Ducommun Inc","shares":1472500},{"symbol":"HILL","exchange":"Q","type":"stock","description":"Dot Hill Systems Corp","shares":5315700},{"symbol":"SCSC","exchange":"Q","type":"stock","description":"ScanSource","shares":5330300},{"symbol":"PXD","exchange":"N","type":"stock","description":"Pioneer Natural Resources Co","shares":13546700},{"symbol":"NUE","exchange":"N","type":"stock","description":"Nucor Corp","shares":19776900},{"symbol":"CVBF","exchange":"Q","type":"stock","description":"CVB Financial Corp","shares":6213800},{"symbol":"OMCL","exchange":"Q","type":"stock","description":"Omnicell Inc","shares":4155300},{"symbol":"CSCD","exchange":"Q","type":"stock","description":"Cascade Microtech Inc","shares":1700200},{"symbol":"B","exchange":"N","type":"stock","description":"Barnes Group Inc","shares":5197900},{"symbol":"AOS","exchange":"N","type":"stock","description":"A O Smith Corp","shares":6612300},{"symbol":"RCKY","exchange":"Q","type":"stock","description":"Rocky Brands Inc","shares":734700},{"symbol":"EGL","exchange":"N","type":"stock","description":"Engility Holdings Inc","shares":2559800},{"symbol":"INBK","exchange":"Q","type":"stock","description":"First Internet Bancorp","shares":58700},{"symbol":"ENTA","exchange":"Q","type":"stock","description":"Enanta Pharmaceuticals Inc","shares":180600},{"symbol":"JWN","exchange":"N","type":"stock","description":"Nordstrom Inc","shares":7678600},{"symbol":"FEYE","exchange":"Q","type":"stock","description":"FireEye Inc","shares":193300},{"symbol":"NR","exchange":"N","type":"stock","description":"Newpark Resources Inc","shares":10786000},{"symbol":"ORRF","exchange":"Q","type":"stock","description":"Orrstown Financial Services Inc","shares":232000},{"symbol":"APH","exchange":"N","type":"stock","description":"Amphenol Corp","shares":24756300},{"symbol":"STI","exchange":"N","type":"stock","description":"SunTrust Banks Inc","shares":39483600},{"symbol":"MDT","exchange":"N","type":"stock","description":"Medtronic Inc","shares":39148600},{"symbol":"IRWD","exchange":"Q","type":"stock","description":"Ironwood Pharmaceuticals Inc","shares":7440600},{"symbol":"TWI","exchange":"N","type":"stock","description":"Titan International Inc","shares":1210300},{"symbol":"BYD","exchange":"N","type":"stock","description":"Boyd Gaming Corporation","shares":3025500},{"symbol":"SYNL","exchange":"Q","type":"stock","description":"Synalloy Corp","shares":422500},{"symbol":"JGW","exchange":"N","type":"stock","description":"The JG Wentworth Company","shares":178000},{"symbol":"HALO","exchange":"Q","type":"stock","description":"Halozyme Therapeutics Inc","shares":495300},{"symbol":"AWR","exchange":"N","type":"stock","description":"American States Water Co","shares":2841500},{"symbol":"EOG","exchange":"N","type":"stock","description":"EOG Resources Inc","shares":56105900},{"symbol":"CUBE","exchange":"N","type":"stock","description":"CubeSmart","shares":13330800},{"symbol":"AEP","exchange":"N","type":"stock","description":"American Electric Power Co Inc","shares":39232800},{"symbol":"HURC","exchange":"Q","type":"stock","description":"Hurco Companies Inc","shares":656400},{"symbol":"HLS","exchange":"N","type":"stock","description":"Healthsouth Corp","shares":8774900},{"symbol":"RLGY","exchange":"N","type":"stock","description":"Realogy Holdings Corp","shares":9614900},{"symbol":"WYN","exchange":"N","type":"stock","description":"Wyndham Worldwide Corp","shares":11498900},{"symbol":"OCR","exchange":"N","type":"stock","description":"Omnicare Inc","shares":7750900},{"symbol":"GTT","exchange":"N","type":"stock","description":"GTT Communications Inc","shares":480900},{"symbol":"SE","exchange":"N","type":"stock","description":"Spectra Energy Corp","shares":35418100},{"symbol":"SCVL","exchange":"Q","type":"stock","description":"Shoe Carnival","shares":2056900},{"symbol":"IMPR","exchange":"N","type":"stock","description":"Imprivata Inc","shares":476400},{"symbol":"MBFI","exchange":"Q","type":"stock","description":"MB Financial Inc","shares":7408300},{"symbol":"GMED","exchange":"N","type":"stock","description":"Globus Medical Inc","shares":4337400},{"symbol":"OPY","exchange":"N","type":"stock","description":"Oppenheimer Holdings Inc","shares":617900},{"symbol":"PLD","exchange":"N","type":"stock","description":"Prologis Inc","shares":48030700},{"symbol":"MARK","exchange":"Q","type":"stock","description":"Remark Media Inc","shares":38500},{"symbol":"NSTG","exchange":"Q","type":"stock","description":"NanoString Technologies Inc","shares":319100},{"symbol":"ERA","exchange":"N","type":"stock","description":"Era Group Inc","shares":3116800},{"symbol":"AEC","exchange":"N","type":"stock","description":"Associated Estates Realty Corp","shares":3967100},{"symbol":"EVR","exchange":"N","type":"stock","description":"Evercore Partners Inc","shares":3749200},{"symbol":"HTBI","exchange":"Q","type":"stock","description":"HomeTrust Bancshares Inc","shares":925200},{"symbol":"HXL","exchange":"N","type":"stock","description":"Hexcel Corp","shares":8383100},{"symbol":"ARCC","exchange":"Q","type":"stock","description":"Ares Capital Corporation","shares":4111400},{"symbol":"ICPT","exchange":"Q","type":"stock","description":"Intercept Pharmaceuticals Inc","shares":218600},{"symbol":"CAH","exchange":"N","type":"stock","description":"Cardinal Health Inc","shares":32161200},{"symbol":"BAC","exchange":"N","type":"stock","description":"Bank of America Corporation","shares":744734800},{"symbol":"FFBC","exchange":"Q","type":"stock","description":"First Financial Bancorp","shares":5193800},{"symbol":"PHH","exchange":"N","type":"stock","description":"PHH Corp","shares":1854400},{"symbol":"MODN","exchange":"N","type":"stock","description":"Model N Inc","shares":527700},{"symbol":"CBNK","exchange":"Q","type":"stock","description":"Chicopee Bancorp Inc","shares":162400},{"symbol":"CRMT","exchange":"Q","type":"stock","description":"America's Car-Mart Inc","shares":895400},{"symbol":"RLI","exchange":"N","type":"stock","description":"RLI Corp","shares":1890800},{"symbol":"LMOS","exchange":"Q","type":"stock","description":"Lumos Networks Corp","shares":898500},{"symbol":"VIAS","exchange":"Q","type":"stock","description":"Viasystems Group Inc","shares":160100},{"symbol":"INVE","exchange":"Q","type":"stock","description":"Identiv Inc","shares":462700},{"symbol":"PAA","exchange":"N","type":"stock","description":"Plains All American Pipeline LP","shares":2915500},{"symbol":"CIR","exchange":"N","type":"stock","description":"Circor International Inc","shares":2063300},{"symbol":"SIVB","exchange":"Q","type":"stock","description":"SVB Financial Group","shares":5939900},{"symbol":"ZSPH","exchange":"Q","type":"stock","description":"ZS Pharma Inc","shares":64700},{"symbol":"CPRT","exchange":"Q","type":"stock","description":"Copart Inc","shares":12083200},{"symbol":"FII","exchange":"N","type":"stock","description":"Federated Investors, Inc.","shares":2616300},{"symbol":"SSTK","exchange":"N","type":"stock","description":"Shutterstock Inc","shares":562700},{"symbol":"CLMS","exchange":"Q","type":"stock","description":"Calamos Asset Management Inc","shares":2028200},{"symbol":"CACI","exchange":"N","type":"stock","description":"CACI International Inc","shares":2801900},{"symbol":"GTE","exchange":"A","type":"stock","description":"Gran Tierra Energy Inc","shares":6850200},{"symbol":"ACU","exchange":"A","type":"stock","description":"Acme United Corp","shares":89700},{"symbol":"SFE","exchange":"N","type":"stock","description":"Safeguard Scientifics Inc","shares":1274000},{"symbol":"CIT","exchange":"N","type":"stock","description":"CIT Group Inc","shares":16157400},{"symbol":"VSLR","exchange":"N","type":"stock","description":"Vivint Solar Inc","shares":1320100},{"symbol":"AUMAU","exchange":"Q","type":"stock","description":"AR Capital Acquisition Corp","shares":231200},{"symbol":"KEY","exchange":"N","type":"stock","description":"KeyCorp","shares":78580500},{"symbol":"DBD","exchange":"N","type":"stock","description":"Diebold Inc","shares":4927300},{"symbol":"BLL","exchange":"N","type":"stock","description":"Ball Corp","shares":10837000},{"symbol":"BCC","exchange":"N","type":"stock","description":"Boise Cascade Co","shares":5562100},{"symbol":"TRNO","exchange":"N","type":"stock","description":"Terreno Realty Corp","shares":3037000},{"symbol":"CASH","exchange":"Q","type":"stock","description":"Meta Financial Group Inc","shares":242700},{"symbol":"MOS","exchange":"N","type":"stock","description":"Mosaic Co","shares":19986300},{"symbol":"HMSY","exchange":"Q","type":"stock","description":"HMS Holdings Corp","shares":3857900},{"symbol":"SNDK","exchange":"Q","type":"stock","description":"SanDisk Corp","shares":15636600},{"symbol":"HMHC","exchange":"Q","type":"stock","description":"Houghton Mifflin Harcourt Company","shares":2955000},{"symbol":"DISH","exchange":"Q","type":"stock","description":"DISH Network Corp","shares":18958100},{"symbol":"SWKS","exchange":"Q","type":"stock","description":"Skyworks Solutions Inc","shares":14165300},{"symbol":"REGN","exchange":"Q","type":"stock","description":"Regeneron Pharmaceuticals Inc","shares":5036900},{"symbol":"HSY","exchange":"N","type":"stock","description":"The Hershey Co","shares":8276700},{"symbol":"OTTR","exchange":"Q","type":"stock","description":"Otter Tail Corp","shares":830900},{"symbol":"INSM","exchange":"Q","type":"stock","description":"Insmed Inc","shares":2033400},{"symbol":"WOOF","exchange":"Q","type":"stock","description":"VCA Inc","shares":7678500},{"symbol":"EVLV","exchange":"Q","type":"stock","description":"EVINE Live Inc","shares":3163400},{"symbol":"BIRT","exchange":"Q","type":"stock","description":"Actuate Corp","shares":2821900},{"symbol":"SGA","exchange":"A","type":"stock","description":"Saga Communications Inc","shares":438900},{"symbol":"MPWR","exchange":"Q","type":"stock","description":"Monolithic Power Systems Inc","shares":5185800},{"symbol":"BIOS","exchange":"Q","type":"stock","description":"BioScrip Inc","shares":743500},{"symbol":"MORN","exchange":"Q","type":"stock","description":"Morningstar Inc","shares":490500},{"symbol":"IRET","exchange":"N","type":"stock","description":"Investors Real Estate Trust","shares":1152000},{"symbol":"OSBC","exchange":"Q","type":"stock","description":"Old Second Bancorp Inc","shares":1741700},{"symbol":"BBGI","exchange":"Q","type":"stock","description":"Beasley Broadcast Group Inc","shares":767500},{"symbol":"VLGEA","exchange":"Q","type":"stock","description":"Village Super Market Inc","shares":516000},{"symbol":"MTB","exchange":"N","type":"stock","description":"M&T Bank Corp","shares":305800},{"symbol":"GWR","exchange":"N","type":"stock","description":"Genesee & Wyoming Inc","shares":4611700},{"symbol":"MWV","exchange":"N","type":"stock","description":"MeadWestvaco Corp","shares":12000600},{"symbol":"NSP","exchange":"N","type":"stock","description":"Insperity Inc","shares":1813600},{"symbol":"PCG","exchange":"N","type":"stock","description":"PG&E Corp","shares":41218700},{"symbol":"NRIM","exchange":"Q","type":"stock","description":"Northrim BanCorp Inc","shares":555600},{"symbol":"GIS","exchange":"N","type":"stock","description":"General Mills Inc","shares":35403400},{"symbol":"TMK","exchange":"N","type":"stock","description":"Torchmark Corp","shares":6858600},{"symbol":"HNT","exchange":"N","type":"stock","description":"Health Net Inc","shares":9173800},{"symbol":"DE","exchange":"N","type":"stock","description":"Deere & Co","shares":7226000},{"symbol":"JOUT","exchange":"Q","type":"stock","description":"Johnson Outdoors Inc","shares":930900},{"symbol":"SPG","exchange":"N","type":"stock","description":"Simon Property Group Inc","shares":31873300},{"symbol":"BSQR","exchange":"Q","type":"stock","description":"Bsquare Corp","shares":688600},{"symbol":"MTOR","exchange":"N","type":"stock","description":"Meritor Inc","shares":9842700},{"symbol":"USPH","exchange":"N","type":"stock","description":"US Physical Therapy Inc","shares":1029600},{"symbol":"TAM","exchange":"N","type":"stock","description":"Taminco Corp","shares":1448100},{"symbol":"ADES","exchange":"Q","type":"stock","description":"Advanced Emissions Solutions Inc","shares":460000},{"symbol":"SNH","exchange":"N","type":"stock","description":"Senior Housing Properties Trust","shares":8479400},{"symbol":"JBSS","exchange":"Q","type":"stock","description":"John B Sanfilippo & Son Inc","shares":935300},{"symbol":"CCBG","exchange":"Q","type":"stock","description":"Capital City Bank Group Inc","shares":309100},{"symbol":"LF","exchange":"N","type":"stock","description":"Leapfrog Enterprises Inc","shares":2656700},{"symbol":"BKYF","exchange":"Q","type":"stock","description":"Bank of Kentucky Financial Corp","shares":144400},{"symbol":"STAY","exchange":"N","type":"stock","description":"Extended Stay America Inc","shares":5990300},{"symbol":"FUNC","exchange":"Q","type":"stock","description":"First United Corp","shares":164900},{"symbol":"FCX","exchange":"N","type":"stock","description":"Freeport-McMoRan Inc","shares":78755400},{"symbol":"ENT","exchange":"Q","type":"stock","description":"Global Eagle Entertainment Inc","shares":99700},{"symbol":"MDLZ","exchange":"Q","type":"stock","description":"Mondelez International Inc","shares":139133900},{"symbol":"PTX","exchange":"Q","type":"stock","description":"Pernix Therapeutics Holdings Inc","shares":995900},{"symbol":"ETE","exchange":"N","type":"stock","description":"Energy Transfer Equity LP","shares":5865900},{"symbol":"EVOL","exchange":"Q","type":"stock","description":"Evolving Systems Inc","shares":380500},{"symbol":"PNRA","exchange":"Q","type":"stock","description":"Panera Bread Co Inc","shares":1394100},{"symbol":"INTU","exchange":"Q","type":"stock","description":"Intuit Inc","shares":27681000},{"symbol":"BWS","exchange":"N","type":"stock","description":"Brown Shoe Co Inc","shares":5782200},{"symbol":"BC","exchange":"N","type":"stock","description":"Brunswick Corp","shares":7418900},{"symbol":"WSBC","exchange":"Q","type":"stock","description":"Wesbanco Inc","shares":2354100},{"symbol":"WMK","exchange":"N","type":"stock","description":"Weis Markets Inc","shares":980200},{"symbol":"CPB","exchange":"N","type":"stock","description":"Campbell Soup Co","shares":4699700},{"symbol":"RALY","exchange":"N","type":"stock","description":"Rally Software Development Corp","shares":216700},{"symbol":"MOV","exchange":"N","type":"stock","description":"Movado Group Inc","shares":2228300},{"symbol":"PFBC","exchange":"Q","type":"stock","description":"Preferred Bank","shares":833000},{"symbol":"SAMG","exchange":"Q","type":"stock","description":"Silvercrest Asset Management Group Inc","shares":186500},{"symbol":"HTZ","exchange":"N","type":"stock","description":"Hertz Global Holdings Inc","shares":25624600},{"symbol":"HTLD","exchange":"Q","type":"stock","description":"Heartland Express Inc","shares":3016500},{"symbol":"CBPX","exchange":"N","type":"stock","description":"Continental Building Products Inc","shares":1875100},{"symbol":"CRY","exchange":"N","type":"stock","description":"Cryolife Inc","shares":1963800},{"symbol":"CJES","exchange":"N","type":"stock","description":"C&J Energy Services Inc","shares":3844200},{"symbol":"WNR","exchange":"N","type":"stock","description":"Western Refining Inc","shares":8201600},{"symbol":"SORL","exchange":"Q","type":"stock","description":"SORL Auto Parts Inc","shares":108200},{"symbol":"EBIO","exchange":"Q","type":"stock","description":"Eleven Biotherapeutics Inc","shares":52500},{"symbol":"ARRS","exchange":"Q","type":"stock","description":"ARRIS Group Inc","shares":14249400},{"symbol":"ATML","exchange":"Q","type":"stock","description":"Atmel Corp","shares":27995500},{"symbol":"ELRC","exchange":"Q","type":"stock","description":"Electro Rent Corp","shares":2058400},{"symbol":"GLPW","exchange":"N","type":"stock","description":"Global Power Equipment Group Inc","shares":1020600},{"symbol":"GNMK","exchange":"Q","type":"stock","description":"GenMark Diagnostics Inc","shares":2366900},{"symbol":"ALE","exchange":"N","type":"stock","description":"ALLETE Inc","shares":3368000},{"symbol":"AIG","exchange":"N","type":"stock","description":"American International Group Inc","shares":93570500},{"symbol":"DORM","exchange":"Q","type":"stock","description":"Dorman Products Inc","shares":627800},{"symbol":"WAIR","exchange":"N","type":"stock","description":"Wesco Aircraft Holdings Inc","shares":3904600},{"symbol":"RUSHA","exchange":"Q","type":"stock","description":"Rush Enterprises Inc","shares":3535000},{"symbol":"RES","exchange":"N","type":"stock","description":"RPC Inc","shares":3603900},{"symbol":"SPWH","exchange":"Q","type":"stock","description":"Sportsman’s Warehouse Holdings Inc","shares":355900},{"symbol":"CAM","exchange":"N","type":"stock","description":"Cameron International Corp","shares":25096500},{"symbol":"CPHD","exchange":"Q","type":"stock","description":"Cepheid","shares":2138900},{"symbol":"BLKB","exchange":"Q","type":"stock","description":"Blackbaud Inc","shares":3357800},{"symbol":"GPOR","exchange":"Q","type":"stock","description":"Gulfport Energy Corp","shares":6393600},{"symbol":"CFI","exchange":"N","type":"stock","description":"Culp Inc","shares":824100},{"symbol":"CE","exchange":"N","type":"stock","description":"Celanese Corp","shares":11790600},{"symbol":"ATEN","exchange":"N","type":"stock","description":"A10 Networks Inc","shares":826300},{"symbol":"AEE","exchange":"N","type":"stock","description":"Ameren Corp","shares":16585800},{"symbol":"HPTX","exchange":"Q","type":"stock","description":"Hyperion Therapeutics Inc","shares":470700},{"symbol":"KE","exchange":"Q","type":"stock","description":"Kimball Electronics Inc","shares":948400},{"symbol":"W","exchange":"N","type":"stock","description":"Wayfair Inc","shares":146000},{"symbol":"WWW","exchange":"N","type":"stock","description":"Wolverine World Wide Inc","shares":3650100},{"symbol":"KAI","exchange":"N","type":"stock","description":"Kadant Inc","shares":1742100},{"symbol":"BRO","exchange":"N","type":"stock","description":"Brown & Brown Inc","shares":9790000},{"symbol":"XRAY","exchange":"Q","type":"stock","description":"DENTSPLY International Inc","shares":10774400},{"symbol":"AAL","exchange":"Q","type":"stock","description":"American Airlines Group Inc","shares":26217100},{"symbol":"DG","exchange":"N","type":"stock","description":"Dollar General Corp","shares":10847700},{"symbol":"RKUS","exchange":"N","type":"stock","description":"Ruckus Wireless Inc","shares":5543900},{"symbol":"BSET","exchange":"Q","type":"stock","description":"Bassett Furniture Industries","shares":1278400},{"symbol":"BHB","exchange":"A","type":"stock","description":"Bar Harbor Bankshares","shares":222300},{"symbol":"MTZ","exchange":"N","type":"stock","description":"MasTec Inc","shares":5362800},{"symbol":"TDY","exchange":"N","type":"stock","description":"Teledyne Technologies Inc","shares":3637200},{"symbol":"H","exchange":"N","type":"stock","description":"Hyatt Hotels Corp","shares":2540100},{"symbol":"PRI","exchange":"N","type":"stock","description":"Primerica Inc","shares":4496000},{"symbol":"BSX","exchange":"N","type":"stock","description":"Boston Scientific Inc","shares":107397100},{"symbol":"LM","exchange":"N","type":"stock","description":"Legg Mason Inc","shares":8932000},{"symbol":"FORR","exchange":"Q","type":"stock","description":"Forrester Research Inc","shares":1083300},{"symbol":"LACO","exchange":"Q","type":"stock","description":"Lakes Entertainment Inc","shares":218200},{"symbol":"FRC","exchange":"N","type":"stock","description":"First Republic Bank","shares":10843300},{"symbol":"SNCR","exchange":"Q","type":"stock","description":"Synchronoss Technologies Inc","shares":3177200},{"symbol":"MITT","exchange":"N","type":"stock","description":"AG Mortgage Investment Trust Inc","shares":1347300},{"symbol":"OUT","exchange":"N","type":"stock","description":"Outfront Media Inc","shares":5702500},{"symbol":"SRT","exchange":"N","type":"stock","description":"StarTek Inc","shares":799800},{"symbol":"SXI","exchange":"N","type":"stock","description":"Standex International Corp","shares":1618700},{"symbol":"NNN","exchange":"N","type":"stock","description":"National Retail Properties Inc","shares":1521700},{"symbol":"NHTB","exchange":"Q","type":"stock","description":"New Hampshire Thrift Bancshares Inc","shares":180100},{"symbol":"CMLP","exchange":"N","type":"stock","description":"Crestwood Midstream Partners LP","shares":148000},{"symbol":"IQNT","exchange":"Q","type":"stock","description":"Inteliquent Inc","shares":4566400},{"symbol":"TIME","exchange":"N","type":"stock","description":"Time Inc","shares":4507600},{"symbol":"BWP","exchange":"N","type":"stock","description":"Boardwalk Pipeline Partners LP","shares":429600},{"symbol":"NBHC","exchange":"N","type":"stock","description":"National Bank Holdings Corp","shares":2572100},{"symbol":"HASI","exchange":"N","type":"stock","description":"Hannon Armstrong Sustainable Infrastructure Capital Inc","shares":590100},{"symbol":"DHX","exchange":"N","type":"stock","description":"Dice Holdings Inc","shares":4884600},{"symbol":"GHL","exchange":"N","type":"stock","description":"Greenhill & Co Inc","shares":1429200},{"symbol":"CCI","exchange":"N","type":"stock","description":"Crown Castle International Corp","shares":22987700},{"symbol":"AIRI","exchange":"A","type":"stock","description":"Air Industries Group","shares":61600},{"symbol":"TSS","exchange":"N","type":"stock","description":"Total System Services Inc","shares":11324300},{"symbol":"CKEC","exchange":"Q","type":"stock","description":"Carmike Cinemas Inc","shares":772300},{"symbol":"BOH","exchange":"N","type":"stock","description":"Bank of Hawaii Corp","shares":1313900},{"symbol":"ATVI","exchange":"Q","type":"stock","description":"Activision Blizzard Inc","shares":45208700},{"symbol":"SWY","exchange":"N","type":"stock","description":"Safeway Inc","shares":12940700},{"symbol":"EPAY","exchange":"Q","type":"stock","description":"Bottomline Technologies Inc","shares":3077800},{"symbol":"PKD","exchange":"N","type":"stock","description":"Parker Drilling Co","shares":15632100},{"symbol":"AVA","exchange":"N","type":"stock","description":"Avista Corp","shares":2043100},{"symbol":"VRTX","exchange":"Q","type":"stock","description":"Vertex Pharmaceuticals Inc","shares":18572000},{"symbol":"VRNT","exchange":"Q","type":"stock","description":"Verint Systems Inc","shares":5338200},{"symbol":"REFR","exchange":"Q","type":"stock","description":"Research Frontiers","shares":86000},{"symbol":"LSBK","exchange":"Q","type":"stock","description":"Lake Shore Bancorp Inc","shares":37600},{"symbol":"SYNA","exchange":"Q","type":"stock","description":"Synaptics Inc","shares":2613900},{"symbol":"CWST","exchange":"Q","type":"stock","description":"Casella Waste Systems Inc","shares":1447000},{"symbol":"BDE","exchange":"Q","type":"stock","description":"Black Diamond Inc","shares":1433500},{"symbol":"KRA","exchange":"N","type":"stock","description":"Kraton Performance Polymers Inc","shares":3675900},{"symbol":"WY","exchange":"N","type":"stock","description":"Weyerhaeuser Co","shares":41989100},{"symbol":"SFNC","exchange":"Q","type":"stock","description":"Simmons First National Corp","shares":268500},{"symbol":"ROLL","exchange":"Q","type":"stock","description":"RBC Bearings Inc","shares":2750000},{"symbol":"KBAL","exchange":"Q","type":"stock","description":"Kimball International Inc","shares":3735500},{"symbol":"PKOH","exchange":"Q","type":"stock","description":"Park-Ohio Holdings Corp","shares":1064900},{"symbol":"AMKR","exchange":"Q","type":"stock","description":"Amkor Technology Inc","shares":12241000},{"symbol":"AMTD","exchange":"N","type":"stock","description":"TD Ameritrade Holding Corp","shares":13796800},{"symbol":"CBT","exchange":"N","type":"stock","description":"Cabot Corp","shares":5255000},{"symbol":"CLD","exchange":"N","type":"stock","description":"Cloud Peak Energy Inc","shares":6424300},{"symbol":"LBY","exchange":"A","type":"stock","description":"Libbey Inc","shares":2182600},{"symbol":"AES","exchange":"N","type":"stock","description":"The AES Corporation","shares":85411400},{"symbol":"RVBD","exchange":"Q","type":"stock","description":"Riverbed Technology Inc","shares":7650000},{"symbol":"TLMR","exchange":"Q","type":"stock","description":"Talmer Bancorp Inc","shares":3209400},{"symbol":"AST","exchange":"A","type":"stock","description":"Asterias Biotherapeutics, Inc","shares":103600},{"symbol":"TPC","exchange":"N","type":"stock","description":"Tutor Perini Corp","shares":7359800},{"symbol":"PBY","exchange":"N","type":"stock","description":"Pep Boys - Manny Moe & Jack","shares":6174200},{"symbol":"NBL","exchange":"N","type":"stock","description":"Noble Energy Inc","shares":29979500},{"symbol":"PAYX","exchange":"Q","type":"stock","description":"Paychex Inc","shares":16670900},{"symbol":"PROV","exchange":"Q","type":"stock","description":"Provident Financial Holdings Inc","shares":710700},{"symbol":"ZAGG","exchange":"Q","type":"stock","description":"Zagg Inc","shares":3018000},{"symbol":"CDI","exchange":"N","type":"stock","description":"CDI Corp","shares":1973900},{"symbol":"BDC","exchange":"N","type":"stock","description":"Belden Inc","shares":4291000},{"symbol":"EVDY","exchange":"N","type":"stock","description":"Everyday Health Inc","shares":1179300},{"symbol":"MSTR","exchange":"Q","type":"stock","description":"MicroStrategy Inc","shares":929200},{"symbol":"CCNE","exchange":"Q","type":"stock","description":"CNB Financial Corporation","shares":639300},{"symbol":"NSR","exchange":"N","type":"stock","description":"NeuStar Inc","shares":619600},{"symbol":"CKP","exchange":"N","type":"stock","description":"Checkpoint Systems Inc","shares":5965500},{"symbol":"SJM","exchange":"N","type":"stock","description":"JM Smucker Co","shares":6764700},{"symbol":"CERN","exchange":"Q","type":"stock","description":"Cerner Corp","shares":21648500},{"symbol":"BXS","exchange":"N","type":"stock","description":"BancorpSouth Inc.","shares":7649200},{"symbol":"IXYS","exchange":"Q","type":"stock","description":"IXYS Corp","shares":2679100},{"symbol":"UFS","exchange":"N","type":"stock","description":"Domtar Corp","shares":1929000},{"symbol":"SHBI","exchange":"Q","type":"stock","description":"Shore Bancshares Inc","shares":432200},{"symbol":"MKTO","exchange":"Q","type":"stock","description":"Marketo Inc","shares":827200},{"symbol":"FTD","exchange":"Q","type":"stock","description":"FTD Companies Inc","shares":1853800},{"symbol":"CNL","exchange":"N","type":"stock","description":"Cleco Corp","shares":3934200},{"symbol":"KLAC","exchange":"Q","type":"stock","description":"KLA-Tencor Corp","shares":7417800},{"symbol":"WLK","exchange":"N","type":"stock","description":"Westlake Chemical Corp","shares":4565400},{"symbol":"TBBK","exchange":"Q","type":"stock","description":"The Bancorp Inc","shares":3109600},{"symbol":"DV","exchange":"N","type":"stock","description":"DeVry Education Group Inc","shares":5679200},{"symbol":"VFC","exchange":"N","type":"stock","description":"VF Corp","shares":27227600},{"symbol":"CTRL","exchange":"Q","type":"stock","description":"Control4 Corp","shares":150200},{"symbol":"NXST","exchange":"Q","type":"stock","description":"Nexstar Broadcasting Group Inc","shares":195300},{"symbol":"WPC","exchange":"N","type":"stock","description":"W P Carey Inc","shares":1978200},{"symbol":"SWI","exchange":"N","type":"stock","description":"SolarWinds Inc","shares":9273600},{"symbol":"CDW","exchange":"Q","type":"stock","description":"CDW Corp","shares":4682700},{"symbol":"BCPC","exchange":"Q","type":"stock","description":"Balchem Corp","shares":2282100},{"symbol":"LECO","exchange":"Q","type":"stock","description":"Lincoln Electric Holdings, Inc.","shares":4763400},{"symbol":"LWAY","exchange":"Q","type":"stock","description":"Lifeway Foods Inc","shares":101700},{"symbol":"AI","exchange":"N","type":"stock","description":"Arlington Asset Investment Corp.","shares":392800},{"symbol":"AZZ","exchange":"N","type":"stock","description":"AZZ Inc","shares":2186700},{"symbol":"NPSP","exchange":"Q","type":"stock","description":"NPS Pharmaceuticals Inc","shares":5183100},{"symbol":"EW","exchange":"N","type":"stock","description":"Edwards Lifesciences Corp","shares":6668800},{"symbol":"CR","exchange":"N","type":"stock","description":"Crane Co","shares":4907100},{"symbol":"MTSC","exchange":"Q","type":"stock","description":"MTS Systems Corp","shares":873600},{"symbol":"WLKP","exchange":"N","type":"stock","description":"Westlake Chemical Partners LP","shares":504000},{"symbol":"EXH","exchange":"N","type":"stock","description":"Exterran Holdings Inc","shares":6715400},{"symbol":"AHH","exchange":"N","type":"stock","description":"Armada Hoffler Properties Inc","shares":1403500},{"symbol":"DWRE","exchange":"N","type":"stock","description":"Demandware Inc","shares":592000},{"symbol":"HRG","exchange":"N","type":"stock","description":"Harbinger Group Inc","shares":2097200},{"symbol":"STZ","exchange":"N","type":"stock","description":"Constellation Brands Inc","shares":14556900},{"symbol":"TYL","exchange":"N","type":"stock","description":"Tyler Technologies Inc","shares":3429500},{"symbol":"CXW","exchange":"N","type":"stock","description":"Corrections Corp of America","shares":5330100},{"symbol":"WMT","exchange":"N","type":"stock","description":"Wal-Mart Stores Inc","shares":86278700},{"symbol":"GRA","exchange":"N","type":"stock","description":"W R Grace & Co","shares":3048800},{"symbol":"CHCO","exchange":"Q","type":"stock","description":"City Holding Co","shares":495800},{"symbol":"MTSI","exchange":"Q","type":"stock","description":"M\/A-COM Technology Solutions Holdings Inc","shares":616500},{"symbol":"AOL","exchange":"N","type":"stock","description":"AOL Inc","shares":7123500},{"symbol":"FET","exchange":"N","type":"stock","description":"Forum Energy Technologies Inc","shares":6202600},{"symbol":"MX","exchange":"N","type":"stock","description":"Magnachip Semiconductor Corp","shares":1909500},{"symbol":"NLY","exchange":"N","type":"stock","description":"Annaly Capital Management Inc","shares":29564400},{"symbol":"WAT","exchange":"N","type":"stock","description":"Waters Corp","shares":6509400},{"symbol":"BFS","exchange":"N","type":"stock","description":"Saul Centers Inc","shares":293000},{"symbol":"BAX","exchange":"N","type":"stock","description":"Baxter International Inc","shares":33580000},{"symbol":"BKS","exchange":"N","type":"stock","description":"Barnes & Noble Inc","shares":4791500},{"symbol":"STFC","exchange":"Q","type":"stock","description":"State Auto Financial Corp","shares":2457000},{"symbol":"HUBS","exchange":"N","type":"stock","description":"HubSpot Inc","shares":64300},{"symbol":"AHS","exchange":"N","type":"stock","description":"AMN Healthcare Services Inc","shares":7234900},{"symbol":"MCY","exchange":"N","type":"stock","description":"Mercury General Corp","shares":1421700},{"symbol":"TXRH","exchange":"Q","type":"stock","description":"Texas Roadhouse Inc","shares":3021900},{"symbol":"CMRX","exchange":"Q","type":"stock","description":"Chimerix Inc","shares":441300},{"symbol":"AVP","exchange":"N","type":"stock","description":"Avon Products Inc","shares":41798100},{"symbol":"AVY","exchange":"N","type":"stock","description":"Avery Dennison Corp","shares":7249400},{"symbol":"VSTM","exchange":"Q","type":"stock","description":"Verastem Inc","shares":113000},{"symbol":"HRL","exchange":"N","type":"stock","description":"Hormel Foods Corp","shares":8332000},{"symbol":"ABAX","exchange":"Q","type":"stock","description":"Abaxis Inc","shares":599300},{"symbol":"AMRC","exchange":"N","type":"stock","description":"Ameresco, Inc.","shares":870200},{"symbol":"MERC","exchange":"Q","type":"stock","description":"Mercer International Inc","shares":2020400},{"symbol":"RNDY","exchange":"N","type":"stock","description":"Roundys Inc","shares":774200},{"symbol":"HAE","exchange":"N","type":"stock","description":"Haemonetics Corp","shares":3775900},{"symbol":"AIRM","exchange":"Q","type":"stock","description":"Air Methods Corp","shares":1268600},{"symbol":"LDRH","exchange":"Q","type":"stock","description":"LDR Holding Corp","shares":2141800},{"symbol":"EDGW","exchange":"Q","type":"stock","description":"Edgewater Technology Inc","shares":1329300},{"symbol":"CRRC","exchange":"Q","type":"stock","description":"Courier Corp","shares":1042400},{"symbol":"EXPR","exchange":"N","type":"stock","description":"Express, Inc.","shares":6147300},{"symbol":"WSR","exchange":"N","type":"stock","description":"Whitestone REIT","shares":314300},{"symbol":"UVE","exchange":"N","type":"stock","description":"Universal Insurance Holdings Inc","shares":2624700},{"symbol":"PCBK","exchange":"Q","type":"stock","description":"Pacific Continental Corp","shares":1147500},{"symbol":"MG","exchange":"N","type":"stock","description":"Mistras Group Inc","shares":1460400},{"symbol":"RAS","exchange":"N","type":"stock","description":"Rait Financial Trust","shares":1199200},{"symbol":"MCHP","exchange":"Q","type":"stock","description":"Microchip Technology Inc","shares":5414400},{"symbol":"AHP","exchange":"N","type":"stock","description":"Ashford Hospitality Prime, Inc.","shares":1740700},{"symbol":"FBNC","exchange":"Q","type":"stock","description":"First Bancorp","shares":1068100},{"symbol":"FB","exchange":"Q","type":"stock","description":"Facebook Inc","shares":134580200},{"symbol":"OMC","exchange":"N","type":"stock","description":"Omnicom Group Inc","shares":14283900},{"symbol":"PTSI","exchange":"Q","type":"stock","description":"P AM Transportation","shares":693800},{"symbol":"AEO","exchange":"N","type":"stock","description":"American Eagle Outfitters","shares":6699500},{"symbol":"XCRA","exchange":"Q","type":"stock","description":"Xcerra Corp","shares":8195800},{"symbol":"RWC","exchange":"A","type":"stock","description":"RELM Wireless Corp","shares":418200},{"symbol":"ANIP","exchange":"Q","type":"stock","description":"ANI Pharmaceuticals Inc","shares":356200},{"symbol":"FNFG","exchange":"Q","type":"stock","description":"First Niagara Financial Group Inc","shares":30043600},{"symbol":"EBSB","exchange":"Q","type":"stock","description":"Meridian Bancorp Inc","shares":1841000},{"symbol":"DSCI","exchange":"Q","type":"stock","description":"Derma Sciences Inc","shares":294500},{"symbol":"VMC","exchange":"N","type":"stock","description":"Vulcan Materials Co","shares":10751700},{"symbol":"SXL","exchange":"N","type":"stock","description":"Sunoco Logistics Partners LP","shares":1675300},{"symbol":"TG","exchange":"N","type":"stock","description":"Tredegar Corp","shares":3129000},{"symbol":"NCS","exchange":"N","type":"stock","description":"NCI Building Systems Inc","shares":3312500},{"symbol":"ADTN","exchange":"Q","type":"stock","description":"Adtran Inc","shares":4452300},{"symbol":"MLHR","exchange":"Q","type":"stock","description":"Herman Miller Inc","shares":4610700},{"symbol":"SPTN","exchange":"Q","type":"stock","description":"SpartanNash Company","shares":5601400},{"symbol":"SWN","exchange":"N","type":"stock","description":"Southwestern Energy Co","shares":26782200},{"symbol":"WSTG","exchange":"Q","type":"stock","description":"Wayside Technology Group Inc","shares":128400},{"symbol":"MDCO","exchange":"Q","type":"stock","description":"The Medicines Company","shares":8351800},{"symbol":"AAVL","exchange":"Q","type":"stock","description":"Avalanche Biotechnologies Inc","shares":91600},{"symbol":"TWO","exchange":"N","type":"stock","description":"Two Harbors Investment Corp","shares":17623200},{"symbol":"ZUMZ","exchange":"Q","type":"stock","description":"Zumiez Inc","shares":3168600},{"symbol":"MUR","exchange":"N","type":"stock","description":"Murphy Oil Corp","shares":12717800},{"symbol":"CEMP","exchange":"Q","type":"stock","description":"Cempra Inc","shares":340500},{"symbol":"BZH","exchange":"N","type":"stock","description":"Beazer Homes USA Inc","shares":1412700},{"symbol":"IVR","exchange":"N","type":"stock","description":"Invesco Mortgage Capital Inc","shares":3722100},{"symbol":"MTEX","exchange":"Q","type":"stock","description":"Mannatech Inc","shares":62300},{"symbol":"LEA","exchange":"N","type":"stock","description":"Lear Corp","shares":8499300},{"symbol":"LULU","exchange":"Q","type":"stock","description":"Lululemon Athletica Inc","shares":2693500},{"symbol":"MHO","exchange":"N","type":"stock","description":"M\/I Homes Inc","shares":3404500},{"symbol":"GEL","exchange":"N","type":"stock","description":"Genesis Energy LP","shares":691800},{"symbol":"DPLO","exchange":"N","type":"stock","description":"Diplomat Pharmacy Inc","shares":1681700},{"symbol":"BWEN","exchange":"Q","type":"stock","description":"Broadwind Energy Inc","shares":419100},{"symbol":"OCN","exchange":"N","type":"stock","description":"Ocwen Financial Corp","shares":149400},{"symbol":"TDW","exchange":"N","type":"stock","description":"Tidewater Inc","shares":1720300},{"symbol":"ADI","exchange":"Q","type":"stock","description":"Analog Devices Inc","shares":18379300},{"symbol":"NTIC","exchange":"Q","type":"stock","description":"Northern Technologies International Corp","shares":145100},{"symbol":"CNVR","exchange":"Q","type":"stock","description":"Conversant Inc","shares":724600},{"symbol":"AF","exchange":"N","type":"stock","description":"Astoria Financial Corporation","shares":11007700},{"symbol":"OMG","exchange":"N","type":"stock","description":"OM Group Inc","shares":3605500},{"symbol":"BGS","exchange":"N","type":"stock","description":"B&G Foods Inc","shares":2674100},{"symbol":"FARM","exchange":"Q","type":"stock","description":"Farmer Bros Co","shares":775900},{"symbol":"AAPL","exchange":"Q","type":"stock","description":"Apple Inc","shares":389880300},{"symbol":"ALCO","exchange":"Q","type":"stock","description":"Alico Inc","shares":164400},{"symbol":"FTEK","exchange":"Q","type":"stock","description":"Fuel Tech Inc","shares":177500},{"symbol":"FRS","exchange":"A","type":"stock","description":"Frisch's Restaurants Inc","shares":311900},{"symbol":"ADUS","exchange":"Q","type":"stock","description":"Addus HomeCare Corp","shares":875600},{"symbol":"TSO","exchange":"N","type":"stock","description":"Tesoro Corp","shares":11249500},{"symbol":"ITW","exchange":"N","type":"stock","description":"Illinois Tool Works Inc","shares":23025800},{"symbol":"COKE","exchange":"Q","type":"stock","description":"Coca-Cola Bottling Co Consolidated","shares":262300},{"symbol":"INTL","exchange":"Q","type":"stock","description":"INTL FCStone Inc","shares":938400},{"symbol":"FRNK","exchange":"Q","type":"stock","description":"Franklin Financial Corp","shares":163800},{"symbol":"APA","exchange":"N","type":"stock","description":"Apache Corporation","shares":33655300},{"symbol":"YRCW","exchange":"Q","type":"stock","description":"YRC Worldwide Inc","shares":44400},{"symbol":"AMIC","exchange":"Q","type":"stock","description":"American Independence Corp","shares":42400},{"symbol":"LO","exchange":"N","type":"stock","description":"Lorillard Inc","shares":24969500},{"symbol":"WCN","exchange":"N","type":"stock","description":"Waste Connections Inc","shares":11193000},{"symbol":"MWIV","exchange":"Q","type":"stock","description":"MWI Veterinary Supply Inc","shares":1151100},{"symbol":"EPE","exchange":"N","type":"stock","description":"EP Energy Corp","shares":423900},{"symbol":"REXR","exchange":"N","type":"stock","description":"Rexford Industrial Realty Inc","shares":3443300},{"symbol":"STE","exchange":"N","type":"stock","description":"Steris Corp","shares":1616700},{"symbol":"HOG","exchange":"N","type":"stock","description":"Harley-Davidson Inc","shares":18145900},{"symbol":"HGR","exchange":"N","type":"stock","description":"Hanger Inc","shares":2378600},{"symbol":"DDS","exchange":"N","type":"stock","description":"Dillards Inc","shares":2556500},{"symbol":"ALSN","exchange":"N","type":"stock","description":"Allison Transmission Holdings Inc","shares":8890900},{"symbol":"TFM","exchange":"Q","type":"stock","description":"Fresh Market Inc","shares":915400},{"symbol":"ATR","exchange":"N","type":"stock","description":"AptarGroup, Inc.","shares":3230600},{"symbol":"CEQP","exchange":"N","type":"stock","description":"Crestwood Equity Partners LP","shares":471200},{"symbol":"PNNT","exchange":"Q","type":"stock","description":"Pennant Park Investment Corporation","shares":756700},{"symbol":"JLA","exchange":"N","type":"stock","description":"Nuveen Equity Premium Advantage Fund","shares":40500},{"symbol":"NMIH","exchange":"Q","type":"stock","description":"NMI Holdings Inc","shares":101700},{"symbol":"KMT","exchange":"N","type":"stock","description":"Kennametal Inc","shares":4636800},{"symbol":"KBH","exchange":"N","type":"stock","description":"KB Home","shares":592500},{"symbol":"COR","exchange":"N","type":"stock","description":"CoreSite Realty Corp","shares":1591600},{"symbol":"NL","exchange":"N","type":"stock","description":"NL Industries Inc","shares":1078400},{"symbol":"FISI","exchange":"Q","type":"stock","description":"Financial Institutions Inc","shares":1431100},{"symbol":"AYI","exchange":"N","type":"stock","description":"Acuity Brands Inc","shares":2836300},{"symbol":"PPBI","exchange":"Q","type":"stock","description":"Pacific Premier Bancorp Inc","shares":1150400},{"symbol":"NEOG","exchange":"Q","type":"stock","description":"Neogen Corp","shares":3060600},{"symbol":"NBBC","exchange":"Q","type":"stock","description":"NewBridge Bancorp","shares":1260800},{"symbol":"IPAR","exchange":"Q","type":"stock","description":"Inter Parfums Inc","shares":2050100},{"symbol":"CTAS","exchange":"Q","type":"stock","description":"Cintas Corp","shares":5801200},{"symbol":"CHD","exchange":"N","type":"stock","description":"Church & Dwight Company, Inc.","shares":8865400},{"symbol":"HOMB","exchange":"Q","type":"stock","description":"Home BancShares Inc","shares":4019500},{"symbol":"DF","exchange":"N","type":"stock","description":"Dean Foods Co","shares":4759100},{"symbol":"ASEI","exchange":"Q","type":"stock","description":"American Science & Engineering Inc","shares":394000},{"symbol":"NATH","exchange":"Q","type":"stock","description":"Nathan's Famous Inc","shares":186200},{"symbol":"UFPI","exchange":"Q","type":"stock","description":"Universal Forest Products Inc","shares":2119800},{"symbol":"FRT","exchange":"N","type":"stock","description":"Federal Realty Investment Trust","shares":4826000},{"symbol":"FARO","exchange":"Q","type":"stock","description":"Faro Technologies Inc","shares":2037100},{"symbol":"SYUT","exchange":"Q","type":"stock","description":"Synutra International Inc","shares":57300},{"symbol":"HAL","exchange":"N","type":"stock","description":"Halliburton Co","shares":36967400},{"symbol":"SUN","exchange":"N","type":"stock","description":"Sunoco LP","shares":45500},{"symbol":"INGN","exchange":"Q","type":"stock","description":"Inogen Inc","shares":464800},{"symbol":"ZFC","exchange":"N","type":"stock","description":"ZAIS Financial Corp","shares":323400},{"symbol":"NSSC","exchange":"Q","type":"stock","description":"NAPCO Security Technologies Inc","shares":758200},{"symbol":"FFNM","exchange":"Q","type":"stock","description":"First Federal of Northern Michigan Bancorp Inc","shares":100900},{"symbol":"ASCMA","exchange":"Q","type":"stock","description":"Ascent Capital Group Inc","shares":1010600},{"symbol":"HTH","exchange":"N","type":"stock","description":"Hilltop Holdings Inc","shares":1819700},{"symbol":"MXWL","exchange":"Q","type":"stock","description":"Maxwell Technologies Inc","shares":179900},{"symbol":"WMGI","exchange":"Q","type":"stock","description":"Wright Medical Group Inc","shares":747300},{"symbol":"IL","exchange":"N","type":"stock","description":"IntraLinks Holdings Inc","shares":3509000},{"symbol":"ABCO","exchange":"Q","type":"stock","description":"The Advisory Board Co","shares":4779300},{"symbol":"TTI","exchange":"N","type":"stock","description":"Tetra Technologies Inc","shares":10005800},{"symbol":"SSNC","exchange":"Q","type":"stock","description":"SS&C Technologies Holdings Inc","shares":4153200},{"symbol":"MIDD","exchange":"Q","type":"stock","description":"The Middleby Corp","shares":3894900},{"symbol":"BRCM","exchange":"Q","type":"stock","description":"Broadcom Corp","shares":47149700},{"symbol":"CQH","exchange":"A","type":"stock","description":"Cheniere Energy Partners LP Holdings LLC","shares":5815700},{"symbol":"WLDN","exchange":"Q","type":"stock","description":"Willdan Group Inc","shares":305500},{"symbol":"TRVN","exchange":"Q","type":"stock","description":"Trevena Inc","shares":184500},{"symbol":"WAGE","exchange":"N","type":"stock","description":"WageWorks Inc","shares":3149200},{"symbol":"SLP","exchange":"Q","type":"stock","description":"Simulations Plus Inc","shares":52100},{"symbol":"MMS","exchange":"N","type":"stock","description":"Maximus Inc","shares":7533600},{"symbol":"TEP","exchange":"N","type":"stock","description":"Tallgrass Energy Partners LP","shares":749000},{"symbol":"CKH","exchange":"N","type":"stock","description":"Seacor Holdings Inc","shares":1111300},{"symbol":"SWC","exchange":"N","type":"stock","description":"Stillwater Mining Co","shares":5937700},{"symbol":"PAYC","exchange":"N","type":"stock","description":"Paycom Software Inc","shares":93500},{"symbol":"STRM","exchange":"Q","type":"stock","description":"Streamline Health Solutions Inc","shares":145000},{"symbol":"FTK","exchange":"N","type":"stock","description":"Flotek Industries Inc","shares":1986000},{"symbol":"MINI","exchange":"Q","type":"stock","description":"Mobile Mini Inc","shares":5943900},{"symbol":"COP","exchange":"N","type":"stock","description":"ConocoPhillips","shares":78601600},{"symbol":"AIQ","exchange":"Q","type":"stock","description":"Alliance HealthCare Services Inc","shares":496000},{"symbol":"HD","exchange":"N","type":"stock","description":"Home Depot Inc","shares":86258500},{"symbol":"CNAT","exchange":"Q","type":"stock","description":"Conatus Pharmaceuticals Inc","shares":55400},{"symbol":"PHM","exchange":"N","type":"stock","description":"PulteGroup Inc","shares":32132400},{"symbol":"PSDV","exchange":"Q","type":"stock","description":"pSivida Corp","shares":42600},{"symbol":"FBNK","exchange":"Q","type":"stock","description":"First Connecticut Bancorp Inc","shares":494600},{"symbol":"SUSQ","exchange":"Q","type":"stock","description":"Susquehanna Bancshares Inc","shares":4727800},{"symbol":"AMAT","exchange":"Q","type":"stock","description":"Applied Materials Inc","shares":102757300},{"symbol":"SRCL","exchange":"Q","type":"stock","description":"Stericycle Inc","shares":7796800},{"symbol":"MEG","exchange":"N","type":"stock","description":"Media General Inc","shares":113900},{"symbol":"PE","exchange":"N","type":"stock","description":"Parsley Energy Inc","shares":2019400},{"symbol":"CENX","exchange":"Q","type":"stock","description":"Century Aluminum Co","shares":7494500},{"symbol":"HZO","exchange":"N","type":"stock","description":"MarineMax Inc","shares":3583300},{"symbol":"LPT","exchange":"N","type":"stock","description":"Liberty Property Trust","shares":7094800},{"symbol":"FRED","exchange":"Q","type":"stock","description":"Fred's Inc","shares":3476400},{"symbol":"XOMA","exchange":"Q","type":"stock","description":"XOMA Corp","shares":485000},{"symbol":"IVAC","exchange":"Q","type":"stock","description":"Intevac Inc","shares":1750700},{"symbol":"ZTS","exchange":"N","type":"stock","description":"Zoetis Inc","shares":47136400},{"symbol":"TE","exchange":"N","type":"stock","description":"TECO Energy Inc","shares":8757200},{"symbol":"ACMP","exchange":"N","type":"stock","description":"Access Midstream Partners LP","shares":1044000},{"symbol":"REXI","exchange":"Q","type":"stock","description":"Resource America Inc","shares":1273600},{"symbol":"BOBE","exchange":"Q","type":"stock","description":"Bob Evans Farms Inc","shares":83000},{"symbol":"DST","exchange":"N","type":"stock","description":"DST Systems, Inc.","shares":3998000},{"symbol":"DRC","exchange":"N","type":"stock","description":"Dresser-Rand Group Inc","shares":3132000},{"symbol":"CAG","exchange":"N","type":"stock","description":"ConAgra Foods Inc","shares":33882400},{"symbol":"CSC","exchange":"N","type":"stock","description":"Computer Sciences Corp","shares":15894600},{"symbol":"FSBW","exchange":"Q","type":"stock","description":"FS Bancorp Inc","shares":46700},{"symbol":"FNHC","exchange":"Q","type":"stock","description":"Federated National Holding Co","shares":1212600},{"symbol":"ACXM","exchange":"Q","type":"stock","description":"Acxiom Corp","shares":7246400},{"symbol":"HTWR","exchange":"Q","type":"stock","description":"Heartware International Inc","shares":98000},{"symbol":"MTW","exchange":"N","type":"stock","description":"Manitowoc Co Inc","shares":1565400},{"symbol":"SWS","exchange":"N","type":"stock","description":"SWS Group Inc","shares":145300},{"symbol":"CHH","exchange":"N","type":"stock","description":"Choice Hotels International Inc","shares":1799300},{"symbol":"UTHR","exchange":"Q","type":"stock","description":"United Therapeutics Corp","shares":3047100},{"symbol":"PNC","exchange":"N","type":"stock","description":"PNC Financial Services Group Inc","shares":47254500},{"symbol":"PANW","exchange":"N","type":"stock","description":"Palo Alto Networks Inc","shares":4425400},{"symbol":"BEE","exchange":"N","type":"stock","description":"Strategic Hotels & Resorts Inc","shares":22083300},{"symbol":"CPE","exchange":"N","type":"stock","description":"Callon Petroleum Co","shares":6221000},{"symbol":"AIN","exchange":"N","type":"stock","description":"Albany International Corp","shares":3686900},{"symbol":"SCAI","exchange":"Q","type":"stock","description":"Surgical Care Affiliates Inc","shares":550400},{"symbol":"ACW","exchange":"N","type":"stock","description":"Accuride Corp","shares":3297900},{"symbol":"SYBT","exchange":"Q","type":"stock","description":"Stock Yards Bancorp Inc","shares":568100},{"symbol":"SMED","exchange":"Q","type":"stock","description":"Sharps Compliance Corp","shares":260500},{"symbol":"MIC","exchange":"N","type":"stock","description":"Macquarie Infrastructure Co LLC","shares":966500},{"symbol":"AXP","exchange":"N","type":"stock","description":"American Express Co","shares":61237300},{"symbol":"UIHC","exchange":"Q","type":"stock","description":"United Insurance Holdings Corp","shares":1396200},{"symbol":"OPLK","exchange":"Q","type":"stock","description":"Oplink Communications Inc","shares":2186400},{"symbol":"POZN","exchange":"Q","type":"stock","description":"POZEN Inc","shares":1451300},{"symbol":"PPS","exchange":"N","type":"stock","description":"Post Properties Inc","shares":5337700},{"symbol":"ISIS","exchange":"Q","type":"stock","description":"Isis Pharmaceuticals","shares":920900},{"symbol":"VRTU","exchange":"Q","type":"stock","description":"Virtusa Corp","shares":3614700},{"symbol":"TMHC","exchange":"N","type":"stock","description":"Taylor Morrison Home Corp","shares":3253900},{"symbol":"MTN","exchange":"N","type":"stock","description":"Vail Resorts Inc","shares":3445000},{"symbol":"GFF","exchange":"N","type":"stock","description":"Griffon Corp","shares":5225100},{"symbol":"Q","exchange":"N","type":"stock","description":"Quintiles Transnational Holdings Inc","shares":4800000},{"symbol":"GRUB","exchange":"N","type":"stock","description":"GrubHub Inc","shares":245600},{"symbol":"IOSP","exchange":"Q","type":"stock","description":"Innospec Inc","shares":2036900},{"symbol":"FMER","exchange":"Q","type":"stock","description":"Firstmerit Corp","shares":13956000},{"symbol":"AUXL","exchange":"Q","type":"stock","description":"Auxilium Pharmaceuticals Inc","shares":160100},{"symbol":"NWSA","exchange":"Q","type":"stock","description":"News Corp","shares":29985700},{"symbol":"CSWC","exchange":"Q","type":"stock","description":"Capital Southwest Corporation","shares":471100},{"symbol":"LEG","exchange":"N","type":"stock","description":"Leggett & Platt Inc","shares":4740700},{"symbol":"TSN","exchange":"N","type":"stock","description":"Tyson Foods Inc","shares":29098500},{"symbol":"TUES","exchange":"Q","type":"stock","description":"Tuesday Morning Corp","shares":3350000},{"symbol":"MUSA","exchange":"N","type":"stock","description":"Murphy USA Inc","shares":3610800},{"symbol":"MMM","exchange":"N","type":"stock","description":"3M Co","shares":37053200},{"symbol":"ROC","exchange":"N","type":"stock","description":"Rockwood Holdings Inc","shares":2800000},{"symbol":"WIRE","exchange":"Q","type":"stock","description":"Encore Wire Corp","shares":2067200},{"symbol":"SLAB","exchange":"Q","type":"stock","description":"Silicon Laboratories Inc","shares":4227000},{"symbol":"EMC","exchange":"N","type":"stock","description":"EMC Corp","shares":170819000},{"symbol":"ACRE","exchange":"N","type":"stock","description":"Ares Commercial Real Estate Corp","shares":1012400},{"symbol":"MRIN","exchange":"N","type":"stock","description":"Marin Software Inc","shares":949600},{"symbol":"HP","exchange":"N","type":"stock","description":"Helmerich & Payne Inc","shares":7856900},{"symbol":"DEPO","exchange":"Q","type":"stock","description":"DepoMed Inc","shares":7344100},{"symbol":"ANN","exchange":"N","type":"stock","description":"Ann Inc","shares":5134500},{"symbol":"AQXP","exchange":"Q","type":"stock","description":"Aquinox Pharmaceuticals Inc","shares":94600},{"symbol":"STRP","exchange":"A","type":"stock","description":"Straight Path Communications Inc","shares":362200},{"symbol":"ASBC","exchange":"Q","type":"stock","description":"Associated Banc-Corp","shares":10276100},{"symbol":"CVLT","exchange":"Q","type":"stock","description":"CommVault Systems Inc","shares":3862100},{"symbol":"SBFG","exchange":"Q","type":"stock","description":"SB Financial Group Inc","shares":54500},{"symbol":"DAVE","exchange":"Q","type":"stock","description":"Famous Dave's of America Inc","shares":198700},{"symbol":"WTR","exchange":"N","type":"stock","description":"Aqua America Inc","shares":6844800},{"symbol":"MPC","exchange":"N","type":"stock","description":"Marathon Petroleum Corp","shares":28474800},{"symbol":"JASN","exchange":"Q","type":"stock","description":"Jason Industries Inc","shares":380400},{"symbol":"AR","exchange":"N","type":"stock","description":"Antero Resources Corp","shares":1314400},{"symbol":"HCCI","exchange":"Q","type":"stock","description":"Heritage-Crystal Clean Inc","shares":957700},{"symbol":"FCF","exchange":"N","type":"stock","description":"First Commonwealth Financial Corp","shares":10821000},{"symbol":"BUSE","exchange":"Q","type":"stock","description":"First Busey Corp","shares":5157200},{"symbol":"UNTD","exchange":"Q","type":"stock","description":"United Online Inc","shares":1558500},{"symbol":"ARKR","exchange":"Q","type":"stock","description":"Ark Restaurants Corp","shares":133400},{"symbol":"CAR","exchange":"Q","type":"stock","description":"Avis Budget Group Inc","shares":8685500},{"symbol":"BGFV","exchange":"Q","type":"stock","description":"Big 5 Sporting Goods Corp","shares":1409800},{"symbol":"BABY","exchange":"Q","type":"stock","description":"Natus Medical Inc","shares":4752500},{"symbol":"WPZ","exchange":"N","type":"stock","description":"Williams Partners LP","shares":169800},{"symbol":"ARW","exchange":"N","type":"stock","description":"Arrow Electronics Inc","shares":11794000},{"symbol":"EMR","exchange":"N","type":"stock","description":"Emerson Electric Co","shares":42421400},{"symbol":"RFP","exchange":"N","type":"stock","description":"Resolute Forest Products Inc","shares":6815400},{"symbol":"SYNT","exchange":"Q","type":"stock","description":"Syntel Inc","shares":1693400},{"symbol":"HAYN","exchange":"Q","type":"stock","description":"Haynes International Inc","shares":1085300},{"symbol":"CBF","exchange":"Q","type":"stock","description":"Capital Bank Financial Corp","shares":2149600},{"symbol":"NFX","exchange":"N","type":"stock","description":"Newfield Exploration Co","shares":15088500},{"symbol":"ISIL","exchange":"Q","type":"stock","description":"Intersil Corporation","shares":14931000},{"symbol":"ACTA","exchange":"Q","type":"stock","description":"Actua Corp","shares":1817500},{"symbol":"CSG","exchange":"N","type":"stock","description":"Chambers Street Properties","shares":4402400},{"symbol":"DEI","exchange":"N","type":"stock","description":"Douglas Emmett Inc","shares":12317300},{"symbol":"CNSI","exchange":"Q","type":"stock","description":"Comverse Inc","shares":2259700},{"symbol":"ACAT","exchange":"Q","type":"stock","description":"Arctic Cat Inc","shares":1559300},{"symbol":"HSC","exchange":"N","type":"stock","description":"Harsco Corp","shares":7135800},{"symbol":"EFSC","exchange":"Q","type":"stock","description":"Enterprise Financial Services Corp","shares":1332700},{"symbol":"FF","exchange":"N","type":"stock","description":"FutureFuel Corp","shares":1953700},{"symbol":"GSM","exchange":"Q","type":"stock","description":"Globe Specialty Metals Inc","shares":5772700},{"symbol":"TMP","exchange":"A","type":"stock","description":"Tompkins Financial Corp","shares":767400},{"symbol":"HTLF","exchange":"Q","type":"stock","description":"Heartland Financial USA Inc","shares":681900},{"symbol":"PFG","exchange":"N","type":"stock","description":"Principal Financial Group","shares":16975800},{"symbol":"HHC","exchange":"N","type":"stock","description":"Howard Hughes Corp","shares":2110400},{"symbol":"MOD","exchange":"N","type":"stock","description":"Modine Manufacturing Co","shares":4407000},{"symbol":"GTY","exchange":"N","type":"stock","description":"Getty Realty Corp","shares":1015400},{"symbol":"CHRW","exchange":"Q","type":"stock","description":"CH Robinson Worldwide Inc","shares":9242100},{"symbol":"BXP","exchange":"N","type":"stock","description":"Boston Properties Inc","shares":14278400},{"symbol":"YDLE","exchange":"Q","type":"stock","description":"Yodlee Inc","shares":368100},{"symbol":"ROVI","exchange":"Q","type":"stock","description":"Rovi Corp","shares":11561400},{"symbol":"MSEX","exchange":"Q","type":"stock","description":"Middlesex Water Co","shares":687400},{"symbol":"PQ","exchange":"N","type":"stock","description":"Petroquest Energy Inc","shares":4977400},{"symbol":"NWBI","exchange":"Q","type":"stock","description":"Northwest Bancshares Inc","shares":7293600},{"symbol":"SNA","exchange":"N","type":"stock","description":"Snap-on Inc","shares":4543900},{"symbol":"SKYW","exchange":"Q","type":"stock","description":"SkyWest Inc","shares":6777500},{"symbol":"RTIX","exchange":"Q","type":"stock","description":"RTI Surgical Inc","shares":4388800},{"symbol":"DSPG","exchange":"Q","type":"stock","description":"DSP Group","shares":2574100},{"symbol":"ASNA","exchange":"Q","type":"stock","description":"Ascena Retail Group Inc","shares":16468600},{"symbol":"CPSI","exchange":"Q","type":"stock","description":"Computer Programs and Systems Inc","shares":638600},{"symbol":"PSTB","exchange":"Q","type":"stock","description":"Park Sterling Corp","shares":5525400},{"symbol":"COLB","exchange":"Q","type":"stock","description":"Columbia Banking System Inc","shares":7108800},{"symbol":"BLK","exchange":"N","type":"stock","description":"BlackRock Inc","shares":10597300},{"symbol":"STRZA","exchange":"Q","type":"stock","description":"Starz","shares":5327600},{"symbol":"TREE","exchange":"Q","type":"stock","description":"Tree.com Inc","shares":605100},{"symbol":"SEAS","exchange":"N","type":"stock","description":"SeaWorld Entertainment Inc","shares":4437000},{"symbol":"CAMP","exchange":"Q","type":"stock","description":"CalAmp Corp","shares":427000},{"symbol":"STRA","exchange":"Q","type":"stock","description":"Strayer Education Inc","shares":544900},{"symbol":"HVB","exchange":"N","type":"stock","description":"Hudson Valley Holding Corp","shares":484400},{"symbol":"HUBG","exchange":"Q","type":"stock","description":"Hub Group Inc","shares":4094300},{"symbol":"HSP","exchange":"N","type":"stock","description":"Hospira Inc","shares":13484000},{"symbol":"NX","exchange":"N","type":"stock","description":"Quanex Building Products Corp","shares":2798100},{"symbol":"KEX","exchange":"N","type":"stock","description":"Kirby Corp","shares":5209300},{"symbol":"NMFC","exchange":"N","type":"stock","description":"New Mountain Finance Corp","shares":378700},{"symbol":"TRIP","exchange":"Q","type":"stock","description":"TripAdvisor Inc","shares":9742900},{"symbol":"CTLT","exchange":"N","type":"stock","description":"Catalent Inc","shares":4875800},{"symbol":"TFX","exchange":"N","type":"stock","description":"Teleflex Inc","shares":2158500},{"symbol":"BBRG","exchange":"Q","type":"stock","description":"Bravo Brio Restaurant Group, Inc.","shares":1564000},{"symbol":"NHI","exchange":"N","type":"stock","description":"National Health Investors Inc","shares":1030900},{"symbol":"KVHI","exchange":"Q","type":"stock","description":"KVH Industries Inc","shares":2300600},{"symbol":"CFG","exchange":"N","type":"stock","description":"Citizens Financial Group Inc","shares":4813500},{"symbol":"OVTI","exchange":"Q","type":"stock","description":"OmniVision Technologies Inc","shares":6223500},{"symbol":"AKAO","exchange":"Q","type":"stock","description":"Achaogen Inc","shares":198600},{"symbol":"IMMU","exchange":"Q","type":"stock","description":"Immunomedics Inc","shares":137600},{"symbol":"MGAM","exchange":"Q","type":"stock","description":"Multimedia Games Holding Co Inc","shares":2023000},{"symbol":"CAKE","exchange":"Q","type":"stock","description":"Cheesecake Factory Inc","shares":2842400},{"symbol":"CHTR","exchange":"Q","type":"stock","description":"Charter Communications Inc","shares":3717600},{"symbol":"ORA","exchange":"N","type":"stock","description":"Ormat Technologies Inc","shares":743000},{"symbol":"COH","exchange":"N","type":"stock","description":"Coach Inc","shares":11718400},{"symbol":"CNA","exchange":"N","type":"stock","description":"CNA Financial Corp","shares":2538700},{"symbol":"SUNE","exchange":"N","type":"stock","description":"SunEdison Inc","shares":6499000},{"symbol":"BOOT","exchange":"N","type":"stock","description":"Boot Barn Holdings Inc","shares":116900},{"symbol":"INFI","exchange":"Q","type":"stock","description":"Infinity Pharmaceuticals Inc","shares":2374600},{"symbol":"DCOM","exchange":"Q","type":"stock","description":"Dime Community Bancshares Inc","shares":3392300},{"symbol":"FNB","exchange":"N","type":"stock","description":"F N B Corp","shares":11236000},{"symbol":"EXPO","exchange":"Q","type":"stock","description":"Exponent Inc","shares":969500},{"symbol":"NNI","exchange":"N","type":"stock","description":"Nelnet Inc","shares":2944100},{"symbol":"TCO","exchange":"N","type":"stock","description":"Taubman Centers Inc","shares":6020600},{"symbol":"TGT","exchange":"N","type":"stock","description":"Target Corp","shares":34072400},{"symbol":"STRL","exchange":"Q","type":"stock","description":"Sterling Construction Co Inc","shares":1672300},{"symbol":"ICFI","exchange":"Q","type":"stock","description":"ICF International Inc","shares":2303600},{"symbol":"OSTK","exchange":"Q","type":"stock","description":"Overstock.com Inc","shares":922100},{"symbol":"OSK","exchange":"N","type":"stock","description":"Oshkosh Corp","shares":6095000},{"symbol":"DNB","exchange":"N","type":"stock","description":"Dun & Bradstreet Corp","shares":2887000},{"symbol":"AMSG","exchange":"Q","type":"stock","description":"Amsurg Corp","shares":7063900},{"symbol":"KMX","exchange":"N","type":"stock","description":"CarMax Inc","shares":8629800},{"symbol":"CHGG","exchange":"N","type":"stock","description":"Chegg Inc","shares":56100},{"symbol":"WPP","exchange":"N","type":"stock","description":"Wausau Paper Corp","shares":2597700},{"symbol":"MS","exchange":"N","type":"stock","description":"Morgan Stanley","shares":153345200},{"symbol":"SYX","exchange":"N","type":"stock","description":"Systemax Inc","shares":1153100},{"symbol":"SNPS","exchange":"Q","type":"stock","description":"Synopsys Inc","shares":11152300},{"symbol":"AP","exchange":"N","type":"stock","description":"Ampco-Pittsburgh Corp","shares":1029600},{"symbol":"LAWS","exchange":"Q","type":"stock","description":"Lawson Products Inc","shares":655200},{"symbol":"WRB","exchange":"N","type":"stock","description":"WR Berkley Corp","shares":8955500},{"symbol":"RMAX","exchange":"N","type":"stock","description":"RE\/MAX Holdings Inc","shares":1024000},{"symbol":"CCMP","exchange":"Q","type":"stock","description":"Cabot Microelectronics Corp","shares":3012600},{"symbol":"CHFC","exchange":"Q","type":"stock","description":"Chemical Financial Corp","shares":2551900},{"symbol":"LFUS","exchange":"Q","type":"stock","description":"Littelfuse Inc","shares":2771100},{"symbol":"CNC","exchange":"N","type":"stock","description":"Centene Corp","shares":7663400},{"symbol":"BGCP","exchange":"Q","type":"stock","description":"BGC Partners Inc","shares":7807600},{"symbol":"SSI","exchange":"N","type":"stock","description":"Stage Stores Inc","shares":3463700},{"symbol":"PCTY","exchange":"Q","type":"stock","description":"Paylocity Holding Corp","shares":269000},{"symbol":"VALU","exchange":"Q","type":"stock","description":"Value Line, Inc.","shares":150700},{"symbol":"LPX","exchange":"N","type":"stock","description":"Louisiana-Pacific Corp","shares":8779600},{"symbol":"REV","exchange":"N","type":"stock","description":"Revlon Inc","shares":993900},{"symbol":"DHIL","exchange":"Q","type":"stock","description":"Diamond Hill Investment Group Inc","shares":152800},{"symbol":"DVN","exchange":"N","type":"stock","description":"Devon Energy Corp","shares":37161900},{"symbol":"PVH","exchange":"N","type":"stock","description":"PVH Corp","shares":8691500},{"symbol":"PSX","exchange":"N","type":"stock","description":"Phillips 66","shares":43745900},{"symbol":"ATSG","exchange":"Q","type":"stock","description":"Air Transport Services Group Inc","shares":6823500},{"symbol":"RT","exchange":"N","type":"stock","description":"Ruby Tuesday Inc","shares":7062300},{"symbol":"REGI","exchange":"Q","type":"stock","description":"Renewable Energy Group Inc","shares":2763300},{"symbol":"VTNR","exchange":"Q","type":"stock","description":"Vertex Energy Inc","shares":98900},{"symbol":"DXPE","exchange":"Q","type":"stock","description":"DXP Enterprises Inc","shares":890200},{"symbol":"MCF","exchange":"A","type":"stock","description":"Contango Oil & Gas Co","shares":1799100},{"symbol":"HEES","exchange":"Q","type":"stock","description":"H&E Equipment Services Inc","shares":4504400},{"symbol":"GCO","exchange":"N","type":"stock","description":"Genesco Inc","shares":3172700},{"symbol":"BGC","exchange":"N","type":"stock","description":"General Cable Corp","shares":5198200},{"symbol":"SQBK","exchange":"Q","type":"stock","description":"Square 1 Financial Inc","shares":1187200},{"symbol":"FDEF","exchange":"Q","type":"stock","description":"First Defiance Financial Corp","shares":888000},{"symbol":"TSQ","exchange":"N","type":"stock","description":"Townsquare Media Inc","shares":209200},{"symbol":"SCSS","exchange":"Q","type":"stock","description":"Select Comfort Corp","shares":5354500},{"symbol":"BMY","exchange":"N","type":"stock","description":"Bristol-Myers Squibb Company","shares":107532800},{"symbol":"NTI","exchange":"N","type":"stock","description":"Northern Tier Energy LP","shares":164100},{"symbol":"RNET","exchange":"Q","type":"stock","description":"RigNet Inc","shares":950300},{"symbol":"REI","exchange":"A","type":"stock","description":"Ring Energy Inc","shares":465200},{"symbol":"ALGN","exchange":"Q","type":"stock","description":"Align Technology Inc","shares":7363900},{"symbol":"ALXN","exchange":"Q","type":"stock","description":"Alexion Pharmaceuticals Inc","shares":19230300},{"symbol":"ARCB","exchange":"Q","type":"stock","description":"ArcBest Corp","shares":3765800},{"symbol":"GOV","exchange":"N","type":"stock","description":"Government Properties Income Trust","shares":2888400},{"symbol":"ATW","exchange":"N","type":"stock","description":"Atwood Oceanics Inc","shares":4902000},{"symbol":"IDT","exchange":"N","type":"stock","description":"IDT Corp","shares":1426700},{"symbol":"PFBI","exchange":"Q","type":"stock","description":"Premier Financial Bancorp Inc","shares":413700},{"symbol":"SALE","exchange":"Q","type":"stock","description":"RetailMeNot Inc","shares":120600},{"symbol":"NKE","exchange":"N","type":"stock","description":"Nike Inc","shares":55662700},{"symbol":"WGBS","exchange":"Q","type":"stock","description":"Wafergen Bio-systems Inc","shares":44000},{"symbol":"UTEK","exchange":"Q","type":"stock","description":"Ultratech Inc","shares":2670200},{"symbol":"UFPT","exchange":"Q","type":"stock","description":"UFP Technologies Inc","shares":198400},{"symbol":"QTWO","exchange":"N","type":"stock","description":"Q2 Holdings Inc","shares":729600},{"symbol":"MOFG","exchange":"Q","type":"stock","description":"MidWestOne Financial Group Inc","shares":181900},{"symbol":"UEIC","exchange":"Q","type":"stock","description":"Universal Electronics Inc","shares":2041700},{"symbol":"POR","exchange":"N","type":"stock","description":"Portland General Electric Co","shares":4845300},{"symbol":"TREX","exchange":"N","type":"stock","description":"Trex Co Inc","shares":2016800},{"symbol":"LDL","exchange":"N","type":"stock","description":"Lydall Inc","shares":2251400},{"symbol":"LTC","exchange":"N","type":"stock","description":"LTC Properties Inc","shares":2773100},{"symbol":"GGP","exchange":"N","type":"stock","description":"General Growth Properties Inc","shares":48653100},{"symbol":"BRC","exchange":"N","type":"stock","description":"Brady Corp","shares":4297500},{"symbol":"CRS","exchange":"N","type":"stock","description":"Carpenter Technology Corp","shares":2411300},{"symbol":"MRCY","exchange":"Q","type":"stock","description":"Mercury Systems Inc","shares":4581800},{"symbol":"A","exchange":"N","type":"stock","description":"Agilent Technologies Inc","shares":30552900},{"symbol":"CIE","exchange":"N","type":"stock","description":"Cobalt International Energy Inc","shares":21815600},{"symbol":"RTN","exchange":"N","type":"stock","description":"Raytheon Co","shares":21395200},{"symbol":"ADEP","exchange":"Q","type":"stock","description":"Adept Technology Inc","shares":695800},{"symbol":"MSFG","exchange":"Q","type":"stock","description":"MainSource Financial Group Inc","shares":1811700},{"symbol":"GABC","exchange":"Q","type":"stock","description":"German American Bancorp","shares":399700},{"symbol":"GNCA","exchange":"Q","type":"stock","description":"Genocea Biosciences Inc","shares":119800},{"symbol":"EE","exchange":"N","type":"stock","description":"El Paso Electric Co","shares":3119500},{"symbol":"CVTI","exchange":"Q","type":"stock","description":"Covenant Transportation Group Inc","shares":1397500},{"symbol":"CVS","exchange":"N","type":"stock","description":"CVS Health Corp","shares":104306900},{"symbol":"ESIO","exchange":"Q","type":"stock","description":"Electro Scientific Industries","shares":2802500},{"symbol":"HHS","exchange":"N","type":"stock","description":"Harte-Hanks Inc","shares":4528100},{"symbol":"DXR","exchange":"A","type":"stock","description":"Daxor Corp","shares":106300},{"symbol":"GLW","exchange":"N","type":"stock","description":"Corning Inc","shares":95027400},{"symbol":"SPLK","exchange":"Q","type":"stock","description":"Splunk Inc","shares":13677500},{"symbol":"SYKE","exchange":"Q","type":"stock","description":"Sykes Enterprises Inc","shares":6017600},{"symbol":"CCE","exchange":"N","type":"stock","description":"Coca-Cola Enterprises Inc","shares":17435700},{"symbol":"SAFT","exchange":"Q","type":"stock","description":"Safety Insurance Group Inc","shares":1420200},{"symbol":"HPP","exchange":"N","type":"stock","description":"Hudson Pacific Properties Inc","shares":4947500},{"symbol":"PACB","exchange":"Q","type":"stock","description":"Pacific Biosciences of California Inc","shares":1028600},{"symbol":"JMP","exchange":"N","type":"stock","description":"JMP Group Inc","shares":1065400},{"symbol":"HII","exchange":"N","type":"stock","description":"Huntington Ingalls Industries Inc","shares":4748600},{"symbol":"MEMP","exchange":"Q","type":"stock","description":"Memorial Production Partners LP","shares":256800},{"symbol":"OAK","exchange":"N","type":"stock","description":"Oaktree Capital Group LLC","shares":653500},{"symbol":"ECOL","exchange":"Q","type":"stock","description":"US Ecology Inc","shares":724200},{"symbol":"IMPV","exchange":"N","type":"stock","description":"Imperva Inc","shares":1356000},{"symbol":"KO","exchange":"N","type":"stock","description":"Coca-Cola Co","shares":221461100},{"symbol":"GPK","exchange":"N","type":"stock","description":"Graphic Packaging Holding Co","shares":33383100},{"symbol":"PGTI","exchange":"Q","type":"stock","description":"PGT Inc","shares":4259300},{"symbol":"AROW","exchange":"Q","type":"stock","description":"Arrow Financial Corporation","shares":299900},{"symbol":"INSY","exchange":"Q","type":"stock","description":"Insys Therapeutics Inc","shares":67900},{"symbol":"CPTA","exchange":"Q","type":"stock","description":"Capitala Finance Corp","shares":58500},{"symbol":"UEPS","exchange":"Q","type":"stock","description":"Net 1 Ueps Technologies Inc","shares":1318500},{"symbol":"AIMC","exchange":"Q","type":"stock","description":"Altra Industrial Motion Corp","shares":2663100},{"symbol":"SAGE","exchange":"Q","type":"stock","description":"Sage Therapeutics Inc","shares":257100},{"symbol":"MFRI","exchange":"Q","type":"stock","description":"MFRI Inc","shares":658100},{"symbol":"MMC","exchange":"N","type":"stock","description":"Marsh & McLennan Companies Inc","shares":53893100},{"symbol":"TECD","exchange":"Q","type":"stock","description":"Tech Data Corp","shares":5286200},{"symbol":"MMSI","exchange":"Q","type":"stock","description":"Merit Medical Systems Inc","shares":5025400},{"symbol":"HTS","exchange":"N","type":"stock","description":"Hatteras Financial Corp","shares":5538600},{"symbol":"INCY","exchange":"Q","type":"stock","description":"Incyte Corp Ltd","shares":8644400},{"symbol":"BJRI","exchange":"Q","type":"stock","description":"BJ's Restaurants Inc","shares":1449800},{"symbol":"PSEC","exchange":"Q","type":"stock","description":"Prospect Capital Corporation","shares":797500},{"symbol":"PGNX","exchange":"Q","type":"stock","description":"Progenics Pharmaceuticals Inc","shares":248700},{"symbol":"JLL","exchange":"N","type":"stock","description":"Jones Lang LaSalle Inc","shares":4273900},{"symbol":"ULTA","exchange":"Q","type":"stock","description":"Ulta Salon Cosmetics & Fragrances Inc","shares":6537200},{"symbol":"ED","exchange":"N","type":"stock","description":"Consolidated Edison Inc","shares":11911800},{"symbol":"UNM","exchange":"N","type":"stock","description":"Unum Group","shares":26267800},{"symbol":"TPUB","exchange":"N","type":"stock","description":"Tribune Publishing Co","shares":628200},{"symbol":"MHK","exchange":"N","type":"stock","description":"Mohawk Industries Inc","shares":4146200},{"symbol":"MFLX","exchange":"Q","type":"stock","description":"Multi-Fineline Electronix Inc","shares":921500},{"symbol":"WEYS","exchange":"Q","type":"stock","description":"Weyco Group Inc","shares":377000},{"symbol":"AIV","exchange":"N","type":"stock","description":"Apartment Investment & Management Company","shares":12086200},{"symbol":"RECN","exchange":"Q","type":"stock","description":"Resources Connection Inc","shares":4235900},{"symbol":"AXL","exchange":"N","type":"stock","description":"American Axle & Mfg Holdings Inc","shares":6561000},{"symbol":"DCI","exchange":"N","type":"stock","description":"Donaldson Co Inc","shares":3936800},{"symbol":"CCC","exchange":"N","type":"stock","description":"Calgon Carbon Corp","shares":5107400},{"symbol":"ARC","exchange":"N","type":"stock","description":"ARC Document Solutions Inc","shares":5074500},{"symbol":"ESL","exchange":"N","type":"stock","description":"Esterline Technologies","shares":3754900},{"symbol":"MNST","exchange":"Q","type":"stock","description":"Monster Beverage Corp","shares":17813700},{"symbol":"CY","exchange":"Q","type":"stock","description":"Cypress Semiconductor Corp","shares":2210300},{"symbol":"ADT","exchange":"N","type":"stock","description":"The ADT Corp","shares":2092300},{"symbol":"NGL","exchange":"N","type":"stock","description":"NGL Energy Partners LP","shares":577600},{"symbol":"TOF","exchange":"A","type":"stock","description":"Tofutti Brands Inc","shares":88100},{"symbol":"MNR","exchange":"N","type":"stock","description":"Monmouth Real Estate Investment Corp","shares":710500},{"symbol":"WYNN","exchange":"Q","type":"stock","description":"Wynn Resorts Ltd","shares":6923500},{"symbol":"AMNB","exchange":"Q","type":"stock","description":"American National Bankshares Inc","shares":198500},{"symbol":"NEO","exchange":"Q","type":"stock","description":"NeoGenomics Inc","shares":1652900},{"symbol":"TPH","exchange":"N","type":"stock","description":"TRI Pointe Homes Inc","shares":9229700},{"symbol":"VCRA","exchange":"N","type":"stock","description":"Vocera Communications Inc","shares":2704900},{"symbol":"LH","exchange":"N","type":"stock","description":"Laboratory Corp of America Hldgs","shares":5900200},{"symbol":"FVE","exchange":"N","type":"stock","description":"Five Star Quality Care Inc","shares":4955600},{"symbol":"TXN","exchange":"Q","type":"stock","description":"Texas Instruments Inc","shares":68020800},{"symbol":"POST","exchange":"N","type":"stock","description":"Post Holdings Inc","shares":579100},{"symbol":"AAT","exchange":"N","type":"stock","description":"American Assets Trust Inc","shares":2664700},{"symbol":"HW","exchange":"N","type":"stock","description":"Headwaters Inc","shares":8542600},{"symbol":"LYV","exchange":"N","type":"stock","description":"Live Nation Entertainment Inc","shares":20963200},{"symbol":"GAIA","exchange":"Q","type":"stock","description":"Gaiam Inc","shares":680000},{"symbol":"GM","exchange":"N","type":"stock","description":"General Motors Co","shares":90213500},{"symbol":"EBAY","exchange":"Q","type":"stock","description":"eBay Inc","shares":80155800},{"symbol":"EWBC","exchange":"Q","type":"stock","description":"East West Bancorp Inc","shares":14926700},{"symbol":"EPM","exchange":"A","type":"stock","description":"Evolution Petroleum Corp","shares":784500},{"symbol":"GES","exchange":"N","type":"stock","description":"Guess? Inc","shares":6425800},{"symbol":"CTS","exchange":"N","type":"stock","description":"CTS Corp","shares":4352500},{"symbol":"QUAD","exchange":"N","type":"stock","description":"Quad\/Graphics Inc","shares":1931600},{"symbol":"XYL","exchange":"N","type":"stock","description":"Xylem Inc","shares":12520300},{"symbol":"PENX","exchange":"Q","type":"stock","description":"Penford Corp","shares":865800},{"symbol":"EBTC","exchange":"Q","type":"stock","description":"Enterprise Bancorp, Inc.","shares":111800},{"symbol":"BEAT","exchange":"Q","type":"stock","description":"BioTelemetry Inc","shares":2410300},{"symbol":"WCIC","exchange":"N","type":"stock","description":"WCI Communities Inc","shares":357000},{"symbol":"IBKR","exchange":"Q","type":"stock","description":"Interactive Brokers Group Inc","shares":3107500},{"symbol":"PGEM","exchange":"N","type":"stock","description":"Ply Gem Holdings Inc","shares":870600},{"symbol":"EGBN","exchange":"Q","type":"stock","description":"Eagle Bancorp Inc","shares":1296700},{"symbol":"COO","exchange":"N","type":"stock","description":"Cooper Companies","shares":3618500},{"symbol":"SIMG","exchange":"Q","type":"stock","description":"Silicon Image Inc","shares":7593400},{"symbol":"SBCF","exchange":"Q","type":"stock","description":"Seacoast Banking Corp","shares":609300},{"symbol":"LAMR","exchange":"Q","type":"stock","description":"Lamar Advertising Co","shares":1414900},{"symbol":"PG","exchange":"N","type":"stock","description":"Procter & Gamble Co","shares":163665200},{"symbol":"ITC","exchange":"N","type":"stock","description":"ITC Holdings Corp","shares":5930800},{"symbol":"TIS","exchange":"A","type":"stock","description":"Orchids Paper Products Co","shares":320400},{"symbol":"ORCL","exchange":"N","type":"stock","description":"Oracle Corporation","shares":272475800},{"symbol":"KSU","exchange":"N","type":"stock","description":"Kansas City Southern Inc","shares":8674000},{"symbol":"LPNT","exchange":"Q","type":"stock","description":"LifePoint Hospitals Inc","shares":6592100},{"symbol":"ANCX","exchange":"Q","type":"stock","description":"Access National Corp","shares":281700},{"symbol":"LL","exchange":"N","type":"stock","description":"Lumber Liquidators Holdings Inc","shares":106300},{"symbol":"MELI","exchange":"Q","type":"stock","description":"Mercadolibre Inc","shares":500300},{"symbol":"ACET","exchange":"Q","type":"stock","description":"Aceto Corp","shares":3169900},{"symbol":"PAR","exchange":"N","type":"stock","description":"PAR Technology Corp","shares":891200},{"symbol":"MDVN","exchange":"Q","type":"stock","description":"Medivation Inc","shares":3516400},{"symbol":"VRSK","exchange":"Q","type":"stock","description":"Verisk Analytics Inc","shares":15848600},{"symbol":"SLCT","exchange":"Q","type":"stock","description":"Select Bancorp Inc","shares":68400},{"symbol":"CNNX","exchange":"N","type":"stock","description":"CONE Midstream Partners LP","shares":1018200},{"symbol":"PMC","exchange":"N","type":"stock","description":"Pharmerica Corp","shares":4640300},{"symbol":"WBC","exchange":"N","type":"stock","description":"Wabco Holdings Inc","shares":4868900},{"symbol":"HSTM","exchange":"Q","type":"stock","description":"HealthStream Inc","shares":1882600},{"symbol":"DEL","exchange":"N","type":"stock","description":"Deltic Timber Corp","shares":523200},{"symbol":"JCOM","exchange":"Q","type":"stock","description":"j2 Global Inc","shares":2798300},{"symbol":"ARCP","exchange":"Q","type":"stock","description":"American Realty Capital Properties Inc","shares":22568100},{"symbol":"DISCA","exchange":"Q","type":"stock","description":"Discovery Communications Inc","shares":14810200},{"symbol":"APO","exchange":"N","type":"stock","description":"Apollo Global Management LLC","shares":690100},{"symbol":"SN","exchange":"N","type":"stock","description":"Sanchez Energy Corp","shares":421700},{"symbol":"RLD","exchange":"N","type":"stock","description":"RealD Inc","shares":537000},{"symbol":"PBCT","exchange":"Q","type":"stock","description":"People's United Financial Inc","shares":7475700},{"symbol":"FOLD","exchange":"Q","type":"stock","description":"Amicus Therapeutics Inc","shares":910500},{"symbol":"SIRO","exchange":"Q","type":"stock","description":"Sirona Dental Systems Inc","shares":3884000},{"symbol":"ANSS","exchange":"Q","type":"stock","description":"Ansys Inc","shares":7659100},{"symbol":"SNHY","exchange":"Q","type":"stock","description":"Sun Hydraulics Corp","shares":1741800},{"symbol":"N","exchange":"N","type":"stock","description":"NetSuite Inc","shares":2070300},{"symbol":"IVC","exchange":"N","type":"stock","description":"Invacare Corp","shares":2724800},{"symbol":"RVNC","exchange":"Q","type":"stock","description":"Revance Therapeutics Inc","shares":760300},{"symbol":"UMH","exchange":"N","type":"stock","description":"UMH Properties Inc","shares":521200},{"symbol":"CALD","exchange":"Q","type":"stock","description":"Callidus Software Inc","shares":4313100},{"symbol":"HSKA","exchange":"Q","type":"stock","description":"Heska Corp","shares":165300},{"symbol":"ENS","exchange":"N","type":"stock","description":"EnerSys","shares":3712900},{"symbol":"AMC","exchange":"N","type":"stock","description":"AMC Entertainment Holdings Inc","shares":1668400},{"symbol":"MWE","exchange":"N","type":"stock","description":"MarkWest Energy Partners LP","shares":1842100},{"symbol":"PMFG","exchange":"Q","type":"stock","description":"PMFG Inc","shares":1950700},{"symbol":"BK","exchange":"N","type":"stock","description":"Bank of New York Mellon Corp","shares":87316000},{"symbol":"TIK","exchange":"A","type":"stock","description":"Tel Instrument Electronics Corp","shares":38500},{"symbol":"III","exchange":"Q","type":"stock","description":"Information Services Group Inc","shares":1298000},{"symbol":"PLNR","exchange":"Q","type":"stock","description":"Planar Systems Inc","shares":2826400},{"symbol":"COBZ","exchange":"Q","type":"stock","description":"CoBiz Financial Inc","shares":3956000},{"symbol":"ADSK","exchange":"Q","type":"stock","description":"Autodesk Inc","shares":19451000},{"symbol":"VOXX","exchange":"Q","type":"stock","description":"VOXX International Corp","shares":2432700},{"symbol":"HT","exchange":"N","type":"stock","description":"Hersha Hospitality Trust","shares":30975600},{"symbol":"ZEUS","exchange":"Q","type":"stock","description":"Olympic Steel Inc","shares":891200},{"symbol":"OVBC","exchange":"Q","type":"stock","description":"Ohio Valley Banc Corporation","shares":59400},{"symbol":"MKTX","exchange":"Q","type":"stock","description":"MarketAxess Holdings Inc","shares":3382800},{"symbol":"GOOD","exchange":"Q","type":"stock","description":"Gladstone Commercial Corp","shares":691800},{"symbol":"PPG","exchange":"N","type":"stock","description":"PPG Industries Inc","shares":11665400},{"symbol":"NYRT","exchange":"N","type":"stock","description":"New York REIT Inc","shares":707500},{"symbol":"PKI","exchange":"N","type":"stock","description":"PerkinElmer Inc","shares":7666500},{"symbol":"POM","exchange":"N","type":"stock","description":"Pepco Holdings Inc","shares":4203800},{"symbol":"LVNTA","exchange":"Q","type":"stock","description":"Liberty Ventures","shares":6226300},{"symbol":"XNPT","exchange":"Q","type":"stock","description":"XenoPort Inc","shares":2061700},{"symbol":"WSFS","exchange":"Q","type":"stock","description":"WSFS Financial Corp","shares":658800},{"symbol":"MXIM","exchange":"Q","type":"stock","description":"Maxim Integrated Products Inc","shares":15256900},{"symbol":"HTCH","exchange":"Q","type":"stock","description":"Hutchinson Technology","shares":1802700},{"symbol":"AGCO","exchange":"N","type":"stock","description":"AGCO Corp","shares":4311600},{"symbol":"ABTL","exchange":"Q","type":"stock","description":"Autobytel Inc","shares":583100},{"symbol":"INFN","exchange":"Q","type":"stock","description":"Infinera Corp","shares":5356700},{"symbol":"SRI","exchange":"N","type":"stock","description":"Stoneridge Inc","shares":3704800},{"symbol":"PIKE","exchange":"N","type":"stock","description":"Pike Corp","shares":3016300},{"symbol":"NUAN","exchange":"Q","type":"stock","description":"Nuance Communications Inc","shares":11057700},{"symbol":"ROG","exchange":"N","type":"stock","description":"Rogers Corp","shares":2889300},{"symbol":"BSRR","exchange":"Q","type":"stock","description":"Sierra Bancorp","shares":825100},{"symbol":"BRDR","exchange":"Q","type":"stock","description":"Borderfree Inc","shares":248800},{"symbol":"PBFX","exchange":"N","type":"stock","description":"PBF Logistics LP","shares":151100},{"symbol":"TMUS","exchange":"N","type":"stock","description":"T-Mobile US Inc","shares":16599600},{"symbol":"MHR","exchange":"N","type":"stock","description":"Magnum Hunter Resources Corporation","shares":497900},{"symbol":"LOCK","exchange":"N","type":"stock","description":"LifeLock Inc","shares":3017500},{"symbol":"SRCE","exchange":"Q","type":"stock","description":"1st Source Corp","shares":1872700},{"symbol":"SHOR","exchange":"Q","type":"stock","description":"ShoreTel Inc","shares":5741600},{"symbol":"CSII","exchange":"Q","type":"stock","description":"Cardiovascular Systems Inc","shares":2327000},{"symbol":"INWK","exchange":"Q","type":"stock","description":"InnerWorkings Inc","shares":3051700},{"symbol":"WMS","exchange":"N","type":"stock","description":"Advanced Drainage Systems Inc","shares":178800},{"symbol":"IMKTA","exchange":"Q","type":"stock","description":"Ingles Markets Inc","shares":1584700},{"symbol":"MN","exchange":"N","type":"stock","description":"Manning & Napier Inc","shares":1510000},{"symbol":"IFT","exchange":"N","type":"stock","description":"Imperial Holdings Inc","shares":519900},{"symbol":"EZPW","exchange":"Q","type":"stock","description":"EZCorp Inc","shares":1638000},{"symbol":"ACTG","exchange":"Q","type":"stock","description":"Acacia Research Corporation","shares":640300},{"symbol":"SBNY","exchange":"Q","type":"stock","description":"Signature Bank","shares":5214200},{"symbol":"HBNK","exchange":"Q","type":"stock","description":"Hampden Bancorp Inc","shares":211800},{"symbol":"SQBG","exchange":"Q","type":"stock","description":"Sequential Brands Group Inc","shares":419800},{"symbol":"SSB","exchange":"Q","type":"stock","description":"South State Corp","shares":857400},{"symbol":"PRIM","exchange":"Q","type":"stock","description":"Primoris Services Corp","shares":3159200},{"symbol":"LNC","exchange":"N","type":"stock","description":"Lincoln National Corp","shares":23713400},{"symbol":"LGND","exchange":"Q","type":"stock","description":"Ligand Pharmaceuticals Inc","shares":656200},{"symbol":"FRD","exchange":"A","type":"stock","description":"Friedman Industries Inc","shares":579100},{"symbol":"THST","exchange":"Q","type":"stock","description":"Truett-Hurst Inc","shares":355700},{"symbol":"CALM","exchange":"Q","type":"stock","description":"Cal-Maine Foods Inc","shares":278700},{"symbol":"HON","exchange":"N","type":"stock","description":"Honeywell International Inc","shares":79724900},{"symbol":"TRS","exchange":"Q","type":"stock","description":"TriMas Corp","shares":5595600},{"symbol":"CRI","exchange":"N","type":"stock","description":"Carter's Inc","shares":3000400},{"symbol":"BVX","exchange":"A","type":"stock","description":"Bovie Medical Corp","shares":56100},{"symbol":"CAS","exchange":"N","type":"stock","description":"A M Castle & Co","shares":333300},{"symbol":"RMCF","exchange":"Q","type":"stock","description":"Rocky Mountain Chocolate","shares":166400},{"symbol":"XEC","exchange":"N","type":"stock","description":"Cimarex Energy Co","shares":9023100},{"symbol":"WEN","exchange":"Q","type":"stock","description":"Wendy's Co","shares":18462000},{"symbol":"SEAC","exchange":"Q","type":"stock","description":"SeaChange International Inc","shares":4405600},{"symbol":"RNST","exchange":"Q","type":"stock","description":"Renasant Corp","shares":2454500},{"symbol":"FFIV","exchange":"Q","type":"stock","description":"F5 Networks Inc","shares":7697400},{"symbol":"ESRX","exchange":"Q","type":"stock","description":"Express Scripts","shares":48515100},{"symbol":"FOR","exchange":"N","type":"stock","description":"Forestar Group Inc","shares":3110400},{"symbol":"ANIK","exchange":"Q","type":"stock","description":"Anika Therapeutics Inc","shares":1538800},{"symbol":"ANDE","exchange":"Q","type":"stock","description":"Andersons Inc","shares":2585800},{"symbol":"MSCI","exchange":"N","type":"stock","description":"MSCI Inc","shares":13386300},{"symbol":"BSTC","exchange":"Q","type":"stock","description":"BioSpecifics Technologies Corp","shares":345300},{"symbol":"ALEX","exchange":"N","type":"stock","description":"Alexander & Baldwin Inc","shares":3283000},{"symbol":"AME","exchange":"N","type":"stock","description":"Ametek Inc","shares":23867200},{"symbol":"ABCB","exchange":"Q","type":"stock","description":"Ameris Bancorp","shares":1245800},{"symbol":"MBTF","exchange":"Q","type":"stock","description":"MBT Financial Corp","shares":759400},{"symbol":"USAP","exchange":"Q","type":"stock","description":"Universal Stainless & Alloy Products, Inc.","shares":1129100},{"symbol":"STR","exchange":"N","type":"stock","description":"Questar Corp","shares":15552100},{"symbol":"CLI","exchange":"N","type":"stock","description":"Mack-Cali Realty Corp","shares":6918500},{"symbol":"EV","exchange":"N","type":"stock","description":"Eaton Vance Corp","shares":8324600},{"symbol":"CEB","exchange":"N","type":"stock","description":"Corporate Executive Board Co","shares":4254900},{"symbol":"CMT","exchange":"A","type":"stock","description":"Core Molding Technologies Inc","shares":610300},{"symbol":"UBSI","exchange":"Q","type":"stock","description":"United Bankshares Inc","shares":1066700},{"symbol":"UNP","exchange":"N","type":"stock","description":"Union Pacific Corp","shares":69412900},{"symbol":"RYN","exchange":"N","type":"stock","description":"Rayonier Inc","shares":3784300},{"symbol":"PLL","exchange":"N","type":"stock","description":"Pall Corporation","shares":9219000},{"symbol":"AINV","exchange":"Q","type":"stock","description":"Apollo Investment Corp","shares":727000},{"symbol":"HRTX","exchange":"Q","type":"stock","description":"Heron Therapeutics Inc","shares":337300},{"symbol":"UG","exchange":"Q","type":"stock","description":"United-Guardian Inc","shares":95600},{"symbol":"CMA","exchange":"N","type":"stock","description":"Comerica Inc","shares":16285900},{"symbol":"THR","exchange":"N","type":"stock","description":"Thermon Group Holdings Inc","shares":3587500},{"symbol":"GWB","exchange":"N","type":"stock","description":"Great Western Bancorp Inc","shares":2169500},{"symbol":"SWM","exchange":"N","type":"stock","description":"Schweitzer-Mauduit International, Inc.","shares":2546100},{"symbol":"PFE","exchange":"N","type":"stock","description":"Pfizer Inc","shares":477032800},{"symbol":"NWPX","exchange":"Q","type":"stock","description":"Northwest Pipe Co","shares":1308300},{"symbol":"NFG","exchange":"N","type":"stock","description":"National Fuel Gas Co","shares":2449400},{"symbol":"TPX","exchange":"N","type":"stock","description":"Tempur Sealy International Inc","shares":4484800},{"symbol":"ABBV","exchange":"N","type":"stock","description":"AbbVie Inc","shares":105455200},{"symbol":"UTL","exchange":"N","type":"stock","description":"Unitil Corp","shares":994500},{"symbol":"IESC","exchange":"Q","type":"stock","description":"Integrated Electrical Services Inc","shares":432400},{"symbol":"PINC","exchange":"Q","type":"stock","description":"Premier Inc","shares":6988400},{"symbol":"PACW","exchange":"Q","type":"stock","description":"PacWest Bancorp","shares":9899000},{"symbol":"FBIZ","exchange":"Q","type":"stock","description":"First Business Financial Services Inc","shares":194200},{"symbol":"LHCG","exchange":"Q","type":"stock","description":"LHC Group Inc","shares":1145200},{"symbol":"LVLT","exchange":"N","type":"stock","description":"Level 3 Communications Inc","shares":17143200},{"symbol":"FELE","exchange":"Q","type":"stock","description":"Franklin Electric Co","shares":2355300},{"symbol":"COHU","exchange":"Q","type":"stock","description":"Cohu Inc","shares":3433100},{"symbol":"SPAN","exchange":"Q","type":"stock","description":"Span-America Medical","shares":138200},{"symbol":"JRN","exchange":"N","type":"stock","description":"Journal Communications Inc","shares":1584700},{"symbol":"CVGW","exchange":"Q","type":"stock","description":"Calavo Growers Inc","shares":1309200},{"symbol":"CDNS","exchange":"Q","type":"stock","description":"Cadence Design Systems Inc","shares":8899300},{"symbol":"HCOM","exchange":"Q","type":"stock","description":"Hawaiian Telcom Holdco Inc","shares":164300},{"symbol":"SUBK","exchange":"Q","type":"stock","description":"Suffolk Bancorp","shares":641300},{"symbol":"NVAX","exchange":"Q","type":"stock","description":"Novavax Inc","shares":874600},{"symbol":"DERM","exchange":"Q","type":"stock","description":"Dermira Inc","shares":174300},{"symbol":"HPT","exchange":"N","type":"stock","description":"Hospitality Properties Trust","shares":8920300},{"symbol":"HNH","exchange":"Q","type":"stock","description":"Handy & Harman Ltd","shares":158400},{"symbol":"CGNX","exchange":"Q","type":"stock","description":"Cognex Corp","shares":6139900},{"symbol":"MJN","exchange":"N","type":"stock","description":"Mead Johnson Nutrition Co","shares":22210600},{"symbol":"QLYS","exchange":"Q","type":"stock","description":"Qualys Inc","shares":1425700},{"symbol":"SVU","exchange":"N","type":"stock","description":"SUPERVALU Inc","shares":12462200},{"symbol":"ILMN","exchange":"Q","type":"stock","description":"Illumina Inc","shares":13309300},{"symbol":"PFS","exchange":"N","type":"stock","description":"Provident Financial Services Inc","shares":8176100},{"symbol":"EPR","exchange":"N","type":"stock","description":"EPR Properties","shares":4154300},{"symbol":"NPO","exchange":"N","type":"stock","description":"Enpro Industries Inc","shares":1816900},{"symbol":"HA","exchange":"Q","type":"stock","description":"Hawaiian Holdings Inc","shares":3657900},{"symbol":"HIG","exchange":"N","type":"stock","description":"Hartford Financial Services Group Inc","shares":41026500},{"symbol":"ISCA","exchange":"Q","type":"stock","description":"International Speedway Corp","shares":3383400},{"symbol":"ALK","exchange":"N","type":"stock","description":"Alaska Air Group Inc","shares":11687100},{"symbol":"GAS","exchange":"N","type":"stock","description":"AGL Resources Inc","shares":7163300},{"symbol":"TDC","exchange":"N","type":"stock","description":"Teradata Corp","shares":5416900},{"symbol":"VIA","exchange":"Q","type":"stock","description":"Viacom Inc","shares":577100},{"symbol":"MAN","exchange":"N","type":"stock","description":"ManpowerGroup","shares":7763700},{"symbol":"LBAI","exchange":"Q","type":"stock","description":"Lakeland Bancorp Inc","shares":930100},{"symbol":"TBI","exchange":"N","type":"stock","description":"Trueblue Inc","shares":7773700},{"symbol":"ROL","exchange":"N","type":"stock","description":"Rollins Inc","shares":4409500},{"symbol":"FPRX","exchange":"Q","type":"stock","description":"Five Prime Therapeutics Inc","shares":255800},{"symbol":"BOFI","exchange":"Q","type":"stock","description":"BofI Holding Inc","shares":581800},{"symbol":"STAA","exchange":"Q","type":"stock","description":"Staar Surgical","shares":964400},{"symbol":"PCL","exchange":"N","type":"stock","description":"Plum Creek Timber Co Inc","shares":5649700},{"symbol":"FORM","exchange":"Q","type":"stock","description":"FormFactor Inc","shares":6436500},{"symbol":"COB","exchange":"Q","type":"stock","description":"CommunityOne Bancorp","shares":43600},{"symbol":"VNO","exchange":"N","type":"stock","description":"Vornado Realty Trust","shares":8780600},{"symbol":"SPA","exchange":"N","type":"stock","description":"Sparton Corp","shares":923000},{"symbol":"PATK","exchange":"Q","type":"stock","description":"Patrick Industries Inc","shares":1035000},{"symbol":"RNWK","exchange":"Q","type":"stock","description":"RealNetworks Inc","shares":2896600},{"symbol":"MSA","exchange":"N","type":"stock","description":"MSA Safety Incorporated","shares":2340900},{"symbol":"VICR","exchange":"Q","type":"stock","description":"Vicor Corp","shares":760600},{"symbol":"NSH","exchange":"N","type":"stock","description":"NuStar GP Holdings LLC","shares":387800},{"symbol":"MRO","exchange":"N","type":"stock","description":"Marathon Oil Corp","shares":75810800},{"symbol":"PLAY","exchange":"Q","type":"stock","description":"Dave & Buster's Entertainment Inc","shares":421400},{"symbol":"AEGR","exchange":"Q","type":"stock","description":"Aegerion Pharmaceuticals Inc","shares":90900},{"symbol":"BDGE","exchange":"Q","type":"stock","description":"Bridge Bancorp Inc","shares":253000},{"symbol":"DWA","exchange":"Q","type":"stock","description":"Dreamworks Animation SKG Inc","shares":597200},{"symbol":"NHC","exchange":"A","type":"stock","description":"National Healthcare Corp","shares":574600},{"symbol":"EBMT","exchange":"Q","type":"stock","description":"Eagle Bancorp Montana Inc","shares":72100},{"symbol":"GNC","exchange":"N","type":"stock","description":"GNC Holdings Inc","shares":6226300},{"symbol":"DOC","exchange":"N","type":"stock","description":"Physicians Realty Trust","shares":5663600},{"symbol":"SABR","exchange":"Q","type":"stock","description":"Sabre Corporation","shares":805800},{"symbol":"EBF","exchange":"N","type":"stock","description":"Ennis Inc","shares":3210800},{"symbol":"IEC","exchange":"A","type":"stock","description":"IEC Electronics Corp","shares":480500},{"symbol":"WIFI","exchange":"Q","type":"stock","description":"Boingo Wireless Inc","shares":910400},{"symbol":"KIM","exchange":"N","type":"stock","description":"Kimco Realty Corp","shares":27440100},{"symbol":"KMPR","exchange":"N","type":"stock","description":"Kemper Corp","shares":4403500},{"symbol":"USM","exchange":"N","type":"stock","description":"United States Cellular Corp","shares":622200},{"symbol":"ETR","exchange":"N","type":"stock","description":"Entergy Corp","shares":16688400},{"symbol":"RRGB","exchange":"Q","type":"stock","description":"Red Robin Gourmet Burgers Inc","shares":1919400},{"symbol":"RYL","exchange":"N","type":"stock","description":"Ryland Group Inc","shares":3572600},{"symbol":"LUB","exchange":"N","type":"stock","description":"Luby's Inc","shares":1891700},{"symbol":"JAH","exchange":"N","type":"stock","description":"Jarden Corp","shares":14044400},{"symbol":"RPAI","exchange":"N","type":"stock","description":"Retail Properties of America Inc","shares":10470300},{"symbol":"HCP","exchange":"N","type":"stock","description":"HCP Inc","shares":13958100},{"symbol":"DECK","exchange":"N","type":"stock","description":"Deckers Outdoor Corp","shares":3008000},{"symbol":"VPG","exchange":"N","type":"stock","description":"Vishay Precision Group Inc","shares":1631300},{"symbol":"RVSB","exchange":"Q","type":"stock","description":"Riverview Bancorp Inc","shares":984400},{"symbol":"SUP","exchange":"N","type":"stock","description":"Superior Industries International","shares":2565300},{"symbol":"PETM","exchange":"Q","type":"stock","description":"PetSmart Inc","shares":5322300},{"symbol":"EGLT","exchange":"Q","type":"stock","description":"Egalet Corp","shares":1043300},{"symbol":"MCS","exchange":"N","type":"stock","description":"Marcus Corp","shares":2726500},{"symbol":"GIII","exchange":"Q","type":"stock","description":"G-III Apparel Group Ltd","shares":3257200},{"symbol":"COF","exchange":"N","type":"stock","description":"Capital One Financial Corp","shares":55165100},{"symbol":"O","exchange":"N","type":"stock","description":"Realty Income Corp","shares":796000},{"symbol":"EME","exchange":"N","type":"stock","description":"EMCOR Group, Inc.","shares":7006400},{"symbol":"WGP","exchange":"N","type":"stock","description":"Western Gas Equity Partners LP","shares":1517900},{"symbol":"CUNB","exchange":"Q","type":"stock","description":"CU Bancorp (CA)","shares":44800},{"symbol":"CTB","exchange":"N","type":"stock","description":"Cooper Tire & Rubber Co","shares":4605400},{"symbol":"SCOR","exchange":"Q","type":"stock","description":"comScore Inc","shares":2275700},{"symbol":"BIG","exchange":"N","type":"stock","description":"Big Lots Inc","shares":6678600},{"symbol":"OLP","exchange":"N","type":"stock","description":"One Liberty Properties Inc","shares":116600},{"symbol":"CBM","exchange":"N","type":"stock","description":"Cambrex Corp","shares":5567700},{"symbol":"CNSL","exchange":"Q","type":"stock","description":"Consolidated Communications Inc","shares":1092400},{"symbol":"SRE","exchange":"N","type":"stock","description":"Sempra Energy","shares":19283800},{"symbol":"SKUL","exchange":"Q","type":"stock","description":"Skullcandy Inc","shares":2288900},{"symbol":"IPHS","exchange":"Q","type":"stock","description":"Innophos Holdings Inc","shares":2221800},{"symbol":"NGVC","exchange":"N","type":"stock","description":"Natural Grocers by Vitamin Cottage Inc","shares":318700},{"symbol":"HUM","exchange":"N","type":"stock","description":"Humana Inc","shares":12953100},{"symbol":"NRZ","exchange":"N","type":"stock","description":"New Residential Investment Corp","shares":5907400},{"symbol":"THC","exchange":"N","type":"stock","description":"Tenet Healthcare Corp","shares":4039300},{"symbol":"ITT","exchange":"N","type":"stock","description":"ITT Corp","shares":8841900},{"symbol":"WDAY","exchange":"N","type":"stock","description":"Workday Inc","shares":8631800},{"symbol":"ACAS","exchange":"Q","type":"stock","description":"American Capital Ltd","shares":3539100},{"symbol":"TNDM","exchange":"Q","type":"stock","description":"Tandem Diabetes Care, Inc.","shares":667800},{"symbol":"CEVA","exchange":"Q","type":"stock","description":"CEVA Inc","shares":1667800},{"symbol":"UAL","exchange":"N","type":"stock","description":"United Continental Holdings Inc","shares":24258200},{"symbol":"GLT","exchange":"N","type":"stock","description":"PH Glatfelter Co","shares":6448100},{"symbol":"NOC","exchange":"N","type":"stock","description":"Northrop Grumman Corp","shares":16188700},{"symbol":"DSW","exchange":"N","type":"stock","description":"DSW Inc","shares":8948300},{"symbol":"DW","exchange":"N","type":"stock","description":"Drew Industries Inc","shares":2469800},{"symbol":"CTG","exchange":"Q","type":"stock","description":"Computer Task Group Inc","shares":999600},{"symbol":"ELX","exchange":"N","type":"stock","description":"Emulex Corp","shares":7943800},{"symbol":"QEPM","exchange":"N","type":"stock","description":"QEP Midstream Partners LP","shares":567400},{"symbol":"BNFT","exchange":"Q","type":"stock","description":"Benefitfocus Inc","shares":105000},{"symbol":"QVCA","exchange":"Q","type":"stock","description":"Liberty Interactive Corp","shares":33453600},{"symbol":"DIN","exchange":"N","type":"stock","description":"DineEquity Inc","shares":1689900},{"symbol":"SHLO","exchange":"Q","type":"stock","description":"Shiloh Industries Inc","shares":1215100},{"symbol":"PTEN","exchange":"Q","type":"stock","description":"Patterson-UTI Energy Inc","shares":16557700},{"symbol":"NJR","exchange":"N","type":"stock","description":"New Jersey Resources Corporation","shares":2079400},{"symbol":"TZOO","exchange":"Q","type":"stock","description":"Travelzoo Inc","shares":836400},{"symbol":"AMWD","exchange":"Q","type":"stock","description":"American Woodmark Corp","shares":1740600},{"symbol":"ADC","exchange":"N","type":"stock","description":"Agree Realty Corp","shares":1279600},{"symbol":"GHC","exchange":"N","type":"stock","description":"Graham Holdings Co","shares":282900},{"symbol":"TESS","exchange":"Q","type":"stock","description":"Tessco Technologies Inc","shares":491400},{"symbol":"TEN","exchange":"N","type":"stock","description":"Tenneco Inc","shares":5077600},{"symbol":"HCC","exchange":"N","type":"stock","description":"HCC Insurance Holdings Inc","shares":10495200},{"symbol":"HAS","exchange":"Q","type":"stock","description":"Hasbro Inc","shares":4939700},{"symbol":"SALM","exchange":"Q","type":"stock","description":"Salem Communications Corp","shares":1073200},{"symbol":"AMZN","exchange":"Q","type":"stock","description":"Amazon.com Inc","shares":30640100},{"symbol":"PCMI","exchange":"Q","type":"stock","description":"PCM Inc","shares":1560600},{"symbol":"NYT","exchange":"N","type":"stock","description":"New York Times Co","shares":3334000},{"symbol":"AETI","exchange":"Q","type":"stock","description":"American Electric Technologies Inc","shares":358800},{"symbol":"AMED","exchange":"Q","type":"stock","description":"Amedisys Inc","shares":1824100},{"symbol":"EGRX","exchange":"Q","type":"stock","description":"Eagle Pharmaceuticals Inc","shares":684500},{"symbol":"ODFL","exchange":"Q","type":"stock","description":"Old Dominion Freight Lines","shares":6798400},{"symbol":"ODP","exchange":"Q","type":"stock","description":"Office Depot Inc","shares":53498900},{"symbol":"FSLR","exchange":"Q","type":"stock","description":"First Solar Inc","shares":1347200},{"symbol":"FISV","exchange":"Q","type":"stock","description":"Fiserv Inc","shares":19935900},{"symbol":"MET","exchange":"N","type":"stock","description":"MetLife Inc","shares":97404800},{"symbol":"TWOU","exchange":"Q","type":"stock","description":"2U Inc","shares":1008200},{"symbol":"ATHN","exchange":"Q","type":"stock","description":"AthenaHealth Inc","shares":2440200},{"symbol":"YELP","exchange":"N","type":"stock","description":"Yelp Inc","shares":1832700},{"symbol":"TTGT","exchange":"Q","type":"stock","description":"TechTarget Inc","shares":1650200},{"symbol":"HOFT","exchange":"Q","type":"stock","description":"Hooker Furniture Corp","shares":1028500},{"symbol":"ANAT","exchange":"Q","type":"stock","description":"American National Insurance Company","shares":595500},{"symbol":"SMRT","exchange":"Q","type":"stock","description":"Stein Mart","shares":2798000},{"symbol":"ANH","exchange":"N","type":"stock","description":"Anworth Mortgage Asset Corp","shares":3312100},{"symbol":"CERU","exchange":"Q","type":"stock","description":"Cerulean Pharma Inc","shares":479900},{"symbol":"VVC","exchange":"N","type":"stock","description":"Vectren Corp","shares":4540600},{"symbol":"STBZ","exchange":"Q","type":"stock","description":"State Bank Financial Corp","shares":2364500},{"symbol":"VVI","exchange":"N","type":"stock","description":"Viad Corp","shares":3245100},{"symbol":"PLCE","exchange":"Q","type":"stock","description":"Children's Place Inc","shares":2353000},{"symbol":"MDRX","exchange":"Q","type":"stock","description":"Allscripts Healthcare Solutions Inc","shares":10633200},{"symbol":"HCT","exchange":"Q","type":"stock","description":"American Realty Capital Healthcare Trust Inc","shares":3111200},{"symbol":"TRST","exchange":"Q","type":"stock","description":"Trustco Bank Corp N Y","shares":4165700},{"symbol":"CZWI","exchange":"Q","type":"stock","description":"Citizens Community Bancorp Inc","shares":137200},{"symbol":"CNTY","exchange":"Q","type":"stock","description":"Century Casinos Inc","shares":916800},{"symbol":"IT","exchange":"N","type":"stock","description":"Gartner Inc","shares":8903800},{"symbol":"GBL","exchange":"N","type":"stock","description":"GAMCO Investors, Inc","shares":264600},{"symbol":"FIZZ","exchange":"Q","type":"stock","description":"National Beverage Corp","shares":1089300},{"symbol":"USG","exchange":"N","type":"stock","description":"USG Corp","shares":3043900},{"symbol":"OMN","exchange":"N","type":"stock","description":"Omnova Solutions Inc","shares":4892700},{"symbol":"CVRR","exchange":"N","type":"stock","description":"CVR Refining LP","shares":235500},{"symbol":"IPXL","exchange":"Q","type":"stock","description":"Impax Laboratories Inc","shares":5323600},{"symbol":"TCBI","exchange":"Q","type":"stock","description":"Texas Capital Bancshares Inc","shares":4692300},{"symbol":"TEX","exchange":"N","type":"stock","description":"Terex Corp","shares":6755400},{"symbol":"SLM","exchange":"Q","type":"stock","description":"SLM Corp","shares":51085300},{"symbol":"RF","exchange":"N","type":"stock","description":"Regions Financial Corp","shares":113621100},{"symbol":"AAME","exchange":"Q","type":"stock","description":"Atlantic American Corp","shares":502600},{"symbol":"ALOT","exchange":"Q","type":"stock","description":"Astro-Med Inc","shares":695700},{"symbol":"NATL","exchange":"Q","type":"stock","description":"National Interstate Corp","shares":375000},{"symbol":"PENN","exchange":"Q","type":"stock","description":"Penn National Gaming Inc","shares":2456500},{"symbol":"MD","exchange":"N","type":"stock","description":"Mednax Inc","shares":10059900},{"symbol":"VAR","exchange":"N","type":"stock","description":"Varian Medical Systems Inc","shares":3895900},{"symbol":"SAAS","exchange":"Q","type":"stock","description":"inContact Inc","shares":4355900},{"symbol":"MLAB","exchange":"Q","type":"stock","description":"Mesa Laboratories Inc","shares":51400},{"symbol":"OCC","exchange":"Q","type":"stock","description":"Optical Cable Corp","shares":377800},{"symbol":"IPHI","exchange":"N","type":"stock","description":"Inphi Corp","shares":2091800},{"symbol":"PZZA","exchange":"Q","type":"stock","description":"Papa John's International Inc","shares":2615700},{"symbol":"RRTS","exchange":"N","type":"stock","description":"Roadrunner Transportation Systems Inc","shares":3167400},{"symbol":"SFLY","exchange":"Q","type":"stock","description":"Shutterfly Inc","shares":1860600},{"symbol":"TSRO","exchange":"Q","type":"stock","description":"Tesaro Inc","shares":654800},{"symbol":"FBHS","exchange":"N","type":"stock","description":"Fortune Brands Home & Security Inc","shares":9267200},{"symbol":"UTI","exchange":"N","type":"stock","description":"Universal Technical Institute Inc","shares":1315800},{"symbol":"ARUN","exchange":"Q","type":"stock","description":"Aruba Networks Inc","shares":10104200},{"symbol":"AEL","exchange":"N","type":"stock","description":"American Equity Investment Life Holding Co","shares":9475700},{"symbol":"GAIN","exchange":"Q","type":"stock","description":"Gladstone Investment Corporation","shares":547300},{"symbol":"NBCB","exchange":"Q","type":"stock","description":"First NBC Bank Holding Co","shares":1643600},{"symbol":"ATO","exchange":"N","type":"stock","description":"Atmos Energy Corp","shares":6592100},{"symbol":"BAS","exchange":"N","type":"stock","description":"Basic Energy Services Inc","shares":4159400},{"symbol":"CCOI","exchange":"Q","type":"stock","description":"Cogent Communications Holdings Inc","shares":4691500},{"symbol":"HLX","exchange":"N","type":"stock","description":"Helix Energy Solutions Group Inc","shares":15032600},{"symbol":"COG","exchange":"N","type":"stock","description":"Cabot Oil & Gas Corp","shares":30343200},{"symbol":"CEMI","exchange":"Q","type":"stock","description":"Chembio Diagnostics Inc","shares":104500},{"symbol":"NUTR","exchange":"Q","type":"stock","description":"Nutraceutical International Corp","shares":1003500},{"symbol":"HOT","exchange":"N","type":"stock","description":"Starwood Hotels & Resorts Worldwide Inc","shares":16150800},{"symbol":"AEPI","exchange":"Q","type":"stock","description":"AEP Industries Inc","shares":245000},{"symbol":"SEMG","exchange":"N","type":"stock","description":"Semgroup Corp","shares":4817600},{"symbol":"FCBC","exchange":"Q","type":"stock","description":"First Community Bancshares Inc","shares":1496700},{"symbol":"MCC","exchange":"N","type":"stock","description":"Medley Capital Corp","shares":359200},{"symbol":"COMM","exchange":"Q","type":"stock","description":"CommScope Holding Co Inc","shares":4319900},{"symbol":"IBM","exchange":"N","type":"stock","description":"International Business Machines Corp","shares":48211300},{"symbol":"BTU","exchange":"N","type":"stock","description":"Peabody Energy Corp","shares":2366700},{"symbol":"TRAK","exchange":"Q","type":"stock","description":"Dealertrack Technologies Inc","shares":5058100},{"symbol":"SREV","exchange":"Q","type":"stock","description":"ServiceSource International Inc","shares":2141500},{"symbol":"SQI","exchange":"Q","type":"stock","description":"SciQuest Inc","shares":1989800},{"symbol":"GLF","exchange":"N","type":"stock","description":"GulfMark Offshore Inc","shares":907500},{"symbol":"CUTR","exchange":"Q","type":"stock","description":"Cutera Inc","shares":1100900},{"symbol":"CFR","exchange":"N","type":"stock","description":"Cullen\/Frost Bankers Inc","shares":1814500},{"symbol":"CTXS","exchange":"Q","type":"stock","description":"Citrix Systems Inc","shares":18214700},{"symbol":"EQY","exchange":"N","type":"stock","description":"Equity One Inc","shares":5825900},{"symbol":"LTM","exchange":"N","type":"stock","description":"Life Time Fitness Inc","shares":2578100},{"symbol":"ETM","exchange":"N","type":"stock","description":"Entercom Communications Corp","shares":1621200},{"symbol":"RL","exchange":"N","type":"stock","description":"Ralph Lauren Corp","shares":5300100},{"symbol":"PES","exchange":"N","type":"stock","description":"Pioneer Energy Services Corp","shares":10365500},{"symbol":"PDCE","exchange":"Q","type":"stock","description":"PDC Energy Inc","shares":5635200},{"symbol":"NU","exchange":"N","type":"stock","description":"Northeast Utilities","shares":19992000},{"symbol":"CHK","exchange":"N","type":"stock","description":"Chesapeake Energy Corp","shares":35727900},{"symbol":"CONE","exchange":"Q","type":"stock","description":"CyrusOne Inc","shares":2291600},{"symbol":"CRVL","exchange":"Q","type":"stock","description":"CorVel Corp","shares":1265400},{"symbol":"EQR","exchange":"N","type":"stock","description":"Equity Residential","shares":31834400},{"symbol":"PLUS","exchange":"Q","type":"stock","description":"Eplus Inc","shares":820800},{"symbol":"IDCC","exchange":"Q","type":"stock","description":"InterDigital Inc","shares":1367600},{"symbol":"AMCX","exchange":"Q","type":"stock","description":"AMC Networks Inc","shares":4106000},{"symbol":"R","exchange":"N","type":"stock","description":"Ryder System Inc","shares":6040200},{"symbol":"PRGS","exchange":"Q","type":"stock","description":"Progress Software Corporation","shares":5315000},{"symbol":"TASR","exchange":"Q","type":"stock","description":"Taser International Inc","shares":307100},{"symbol":"CHS","exchange":"N","type":"stock","description":"Chico's FAS Inc","shares":10974900},{"symbol":"LXU","exchange":"N","type":"stock","description":"LSB Industries Inc","shares":1578300},{"symbol":"GE","exchange":"N","type":"stock","description":"General Electric Co","shares":561319500},{"symbol":"GENC","exchange":"Q","type":"stock","description":"Gencor Industries Inc","shares":147600},{"symbol":"VSH","exchange":"N","type":"stock","description":"Vishay Intertechnology Inc","shares":9989500},{"symbol":"MAIN","exchange":"N","type":"stock","description":"Main Street Capital Corporation","shares":214600},{"symbol":"MCRL","exchange":"Q","type":"stock","description":"Micrel Inc","shares":4157300},{"symbol":"WTFC","exchange":"Q","type":"stock","description":"Wintrust Financial Corp","shares":7131800},{"symbol":"CVEO","exchange":"N","type":"stock","description":"Civeo Corp","shares":4575300},{"symbol":"CYBX","exchange":"Q","type":"stock","description":"Cyberonics Inc","shares":2976200},{"symbol":"CSS","exchange":"N","type":"stock","description":"CSS Industries Inc","shares":1193100},{"symbol":"NILE","exchange":"Q","type":"stock","description":"Blue Nile Inc","shares":1749700},{"symbol":"USLM","exchange":"Q","type":"stock","description":"United States Lime & Minerals Inc","shares":174800},{"symbol":"OME","exchange":"N","type":"stock","description":"Omega Protein Corp","shares":2935900},{"symbol":"LOPE","exchange":"Q","type":"stock","description":"Grand Canyon Education Inc","shares":5216900},{"symbol":"MFRM","exchange":"Q","type":"stock","description":"Mattress Firm Holding Corp","shares":245600},{"symbol":"ACAD","exchange":"Q","type":"stock","description":"ACADIA Pharmaceuticals Inc","shares":1541800},{"symbol":"RTEC","exchange":"N","type":"stock","description":"Rudolph Technologies Inc","shares":4963000},{"symbol":"RGLD","exchange":"Q","type":"stock","description":"Royal Gold Inc","shares":4275500},{"symbol":"KMB","exchange":"N","type":"stock","description":"Kimberly-Clark Corp","shares":23103700},{"symbol":"IDTI","exchange":"Q","type":"stock","description":"Integrated Device Technology Inc","shares":18010400},{"symbol":"IIIN","exchange":"Q","type":"stock","description":"Insteel Industries Inc","shares":1639200},{"symbol":"MWA","exchange":"N","type":"stock","description":"Mueller Water Products, Inc.","shares":17026300},{"symbol":"CHMI","exchange":"N","type":"stock","description":"Cherry Hill Mortgage Investment Corp","shares":92700},{"symbol":"SHLM","exchange":"Q","type":"stock","description":"A Schulman Inc","shares":4641800},{"symbol":"L","exchange":"N","type":"stock","description":"Loews Corp","shares":20093500},{"symbol":"NOW","exchange":"N","type":"stock","description":"ServiceNow Inc","shares":11996300},{"symbol":"CODI","exchange":"N","type":"stock","description":"Compass Diversified Holdings","shares":72100},{"symbol":"MON","exchange":"N","type":"stock","description":"Monsanto Co","shares":36376900},{"symbol":"MCRI","exchange":"Q","type":"stock","description":"Monarch Casino & Resort Inc","shares":1162600},{"symbol":"BKU","exchange":"N","type":"stock","description":"BankUnited Inc","shares":12777400},{"symbol":"PKT","exchange":"Q","type":"stock","description":"Procera Networks Inc","shares":192300},{"symbol":"TLYS","exchange":"N","type":"stock","description":"Tilly's Inc","shares":1338900},{"symbol":"RGA","exchange":"N","type":"stock","description":"Reinsurance Group of America Inc","shares":6833700},{"symbol":"NCIT","exchange":"Q","type":"stock","description":"NCI Inc","shares":512700},{"symbol":"ETH","exchange":"N","type":"stock","description":"Ethan Allen Interiors Inc","shares":1628600},{"symbol":"TISI","exchange":"N","type":"stock","description":"Team Inc","shares":2096800},{"symbol":"TTMI","exchange":"Q","type":"stock","description":"TTM Technologies Inc","shares":6489800},{"symbol":"FCS","exchange":"Q","type":"stock","description":"Fairchild Semiconductor International Inc","shares":18476900},{"symbol":"XOM","exchange":"N","type":"stock","description":"Exxon Mobil Corporation","shares":237965900},{"symbol":"SGEN","exchange":"Q","type":"stock","description":"Seattle Genetics Inc","shares":1761300},{"symbol":"CSH","exchange":"N","type":"stock","description":"Cash America International Inc","shares":3074600},{"symbol":"ADPT","exchange":"N","type":"stock","description":"Adeptus Health Inc","shares":302300},{"symbol":"BANR","exchange":"Q","type":"stock","description":"Banner Corp","shares":2519600},{"symbol":"ZBRA","exchange":"Q","type":"stock","description":"Zebra Technologies Corp","shares":4645800},{"symbol":"WDR","exchange":"N","type":"stock","description":"Waddell & Reed Financial, Inc.","shares":7051600},{"symbol":"FSS","exchange":"N","type":"stock","description":"Federal Signal Corp","shares":6850100},{"symbol":"FAST","exchange":"Q","type":"stock","description":"Fastenal Co","shares":5427900},{"symbol":"JCI","exchange":"N","type":"stock","description":"Johnson Controls Inc","shares":40118500},{"symbol":"PAY","exchange":"N","type":"stock","description":"VeriFone Systems Inc","shares":8170700},{"symbol":"EMN","exchange":"N","type":"stock","description":"Eastman Chemical Co","shares":15106000},{"symbol":"FITB","exchange":"Q","type":"stock","description":"Fifth Third Bancorp","shares":72773600},{"symbol":"ACFC","exchange":"Q","type":"stock","description":"Atlantic Coast Financial Corp","shares":229200},{"symbol":"HFC","exchange":"N","type":"stock","description":"HollyFrontier Corp","shares":9060300},{"symbol":"PEBO","exchange":"Q","type":"stock","description":"Peoples Bancorp Inc (Marietta OH)","shares":880800},{"symbol":"IBCA","exchange":"Q","type":"stock","description":"Intervest Bancshares Corp","shares":681800},{"symbol":"CRM","exchange":"N","type":"stock","description":"Salesforce.com Inc","shares":50472700},{"symbol":"RPXC","exchange":"Q","type":"stock","description":"RPX Corp","shares":6926300},{"symbol":"VAL","exchange":"N","type":"stock","description":"Valspar Corp","shares":4698200},{"symbol":"EDR","exchange":"N","type":"stock","description":"Education Realty Trust Inc","shares":10592400},{"symbol":"CRAI","exchange":"Q","type":"stock","description":"CRA International, Inc.","shares":1526100},{"symbol":"CVA","exchange":"N","type":"stock","description":"Covanta Holding Corp","shares":8423100},{"symbol":"RAI","exchange":"N","type":"stock","description":"Reynolds American Inc","shares":25345900},{"symbol":"BBNK","exchange":"Q","type":"stock","description":"Bridge Capital Holdings","shares":479000},{"symbol":"CCG","exchange":"N","type":"stock","description":"Campus Crest Communities Inc","shares":2057500},{"symbol":"RLYP","exchange":"Q","type":"stock","description":"Relypsa Inc","shares":249900},{"symbol":"DPZ","exchange":"N","type":"stock","description":"Domino's Pizza Inc","shares":1994400},{"symbol":"CVGI","exchange":"Q","type":"stock","description":"Commercial Vehicle Group Inc","shares":2601500},{"symbol":"CBSH","exchange":"Q","type":"stock","description":"Commerce Bancshares Inc","shares":3203900},{"symbol":"INDB","exchange":"Q","type":"stock","description":"Independent Bank Corp","shares":731400},{"symbol":"CZNC","exchange":"Q","type":"stock","description":"Citizens and Northern Corp","shares":205000},{"symbol":"CHUY","exchange":"Q","type":"stock","description":"Chuy's Holdings Inc","shares":1050300},{"symbol":"STL","exchange":"N","type":"stock","description":"Sterling Bancorp","shares":2919500},{"symbol":"SAEX","exchange":"Q","type":"stock","description":"SAExploration Holdings Inc","shares":121100},{"symbol":"WLFC","exchange":"Q","type":"stock","description":"Willis Lease Finance Corp","shares":1001600},{"symbol":"DK","exchange":"N","type":"stock","description":"Delek US Holdings Inc","shares":5801600},{"symbol":"UNFI","exchange":"Q","type":"stock","description":"United Natural Foods Inc","shares":3818600},{"symbol":"OC","exchange":"N","type":"stock","description":"Owens-Corning Inc","shares":11943400},{"symbol":"OSIS","exchange":"Q","type":"stock","description":"OSI Systems Inc","shares":1513800},{"symbol":"GTI","exchange":"N","type":"stock","description":"GrafTech International Ltd","shares":11564900},{"symbol":"DMND","exchange":"Q","type":"stock","description":"Diamond Foods Inc","shares":2391600},{"symbol":"DDR","exchange":"N","type":"stock","description":"DDR Corp","shares":18610800},{"symbol":"ECR","exchange":"N","type":"stock","description":"Eclipse Resources Corp","shares":122700},{"symbol":"AET","exchange":"N","type":"stock","description":"Aetna Inc","shares":33848900},{"symbol":"BLUE","exchange":"Q","type":"stock","description":"bluebird bio Inc","shares":835200},{"symbol":"RJF","exchange":"N","type":"stock","description":"Raymond James Financial Inc","shares":12471300},{"symbol":"RPT","exchange":"N","type":"stock","description":"Ramco-Gershenson Properties Trust","shares":7827400},{"symbol":"BWC","exchange":"N","type":"stock","description":"Babcock & Wilcox Co","shares":6889000},{"symbol":"PWOD","exchange":"Q","type":"stock","description":"Penns Woods Bancorp Inc","shares":142600},{"symbol":"FCN","exchange":"N","type":"stock","description":"FTI Consulting Inc","shares":4645800},{"symbol":"SFM","exchange":"Q","type":"stock","description":"Sprouts Farmers Market Inc","shares":5903500},{"symbol":"PRXL","exchange":"Q","type":"stock","description":"Parexel International Corp","shares":4621900},{"symbol":"PTRY","exchange":"Q","type":"stock","description":"Pantry Inc","shares":3807100},{"symbol":"NTCT","exchange":"Q","type":"stock","description":"NetScout Systems Inc","shares":2482200},{"symbol":"WAL","exchange":"N","type":"stock","description":"Western Alliance Bancorp","shares":9460400},{"symbol":"MAA","exchange":"N","type":"stock","description":"Mid-America Apartment Communities","shares":5981800},{"symbol":"NEWP","exchange":"Q","type":"stock","description":"Newport Corp","shares":6585600},{"symbol":"PBF","exchange":"N","type":"stock","description":"PBF Energy Inc","shares":4208900},{"symbol":"BID","exchange":"N","type":"stock","description":"Sothebys","shares":1955900},{"symbol":"RVP","exchange":"A","type":"stock","description":"Retractable Technologies Inc","shares":44700},{"symbol":"ENR","exchange":"N","type":"stock","description":"Energizer Holdings Inc","shares":4821400},{"symbol":"DWSN","exchange":"Q","type":"stock","description":"Dawson Geophysical Co","shares":819800},{"symbol":"TUMI","exchange":"N","type":"stock","description":"Tumi Holdings Inc","shares":2441100},{"symbol":"HIW","exchange":"N","type":"stock","description":"Highwoods Properties Inc","shares":5877100},{"symbol":"BRSS","exchange":"N","type":"stock","description":"Global Brass & Copper Holdings Inc","shares":1480900},{"symbol":"CPT","exchange":"N","type":"stock","description":"Camden Property Trust","shares":7946400},{"symbol":"RICE","exchange":"N","type":"stock","description":"Rice Energy Inc","shares":3579700},{"symbol":"NSIT","exchange":"Q","type":"stock","description":"Insight Enterprises Inc","shares":8069600},{"symbol":"MSI","exchange":"N","type":"stock","description":"Motorola Solutions Inc","shares":11441300},{"symbol":"KTCC","exchange":"Q","type":"stock","description":"Key Tronic Corp","shares":1900500},{"symbol":"MNRO","exchange":"Q","type":"stock","description":"Monro Muffler Brake Inc","shares":2337300},{"symbol":"MIND","exchange":"Q","type":"stock","description":"Mitcham Industries Inc","shares":1392500},{"symbol":"RAX","exchange":"N","type":"stock","description":"Rackspace Hosting Inc","shares":4018200},{"symbol":"SFS","exchange":"N","type":"stock","description":"Smart & Final Stores Inc","shares":461600},{"symbol":"WSTC","exchange":"Q","type":"stock","description":"West Corp","shares":2905300},{"symbol":"TRV","exchange":"N","type":"stock","description":"Travelers Companies Inc","shares":25810900},{"symbol":"HME","exchange":"N","type":"stock","description":"Home Properties Inc","shares":3019800},{"symbol":"DVAX","exchange":"Q","type":"stock","description":"Dynavax Technologies Corp","shares":2011800},{"symbol":"BBY","exchange":"N","type":"stock","description":"Best Buy Co Inc","shares":23726600},{"symbol":"ESP","exchange":"A","type":"stock","description":"Espey Manufacturing & Electronics","shares":115400},{"symbol":"SJI","exchange":"N","type":"stock","description":"South Jersey Industries","shares":2237500},{"symbol":"WMC","exchange":"N","type":"stock","description":"Western Asset Mortgage Capital Corp","shares":329100},{"symbol":"SZMK","exchange":"Q","type":"stock","description":"Sizmek Inc","shares":1636200},{"symbol":"SASR","exchange":"Q","type":"stock","description":"Sandy Spring Bancorp Inc","shares":2188100},{"symbol":"C","exchange":"N","type":"stock","description":"Citigroup Inc","shares":271236500},{"symbol":"PFIN","exchange":"Q","type":"stock","description":"P & F Industries Inc","shares":60000},{"symbol":"MBI","exchange":"N","type":"stock","description":"MBIA Inc","shares":17036800},{"symbol":"HOV","exchange":"N","type":"stock","description":"Hovnanian Enterprises Inc","shares":985300},{"symbol":"CLMT","exchange":"Q","type":"stock","description":"Calumet Specialty Products Partners LP","shares":126900},{"symbol":"FLWS","exchange":"Q","type":"stock","description":"1-800 Flowers.com Inc","shares":2565100},{"symbol":"UUU","exchange":"A","type":"stock","description":"Universal Security Instruments Inc","shares":44900},{"symbol":"GFIG","exchange":"N","type":"stock","description":"GFI Group Inc","shares":145100},{"symbol":"HWAY","exchange":"Q","type":"stock","description":"Healthways Inc","shares":3409300},{"symbol":"SLG","exchange":"N","type":"stock","description":"SL Green Realty Corp","shares":7202700},{"symbol":"LOW","exchange":"N","type":"stock","description":"Lowe's Companies Inc","shares":88740200},{"symbol":"PKY","exchange":"N","type":"stock","description":"Parkway Properties Inc","shares":4277600},{"symbol":"FGL","exchange":"N","type":"stock","description":"Fidelity and Guaranty Life","shares":977000},{"symbol":"RSO","exchange":"N","type":"stock","description":"Resource Capital Corp","shares":2203600},{"symbol":"KOP","exchange":"N","type":"stock","description":"Koppers Holdings Inc","shares":3464800},{"symbol":"MPLX","exchange":"N","type":"stock","description":"MPLX LP","shares":305500},{"symbol":"RSG","exchange":"N","type":"stock","description":"Republic Services Inc","shares":21537400},{"symbol":"CQP","exchange":"A","type":"stock","description":"Cheniere Energy Partners LP","shares":111000},{"symbol":"PIH","exchange":"Q","type":"stock","description":"1347 Property Insurance Holdings Inc","shares":205600},{"symbol":"CIEN","exchange":"N","type":"stock","description":"Ciena Corp","shares":4756300},{"symbol":"ALX","exchange":"N","type":"stock","description":"Alexander's Inc","shares":80600},{"symbol":"NOG","exchange":"A","type":"stock","description":"Northern Oil & Gas Inc","shares":643600},{"symbol":"VECO","exchange":"Q","type":"stock","description":"Veeco Instruments Inc","shares":2842800},{"symbol":"CNX","exchange":"N","type":"stock","description":"Consol Energy Inc","shares":21989800},{"symbol":"NWLI","exchange":"Q","type":"stock","description":"National Western Life Insurance","shares":164300},{"symbol":"SMG","exchange":"N","type":"stock","description":"Scotts Miracle Gro Co","shares":2640300},{"symbol":"DYAX","exchange":"Q","type":"stock","description":"Dyax Corp","shares":15261600},{"symbol":"TKR","exchange":"N","type":"stock","description":"Timken Co","shares":7765400},{"symbol":"OMI","exchange":"N","type":"stock","description":"Owens & Minor Inc","shares":3130300},{"symbol":"NOV","exchange":"N","type":"stock","description":"National Oilwell Varco Inc","shares":29975700},{"symbol":"LAD","exchange":"N","type":"stock","description":"Lithia Motors Inc","shares":2579900},{"symbol":"GK","exchange":"Q","type":"stock","description":"G & K Services Inc","shares":2651400},{"symbol":"PBIP","exchange":"Q","type":"stock","description":"Prudential Bancorp Inc","shares":51600},{"symbol":"STS","exchange":"A","type":"stock","description":"Supreme Industries Inc","shares":883700},{"symbol":"ENSG","exchange":"Q","type":"stock","description":"Ensign Group Inc","shares":1754200},{"symbol":"TXMD","exchange":"A","type":"stock","description":"TherapeuticsMD Inc","shares":2931100},{"symbol":"WNRL","exchange":"N","type":"stock","description":"Western Refining Logistics LP","shares":648500},{"symbol":"NVDA","exchange":"Q","type":"stock","description":"NVIDIA Corp","shares":27768100},{"symbol":"MTGE","exchange":"Q","type":"stock","description":"American Capital Mortgage Investment Corp","shares":1754600},{"symbol":"KWR","exchange":"N","type":"stock","description":"Quaker Chemical Corp","shares":1183500},{"symbol":"KTWO","exchange":"Q","type":"stock","description":"K2M Group Holdings Inc","shares":1508900},{"symbol":"WGL","exchange":"N","type":"stock","description":"WGL Holdings Inc","shares":2756000},{"symbol":"WFD","exchange":"Q","type":"stock","description":"Westfield Financial Inc","shares":1600800},{"symbol":"QLIK","exchange":"Q","type":"stock","description":"Qlik Technologies Inc","shares":10151100},{"symbol":"SCG","exchange":"N","type":"stock","description":"SCANA Corp","shares":3386600},{"symbol":"BVSN","exchange":"Q","type":"stock","description":"BroadVision Inc","shares":48900},{"symbol":"BCO","exchange":"N","type":"stock","description":"Brink's Co","shares":6145600},{"symbol":"TFSL","exchange":"Q","type":"stock","description":"TFS Financial Corp","shares":2874800},{"symbol":"ODC","exchange":"N","type":"stock","description":"Oil-Dri Corp of America","shares":355500},{"symbol":"NGLS","exchange":"N","type":"stock","description":"Targa Resources Partners LP","shares":200000},{"symbol":"KCG","exchange":"N","type":"stock","description":"KCG Holdings Inc","shares":2178500},{"symbol":"AIZ","exchange":"N","type":"stock","description":"Assurant Inc","shares":7530500},{"symbol":"SBY","exchange":"N","type":"stock","description":"Silver Bay Realty Trust Corp","shares":1486700},{"symbol":"SWK","exchange":"N","type":"stock","description":"Stanley Black & Decker Inc","shares":12505900},{"symbol":"OGS","exchange":"N","type":"stock","description":"ONE Gas, Inc.","shares":2804800},{"symbol":"XRX","exchange":"N","type":"stock","description":"Xerox Corporation","shares":123646000},{"symbol":"JIVE","exchange":"Q","type":"stock","description":"Jive Software Inc","shares":646500},{"symbol":"NAME","exchange":"Q","type":"stock","description":"Rightside Group Ltd","shares":43200},{"symbol":"TSRA","exchange":"Q","type":"stock","description":"Tessera Technologies Inc","shares":6480700},{"symbol":"BIIB","exchange":"Q","type":"stock","description":"Biogen Idec Inc","shares":22276600},{"symbol":"CSV","exchange":"N","type":"stock","description":"Carriage Services Inc","shares":1310700},{"symbol":"UBSH","exchange":"Q","type":"stock","description":"Union Bankshares Corp","shares":3563000},{"symbol":"TAL","exchange":"N","type":"stock","description":"TAL International Group Inc","shares":1864300},{"symbol":"TMH","exchange":"N","type":"stock","description":"Team Health Holdings Inc","shares":6316600},{"symbol":"MNTA","exchange":"Q","type":"stock","description":"Momenta Pharmaceuticals Inc","shares":3151800},{"symbol":"LII","exchange":"N","type":"stock","description":"Lennox International Inc","shares":2748900},{"symbol":"FWRD","exchange":"Q","type":"stock","description":"Forward Air Corp","shares":3163100},{"symbol":"VNDA","exchange":"Q","type":"stock","description":"Vanda Pharmaceuticals Inc","shares":78300},{"symbol":"PB","exchange":"N","type":"stock","description":"Prosperity Bancshares, Inc.","shares":4447500},{"symbol":"AVB","exchange":"N","type":"stock","description":"AvalonBay Communities Inc","shares":12049500},{"symbol":"CHDN","exchange":"Q","type":"stock","description":"Churchill Downs Inc","shares":930900},{"symbol":"SCX","exchange":"N","type":"stock","description":"The L S Starrett Co","shares":466000},{"symbol":"FSBK","exchange":"Q","type":"stock","description":"First South Bancorp, Inc.","shares":157400},{"symbol":"HLIT","exchange":"Q","type":"stock","description":"Harmonic Inc","shares":10175000},{"symbol":"WWWW","exchange":"Q","type":"stock","description":"Web.com Group Inc","shares":2977600},{"symbol":"AAON","exchange":"Q","type":"stock","description":"AAON Inc","shares":2649800},{"symbol":"MYL","exchange":"Q","type":"stock","description":"Mylan Inc","shares":21299500},{"symbol":"ORB","exchange":"N","type":"stock","description":"Orbital Sciences Corp","shares":2279600},{"symbol":"TDG","exchange":"N","type":"stock","description":"TransDigm Group Inc","shares":4081400},{"symbol":"MSM","exchange":"N","type":"stock","description":"MSC Industrial Direct Co Inc","shares":2217800},{"symbol":"CLDT","exchange":"N","type":"stock","description":"Chatham Lodging Trust","shares":2187100},{"symbol":"MAT","exchange":"Q","type":"stock","description":"Mattel Inc","shares":26071000},{"symbol":"VEC","exchange":"N","type":"stock","description":"Vectrus Inc","shares":536600},{"symbol":"MANT","exchange":"Q","type":"stock","description":"Mantech International Corp","shares":1775400},{"symbol":"GRT","exchange":"N","type":"stock","description":"Glimcher Realty Trust","shares":4979500},{"symbol":"GBCI","exchange":"Q","type":"stock","description":"Glacier Bancorp Inc","shares":5371900},{"symbol":"MSON","exchange":"Q","type":"stock","description":"Misonix Inc","shares":448600},{"symbol":"METR","exchange":"Q","type":"stock","description":"Metro Bancorp Inc","shares":1440900},{"symbol":"PICO","exchange":"Q","type":"stock","description":"PICO Holdings Inc","shares":4070600},{"symbol":"ENLK","exchange":"N","type":"stock","description":"EnLink Midstream Partners LP","shares":1553800},{"symbol":"LPLA","exchange":"Q","type":"stock","description":"LPL Financial Holdings Inc","shares":5248800},{"symbol":"LNBB","exchange":"Q","type":"stock","description":"LNB Bancorp Inc","shares":466700},{"symbol":"SIAL","exchange":"Q","type":"stock","description":"Sigma-Aldrich Corp","shares":6609400},{"symbol":"RDN","exchange":"N","type":"stock","description":"Radian Group Inc","shares":2210600},{"symbol":"PTLA","exchange":"Q","type":"stock","description":"Portola Pharmaceuticals Inc","shares":1482600},{"symbol":"MPW","exchange":"N","type":"stock","description":"Medical Properties Trust Inc","shares":8016000},{"symbol":"LZB","exchange":"N","type":"stock","description":"La-Z-Boy Inc","shares":5331600},{"symbol":"WGO","exchange":"N","type":"stock","description":"Winnebago Industries Inc","shares":2713000},{"symbol":"OTIC","exchange":"Q","type":"stock","description":"Otonomy Inc","shares":1440500},{"symbol":"GBNK","exchange":"Q","type":"stock","description":"Guaranty Bancorp","shares":509500},{"symbol":"TCBK","exchange":"Q","type":"stock","description":"TriCo Bancshares","shares":1606100},{"symbol":"CF","exchange":"N","type":"stock","description":"CF Industries Holdings Inc","shares":3571400},{"symbol":"MRC","exchange":"N","type":"stock","description":"MRC Global Inc","shares":7857800},{"symbol":"GRPN","exchange":"Q","type":"stock","description":"Groupon Inc","shares":16636700},{"symbol":"CLH","exchange":"N","type":"stock","description":"Clean Harbors Inc","shares":2462800},{"symbol":"CLC","exchange":"N","type":"stock","description":"Clarcor Inc","shares":3415400},{"symbol":"GVA","exchange":"N","type":"stock","description":"Granite Construction Inc.","shares":3986900},{"symbol":"SNV","exchange":"N","type":"stock","description":"Synovus Financial Corp","shares":12314500},{"symbol":"HIL","exchange":"N","type":"stock","description":"Hill International Inc","shares":3689000},{"symbol":"UDF","exchange":"Q","type":"stock","description":"United Development Funding IV","shares":49500},{"symbol":"AVT","exchange":"N","type":"stock","description":"Avnet Inc","shares":14511400},{"symbol":"PAG","exchange":"N","type":"stock","description":"Penske Automotive Group Inc","shares":5268500},{"symbol":"BLMN","exchange":"Q","type":"stock","description":"Bloomin Brands Inc","shares":10715000},{"symbol":"UMPQ","exchange":"Q","type":"stock","description":"Umpqua Holdings Corp","shares":21450600},{"symbol":"CSPI","exchange":"Q","type":"stock","description":"CSP Inc","shares":256600},{"symbol":"KW","exchange":"N","type":"stock","description":"Kennedy-Wilson Holdings Inc","shares":4849600},{"symbol":"PMT","exchange":"N","type":"stock","description":"PennyMac Mortgage Investment Trust","shares":3397700},{"symbol":"LQDT","exchange":"Q","type":"stock","description":"Liquidity Service Inc","shares":494300},{"symbol":"CTL","exchange":"N","type":"stock","description":"CenturyLink Inc","shares":35417400},{"symbol":"YHOO","exchange":"Q","type":"stock","description":"Yahoo! Inc","shares":50565000},{"symbol":"PVTB","exchange":"Q","type":"stock","description":"PrivateBancorp Inc","shares":8499200},{"symbol":"FSTR","exchange":"Q","type":"stock","description":"LB Foster Co","shares":1206600},{"symbol":"FMC","exchange":"N","type":"stock","description":"FMC Corporation","shares":12632200},{"symbol":"MTD","exchange":"N","type":"stock","description":"Mettler-Toledo International Inc","shares":2114200},{"symbol":"TAXI","exchange":"Q","type":"stock","description":"Medallion Financial Corp","shares":91500},{"symbol":"NAVG","exchange":"Q","type":"stock","description":"Navigators Group","shares":2195500},{"symbol":"CHMT","exchange":"N","type":"stock","description":"Chemtura Corp","shares":1740200},{"symbol":"CCF","exchange":"A","type":"stock","description":"Chase Corp","shares":402500},{"symbol":"RSPP","exchange":"N","type":"stock","description":"RSP Permian Inc","shares":268500},{"symbol":"CFFN","exchange":"Q","type":"stock","description":"Capitol Federal Financial Inc","shares":10314400},{"symbol":"CBL","exchange":"N","type":"stock","description":"CBL & Associates Properties Inc","shares":11398800},{"symbol":"BECN","exchange":"Q","type":"stock","description":"Beacon Roofing Supply Inc","shares":4485200},{"symbol":"DRQ","exchange":"N","type":"stock","description":"Dril-Quip Inc","shares":4726500},{"symbol":"ENPH","exchange":"Q","type":"stock","description":"Enphase Energy Inc","shares":392400},{"symbol":"CTCT","exchange":"Q","type":"stock","description":"Constant Contact Inc","shares":3207400},{"symbol":"VSAT","exchange":"Q","type":"stock","description":"Viasat Inc","shares":449700},{"symbol":"GERN","exchange":"Q","type":"stock","description":"Geron Corp","shares":292500},{"symbol":"SERV","exchange":"N","type":"stock","description":"ServiceMaster Global Holdings Inc","shares":2514000},{"symbol":"ACM","exchange":"N","type":"stock","description":"AECOM Technology Corp","shares":2863500},{"symbol":"HAIN","exchange":"Q","type":"stock","description":"Hain Celestial Group Inc","shares":4804700},{"symbol":"ELNK","exchange":"Q","type":"stock","description":"EarthLink Holdings Corp","shares":9190300},{"symbol":"ENOC","exchange":"Q","type":"stock","description":"EnerNOC Inc","shares":1069200},{"symbol":"OXY","exchange":"N","type":"stock","description":"Occidental Petroleum Corp","shares":55569400},{"symbol":"IBCP","exchange":"Q","type":"stock","description":"Independent Bank Corp (Ionia MI)","shares":1009800},{"symbol":"EMKR","exchange":"Q","type":"stock","description":"Emcore Corp","shares":1575200},{"symbol":"CECE","exchange":"Q","type":"stock","description":"CECO Environmental","shares":228400},{"symbol":"BHE","exchange":"N","type":"stock","description":"Benchmark Electronics Inc","shares":13211800},{"symbol":"PEB","exchange":"N","type":"stock","description":"Pebblebrook Hotel Trust","shares":6207300},{"symbol":"GNRC","exchange":"N","type":"stock","description":"Generac Holdings Inc","shares":1427700},{"symbol":"SCLN","exchange":"Q","type":"stock","description":"SciClone Pharmaceuticals","shares":4008900},{"symbol":"NVEC","exchange":"Q","type":"stock","description":"NVE Corp","shares":118200},{"symbol":"SRC","exchange":"N","type":"stock","description":"Spirit Realty Capital Inc","shares":25248800},{"symbol":"SPPI","exchange":"Q","type":"stock","description":"Spectrum Pharmaceuticals Inc","shares":473200},{"symbol":"SIX","exchange":"N","type":"stock","description":"Six Flags Entertainment Corp","shares":3097100},{"symbol":"CAT","exchange":"N","type":"stock","description":"Caterpillar Inc","shares":29485300},{"symbol":"THRM","exchange":"Q","type":"stock","description":"Gentherm Inc","shares":3077800},{"symbol":"ENLC","exchange":"N","type":"stock","description":"EnLink Midstream LLC","shares":3272100},{"symbol":"BLMT","exchange":"Q","type":"stock","description":"BSB Bancorp Inc","shares":154700},{"symbol":"IRIX","exchange":"Q","type":"stock","description":"Iridex Corp","shares":231000},{"symbol":"BNCL","exchange":"Q","type":"stock","description":"Beneficial Mutual Bancorp Inc","shares":1277400},{"symbol":"GCA","exchange":"N","type":"stock","description":"Global Cash Access Holdings Inc","shares":6065100},{"symbol":"GMT","exchange":"N","type":"stock","description":"GATX Corp","shares":5120600},{"symbol":"OESX","exchange":"A","type":"stock","description":"Orion Energy Systems Inc","shares":1579600},{"symbol":"CVC","exchange":"N","type":"stock","description":"Cablevision Systems Corp","shares":3248700},{"symbol":"HQY","exchange":"Q","type":"stock","description":"HealthEquity Inc","shares":1374500},{"symbol":"APOG","exchange":"Q","type":"stock","description":"Apogee Enterprises Inc","shares":3788100},{"symbol":"OKE","exchange":"N","type":"stock","description":"ONEOK Inc","shares":13505000},{"symbol":"FLIR","exchange":"Q","type":"stock","description":"FLIR Systems Inc","shares":11978600},{"symbol":"DUK","exchange":"N","type":"stock","description":"Duke Energy Corporation","shares":36715000},{"symbol":"CNMD","exchange":"Q","type":"stock","description":"Conmed Corp","shares":3054100},{"symbol":"KRNY","exchange":"Q","type":"stock","description":"Kearny Financial Corp","shares":475500},{"symbol":"KALU","exchange":"Q","type":"stock","description":"Kaiser Aluminum Corp","shares":1698000},{"symbol":"FLT","exchange":"N","type":"stock","description":"Fleetcor Technologies, Inc.","shares":5877100},{"symbol":"RDNT","exchange":"Q","type":"stock","description":"RadNet Inc","shares":3213200},{"symbol":"MOCO","exchange":"Q","type":"stock","description":"Mocon Inc","shares":236200},{"symbol":"GGG","exchange":"N","type":"stock","description":"Graco Inc","shares":4146000},{"symbol":"GT","exchange":"Q","type":"stock","description":"Goodyear Tire & Rubber Co","shares":18420100},{"symbol":"SEM","exchange":"N","type":"stock","description":"Select Medical Holdings Corp","shares":11306000},{"symbol":"JKHY","exchange":"Q","type":"stock","description":"Jack Henry & Associates, Inc","shares":5486900},{"symbol":"FLS","exchange":"N","type":"stock","description":"Flowserve Corp","shares":13119800},{"symbol":"BRKR","exchange":"Q","type":"stock","description":"Bruker Corp","shares":6956200},{"symbol":"TQNT","exchange":"Q","type":"stock","description":"Triquint Semiconductor","shares":15819700},{"symbol":"CHKE","exchange":"Q","type":"stock","description":"Cherokee Inc","shares":695000},{"symbol":"ISRG","exchange":"Q","type":"stock","description":"Intuitive Surgical Inc","shares":4478100},{"symbol":"UACL","exchange":"Q","type":"stock","description":"Universal Truckload Services Inc","shares":744800},{"symbol":"ATRC","exchange":"Q","type":"stock","description":"AtriCure Inc","shares":1675300},{"symbol":"RBCAA","exchange":"Q","type":"stock","description":"Republic Bancorp, Inc.","shares":808700},{"symbol":"TIVO","exchange":"Q","type":"stock","description":"Tivo Inc","shares":9525100},{"symbol":"FANG","exchange":"Q","type":"stock","description":"Diamondback Energy Inc","shares":3927300},{"symbol":"HMST","exchange":"Q","type":"stock","description":"HomeStreet Inc","shares":679500},{"symbol":"HR","exchange":"N","type":"stock","description":"Healthcare Realty Trust Inc","shares":3937800},{"symbol":"DGII","exchange":"Q","type":"stock","description":"Digi International","shares":3782700},{"symbol":"UFI","exchange":"N","type":"stock","description":"Unifi Inc","shares":2282300},{"symbol":"NTRI","exchange":"Q","type":"stock","description":"NutriSystem Inc","shares":3414900},{"symbol":"JEC","exchange":"N","type":"stock","description":"Jacobs Engineering Group Inc","shares":9049200},{"symbol":"JPM","exchange":"N","type":"stock","description":"JPMorgan Chase & Co","shares":226459600},{"symbol":"PX","exchange":"N","type":"stock","description":"Praxair Inc","shares":20827600},{"symbol":"YDKN","exchange":"N","type":"stock","description":"Yadkin Financial Corp","shares":334600},{"symbol":"AIT","exchange":"N","type":"stock","description":"Applied Industrial Technologies Inc","shares":3217500},{"symbol":"EPAM","exchange":"N","type":"stock","description":"EPAM Systems Inc","shares":2416000},{"symbol":"OPHT","exchange":"Q","type":"stock","description":"Ophthotech Corp","shares":129300},{"symbol":"OFC","exchange":"N","type":"stock","description":"Corporate Office Properties Trust Inc","shares":6681400},{"symbol":"CORE","exchange":"Q","type":"stock","description":"Core-Mark Holding Co Inc","shares":2562100},{"symbol":"AVAV","exchange":"Q","type":"stock","description":"AeroVironment Inc","shares":1845300},{"symbol":"D","exchange":"N","type":"stock","description":"Dominion Resources Inc","shares":29826600},{"symbol":"WABC","exchange":"Q","type":"stock","description":"Westamerica Bancorp","shares":465600},{"symbol":"VTR","exchange":"N","type":"stock","description":"Ventas Inc","shares":16591700},{"symbol":"BIO","exchange":"N","type":"stock","description":"Bio-Rad Laboratories Inc","shares":2224800},{"symbol":"VGR","exchange":"N","type":"stock","description":"Vector Group Ltd","shares":514200},{"symbol":"PNM","exchange":"N","type":"stock","description":"PNM Resources Inc","shares":7223700},{"symbol":"NCI","exchange":"N","type":"stock","description":"Navigant Consulting Inc","shares":5670700},{"symbol":"NGS","exchange":"N","type":"stock","description":"Natural Gas Services Group Inc","shares":1587100},{"symbol":"SEIC","exchange":"Q","type":"stock","description":"SEI Investments Company","shares":13000100},{"symbol":"HI","exchange":"N","type":"stock","description":"Hillenbrand Inc","shares":5261800},{"symbol":"MFSF","exchange":"Q","type":"stock","description":"MutualFirst Financial Inc","shares":357700},{"symbol":"DATA","exchange":"N","type":"stock","description":"Tableau Software Inc","shares":2421600},{"symbol":"MCHX","exchange":"Q","type":"stock","description":"Marchex Inc","shares":1507000},{"symbol":"SIRI","exchange":"Q","type":"stock","description":"Sirius XM Holdings Inc","shares":53999500},{"symbol":"RDI","exchange":"Q","type":"stock","description":"Reading International Inc","shares":1045800},{"symbol":"JONE","exchange":"N","type":"stock","description":"Jones Energy Inc","shares":229100},{"symbol":"RKT","exchange":"N","type":"stock","description":"Rock-Tenn Company","shares":4972500},{"symbol":"SDPI","exchange":"A","type":"stock","description":"Superior Drilling Products Inc","shares":65300},{"symbol":"WERN","exchange":"Q","type":"stock","description":"Werner Enterprises Inc","shares":4481800},{"symbol":"WRI","exchange":"N","type":"stock","description":"Weingarten Realty Investors","shares":4052400},{"symbol":"NEWM","exchange":"N","type":"stock","description":"New Media Investment Group Inc.","shares":1644200},{"symbol":"CYBE","exchange":"Q","type":"stock","description":"CyberOptics Corp","shares":640800},{"symbol":"UMBF","exchange":"Q","type":"stock","description":"UMB Financial Corp","shares":2853700},{"symbol":"UGI","exchange":"N","type":"stock","description":"UGI Corp","shares":16413700},{"symbol":"RHT","exchange":"N","type":"stock","description":"Red Hat Inc","shares":21839600},{"symbol":"DOV","exchange":"N","type":"stock","description":"Dover Corp","shares":9728000},{"symbol":"MU","exchange":"Q","type":"stock","description":"Micron Technology Inc","shares":70819900},{"symbol":"CPSS","exchange":"Q","type":"stock","description":"Consumer Portfolio Services Inc","shares":1282000},{"symbol":"FRF","exchange":"N","type":"stock","description":"Fortegra Financial Corp","shares":249000},{"symbol":"ROSE","exchange":"Q","type":"stock","description":"Rosetta Resources Inc","shares":9217600},{"symbol":"ICE","exchange":"N","type":"stock","description":"Intercontinental Exchange Inc","shares":11289900},{"symbol":"THOR","exchange":"Q","type":"stock","description":"Thoratec Corp","shares":3865400},{"symbol":"SAH","exchange":"N","type":"stock","description":"Sonic Automotive Inc","shares":3493500},{"symbol":"LUV","exchange":"N","type":"stock","description":"Southwest Airlines Co","shares":65688500},{"symbol":"AFG","exchange":"N","type":"stock","description":"American Financial Group Inc","shares":8157200},{"symbol":"WRE","exchange":"N","type":"stock","description":"Washington REIT","shares":755700},{"symbol":"BSFT","exchange":"Q","type":"stock","description":"BroadSoft Inc","shares":1997700},{"symbol":"TRUP","exchange":"N","type":"stock","description":"Trupanion Inc","shares":44200},{"symbol":"RYAM","exchange":"N","type":"stock","description":"Rayonier Advanced Materials Inc","shares":164700},{"symbol":"IGTE","exchange":"Q","type":"stock","description":"Igate Corp","shares":3643800},{"symbol":"WASH","exchange":"Q","type":"stock","description":"Washington Trust Bancorp Inc","shares":1010900},{"symbol":"MRVC","exchange":"Q","type":"stock","description":"MRV Communications Inc","shares":110600},{"symbol":"PNK","exchange":"N","type":"stock","description":"Pinnacle Entertainment Inc","shares":2968500},{"symbol":"PPL","exchange":"N","type":"stock","description":"PPL Corp","shares":44998800},{"symbol":"PCH","exchange":"Q","type":"stock","description":"Potlatch Corp","shares":2441100},{"symbol":"BPFH","exchange":"Q","type":"stock","description":"Boston Private Financial Holdings Inc","shares":9889200},{"symbol":"JDSU","exchange":"Q","type":"stock","description":"JDS Uniphase Corp (CA)","shares":16314800},{"symbol":"ADM","exchange":"N","type":"stock","description":"Archer-Daniels Midland Co","shares":58733100},{"symbol":"HTA","exchange":"N","type":"stock","description":"Healthcare Trust of America Inc","shares":14544900},{"symbol":"LOGM","exchange":"Q","type":"stock","description":"LogMeIn Inc","shares":2193400},{"symbol":"MDAS","exchange":"Q","type":"stock","description":"MedAssets Inc","shares":7610400},{"symbol":"PNX","exchange":"N","type":"stock","description":"Phoenix Companies Inc","shares":326000},{"symbol":"XNCR","exchange":"Q","type":"stock","description":"Xencor Inc","shares":99400},{"symbol":"CNK","exchange":"N","type":"stock","description":"Cinemark Holdings Inc","shares":7999300},{"symbol":"LMCA","exchange":"Q","type":"stock","description":"Liberty Media Corporation","shares":5441400},{"symbol":"CPIX","exchange":"Q","type":"stock","description":"Cumberland Pharmaceuticals Inc","shares":619000},{"symbol":"PSMT","exchange":"Q","type":"stock","description":"Pricesmart Inc","shares":792300},{"symbol":"OAS","exchange":"N","type":"stock","description":"Oasis Petroleum Inc","shares":7917900},{"symbol":"CLW","exchange":"N","type":"stock","description":"Clearwater Paper Corp","shares":2097600},{"symbol":"LRN","exchange":"N","type":"stock","description":"K12 Inc","shares":2783500},{"symbol":"OUTR","exchange":"Q","type":"stock","description":"Outerwall Inc","shares":520800},{"symbol":"FNGN","exchange":"Q","type":"stock","description":"Financial Engines Inc","shares":1367600},{"symbol":"IPG","exchange":"N","type":"stock","description":"Interpublic Group of Companies, Inc","shares":34818200},{"symbol":"SUI","exchange":"N","type":"stock","description":"Sun Communities Inc","shares":2237000},{"symbol":"NVSL","exchange":"Q","type":"stock","description":"Naugatuck Valley Financial Corp","shares":51000},{"symbol":"ANAC","exchange":"Q","type":"stock","description":"Anacor Pharmaceuticals Inc","shares":1483100},{"symbol":"CODE","exchange":"N","type":"stock","description":"Spansion Inc","shares":6766800},{"symbol":"ISH","exchange":"N","type":"stock","description":"International Shipholding Corp","shares":560200},{"symbol":"BPL","exchange":"N","type":"stock","description":"Buckeye Partners LP","shares":1314000},{"symbol":"CVU","exchange":"A","type":"stock","description":"CPI Aerostructures Inc","shares":994900},{"symbol":"CVD","exchange":"N","type":"stock","description":"Covance Inc","shares":3503900},{"symbol":"HRB","exchange":"N","type":"stock","description":"H&R Block Inc","shares":15594800},{"symbol":"CLGX","exchange":"N","type":"stock","description":"CoreLogic, Inc.","shares":8559900},{"symbol":"SYMC","exchange":"Q","type":"stock","description":"Symantec Corp","shares":51455700},{"symbol":"EGAS","exchange":"A","type":"stock","description":"Gas Natural Inc","shares":58900},{"symbol":"LIOX","exchange":"Q","type":"stock","description":"Lionbridge Technologies Inc","shares":2514000},{"symbol":"EXAM","exchange":"N","type":"stock","description":"ExamWorks Group Inc","shares":2317300},{"symbol":"PSIX","exchange":"Q","type":"stock","description":"Power Solutions International Inc","shares":126200},{"symbol":"PAH","exchange":"N","type":"stock","description":"Platform Specialty Products Corp","shares":3022300},{"symbol":"SAIC","exchange":"N","type":"stock","description":"Science Applications International Corp","shares":2287800},{"symbol":"PGR","exchange":"N","type":"stock","description":"Progressive Corp","shares":53603600},{"symbol":"SMTC","exchange":"Q","type":"stock","description":"Semtech Corp","shares":7425000},{"symbol":"SMA","exchange":"N","type":"stock","description":"Symmetry Medical Inc","shares":5934900},{"symbol":"VASC","exchange":"Q","type":"stock","description":"Vascular Solutions Inc","shares":1581900},{"symbol":"WIN","exchange":"Q","type":"stock","description":"Windstream Holdings, Inc.","shares":6366900},{"symbol":"CMTL","exchange":"Q","type":"stock","description":"Comtech Telecommunications Corp","shares":627400},{"symbol":"CA","exchange":"Q","type":"stock","description":"CA Inc","shares":30920000},{"symbol":"EL","exchange":"N","type":"stock","description":"Estee Lauder Cos Inc","shares":24922000},{"symbol":"CENT","exchange":"Q","type":"stock","description":"Central Garden & Pet Co","shares":1368600},{"symbol":"OPB","exchange":"Q","type":"stock","description":"Opus Bank","shares":927800},{"symbol":"LEE","exchange":"N","type":"stock","description":"Lee Enterprises Inc","shares":279600},{"symbol":"CRR","exchange":"N","type":"stock","description":"Carbo Ceramics Inc","shares":191500},{"symbol":"MKL","exchange":"N","type":"stock","description":"Markel Corporation","shares":875900},{"symbol":"KNL","exchange":"N","type":"stock","description":"Knoll Inc","shares":4977200},{"symbol":"AMGN","exchange":"Q","type":"stock","description":"Amgen Inc","shares":52503500},{"symbol":"AMSF","exchange":"Q","type":"stock","description":"AMERISAFE Inc","shares":2522900},{"symbol":"FUR","exchange":"N","type":"stock","description":"Winthrop Realty Trust Inc","shares":1334500},{"symbol":"APC","exchange":"N","type":"stock","description":"Anadarko Petroleum Corp","shares":45949300},{"symbol":"FSAM","exchange":"Q","type":"stock","description":"Fifth Street Asset Management Inc","shares":59200},{"symbol":"NEU","exchange":"N","type":"stock","description":"NewMarket Corp","shares":355800},{"symbol":"CTT","exchange":"N","type":"stock","description":"CatchMark Timber Trust Inc","shares":2088700},{"symbol":"SPR","exchange":"N","type":"stock","description":"Spirit AeroSystems Holdings Inc","shares":7967800},{"symbol":"SMP","exchange":"N","type":"stock","description":"Standard Motor Products Inc","shares":1892700},{"symbol":"LKQ","exchange":"Q","type":"stock","description":"LKQ Corp","shares":22541100},{"symbol":"GPIC","exchange":"Q","type":"stock","description":"Gaming Partners International Corp","shares":160400},{"symbol":"JACK","exchange":"Q","type":"stock","description":"Jack In The Box Inc","shares":4125000},{"symbol":"GPRE","exchange":"Q","type":"stock","description":"Green Plains Inc","shares":1965200},{"symbol":"MDU","exchange":"N","type":"stock","description":"MDU Resources Group Inc","shares":10747800},{"symbol":"CYH","exchange":"N","type":"stock","description":"Community Health Systems Inc","shares":7137700},{"symbol":"Y","exchange":"N","type":"stock","description":"Alleghany Corp","shares":990600},{"symbol":"NKTR","exchange":"Q","type":"stock","description":"Nektar Therapeutics Inc","shares":6756900},{"symbol":"XXIA","exchange":"Q","type":"stock","description":"Ixia","shares":4362800},{"symbol":"UNT","exchange":"N","type":"stock","description":"Unit Corp","shares":6407400},{"symbol":"CPF","exchange":"N","type":"stock","description":"Central Pacific Financial Corp","shares":2206200},{"symbol":"SPSC","exchange":"Q","type":"stock","description":"SPS Commerce Inc","shares":1366000},{"symbol":"BDN","exchange":"N","type":"stock","description":"Brandywine Realty Trust","shares":17067000},{"symbol":"ABG","exchange":"N","type":"stock","description":"Asbury Automotive Group Inc","shares":2400100},{"symbol":"CSU","exchange":"N","type":"stock","description":"Capital Senior Living Corp","shares":2711900},{"symbol":"BMI","exchange":"N","type":"stock","description":"Badger Meter Inc","shares":736000},{"symbol":"RELL","exchange":"Q","type":"stock","description":"Richardson Electronics","shares":875900},{"symbol":"REX","exchange":"N","type":"stock","description":"REX American Resources Corp","shares":873600},{"symbol":"ABR","exchange":"N","type":"stock","description":"Arbor Realty Trust Inc","shares":1466800},{"symbol":"ARMK","exchange":"N","type":"stock","description":"Aramark","shares":5221900},{"symbol":"DRI","exchange":"N","type":"stock","description":"Darden Restaurants Inc","shares":3135300},{"symbol":"ALQA","exchange":"Q","type":"stock","description":"Alliqua Inc","shares":37900},{"symbol":"CVR","exchange":"A","type":"stock","description":"Chicago Rivet & Machine Co","shares":57600},{"symbol":"GNBC","exchange":"Q","type":"stock","description":"Green Bancorp Inc","shares":238800},{"symbol":"BDBD","exchange":"Q","type":"stock","description":"Boulder Brands Inc","shares":2442800},{"symbol":"MOBL","exchange":"Q","type":"stock","description":"MobileIron Inc","shares":174700},{"symbol":"EMCI","exchange":"Q","type":"stock","description":"EMC Insurance Group","shares":985900},{"symbol":"OZRK","exchange":"Q","type":"stock","description":"Bank of the Ozarks Inc","shares":5939200},{"symbol":"AHGP","exchange":"Q","type":"stock","description":"Alliance Holdings GP LP","shares":157100},{"symbol":"AERI","exchange":"Q","type":"stock","description":"Aerie Pharmaceuticals Inc","shares":483800},{"symbol":"CYT","exchange":"N","type":"stock","description":"Cytec Industries Inc","shares":6188900},{"symbol":"ENV","exchange":"N","type":"stock","description":"Envestnet Inc","shares":3859500},{"symbol":"IMGN","exchange":"Q","type":"stock","description":"Immunogen Inc","shares":200000},{"symbol":"PNW","exchange":"N","type":"stock","description":"Pinnacle West Capital Corp","shares":8138100},{"symbol":"PNY","exchange":"N","type":"stock","description":"Piedmont Natural Gas Co","shares":795900},{"symbol":"JMBA","exchange":"Q","type":"stock","description":"Jamba Inc","shares":540500},{"symbol":"QCOM","exchange":"Q","type":"stock","description":"Qualcomm Inc","shares":114810100},{"symbol":"AFL","exchange":"N","type":"stock","description":"Aflac Inc","shares":28810600},{"symbol":"STAR","exchange":"N","type":"stock","description":"iStar Financial Inc","shares":5480700},{"symbol":"AMCC","exchange":"Q","type":"stock","description":"Applied Micro Circuits Corp","shares":4439200},{"symbol":"BTN","exchange":"A","type":"stock","description":"Ballantyne Strong Inc","shares":2157100},{"symbol":"CTRN","exchange":"Q","type":"stock","description":"Citi Trends Inc","shares":2453300},{"symbol":"CGIX","exchange":"Q","type":"stock","description":"Cancer Genetics Inc","shares":53500},{"symbol":"LMNX","exchange":"Q","type":"stock","description":"Luminex Corp","shares":2167000},{"symbol":"LYTS","exchange":"Q","type":"stock","description":"LSI Industries Inc","shares":2097900},{"symbol":"GY","exchange":"N","type":"stock","description":"GenCorp Inc","shares":543200},{"symbol":"SGM","exchange":"N","type":"stock","description":"Stonegate Mortgage Corporation","shares":65800},{"symbol":"NANO","exchange":"Q","type":"stock","description":"Nanometrics Inc","shares":2537800},{"symbol":"MANH","exchange":"Q","type":"stock","description":"Manhattan Associates Inc","shares":8974000},{"symbol":"BHI","exchange":"N","type":"stock","description":"Baker Hughes Inc","shares":13936700},{"symbol":"CDNA","exchange":"Q","type":"stock","description":"CareDx Inc","shares":102500},{"symbol":"ALNY","exchange":"Q","type":"stock","description":"Alnylam Pharmaceuticals Inc","shares":2825500},{"symbol":"MRK","exchange":"N","type":"stock","description":"Merck & Co Inc","shares":202069500},{"symbol":"MENT","exchange":"Q","type":"stock","description":"Mentor Graphics Corp","shares":8230600},{"symbol":"EQM","exchange":"N","type":"stock","description":"EQT Midstream Partners LP","shares":802400},{"symbol":"SGMS","exchange":"Q","type":"stock","description":"Scientific Games Corp","shares":456400},{"symbol":"KKD","exchange":"N","type":"stock","description":"Krispy Kreme Doughnuts Inc","shares":4044400},{"symbol":"FR","exchange":"N","type":"stock","description":"First Industrial Realty Trust Inc","shares":7037500},{"symbol":"PFPT","exchange":"Q","type":"stock","description":"Proofpoint Inc","shares":2149700},{"symbol":"CFNB","exchange":"Q","type":"stock","description":"California First National Bancorp","shares":415900},{"symbol":"SGMO","exchange":"Q","type":"stock","description":"Sangamo BioSciences Inc","shares":2099300},{"symbol":"MNTX","exchange":"Q","type":"stock","description":"Manitex International Inc","shares":405700},{"symbol":"CAVM","exchange":"Q","type":"stock","description":"Cavium Inc","shares":5094100},{"symbol":"CPK","exchange":"N","type":"stock","description":"Chesapeake Utilities Corp","shares":738000},{"symbol":"FCH","exchange":"N","type":"stock","description":"FelCor Lodging Trust Inc","shares":7077600},{"symbol":"VAC","exchange":"N","type":"stock","description":"Marriott Vacations Worldwide Corp","shares":3562900},{"symbol":"ELS","exchange":"N","type":"stock","description":"Equity Lifestyle Properties Inc","shares":5935700},{"symbol":"EPIQ","exchange":"Q","type":"stock","description":"Epiq Systems Inc","shares":2998600},{"symbol":"WLL","exchange":"N","type":"stock","description":"Whiting Petroleum Corp","shares":10378700},{"symbol":"XRM","exchange":"N","type":"stock","description":"Xerium Technologies Inc","shares":491100},{"symbol":"DGICA","exchange":"Q","type":"stock","description":"Donegal Group Inc","shares":1533500},{"symbol":"CBU","exchange":"N","type":"stock","description":"Community Bank System Inc","shares":1644600},{"symbol":"XLS","exchange":"N","type":"stock","description":"Exelis Inc","shares":18889100},{"symbol":"STLD","exchange":"Q","type":"stock","description":"Steel Dynamics Inc","shares":21916300},{"symbol":"RAVN","exchange":"Q","type":"stock","description":"Raven Industries Inc","shares":1262200},{"symbol":"RMBS","exchange":"Q","type":"stock","description":"Rambus Inc","shares":4363500},{"symbol":"FIVN","exchange":"Q","type":"stock","description":"Five9 Inc","shares":72300},{"symbol":"BRKL","exchange":"Q","type":"stock","description":"Brookline Bancorp Inc","shares":8085500},{"symbol":"OWW","exchange":"N","type":"stock","description":"Orbitz Worldwide Inc","shares":6755200},{"symbol":"FDML","exchange":"Q","type":"stock","description":"Federal-Mogul Holdings Corp","shares":3163000},{"symbol":"DAN","exchange":"N","type":"stock","description":"Dana Holding Corp","shares":16427700},{"symbol":"EAT","exchange":"N","type":"stock","description":"Brinker International Inc","shares":4947800},{"symbol":"EXPD","exchange":"Q","type":"stock","description":"Expeditors International of Washington Inc","shares":11852700},{"symbol":"MDP","exchange":"N","type":"stock","description":"Meredith Corp","shares":772600},{"symbol":"LSTR","exchange":"Q","type":"stock","description":"Landstar System Inc","shares":3577200},{"symbol":"STBA","exchange":"Q","type":"stock","description":"S&T Bancorp Inc","shares":1900000},{"symbol":"USTR","exchange":"Q","type":"stock","description":"United Stationers Inc","shares":2380100},{"symbol":"VRTS","exchange":"Q","type":"stock","description":"Virtus Investment Partners Inc","shares":553200},{"symbol":"SKH","exchange":"N","type":"stock","description":"Skilled Healthcare Group Inc","shares":1241700},{"symbol":"GSBC","exchange":"Q","type":"stock","description":"Great Southern Bancorp Inc","shares":710300},{"symbol":"ALR","exchange":"N","type":"stock","description":"Alere Inc","shares":6886300},{"symbol":"DFRG","exchange":"Q","type":"stock","description":"Del Frisco's Restaurant Group Inc","shares":4260700},{"symbol":"MKSI","exchange":"Q","type":"stock","description":"MKS Instruments Inc","shares":6390500},{"symbol":"CSCO","exchange":"Q","type":"stock","description":"Cisco Systems Inc","shares":413267800},{"symbol":"FCB","exchange":"N","type":"stock","description":"FCB Financial Holdings Inc","shares":637800},{"symbol":"GPC","exchange":"N","type":"stock","description":"Genuine Parts Co","shares":6873100},{"symbol":"SIR","exchange":"N","type":"stock","description":"Select Income REIT","shares":2417000},{"symbol":"NSAM","exchange":"N","type":"stock","description":"NorthStar Asset Management Group Inc","shares":3519200},{"symbol":"AIR","exchange":"N","type":"stock","description":"AAR Corp","shares":5518700},{"symbol":"IPCC","exchange":"Q","type":"stock","description":"Infinity Property and Casualty Corp","shares":1877800},{"symbol":"ESCA","exchange":"Q","type":"stock","description":"Escalade Inc","shares":340800},{"symbol":"FLIC","exchange":"Q","type":"stock","description":"First of Long Island Corp","shares":558900},{"symbol":"FRME","exchange":"Q","type":"stock","description":"First Merchants Corp","shares":3971600},{"symbol":"OIS","exchange":"N","type":"stock","description":"Oil States International Inc","shares":6192400},{"symbol":"CVCO","exchange":"Q","type":"stock","description":"Cavco Industries Inc","shares":608900},{"symbol":"EVC","exchange":"N","type":"stock","description":"Entravision Communications Corp","shares":6470000},{"symbol":"ENTG","exchange":"Q","type":"stock","description":"Entegris Inc","shares":15566900},{"symbol":"SPH","exchange":"N","type":"stock","description":"Suburban Propane Partners LP","shares":136300},{"symbol":"STRT","exchange":"Q","type":"stock","description":"Strattec Security Corp","shares":294200},{"symbol":"SAPE","exchange":"Q","type":"stock","description":"Sapient Corp","shares":6289500},{"symbol":"IBKC","exchange":"Q","type":"stock","description":"Iberiabank Corp","shares":4766600},{"symbol":"PRFT","exchange":"Q","type":"stock","description":"Perficient Inc","shares":4327600},{"symbol":"NNBR","exchange":"Q","type":"stock","description":"NN Inc","shares":3410700},{"symbol":"X","exchange":"N","type":"stock","description":"United States Steel Corp","shares":5291000},{"symbol":"XPO","exchange":"N","type":"stock","description":"XPO Logistics Inc","shares":2569900},{"symbol":"CMCO","exchange":"Q","type":"stock","description":"Columbus McKinnon Corp","shares":2379000},{"symbol":"RRC","exchange":"N","type":"stock","description":"Range Resources Corp","shares":14726200},{"symbol":"BKCC","exchange":"Q","type":"stock","description":"BlackRock Kelso Capital Corporation","shares":619900},{"symbol":"LABL","exchange":"Q","type":"stock","description":"Multi-Color Corp","shares":857700},{"symbol":"AWK","exchange":"N","type":"stock","description":"American Water Works Co Inc","shares":11223200},{"symbol":"KRFT","exchange":"Q","type":"stock","description":"Kraft Foods Group Inc","shares":37678700},{"symbol":"SPW","exchange":"N","type":"stock","description":"SPX Corp","shares":4636600},{"symbol":"GEOS","exchange":"Q","type":"stock","description":"Geospace Technologies Corp","shares":906500},{"symbol":"CNO","exchange":"N","type":"stock","description":"CNO Financial Group Inc","shares":27867200},{"symbol":"CSX","exchange":"N","type":"stock","description":"CSX Corp","shares":68017900},{"symbol":"VSI","exchange":"N","type":"stock","description":"Vitamin Shoppe Inc","shares":2100800},{"symbol":"PRMW","exchange":"Q","type":"stock","description":"Primo Water Corp","shares":206000},{"symbol":"BMS","exchange":"N","type":"stock","description":"Bemis Co Inc","shares":6838100},{"symbol":"LNDC","exchange":"Q","type":"stock","description":"Landec Corp","shares":3069200},{"symbol":"DGAS","exchange":"Q","type":"stock","description":"Delta Natural Gas Co","shares":193500},{"symbol":"AMAG","exchange":"Q","type":"stock","description":"AMAG Pharmaceuticals Inc","shares":984200},{"symbol":"SYY","exchange":"N","type":"stock","description":"Sysco Corp","shares":56719600},{"symbol":"SNX","exchange":"N","type":"stock","description":"Synnex Corp","shares":3480400},{"symbol":"WMB","exchange":"N","type":"stock","description":"Williams Companies Inc","shares":49761700},{"symbol":"AAC","exchange":"N","type":"stock","description":"AAC Holdings Inc","shares":296800},{"symbol":"APOL","exchange":"Q","type":"stock","description":"Apollo Education Group Inc","shares":8350100},{"symbol":"SGY","exchange":"N","type":"stock","description":"Stone Energy Corp","shares":3952200},{"symbol":"MFI","exchange":"Q","type":"stock","description":"MicroFinancial Inc","shares":866100},{"symbol":"MTG","exchange":"N","type":"stock","description":"MGIC Investment Corp","shares":14895500},{"symbol":"ROIC","exchange":"Q","type":"stock","description":"Retail Opportunity Investments Corp","shares":3824700},{"symbol":"RXN","exchange":"N","type":"stock","description":"Rexnord Corp","shares":9207100},{"symbol":"OCUL","exchange":"Q","type":"stock","description":"Ocular Therapeutix Inc","shares":370400},{"symbol":"CFN","exchange":"N","type":"stock","description":"CareFusion Corp","shares":14984400},{"symbol":"OHI","exchange":"N","type":"stock","description":"Omega Healthcare Investors Inc","shares":1009100},{"symbol":"DXYN","exchange":"Q","type":"stock","description":"The Dixie Group Inc","shares":442600},{"symbol":"WR","exchange":"N","type":"stock","description":"Westar Energy Inc","shares":4053400},{"symbol":"COUP","exchange":"N","type":"stock","description":"Coupons.com Incorporated","shares":225200},{"symbol":"CHEF","exchange":"Q","type":"stock","description":"The Chefs' Warehouse Inc","shares":847600},{"symbol":"FLO","exchange":"N","type":"stock","description":"Flowers Foods Inc","shares":8222800},{"symbol":"WCG","exchange":"N","type":"stock","description":"WellCare Health Plans Inc","shares":5318300},{"symbol":"ECL","exchange":"N","type":"stock","description":"Ecolab Inc","shares":21748500},{"symbol":"ARG","exchange":"N","type":"stock","description":"Airgas Inc","shares":5326900},{"symbol":"UCTT","exchange":"Q","type":"stock","description":"Ultra Clean Holdings Inc","shares":3764600},{"symbol":"GEF","exchange":"N","type":"stock","description":"Greif Inc","shares":2620900},{"symbol":"AMPH","exchange":"Q","type":"stock","description":"Amphastar Pharmaceutical Inc","shares":90300},{"symbol":"RAD","exchange":"N","type":"stock","description":"Rite Aid Corp","shares":46286400},{"symbol":"VIVO","exchange":"Q","type":"stock","description":"Meridian Bioscience Inc","shares":1729600},{"symbol":"USAK","exchange":"Q","type":"stock","description":"USA Truck Inc","shares":641400},{"symbol":"WSM","exchange":"N","type":"stock","description":"Williams-Sonoma Inc","shares":6818000},{"symbol":"TWX","exchange":"N","type":"stock","description":"Time Warner Inc","shares":74982100},{"symbol":"CATY","exchange":"Q","type":"stock","description":"Cathay General Bancorp","shares":6901100},{"symbol":"BBT","exchange":"N","type":"stock","description":"BB&T Corp","shares":14851900},{"symbol":"DFT","exchange":"N","type":"stock","description":"Dupont Fabros Technology Inc","shares":4515500},{"symbol":"XOOM","exchange":"Q","type":"stock","description":"Xoom Corp","shares":525900},{"symbol":"CMS","exchange":"N","type":"stock","description":"CMS Energy Corp","shares":27388400},{"symbol":"PF","exchange":"N","type":"stock","description":"Pinnacle Foods Inc","shares":9693700},{"symbol":"SYF","exchange":"N","type":"stock","description":"Synchrony Financial","shares":6861000},{"symbol":"CUBI","exchange":"Q","type":"stock","description":"Customers Bancorp Inc","shares":1801000},{"symbol":"ATRO","exchange":"Q","type":"stock","description":"Astronics Corp","shares":1554800},{"symbol":"BBOX","exchange":"Q","type":"stock","description":"Black Box Corp","shares":2753600},{"symbol":"AMH","exchange":"N","type":"stock","description":"American Homes 4 Rent","shares":5998800},{"symbol":"PEG","exchange":"N","type":"stock","description":"Public Service Enterprise Group Inc","shares":35559500},{"symbol":"M","exchange":"N","type":"stock","description":"Macy's Inc","shares":25642900},{"symbol":"FFG","exchange":"N","type":"stock","description":"FBL Financial Group Inc","shares":2098500},{"symbol":"LB","exchange":"N","type":"stock","description":"L Brands Inc","shares":17995200},{"symbol":"ORLY","exchange":"Q","type":"stock","description":"O'Reilly Automotive Inc","shares":8939600},{"symbol":"UHAL","exchange":"Q","type":"stock","description":"Amerco Inc","shares":1097100},{"symbol":"ASGN","exchange":"N","type":"stock","description":"On Assignment Inc","shares":6171800},{"symbol":"WINA","exchange":"Q","type":"stock","description":"Winmark Corp","shares":138900},{"symbol":"TMST","exchange":"N","type":"stock","description":"TimkenSteel Corp","shares":3492100},{"symbol":"HWCC","exchange":"Q","type":"stock","description":"Houston Wire & Cable Co","shares":1303600},{"symbol":"PLXS","exchange":"Q","type":"stock","description":"Plexus Corp","shares":4268800},{"symbol":"MATW","exchange":"Q","type":"stock","description":"Matthews International Corporation","shares":2861500},{"symbol":"IPI","exchange":"N","type":"stock","description":"Intrepid Potash Inc","shares":616000},{"symbol":"LMT","exchange":"N","type":"stock","description":"Lockheed Martin Corp","shares":15691700},{"symbol":"GCI","exchange":"N","type":"stock","description":"Gannett Co Inc","shares":15501800},{"symbol":"CSBK","exchange":"Q","type":"stock","description":"Clifton Bancorp Inc","shares":879400},{"symbol":"EGN","exchange":"N","type":"stock","description":"Energen Corp","shares":5813400},{"symbol":"PNFP","exchange":"Q","type":"stock","description":"Pinnacle Financial Partners Inc","shares":4677400},{"symbol":"PLAB","exchange":"Q","type":"stock","description":"Photronics Inc","shares":8653400},{"symbol":"ADMS","exchange":"Q","type":"stock","description":"Adamas Pharmaceuticals Inc","shares":461200},{"symbol":"MTH","exchange":"N","type":"stock","description":"Meritage Homes Corp","shares":4602100},{"symbol":"UAM","exchange":"N","type":"stock","description":"Universal American Corp","shares":6727200},{"symbol":"UBP","exchange":"N","type":"stock","description":"Urstadt Biddle Properties Inc","shares":48000},{"symbol":"BV","exchange":"Q","type":"stock","description":"Bazaarvoice Inc","shares":117900},{"symbol":"MBRG","exchange":"Q","type":"stock","description":"Middleburg Financial Corp.","shares":180500},{"symbol":"PRGX","exchange":"Q","type":"stock","description":"PRGX Global Inc","shares":1353800},{"symbol":"CMI","exchange":"N","type":"stock","description":"Cummins Inc","shares":11685100},{"symbol":"TRC","exchange":"N","type":"stock","description":"Tejon Ranch Co","shares":1225200},{"symbol":"HCKT","exchange":"Q","type":"stock","description":"Hackett Group Inc","shares":3307100},{"symbol":"VRTV","exchange":"N","type":"stock","description":"Veritiv Corp","shares":126300},{"symbol":"THO","exchange":"N","type":"stock","description":"Thor Industries Inc","shares":4300700},{"symbol":"TMO","exchange":"N","type":"stock","description":"Thermo Fisher Scientific Inc","shares":38090500},{"symbol":"TIBX","exchange":"Q","type":"stock","description":"TIBCO Software Inc","shares":4193200},{"symbol":"ASPX","exchange":"Q","type":"stock","description":"Auspex Pharmaceuticals Inc","shares":650100},{"symbol":"FMSA","exchange":"N","type":"stock","description":"FMSA Holdings Inc","shares":254700},{"symbol":"UCBI","exchange":"Q","type":"stock","description":"United Community Banks Inc","shares":5877800},{"symbol":"RST","exchange":"N","type":"stock","description":"Rosetta Stone Inc","shares":817600},{"symbol":"MAS","exchange":"N","type":"stock","description":"Masco Corp","shares":30203400},{"symbol":"BCOV","exchange":"Q","type":"stock","description":"Brightcove Inc","shares":2616400},{"symbol":"PODD","exchange":"Q","type":"stock","description":"Insulet Corp","shares":5266800},{"symbol":"GHM","exchange":"N","type":"stock","description":"Graham Corp","shares":573700},{"symbol":"GOOGL","exchange":"Q","type":"stock","description":"Google Inc","shares":21755400},{"symbol":"NP","exchange":"N","type":"stock","description":"Neenah Paper Inc","shares":2708500},{"symbol":"WDC","exchange":"Q","type":"stock","description":"Western Digital Corp","shares":21924400},{"symbol":"TAP","exchange":"N","type":"stock","description":"Molson Coors Brewing Co","shares":11179600},{"symbol":"HY","exchange":"N","type":"stock","description":"Hyster-Yale Materials Handling Inc","shares":1210500},{"symbol":"VNCE","exchange":"N","type":"stock","description":"Vince Holding Corp","shares":733700},{"symbol":"POOL","exchange":"Q","type":"stock","description":"Pool Corp","shares":3960300},{"symbol":"AJG","exchange":"N","type":"stock","description":"Arthur J Gallagher & Co","shares":7932700},{"symbol":"TOWR","exchange":"N","type":"stock","description":"Tower International Inc","shares":3316100},{"symbol":"DRE","exchange":"N","type":"stock","description":"Duke Realty Corp","shares":29998900},{"symbol":"CTWS","exchange":"Q","type":"stock","description":"Connecticut Water Service Inc","shares":429400},{"symbol":"RJET","exchange":"Q","type":"stock","description":"Republic Airways Holdings Inc","shares":5548900},{"symbol":"ENZ","exchange":"N","type":"stock","description":"Enzo Biochem Inc","shares":3004400},{"symbol":"TEG","exchange":"N","type":"stock","description":"Integrys Energy Group Inc","shares":2630000},{"symbol":"CCS","exchange":"N","type":"stock","description":"Century Communities Inc","shares":404700},{"symbol":"DRAD","exchange":"Q","type":"stock","description":"Digirad Corp","shares":1196600},{"symbol":"FFKY","exchange":"Q","type":"stock","description":"First Financial Service Corp","shares":46400},{"symbol":"PTC","exchange":"Q","type":"stock","description":"PTC Inc","shares":11036400},{"symbol":"PHX","exchange":"N","type":"stock","description":"Panhandle Oil and Gas Inc","shares":363400},{"symbol":"IM","exchange":"N","type":"stock","description":"Ingram Micro Inc","shares":15997000},{"symbol":"EQIX","exchange":"Q","type":"stock","description":"Equinix Inc","shares":1333200},{"symbol":"HWKN","exchange":"Q","type":"stock","description":"Hawkins Inc","shares":487900},{"symbol":"HBIO","exchange":"Q","type":"stock","description":"Harvard Bioscience Inc","shares":2547300},{"symbol":"KSS","exchange":"N","type":"stock","description":"Kohl's Corp","shares":9941200},{"symbol":"BEN","exchange":"N","type":"stock","description":"Franklin Resources Inc","shares":31555800},{"symbol":"MXL","exchange":"N","type":"stock","description":"MaxLinear Inc","shares":2799100},{"symbol":"FHN","exchange":"N","type":"stock","description":"First Horizon National Corp","shares":15069300},{"symbol":"GXP","exchange":"N","type":"stock","description":"Great Plains Energy Inc","shares":9127300},{"symbol":"EFII","exchange":"Q","type":"stock","description":"Electronics for Imaging Inc","shares":5165700},{"symbol":"SYK","exchange":"N","type":"stock","description":"Stryker Corporation","shares":23630200},{"symbol":"FRAN","exchange":"Q","type":"stock","description":"Francescas Holdings Corp","shares":4553100},{"symbol":"HYH","exchange":"N","type":"stock","description":"Halyard Health Inc","shares":588300},{"symbol":"PAHC","exchange":"Q","type":"stock","description":"Phibro Animal Health Corp","shares":471600},{"symbol":"CAPL","exchange":"N","type":"stock","description":"CrossAmerica Partners LP","shares":452800},{"symbol":"TRMK","exchange":"Q","type":"stock","description":"Trustmark Corp","shares":3619300},{"symbol":"CORR","exchange":"N","type":"stock","description":"CorEnergy Infrastructure Trust Inc","shares":502900},{"symbol":"DNKN","exchange":"Q","type":"stock","description":"Dunkin Brands Group Inc","shares":8362500},{"symbol":"ONB","exchange":"Q","type":"stock","description":"Old National Bancorp","shares":1587000},{"symbol":"BRS","exchange":"N","type":"stock","description":"Bristow Group Inc","shares":3918500},{"symbol":"CWEI","exchange":"N","type":"stock","description":"Clayton Williams Energy Inc","shares":742300},{"symbol":"TXT","exchange":"N","type":"stock","description":"Textron Inc","shares":21087600},{"symbol":"JJSF","exchange":"Q","type":"stock","description":"J&J Snack Foods Corp","shares":1870200},{"symbol":"UVSP","exchange":"Q","type":"stock","description":"Univest Corp of Pennsylvania","shares":1051700},{"symbol":"DRII","exchange":"N","type":"stock","description":"Diamond Resorts International Inc","shares":1354000},{"symbol":"HRTG","exchange":"N","type":"stock","description":"Heritage Insurance Holdings Inc","shares":186700},{"symbol":"IPCM","exchange":"Q","type":"stock","description":"IPC The Hospitalist Co Inc","shares":1548600},{"symbol":"MIK","exchange":"Q","type":"stock","description":"The Michaels Companies Inc","shares":1643600},{"symbol":"NTWK","exchange":"Q","type":"stock","description":"Netsol Technologies Inc","shares":53100},{"symbol":"DFS","exchange":"N","type":"stock","description":"Discover Financial Services","shares":42972300},{"symbol":"BFAM","exchange":"N","type":"stock","description":"Bright Horizons Family Solutions Inc","shares":3030700},{"symbol":"TRMB","exchange":"Q","type":"stock","description":"Trimble Navigation Ltd","shares":14734300},{"symbol":"SLXP","exchange":"Q","type":"stock","description":"Salix Pharmaceuticals Ltd","shares":963900},{"symbol":"FIBK","exchange":"Q","type":"stock","description":"First Interstate Bancsystem","shares":937200},{"symbol":"KR","exchange":"N","type":"stock","description":"Kroger Co","shares":51147200},{"symbol":"IRG","exchange":"Q","type":"stock","description":"Ignite Restaurant Group Inc","shares":286800},{"symbol":"FIVE","exchange":"Q","type":"stock","description":"Five Below Inc","shares":3437200},{"symbol":"FTR","exchange":"Q","type":"stock","description":"Frontier Communications Corp","shares":41310500},{"symbol":"LLY","exchange":"N","type":"stock","description":"Eli Lilly and Co","shares":57373000},{"symbol":"EA","exchange":"Q","type":"stock","description":"Electronic Arts Inc","shares":30377400},{"symbol":"REMY","exchange":"Q","type":"stock","description":"Remy International, Inc.","shares":493500},{"symbol":"APTS","exchange":"A","type":"stock","description":"Preferred Apartment Communities Inc","shares":90200},{"symbol":"S","exchange":"N","type":"stock","description":"Sprint Corp","shares":46215700},{"symbol":"BLOX","exchange":"N","type":"stock","description":"Infoblox Inc","shares":3661600},{"symbol":"IDSY","exchange":"Q","type":"stock","description":"I D Systems Inc","shares":126200},{"symbol":"NTK","exchange":"Q","type":"stock","description":"Nortek Inc","shares":134800},{"symbol":"IMMR","exchange":"Q","type":"stock","description":"Immersion Corp","shares":1734200},{"symbol":"IDXX","exchange":"Q","type":"stock","description":"Idexx Laboratories","shares":2687600},{"symbol":"BDSI","exchange":"Q","type":"stock","description":"BioDelivery Sciences International Inc","shares":4035300},{"symbol":"TGI","exchange":"N","type":"stock","description":"Triumph Group Inc","shares":3607900},{"symbol":"TRN","exchange":"N","type":"stock","description":"Trinity Industries Inc","shares":8002800},{"symbol":"TNC","exchange":"N","type":"stock","description":"Tennant Co","shares":1794000},{"symbol":"CPS","exchange":"N","type":"stock","description":"Cooper-Standard Holdings Inc","shares":257700},{"symbol":"MRD","exchange":"Q","type":"stock","description":"Memorial Resource Development Corp","shares":4115400},{"symbol":"SEV","exchange":"Q","type":"stock","description":"Sevcon Inc","shares":98700},{"symbol":"QEP","exchange":"N","type":"stock","description":"QEP Resources Inc","shares":14626200},{"symbol":"CXO","exchange":"N","type":"stock","description":"Concho Resources Inc","shares":10208700},{"symbol":"HALL","exchange":"Q","type":"stock","description":"Hallmark Financial Services Inc","shares":2102100},{"symbol":"ABT","exchange":"N","type":"stock","description":"Abbott Laboratories","shares":118320800},{"symbol":"WPX","exchange":"N","type":"stock","description":"WPX Energy Inc","shares":15280100},{"symbol":"CAB","exchange":"N","type":"stock","description":"Cabela's Inc","shares":302800},{"symbol":"POL","exchange":"N","type":"stock","description":"PolyOne Corp","shares":9884700},{"symbol":"ARR","exchange":"N","type":"stock","description":"ARMOUR Residential REIT Inc","shares":1396300},{"symbol":"EEQ","exchange":"N","type":"stock","description":"Enbridge Energy Management LLC","shares":417600},{"symbol":"XENT","exchange":"Q","type":"stock","description":"Intersect ENT Inc","shares":586300},{"symbol":"DD","exchange":"N","type":"stock","description":"E I du Pont de Nemours & Company","shares":39322600},{"symbol":"CVG","exchange":"N","type":"stock","description":"Convergys Corporation","shares":10785300},{"symbol":"DXLG","exchange":"Q","type":"stock","description":"Destination XL Group Inc","shares":2089300},{"symbol":"FULT","exchange":"Q","type":"stock","description":"Fulton Financial Corp","shares":16614400},{"symbol":"TBNK","exchange":"Q","type":"stock","description":"Territorial Bancorp Inc","shares":426900},{"symbol":"SIFI","exchange":"Q","type":"stock","description":"SI Financial Group Inc","shares":671400},{"symbol":"XEL","exchange":"N","type":"stock","description":"Xcel Energy Inc","shares":28390900},{"symbol":"WAFD","exchange":"Q","type":"stock","description":"Washington Federal Inc","shares":10411100},{"symbol":"HES","exchange":"N","type":"stock","description":"Hess Corp","shares":24513600},{"symbol":"UHS","exchange":"N","type":"stock","description":"Universal Health Services Inc","shares":10184100},{"symbol":"BX","exchange":"N","type":"stock","description":"Blackstone Group LP","shares":2142700},{"symbol":"PGI","exchange":"N","type":"stock","description":"Premiere Global Services Inc","shares":5233700},{"symbol":"CME","exchange":"Q","type":"stock","description":"CME Group Inc","shares":17989200},{"symbol":"CMO","exchange":"N","type":"stock","description":"Capstead Mortgage Corp","shares":4371200},{"symbol":"CYS","exchange":"N","type":"stock","description":"CYS Investments Inc","shares":8377200},{"symbol":"BXMT","exchange":"N","type":"stock","description":"Blackstone Mortgage Trust Inc","shares":3652400},{"symbol":"COWN","exchange":"Q","type":"stock","description":"Cowen Group, Inc.","shares":10643500},{"symbol":"ACOR","exchange":"Q","type":"stock","description":"Acorda Therapeutics Inc","shares":2887800},{"symbol":"CFNL","exchange":"Q","type":"stock","description":"Cardinal Financial Corp","shares":4026100},{"symbol":"BKMU","exchange":"Q","type":"stock","description":"Bank Mutual Corp","shares":3181300},{"symbol":"ININ","exchange":"Q","type":"stock","description":"Interactive Intelligence Group Inc","shares":852400},{"symbol":"AEGN","exchange":"Q","type":"stock","description":"Aegion Corp","shares":4584900},{"symbol":"MCGC","exchange":"Q","type":"stock","description":"MCG Capital Corporation","shares":370100},{"symbol":"HBOS","exchange":"Q","type":"stock","description":"Heritage Financial Group Inc","shares":304900},{"symbol":"DRH","exchange":"N","type":"stock","description":"Diamondrock Hospitality Co","shares":18210000},{"symbol":"EXAR","exchange":"N","type":"stock","description":"Exar Corp","shares":6176100},{"symbol":"HSIC","exchange":"Q","type":"stock","description":"Henry Schein Inc","shares":6001000},{"symbol":"DY","exchange":"N","type":"stock","description":"Dycom Industries Inc","shares":3657800},{"symbol":"WMAR","exchange":"Q","type":"stock","description":"West Marine Inc","shares":2500300},{"symbol":"REIS","exchange":"Q","type":"stock","description":"Reis, Inc.","shares":1060000},{"symbol":"SIGM","exchange":"Q","type":"stock","description":"Sigma Designs Inc","shares":3491500},{"symbol":"FSP","exchange":"A","type":"stock","description":"Franklin Street Properties Corp","shares":6850100},{"symbol":"DTSI","exchange":"Q","type":"stock","description":"DTS Inc","shares":3100400},{"symbol":"CIX","exchange":"A","type":"stock","description":"Compx International Inc","shares":146300},{"symbol":"BKD","exchange":"N","type":"stock","description":"Brookdale Senior Living Inc","shares":7267000},{"symbol":"AMG","exchange":"N","type":"stock","description":"Affiliated Managers Group Inc","shares":6000600},{"symbol":"CAP","exchange":"N","type":"stock","description":"CAI International Inc","shares":1823400},{"symbol":"P","exchange":"N","type":"stock","description":"Pandora Media Inc","shares":8714500},{"symbol":"VDSI","exchange":"Q","type":"stock","description":"Vasco Data Security International Inc","shares":2065100},{"symbol":"HWBK","exchange":"Q","type":"stock","description":"Hawthorn Bancshares Inc","shares":53500},{"symbol":"CNCE","exchange":"Q","type":"stock","description":"Concert Pharmaceuticals Inc","shares":327300},{"symbol":"OKSB","exchange":"Q","type":"stock","description":"Southwest Bancorp Inc","shares":2421300},{"symbol":"QUMU","exchange":"Q","type":"stock","description":"Qumu Corp","shares":723600},{"symbol":"RFMD","exchange":"Q","type":"stock","description":"RF Micro Devices Inc","shares":4567900},{"symbol":"FIG","exchange":"N","type":"stock","description":"Fortress Investment Group LLC","shares":877600},{"symbol":"IBOC","exchange":"Q","type":"stock","description":"International Bancshares Corp","shares":5118900},{"symbol":"KEM","exchange":"N","type":"stock","description":"Kemet Corp","shares":3709000},{"symbol":"KCLI","exchange":"Q","type":"stock","description":"Kansas City Life Insurance","shares":59700},{"symbol":"FBRC","exchange":"Q","type":"stock","description":"FBR & Co","shares":803500},{"symbol":"SYA","exchange":"N","type":"stock","description":"Symetra Financial Corp","shares":11645900},{"symbol":"HFBC","exchange":"Q","type":"stock","description":"HopFed Bancorp Inc","shares":284600},{"symbol":"SXC","exchange":"N","type":"stock","description":"SunCoke Energy Inc","shares":4992500},{"symbol":"HPQ","exchange":"N","type":"stock","description":"Hewlett-Packard Co","shares":145140600},{"symbol":"BR","exchange":"N","type":"stock","description":"Broadridge Financial Solutions","shares":10952100},{"symbol":"DMD","exchange":"N","type":"stock","description":"Demand Media Inc","shares":525200},{"symbol":"UNH","exchange":"N","type":"stock","description":"UnitedHealth Group Inc","shares":80386900},{"symbol":"CRAY","exchange":"Q","type":"stock","description":"Cray Inc","shares":2548300},{"symbol":"SYRG","exchange":"A","type":"stock","description":"Synergy Resources Corp","shares":5377800},{"symbol":"WEX","exchange":"N","type":"stock","description":"WEX Inc","shares":3545100},{"symbol":"AMT","exchange":"N","type":"stock","description":"American Tower Corp","shares":34805400},{"symbol":"ISSI","exchange":"Q","type":"stock","description":"Integrated Silicon Solution Inc","shares":4630100},{"symbol":"IART","exchange":"Q","type":"stock","description":"Integra Lifesciences Holdings Corp","shares":2093500},{"symbol":"QLTY","exchange":"Q","type":"stock","description":"Quality Distribution Inc","shares":3418400},{"symbol":"CUI","exchange":"Q","type":"stock","description":"CUI Global Inc","shares":959300},{"symbol":"SCL","exchange":"N","type":"stock","description":"Stepan Co","shares":1327200},{"symbol":"EGP","exchange":"N","type":"stock","description":"EastGroup Properties Inc","shares":1679900},{"symbol":"INGR","exchange":"N","type":"stock","description":"Ingredion Inc","shares":5051600},{"symbol":"CDR","exchange":"N","type":"stock","description":"Cedar Realty Trust Inc","shares":7492700},{"symbol":"BBBY","exchange":"Q","type":"stock","description":"Bed Bath & Beyond Inc","shares":12544400},{"symbol":"ARPI","exchange":"N","type":"stock","description":"American Residential Properties Inc","shares":1385400},{"symbol":"SHO","exchange":"N","type":"stock","description":"Sunstone Hotel Investors Inc","shares":21839800},{"symbol":"TJX","exchange":"N","type":"stock","description":"TJX Companies","shares":61735200},{"symbol":"JBL","exchange":"N","type":"stock","description":"Jabil Circuit Inc","shares":15546000},{"symbol":"PJC","exchange":"N","type":"stock","description":"Piper Jaffray Cos","shares":1809900},{"symbol":"NMRX","exchange":"Q","type":"stock","description":"Numerex Corp","shares":1146700},{"symbol":"NRG","exchange":"N","type":"stock","description":"NRG Energy Inc","shares":48152500},{"symbol":"AMRI","exchange":"Q","type":"stock","description":"Albany Molecular Research Inc","shares":1025200},{"symbol":"KBR","exchange":"N","type":"stock","description":"KBR Inc","shares":9179000},{"symbol":"FOE","exchange":"N","type":"stock","description":"Ferro Corp","shares":7639000},{"symbol":"EXL","exchange":"N","type":"stock","description":"Excel Trust Inc","shares":4618300},{"symbol":"BANC","exchange":"N","type":"stock","description":"Banc of California Inc","shares":928400},{"symbol":"NRF","exchange":"N","type":"stock","description":"Northstar Realty Finance Corp","shares":4668400},{"symbol":"RUBI","exchange":"N","type":"stock","description":"The Rubicon Project Inc","shares":1079100},{"symbol":"BLDR","exchange":"Q","type":"stock","description":"Builders FirstSource Inc","shares":2305800},{"symbol":"CARA","exchange":"Q","type":"stock","description":"Cara Therapeutics Inc","shares":419100},{"symbol":"MTX","exchange":"N","type":"stock","description":"Minerals Technologies Inc","shares":2665400},{"symbol":"NAV","exchange":"N","type":"stock","description":"Navistar International Corp","shares":2080500},{"symbol":"ALJ","exchange":"N","type":"stock","description":"Alon USA Energy Inc","shares":1045700},{"symbol":"ABC","exchange":"N","type":"stock","description":"AmerisourceBergen Corp","shares":15373200},{"symbol":"EVHC","exchange":"N","type":"stock","description":"Envision Healthcare Holdings Inc","shares":12230400},{"symbol":"POWR","exchange":"N","type":"stock","description":"PowerSecure International Inc","shares":165400},{"symbol":"PSA","exchange":"N","type":"stock","description":"Public Storage","shares":11777000},{"symbol":"PRU","exchange":"N","type":"stock","description":"Prudential Financial Inc","shares":36876300},{"symbol":"SENEA","exchange":"Q","type":"stock","description":"Seneca Foods Corp","shares":731100},{"symbol":"KFFB","exchange":"Q","type":"stock","description":"Kentucky First Federal Bancorp","shares":61300},{"symbol":"CBOE","exchange":"Q","type":"stock","description":"CBOE Holdings Inc","shares":6634200},{"symbol":"LSCC","exchange":"Q","type":"stock","description":"Lattice Semiconductor Corp","shares":14962600},{"symbol":"INFA","exchange":"Q","type":"stock","description":"Informatica Corp","shares":7084900},{"symbol":"MPAA","exchange":"Q","type":"stock","description":"Motorcar Parts of America Inc","shares":2274300},{"symbol":"NS","exchange":"N","type":"stock","description":"NuStar Energy, L.P.","shares":72300},{"symbol":"WSO","exchange":"N","type":"stock","description":"Watsco Inc","shares":1517800},{"symbol":"SONC","exchange":"Q","type":"stock","description":"Sonic Corp","shares":3411000},{"symbol":"SOHU","exchange":"Q","type":"stock","description":"Sohu.com Inc","shares":565000},{"symbol":"FRBK","exchange":"Q","type":"stock","description":"Republic First Bancorp Inc","shares":741300},{"symbol":"RCII","exchange":"Q","type":"stock","description":"Rent-A-Center Inc","shares":5429900},{"symbol":"TTEC","exchange":"Q","type":"stock","description":"TeleTech Holdings Inc","shares":2690100},{"symbol":"PCYC","exchange":"Q","type":"stock","description":"Pharmacyclics Inc","shares":1520700},{"symbol":"DTV","exchange":"Q","type":"stock","description":"Directv","shares":31691700},{"symbol":"DRIV","exchange":"Q","type":"stock","description":"Digital River Inc","shares":2787100},{"symbol":"FXCB","exchange":"Q","type":"stock","description":"Fox Chase Bancorp Inc","shares":1003900},{"symbol":"LQ","exchange":"N","type":"stock","description":"La Quinta Holdings Inc","shares":6073200},{"symbol":"LDR","exchange":"N","type":"stock","description":"Landauer Inc","shares":538100},{"symbol":"FLXS","exchange":"Q","type":"stock","description":"Flexsteel Industries Inc","shares":683700},{"symbol":"MYCC","exchange":"N","type":"stock","description":"ClubCorp Holdings Inc","shares":1465300},{"symbol":"ZINC","exchange":"Q","type":"stock","description":"Horsehead Holding Corp","shares":2380600},{"symbol":"ACIW","exchange":"Q","type":"stock","description":"ACI Worldwide Inc","shares":7757100},{"symbol":"BLT","exchange":"N","type":"stock","description":"Blount International Inc","shares":5620500},{"symbol":"STWD","exchange":"N","type":"stock","description":"Starwood Property Trust, Inc.","shares":14019500},{"symbol":"KFRC","exchange":"Q","type":"stock","description":"Kforce Inc","shares":3136200},{"symbol":"APAM","exchange":"N","type":"stock","description":"Artisan Partners Asset Management Inc","shares":3169100},{"symbol":"NATI","exchange":"Q","type":"stock","description":"National Instruments Corp","shares":5864900},{"symbol":"SSD","exchange":"N","type":"stock","description":"Simpson Manufacturing","shares":3302300},{"symbol":"ARE","exchange":"N","type":"stock","description":"Alexandria Real Estate Equities Inc","shares":5193200},{"symbol":"SBUX","exchange":"Q","type":"stock","description":"Starbucks Corp","shares":63919400},{"symbol":"SPF","exchange":"N","type":"stock","description":"Standard Pacific Corp","shares":8642100},{"symbol":"SLI","exchange":"A","type":"stock","description":"SL Industries Inc","shares":67200},{"symbol":"SANM","exchange":"Q","type":"stock","description":"Sanmina Corp","shares":13923800},{"symbol":"INN","exchange":"N","type":"stock","description":"Summit Hotel Properties Inc","shares":10937400},{"symbol":"STJ","exchange":"N","type":"stock","description":"St Jude Medical Inc","shares":21167400},{"symbol":"MHGC","exchange":"Q","type":"stock","description":"Morgans Hotel Group Co","shares":1295400},{"symbol":"FDX","exchange":"N","type":"stock","description":"FedEx Corp","shares":20934300},{"symbol":"ACCO","exchange":"N","type":"stock","description":"ACCO Brands Corp","shares":15799700},{"symbol":"SMLP","exchange":"N","type":"stock","description":"Summit Midstream Partners LP","shares":918900},{"symbol":"MSG","exchange":"Q","type":"stock","description":"Madison Square Garden Co","shares":4150500},{"symbol":"PL","exchange":"N","type":"stock","description":"Protective Life Corp","shares":4402100},{"symbol":"GIFI","exchange":"Q","type":"stock","description":"Gulf Island Fabrication Inc","shares":1495700},{"symbol":"CW","exchange":"N","type":"stock","description":"Curtiss-Wright Corp","shares":5170800},{"symbol":"CST","exchange":"N","type":"stock","description":"CST Brands Inc","shares":6823900},{"symbol":"TIF","exchange":"N","type":"stock","description":"Tiffany & Co","shares":7117700},{"symbol":"SPOK","exchange":"Q","type":"stock","description":"Spok Holdings Inc","shares":2388000},{"symbol":"URBN","exchange":"Q","type":"stock","description":"Urban Outfitters Inc","shares":7373900},{"symbol":"RNG","exchange":"N","type":"stock","description":"RingCentral Inc.","shares":1815300},{"symbol":"HBI","exchange":"N","type":"stock","description":"Hanesbrands Inc","shares":8250200},{"symbol":"ESS","exchange":"N","type":"stock","description":"Essex Property Trust Inc","shares":4899900},{"symbol":"LXK","exchange":"N","type":"stock","description":"Lexmark International Inc","shares":2561200},{"symbol":"LUK","exchange":"N","type":"stock","description":"Leucadia National Corp","shares":16007100},{"symbol":"FC","exchange":"N","type":"stock","description":"Franklin Covey Co","shares":1320400},{"symbol":"CELG","exchange":"Q","type":"stock","description":"Celgene Corp","shares":67169000},{"symbol":"BHLB","exchange":"N","type":"stock","description":"Berkshire Hills Bancorp Inc","shares":897800},{"symbol":"LDOS","exchange":"N","type":"stock","description":"Leidos Holdings Inc","shares":3041000},{"symbol":"ADBE","exchange":"Q","type":"stock","description":"Adobe Systems Inc","shares":41336100},{"symbol":"LBRDA","exchange":"Q","type":"stock","description":"Liberty Broadband Corp","shares":664700},{"symbol":"SEE","exchange":"N","type":"stock","description":"Sealed Air Corp","shares":18534800},{"symbol":"SHOS","exchange":"Q","type":"stock","description":"Sears Hometown & Outlet Stores Inc","shares":1670600},{"symbol":"BAH","exchange":"N","type":"stock","description":"Booz Allen Hamilton Holding Corp","shares":8331100},{"symbol":"IDA","exchange":"N","type":"stock","description":"Idacorp Inc","shares":2425500},{"symbol":"RBC","exchange":"N","type":"stock","description":"Regal-Beloit Corp","shares":3724400},{"symbol":"CPN","exchange":"N","type":"stock","description":"Calpine Corp","shares":28743700},{"symbol":"AMRK","exchange":"Q","type":"stock","description":"A-Mark Precious Metals Inc","shares":159500},{"symbol":"CBST","exchange":"Q","type":"stock","description":"Cubist Pharmaceuticals Inc","shares":5197500},{"symbol":"WTS","exchange":"N","type":"stock","description":"Watts Water Technologies Inc","shares":3339200},{"symbol":"RAIL","exchange":"Q","type":"stock","description":"FreightCar America Inc","shares":1227500},{"symbol":"LXP","exchange":"N","type":"stock","description":"Lexington Realty Trust","shares":11241200},{"symbol":"NEE","exchange":"N","type":"stock","description":"NextEra Energy Inc","shares":27806400},{"symbol":"ECHO","exchange":"Q","type":"stock","description":"Echo Global Logistics Inc","shares":1945500},{"symbol":"HBCP","exchange":"Q","type":"stock","description":"Home Bancorp Inc","shares":139100},{"symbol":"EXP","exchange":"N","type":"stock","description":"Eagle Materials Inc","shares":3667800},{"symbol":"BWA","exchange":"N","type":"stock","description":"BorgWarner Inc","shares":18590700},{"symbol":"SONA","exchange":"Q","type":"stock","description":"Southern National Bancorp of Virginia Inc","shares":221300},{"symbol":"KEYS","exchange":"N","type":"stock","description":"Keysight Technologies Inc","shares":4521300},{"symbol":"AHT","exchange":"N","type":"stock","description":"Ashford Hospitality Trust, Inc.","shares":5074000},{"symbol":"ADP","exchange":"Q","type":"stock","description":"Automatic Data Processing","shares":24865100},{"symbol":"ROK","exchange":"N","type":"stock","description":"Rockwell Automation Inc","shares":6610300},{"symbol":"ELLI","exchange":"N","type":"stock","description":"Ellie Mae Inc","shares":1857900},{"symbol":"NBIX","exchange":"Q","type":"stock","description":"Neurocrine Biosciences Inc","shares":2613900},{"symbol":"PFSI","exchange":"N","type":"stock","description":"PennyMac Financial Services Inc","shares":706100},{"symbol":"UCP","exchange":"N","type":"stock","description":"UCP Inc","shares":1073300},{"symbol":"BNCN","exchange":"Q","type":"stock","description":"BNC Bancorp","shares":208800},{"symbol":"PIR","exchange":"N","type":"stock","description":"Pier 1 Imports Inc","shares":8860700},{"symbol":"NUS","exchange":"N","type":"stock","description":"Nu Skin Enterprises Inc","shares":160300},{"symbol":"TTEK","exchange":"Q","type":"stock","description":"Tetra Tech Inc","shares":7229000},{"symbol":"TER","exchange":"N","type":"stock","description":"Teradyne Inc","shares":15201300},{"symbol":"NI","exchange":"N","type":"stock","description":"NiSource Inc","shares":23636400},{"symbol":"VZ","exchange":"N","type":"stock","description":"Verizon Communications Inc","shares":251234400},{"symbol":"SGNT","exchange":"Q","type":"stock","description":"Sagent Pharmaceuticals Co","shares":1786500},{"symbol":"HRS","exchange":"N","type":"stock","description":"Harris Corporation","shares":7991700},{"symbol":"CBAN","exchange":"Q","type":"stock","description":"Colony Bankcorp Inc","shares":93900},{"symbol":"AAN","exchange":"N","type":"stock","description":"Aaron's Inc","shares":6756500},{"symbol":"ROP","exchange":"N","type":"stock","description":"Roper Industries Inc","shares":11106700},{"symbol":"HNRG","exchange":"Q","type":"stock","description":"Hallador Energy Co","shares":223300},{"symbol":"SATS","exchange":"Q","type":"stock","description":"EchoStar Corp","shares":2769300},{"symbol":"AKAM","exchange":"Q","type":"stock","description":"Akamai Technologies Inc","shares":13275400},{"symbol":"PM","exchange":"N","type":"stock","description":"Philip Morris International Inc","shares":100239700},{"symbol":"DAKT","exchange":"Q","type":"stock","description":"Daktronics Inc","shares":3513000},{"symbol":"CYTK","exchange":"Q","type":"stock","description":"Cytokinetics Inc","shares":657200},{"symbol":"WG","exchange":"N","type":"stock","description":"Willbros Group Inc","shares":4553400},{"symbol":"CARB","exchange":"Q","type":"stock","description":"Carbonite Inc","shares":665600},{"symbol":"NFBK","exchange":"Q","type":"stock","description":"Northfield Bancorp Inc","shares":2582100},{"symbol":"HF","exchange":"N","type":"stock","description":"HFF Inc","shares":4078900},{"symbol":"GPT","exchange":"N","type":"stock","description":"Gramercy Property Trust Inc","shares":3091700},{"symbol":"DRNA","exchange":"Q","type":"stock","description":"Dicerna Pharmaceuticals Inc","shares":67500},{"symbol":"GKNT","exchange":"Q","type":"stock","description":"Geeknet Inc","shares":148500},{"symbol":"UAN","exchange":"N","type":"stock","description":"CVR Partners LP","shares":384900},{"symbol":"ACC","exchange":"N","type":"stock","description":"American Campus Communities Inc","shares":9530700},{"symbol":"CRUS","exchange":"Q","type":"stock","description":"Cirrus Logic Inc","shares":6301700},{"symbol":"CI","exchange":"N","type":"stock","description":"Cigna Corp","shares":25063600},{"symbol":"SKX","exchange":"N","type":"stock","description":"Skechers USA Inc","shares":4201800},{"symbol":"RLH","exchange":"N","type":"stock","description":"Red Lion Hotels Corp","shares":1462000},{"symbol":"MAC","exchange":"N","type":"stock","description":"Macerich Co","shares":10130300},{"symbol":"POWI","exchange":"Q","type":"stock","description":"Power Integrations Inc","shares":2878100},{"symbol":"TECH","exchange":"Q","type":"stock","description":"Bio-Techne Corp","shares":2545800},{"symbol":"PRA","exchange":"N","type":"stock","description":"Proassurance Corp","shares":4921900},{"symbol":"REXX","exchange":"Q","type":"stock","description":"Rex Energy Corp","shares":1768400},{"symbol":"PBH","exchange":"N","type":"stock","description":"Prestige Brands Holdings Inc","shares":6902400},{"symbol":"SMPL","exchange":"Q","type":"stock","description":"Simplicity Bancorp Inc","shares":233000},{"symbol":"JNPR","exchange":"N","type":"stock","description":"Juniper Networks Inc","shares":31654200},{"symbol":"TRR","exchange":"N","type":"stock","description":"TRC Companies Inc","shares":2439200},{"symbol":"LNT","exchange":"N","type":"stock","description":"Alliant Energy Corp","shares":5573900},{"symbol":"ESBF","exchange":"Q","type":"stock","description":"ESB Financial Corp","shares":600600},{"symbol":"CMG","exchange":"N","type":"stock","description":"Chipotle Mexican Grill Inc","shares":2767900},{"symbol":"ARRY","exchange":"Q","type":"stock","description":"Array BioPharma Inc","shares":2832800},{"symbol":"XOXO","exchange":"N","type":"stock","description":"XO Group Inc","shares":2477900},{"symbol":"WU","exchange":"N","type":"stock","description":"Western Union Co","shares":18577800},{"symbol":"ASFI","exchange":"Q","type":"stock","description":"Asta Funding Inc","shares":709200},{"symbol":"SPB","exchange":"N","type":"stock","description":"Spectrum Brands Holdings Inc","shares":1354400},{"symbol":"VMEM","exchange":"N","type":"stock","description":"Violin Memory Inc","shares":1868100},{"symbol":"ISBC","exchange":"Q","type":"stock","description":"Investors Bancorp Inc","shares":27651600},{"symbol":"NDSN","exchange":"Q","type":"stock","description":"Nordson Corp","shares":3128000},{"symbol":"VCYT","exchange":"Q","type":"stock","description":"Veracyte Inc","shares":446700},{"symbol":"GMCR","exchange":"Q","type":"stock","description":"Keurig Green Mountain Inc","shares":7771100},{"symbol":"EEP","exchange":"N","type":"stock","description":"Enbridge Energy Partners LP","shares":39100},{"symbol":"RM","exchange":"N","type":"stock","description":"Regional Management Corp","shares":420400},{"symbol":"ESSA","exchange":"Q","type":"stock","description":"ESSA Bancorp Inc","shares":549900},{"symbol":"CWT","exchange":"N","type":"stock","description":"California Water Service Group","shares":2834600},{"symbol":"LNG","exchange":"A","type":"stock","description":"Cheniere Energy Inc","shares":9968000},{"symbol":"ROCK","exchange":"Q","type":"stock","description":"Gibraltar Industries Inc","shares":4920000},{"symbol":"OZM","exchange":"N","type":"stock","description":"Och-Ziff Capital Management Group LLC","shares":1450900},{"symbol":"RYI","exchange":"N","type":"stock","description":"Ryerson Holding Corp","shares":259200},{"symbol":"ITG","exchange":"N","type":"stock","description":"Investment Technology Group Inc","shares":4202400},{"symbol":"MA","exchange":"N","type":"stock","description":"MasterCard Inc","shares":85915200},{"symbol":"IILG","exchange":"Q","type":"stock","description":"Interval Leisure Group Inc","shares":4450700},{"symbol":"VISI","exchange":"A","type":"stock","description":"Volt Information Science Inc","shares":920900},{"symbol":"KIRK","exchange":"Q","type":"stock","description":"Kirkland's Inc","shares":2180800},{"symbol":"SHW","exchange":"N","type":"stock","description":"Sherwin-Williams Co","shares":8792300},{"symbol":"LGCY","exchange":"Q","type":"stock","description":"Legacy Reserves LP","shares":71500},{"symbol":"UVV","exchange":"N","type":"stock","description":"Universal Corp","shares":1448200},{"symbol":"IRC","exchange":"N","type":"stock","description":"Inland Real Estate Corp","shares":4910600},{"symbol":"BCOR","exchange":"Q","type":"stock","description":"Blucora Inc","shares":3499400},{"symbol":"PLT","exchange":"N","type":"stock","description":"Plantronics","shares":4377000},{"symbol":"COLM","exchange":"Q","type":"stock","description":"Columbia Sportswear Co","shares":2223700},{"symbol":"SO","exchange":"N","type":"stock","description":"Southern Co","shares":35854700},{"symbol":"SHEN","exchange":"Q","type":"stock","description":"Shenandoah Telecommunications Co","shares":1309100},{"symbol":"DGX","exchange":"N","type":"stock","description":"Quest Diagnostics Inc","shares":6377600},{"symbol":"FLXN","exchange":"Q","type":"stock","description":"Flexion Therapeutics Inc","shares":417800},{"symbol":"SBRA","exchange":"Q","type":"stock","description":"Sabra Health Care REIT Inc","shares":4971500},{"symbol":"PMBC","exchange":"Q","type":"stock","description":"Pacific Mercantile Bancorp","shares":546500},{"symbol":"NBTB","exchange":"Q","type":"stock","description":"NBT Bancorp Inc","shares":2133000},{"symbol":"CCRN","exchange":"Q","type":"stock","description":"Cross Country Healthcare Inc","shares":5340100},{"symbol":"WLB","exchange":"Q","type":"stock","description":"Westmoreland Coal Co","shares":590400},{"symbol":"BA","exchange":"N","type":"stock","description":"Boeing Co","shares":49177500},{"symbol":"PWX","exchange":"Q","type":"stock","description":"Providence & Worcester Railroad Co","shares":163600},{"symbol":"CBG","exchange":"N","type":"stock","description":"CBRE Group Inc","shares":33437200},{"symbol":"CBK","exchange":"N","type":"stock","description":"Christopher & Banks Corp","shares":5568600},{"symbol":"TSLX","exchange":"N","type":"stock","description":"TPG Specialty Lending Inc","shares":49200},{"symbol":"ADK","exchange":"A","type":"stock","description":"AdCare Health Systems Inc","shares":205900},{"symbol":"NECB","exchange":"Q","type":"stock","description":"Northeast Community Bancorp Inc","shares":316100},{"symbol":"FMBI","exchange":"Q","type":"stock","description":"First Midwest Bancorp Inc","shares":10275000},{"symbol":"VBTX","exchange":"Q","type":"stock","description":"Veritex Holdings Inc","shares":162300},{"symbol":"HBAN","exchange":"Q","type":"stock","description":"Huntington Bancshares Inc","shares":78820400},{"symbol":"RUTH","exchange":"Q","type":"stock","description":"Ruth's Hospitality Group Inc","shares":4836500},{"symbol":"HRC","exchange":"N","type":"stock","description":"Hill-Rom Holdings Inc","shares":4811800},{"symbol":"AWRE","exchange":"Q","type":"stock","description":"Aware Inc","shares":1355700},{"symbol":"DX","exchange":"N","type":"stock","description":"Dynex Capital Inc","shares":1155100},{"symbol":"CTO","exchange":"A","type":"stock","description":"Consolidated-Tomoka Land Co.","shares":188200},{"symbol":"CCO","exchange":"N","type":"stock","description":"Clear Channel Outdoor Holdings Inc","shares":1513100},{"symbol":"PATR","exchange":"Q","type":"stock","description":"Patriot Transportation Holdings Inc","shares":268500},{"symbol":"PMD","exchange":"Q","type":"stock","description":"Psychemedics Corp","shares":222900},{"symbol":"PRAA","exchange":"Q","type":"stock","description":"PRA Group Inc","shares":2073700},{"symbol":"SUPN","exchange":"Q","type":"stock","description":"Supernus Pharmaceuticals Inc","shares":337800},{"symbol":"SM","exchange":"N","type":"stock","description":"SM Energy Co","shares":5859700},{"symbol":"SBAC","exchange":"Q","type":"stock","description":"SBA Communications Corp","shares":14220500},{"symbol":"VMW","exchange":"N","type":"stock","description":"VMWare Inc","shares":7052400},{"symbol":"IP","exchange":"N","type":"stock","description":"International Paper Co","shares":37653400},{"symbol":"EOPN","exchange":"Q","type":"stock","description":"E2open Inc","shares":770800},{"symbol":"PEGA","exchange":"Q","type":"stock","description":"Pegasystems Inc","shares":3712500},{"symbol":"FFKT","exchange":"Q","type":"stock","description":"Farmers Capital Bank Corp","shares":241000},{"symbol":"STCK","exchange":"Q","type":"stock","description":"Stock Building Supply Holdings Inc","shares":1836800},{"symbol":"RLJ","exchange":"N","type":"stock","description":"RLJ Lodging Trust","shares":10986100},{"symbol":"HCSG","exchange":"Q","type":"stock","description":"Healthcare Services Group Inc","shares":2940300},{"symbol":"WES","exchange":"N","type":"stock","description":"Western Gas Partners, LP","shares":413200},{"symbol":"RICK","exchange":"Q","type":"stock","description":"Rick's Cabaret International Inc","shares":589000},{"symbol":"AL","exchange":"N","type":"stock","description":"Air Lease Corp","shares":4543000},{"symbol":"CPLA","exchange":"Q","type":"stock","description":"Capella Education Co","shares":1578500},{"symbol":"PDM","exchange":"N","type":"stock","description":"Piedmont Office Realty Trust Inc","shares":1441900},{"symbol":"SWFT","exchange":"N","type":"stock","description":"Swift Transportation Co","shares":7348600},{"symbol":"ALG","exchange":"N","type":"stock","description":"Alamo Group Inc","shares":1173000},{"symbol":"USAC","exchange":"N","type":"stock","description":"USA Compression Partners LP","shares":306100},{"symbol":"PCRX","exchange":"Q","type":"stock","description":"Pacira Pharmaceuticals Inc","shares":1395200},{"symbol":"CRL","exchange":"N","type":"stock","description":"Charles River Laboratories International Inc","shares":5223700},{"symbol":"CNQR","exchange":"Q","type":"stock","description":"Concur Technologies Inc","shares":273700},{"symbol":"TTC","exchange":"N","type":"stock","description":"Toro Co","shares":4144100},{"symbol":"CASS","exchange":"Q","type":"stock","description":"Cass Information Systems Inc","shares":469200},{"symbol":"TWC","exchange":"N","type":"stock","description":"Time Warner Cable Inc","shares":7076200},{"symbol":"MRTN","exchange":"Q","type":"stock","description":"Marten Transport Ltd","shares":3637300},{"symbol":"NDRO","exchange":"N","type":"stock","description":"Enduro Royalty Trust","shares":128900},{"symbol":"FCFS","exchange":"Q","type":"stock","description":"First Cash Financial Services Inc","shares":2020800},{"symbol":"SHOO","exchange":"Q","type":"stock","description":"Steven Madden Ltd","shares":6300900},{"symbol":"MO","exchange":"N","type":"stock","description":"Altria Group Inc","shares":112087900},{"symbol":"JBT","exchange":"N","type":"stock","description":"John Bean Technologies Corp","shares":3399500},{"symbol":"FTNT","exchange":"Q","type":"stock","description":"Fortinet Inc","shares":14014100},{"symbol":"ONNN","exchange":"Q","type":"stock","description":"ON Semiconductor Corp","shares":32266800},{"symbol":"AKRX","exchange":"Q","type":"stock","description":"Akorn Inc","shares":3209300},{"symbol":"APD","exchange":"N","type":"stock","description":"Air Products & Chemicals Inc","shares":8989700},{"symbol":"AA","exchange":"N","type":"stock","description":"Alcoa Inc","shares":81988300},{"symbol":"HAFC","exchange":"Q","type":"stock","description":"Hanmi Financial Corp","shares":4255800},{"symbol":"EVBS","exchange":"Q","type":"stock","description":"Eastern Virginia Bankshares Inc","shares":94300},{"symbol":"LJPC","exchange":"Q","type":"stock","description":"La Jolla Pharmaceutical Co","shares":98500},{"symbol":"AN","exchange":"N","type":"stock","description":"AutoNation Inc","shares":3554000},{"symbol":"K","exchange":"N","type":"stock","description":"Kellogg Co","shares":16644800},{"symbol":"KAMN","exchange":"N","type":"stock","description":"Kaman Corp","shares":2112600},{"symbol":"TLLP","exchange":"N","type":"stock","description":"Tesoro Logistics LP","shares":704900},{"symbol":"APEI","exchange":"Q","type":"stock","description":"American Public Education Inc","shares":1576600},{"symbol":"HDNG","exchange":"Q","type":"stock","description":"Hardinge Inc","shares":1254700},{"symbol":"HBHC","exchange":"Q","type":"stock","description":"Hancock Holding Company","shares":7757100},{"symbol":"FICO","exchange":"N","type":"stock","description":"Fair Isaac Corp","shares":2519900},{"symbol":"EXTR","exchange":"Q","type":"stock","description":"Extreme Networks Inc","shares":6711400},{"symbol":"UCFC","exchange":"Q","type":"stock","description":"United Community Financial Corporation","shares":2279300},{"symbol":"EXLS","exchange":"Q","type":"stock","description":"ExlService Holdings Inc","shares":3774500},{"symbol":"CNOB","exchange":"Q","type":"stock","description":"ConnectOne Bancorp Inc","shares":1725400},{"symbol":"BMRN","exchange":"Q","type":"stock","description":"Biomarin Pharmaceutical Inc","shares":11080300},{"symbol":"BBG","exchange":"N","type":"stock","description":"Bill Barrett Corporation","shares":4791900},{"symbol":"IEX","exchange":"N","type":"stock","description":"Idex Corp","shares":9244000},{"symbol":"CRTN","exchange":"Q","type":"stock","description":"Cartesian Inc","shares":114800},{"symbol":"RLGT","exchange":"A","type":"stock","description":"Radiant Logistics Inc","shares":766700},{"symbol":"MBVT","exchange":"Q","type":"stock","description":"Merchants Bancshares Inc","shares":276000},{"symbol":"MW","exchange":"N","type":"stock","description":"Men's Wearhouse","shares":2692400},{"symbol":"TRK","exchange":"N","type":"stock","description":"Speedway Motorsports Inc","shares":2590600},{"symbol":"MXE","exchange":"N","type":"stock","description":"Mexico Equity and Income Fund Inc.","shares":128700},{"symbol":"KND","exchange":"N","type":"stock","description":"Kindred Healthcare Inc","shares":1590700},{"symbol":"FTI","exchange":"N","type":"stock","description":"FMC Technologies Inc","shares":19304200},{"symbol":"ERI","exchange":"Q","type":"stock","description":"Eldorado Resorts Inc","shares":706200},{"symbol":"SCHW","exchange":"N","type":"stock","description":"Charles Schwab Corp","shares":87411900},{"symbol":"SPNC","exchange":"Q","type":"stock","description":"Spectranetics Corp","shares":1722600},{"symbol":"BDX","exchange":"N","type":"stock","description":"Becton Dickinson & Co","shares":9312400},{"symbol":"BBW","exchange":"N","type":"stock","description":"Build-A-Bear Workshop Inc","shares":1755300},{"symbol":"BMTC","exchange":"Q","type":"stock","description":"Bryn Mawr Bank Corp","shares":1154300},{"symbol":"FCNCA","exchange":"Q","type":"stock","description":"First Citizens BancShares Inc (DE)","shares":76200},{"symbol":"CLNE","exchange":"Q","type":"stock","description":"Clean Energy Fuels Corp","shares":50600},{"symbol":"HOLX","exchange":"Q","type":"stock","description":"Hologic Inc","shares":20060300},{"symbol":"MFA","exchange":"N","type":"stock","description":"MFA Financial Inc","shares":25405500},{"symbol":"GPS","exchange":"N","type":"stock","description":"Gap Inc","shares":15086700},{"symbol":"VNTV","exchange":"N","type":"stock","description":"Vantiv Inc","shares":20795200},{"symbol":"AVNR","exchange":"Q","type":"stock","description":"AVANIR Pharmaceuticals","shares":6749300},{"symbol":"MYRG","exchange":"Q","type":"stock","description":"MYR Group Inc","shares":3310800},{"symbol":"MGRC","exchange":"Q","type":"stock","description":"McGrath RentCorp","shares":2624700},{"symbol":"PLKI","exchange":"Q","type":"stock","description":"Popeyes Louisiana Kitchen Inc","shares":1680700},{"symbol":"CINF","exchange":"Q","type":"stock","description":"Cincinnati Financial Corp","shares":7911200},{"symbol":"CB","exchange":"N","type":"stock","description":"Chubb Corp","shares":13711900},{"symbol":"COL","exchange":"N","type":"stock","description":"Rockwell Collins Inc","shares":6348500},{"symbol":"RHI","exchange":"N","type":"stock","description":"Robert Half International Inc","shares":11627700},{"symbol":"INT","exchange":"N","type":"stock","description":"World Fuel Services Corp","shares":3208700},{"symbol":"SIF","exchange":"A","type":"stock","description":"Sifco Industries Inc","shares":302600},{"symbol":"RRD","exchange":"Q","type":"stock","description":"RR Donnelley & Sons Co","shares":7033600},{"symbol":"PCTI","exchange":"Q","type":"stock","description":"PCTEL Inc","shares":2042200},{"symbol":"NUVA","exchange":"Q","type":"stock","description":"NuVasive Inc","shares":5859700},{"symbol":"WM","exchange":"N","type":"stock","description":"Waste Management Inc","shares":20228500},{"symbol":"SWAY","exchange":"N","type":"stock","description":"Starwood Waypoint Residential Trust","shares":1050800},{"symbol":"MED","exchange":"N","type":"stock","description":"Medifast Inc","shares":681500},{"symbol":"CREE","exchange":"Q","type":"stock","description":"Cree Inc","shares":205200},{"symbol":"EVER","exchange":"N","type":"stock","description":"EverBank Financial Corp","shares":4975800},{"symbol":"BFIN","exchange":"Q","type":"stock","description":"BankFinancial Corp","shares":1625500},{"symbol":"CNP","exchange":"N","type":"stock","description":"CenterPoint Energy Inc","shares":32540300},{"symbol":"BCRX","exchange":"Q","type":"stock","description":"Biocryst Pharmaceuticals Inc","shares":774400},{"symbol":"ORN","exchange":"N","type":"stock","description":"Orion Marine Group Inc","shares":3007500},{"symbol":"CPHC","exchange":"Q","type":"stock","description":"Canterbury Park Holding Corp","shares":159300},{"symbol":"JCS","exchange":"Q","type":"stock","description":"Communications Systems Inc","shares":619800},{"symbol":"FEIC","exchange":"Q","type":"stock","description":"FEI Co","shares":3435500},{"symbol":"VHI","exchange":"N","type":"stock","description":"Valhi Inc","shares":47300},{"symbol":"AMTX","exchange":"Q","type":"stock","description":"Aemetis Inc","shares":129500},{"symbol":"MGLN","exchange":"Q","type":"stock","description":"Magellan Health Inc","shares":3078300},{"symbol":"GNTX","exchange":"Q","type":"stock","description":"Gentex Corp","shares":6363300},{"symbol":"EXAC","exchange":"Q","type":"stock","description":"Exactech Inc","shares":1351500},{"symbol":"TERP","exchange":"Q","type":"stock","description":"TerraForm Power Inc","shares":123700},{"symbol":"USB","exchange":"N","type":"stock","description":"U.S. Bancorp","shares":100771000},{"symbol":"WAG","exchange":"N","type":"stock","description":"Walgreen Co","shares":54164500},{"symbol":"CQB","exchange":"N","type":"stock","description":"Chiquita Brands International Inc","shares":868100},{"symbol":"LEAF","exchange":"N","type":"stock","description":"Springleaf Holdings Inc","shares":112700},{"symbol":"ONE","exchange":"N","type":"stock","description":"Higher One Holdings Inc","shares":1489500},{"symbol":"SXT","exchange":"N","type":"stock","description":"Sensient Technologies Corp","shares":3643100},{"symbol":"ZION","exchange":"Q","type":"stock","description":"Zions Bancorp","shares":16600700},{"symbol":"HCN","exchange":"N","type":"stock","description":"Health Care REIT, Inc.","shares":10153800},{"symbol":"BBCN","exchange":"Q","type":"stock","description":"BBCN Bancorp Inc","shares":11315500},{"symbol":"VEEV","exchange":"N","type":"stock","description":"Veeva Systems Inc","shares":1347300},{"symbol":"DLB","exchange":"N","type":"stock","description":"Dolby Laboratories Inc","shares":1622500},{"symbol":"PCCC","exchange":"Q","type":"stock","description":"PC Connection Inc","shares":2054700},{"symbol":"PDCO","exchange":"Q","type":"stock","description":"Patterson Companies Inc","shares":4558700},{"symbol":"RTRX","exchange":"Q","type":"stock","description":"Retrophin Inc","shares":170000},{"symbol":"MSL","exchange":"N","type":"stock","description":"Midsouth Bancorp","shares":373400},{"symbol":"EIGI","exchange":"Q","type":"stock","description":"Endurance International Group Holdings Inc","shares":177200},{"symbol":"SLCA","exchange":"N","type":"stock","description":"US Silica Holdings Inc","shares":564900},{"symbol":"FAF","exchange":"N","type":"stock","description":"First American Financial Corp","shares":5904900},{"symbol":"GDOT","exchange":"N","type":"stock","description":"Green Dot Corp","shares":2768200},{"symbol":"UNF","exchange":"N","type":"stock","description":"UniFirst Corp","shares":1464000},{"symbol":"GFN","exchange":"Q","type":"stock","description":"General Finance Corp","shares":390500},{"symbol":"DENN","exchange":"Q","type":"stock","description":"Denny's Corp","shares":6687300},{"symbol":"TCB","exchange":"N","type":"stock","description":"TCF Financial Corp","shares":18217600},{"symbol":"RRMS","exchange":"N","type":"stock","description":"Rose Rock Midstream LP","shares":468300},{"symbol":"CNS","exchange":"N","type":"stock","description":"Cohen & Steers Inc","shares":54100},{"symbol":"HCBK","exchange":"Q","type":"stock","description":"Hudson City Bancorp Inc","shares":23871600},{"symbol":"THS","exchange":"N","type":"stock","description":"Treehouse Foods Inc","shares":5010000},{"symbol":"FSYS","exchange":"Q","type":"stock","description":"Fuel Systems Solutions Inc","shares":631800},{"symbol":"CALX","exchange":"N","type":"stock","description":"Calix, Inc.","shares":4741800},{"symbol":"SKT","exchange":"N","type":"stock","description":"Tanger Factory Outlet Centers Inc","shares":9781900},{"symbol":"RS","exchange":"N","type":"stock","description":"Reliance Steel and Aluminum","shares":7992200},{"symbol":"CASY","exchange":"Q","type":"stock","description":"Casey's General Stores Inc","shares":2313300},{"symbol":"BBSI","exchange":"Q","type":"stock","description":"Barrett Business Services Inc","shares":252200},{"symbol":"DLA","exchange":"A","type":"stock","description":"Delta Apparel Inc","shares":580400},{"symbol":"MOH","exchange":"N","type":"stock","description":"Molina Healthcare Inc","shares":4318300},{"symbol":"ULTI","exchange":"Q","type":"stock","description":"Ultimate Software Group Inc","shares":2366400},{"symbol":"MLI","exchange":"N","type":"stock","description":"Mueller Industries Inc","shares":3800500},{"symbol":"UFCS","exchange":"Q","type":"stock","description":"United Fire Group Inc","shares":3329200},{"symbol":"IBP","exchange":"N","type":"stock","description":"Installed Building Products Inc","shares":631200},{"symbol":"AMTG","exchange":"N","type":"stock","description":"Apollo Residential Mortgage Inc","shares":1317600},{"symbol":"MCK","exchange":"N","type":"stock","description":"McKesson Corp","shares":20356100},{"symbol":"CHFN","exchange":"Q","type":"stock","description":"Charter Financial Corp","shares":678400},{"symbol":"ADVS","exchange":"Q","type":"stock","description":"Advent Software Inc","shares":2837400},{"symbol":"SCHL","exchange":"Q","type":"stock","description":"Scholastic Corp","shares":2463600},{"symbol":"EQT","exchange":"N","type":"stock","description":"EQT Corp","shares":16330300},{"symbol":"ZMH","exchange":"N","type":"stock","description":"Zimmer Holdings Inc","shares":14864700},{"symbol":"DM","exchange":"N","type":"stock","description":"Dominion Midstream Partners LP","shares":444400},{"symbol":"BREW","exchange":"Q","type":"stock","description":"Craft Brew Alliance Inc","shares":585300},{"symbol":"HEOP","exchange":"Q","type":"stock","description":"Heritage Oaks Bancorp","shares":526100},{"symbol":"KATE","exchange":"N","type":"stock","description":"Kate Spade & Co","shares":8151800},{"symbol":"CROX","exchange":"Q","type":"stock","description":"Crocs Inc","shares":8712300},{"symbol":"KRO","exchange":"N","type":"stock","description":"Kronos Worldwide Inc","shares":782200},{"symbol":"GD","exchange":"N","type":"stock","description":"General Dynamics Corp","shares":21493300},{"symbol":"NCMI","exchange":"Q","type":"stock","description":"National CineMedia Inc","shares":5526700},{"symbol":"RLOG","exchange":"Q","type":"stock","description":"Rand Logistics Inc","shares":543400},{"symbol":"SJW","exchange":"N","type":"stock","description":"SJW Corp","shares":900100},{"symbol":"ARNA","exchange":"Q","type":"stock","description":"Arena Pharmaceuticals Inc","shares":249200},{"symbol":"MCD","exchange":"N","type":"stock","description":"McDonald's Corp","shares":54235200},{"symbol":"SBH","exchange":"N","type":"stock","description":"Sally Beauty Holdings Inc","shares":9269800},{"symbol":"EBS","exchange":"N","type":"stock","description":"Emergent BioSolutions Inc","shares":3987800},{"symbol":"DTE","exchange":"N","type":"stock","description":"DTE Energy Holding Co","shares":10481800},{"symbol":"CPWR","exchange":"Q","type":"stock","description":"Compuware Corp","shares":10510400},{"symbol":"WBS","exchange":"N","type":"stock","description":"Webster Financial Corp","shares":16403600},{"symbol":"CNW","exchange":"N","type":"stock","description":"Con-way Inc","shares":7281900},{"symbol":"EGOV","exchange":"Q","type":"stock","description":"NIC Inc","shares":8954700},{"symbol":"OI","exchange":"N","type":"stock","description":"Owens-Illinois Inc","shares":15495600},{"symbol":"NPBC","exchange":"Q","type":"stock","description":"National Penn Bancshares","shares":16187600},{"symbol":"SON","exchange":"N","type":"stock","description":"Sonoco Products Co","shares":7107000},{"symbol":"RGEN","exchange":"Q","type":"stock","description":"Repligen Corp","shares":2338000},{"symbol":"BANF","exchange":"Q","type":"stock","description":"BancFirst Corp","shares":482000},{"symbol":"ATI","exchange":"N","type":"stock","description":"Allegheny Technologies Inc","shares":6796900},{"symbol":"MGM","exchange":"N","type":"stock","description":"MGM Resorts International","shares":18539400},{"symbol":"LORL","exchange":"Q","type":"stock","description":"Loral Space & Communications Inc","shares":733100},{"symbol":"KONA","exchange":"Q","type":"stock","description":"Kona Grill Inc","shares":1081600},{"symbol":"AWI","exchange":"N","type":"stock","description":"Armstrong World Industries Inc","shares":2670300},{"symbol":"JNJ","exchange":"N","type":"stock","description":"Johnson & Johnson","shares":170007300},{"symbol":"JBLU","exchange":"Q","type":"stock","description":"JetBlue Airways Corp","shares":5825400},{"symbol":"MHFI","exchange":"N","type":"stock","description":"McGraw Hill Financial Inc","shares":23797000},{"symbol":"PKG","exchange":"N","type":"stock","description":"Packaging Corp of America","shares":8531100},{"symbol":"PEIX","exchange":"Q","type":"stock","description":"Pacific Ethanol Inc","shares":620900},{"symbol":"LHO","exchange":"N","type":"stock","description":"LaSalle Hotel Properties","shares":6191900},{"symbol":"FFIC","exchange":"Q","type":"stock","description":"Flushing Financial Corp","shares":3224300},{"symbol":"DVA","exchange":"N","type":"stock","description":"DaVita HealthCare Partners Inc","shares":14740300},{"symbol":"BMRC","exchange":"Q","type":"stock","description":"Bank of Marin Bancorp","shares":131400},{"symbol":"WTBA","exchange":"Q","type":"stock","description":"West Bancorp","shares":720300},{"symbol":"WLP","exchange":"N","type":"stock","description":"WellPoint Inc","shares":24397100},{"symbol":"MVNR","exchange":"N","type":"stock","description":"Mavenir Systems Inc","shares":686800},{"symbol":"MSLP","exchange":null,"type":null,"description":"MusclePharm Corp","shares":107100},{"symbol":"T","exchange":"N","type":"stock","description":"AT&T Inc","shares":177602000},{"symbol":"SELF","exchange":null,"type":null,"description":"Self Storage Group Inc","shares":76700},{"symbol":"SABA","exchange":null,"type":null,"description":"Saba Software Inc","shares":618100},{"symbol":"CSVI","exchange":null,"type":null,"description":"Computer Services Inc","shares":192100},{"symbol":"OTCM","exchange":null,"type":null,"description":"OTC Markets Group Inc","shares":85800},{"symbol":"V","exchange":"N","type":"stock","description":"Visa Inc","shares":25731700},{"symbol":"HCHC","exchange":null,"type":null,"description":"HC2 Holdings Inc","shares":214200},{"symbol":"CDCO","exchange":null,"type":null,"description":"Comdisco Holding Co Inc","shares":47100},{"symbol":"CWGL","exchange":null,"type":null,"description":"Crimson Wine Group Ltd","shares":379300},{"symbol":"TPCA","exchange":null,"type":null,"description":"Tropicana Entertainment Inc","shares":391700},{"symbol":"BNCC","exchange":null,"type":null,"description":"BNC Corp Inc","shares":56400},{"symbol":"BFCF","exchange":null,"type":null,"description":"BFC Financial Corp","shares":106300},{"symbol":"AVID","exchange":null,"type":null,"description":"Avid Technology Inc","shares":4148900},{"symbol":"MUEL","exchange":null,"type":null,"description":"Paul Mueller Co","shares":102600},{"symbol":"PAC","exchange":"N","type":"stock","description":"Grupo Aeroportuario Del Pacifico, S.A. B. de C.V. Grupo Aeroportuario Del Pacifico, S.A. de C.V. (each representing 10 Series B shares)","shares":1230900},{"symbol":"BSMX","exchange":"N","type":"stock","description":"Grupo Financiero Santander Mexico S.A. B. de C.V. American Depositary Shares, each representing five Series B shares","shares":8589000},{"symbol":"SBS","exchange":"N","type":"stock","description":"Companhia de saneamento Basico Do Estado De Sao Paulo - Sabesp American Depositary Shares (Each repstg 250 Common Shares)","shares":5565200},{"symbol":"SFUN","exchange":"N","type":"stock","description":"SouFun Holdings Limited American Depositary Shares (Each representing Four Class A Ordinary Shares, HK$1.00 par value)","shares":593900},{"symbol":"QIHU","exchange":"N","type":"stock","description":"Qihoo 360 Technology Co. Ltd. American Depositary Shares, every 2 of which representing three Class A Ordinary Shares","shares":688000},{"symbol":"BIDU","exchange":"Q","type":"stock","description":"Baidu, Inc. - American Depositary Shares, each representing one tenth Class A ordinary share","shares":8377500},{"symbol":"EDD","exchange":"N","type":"stock","description":"Morgan Stanley Emerging Markets Domestic Debt Fund, Inc. Morgan Stanley Emerging Markets Domestic Debt Fund, Inc. Common Stock","shares":184600},{"symbol":"EDU","exchange":"N","type":"stock","description":"New Oriental Education & Technology Group, Inc. Sponsored ADR representing 1 Ordinary Share (Cayman Islands)","shares":6500700},{"symbol":"EVG","exchange":"N","type":"stock","description":"Eaton Vance Short Diversified Income Fund Eaton Vance Short Duration Diversified Income Fund Common Shares of Beneficial Interest","shares":99900},{"symbol":"FENG","exchange":"N","type":"stock","description":"Phoenix New Media Limited American Depositary Shares, each representing 8 Class A ordinary shares.","shares":253000},{"symbol":"GOLD","exchange":"Q","type":"stock","description":"Randgold Resources Limited - American Depositary Shares each represented by one Ordinary Share","shares":4202100},{"symbol":"HIMX","exchange":"Q","type":"stock","description":"Himax Technologies, Inc. - American depositary shares, each of which represents two ordinary shares.","shares":584100},{"symbol":"HMIN","exchange":"Q","type":"stock","description":"Home Inns & Hotels Management Inc. - American Depositary Shares, each representing two ordinary shares","shares":242400},{"symbol":"HTHT","exchange":"Q","type":"stock","description":"China Lodging Group, Limited - American Depositary Shares, each representing four Ordinary Shares","shares":318000},{"symbol":"ITUB","exchange":"N","type":"stock","description":"Itau Unibanco Banco Holding SA American Depositary Shares (Each repstg 500 Preferred shares)","shares":44016800},{"symbol":"LCM","exchange":"N","type":"stock","description":"Advent\/Claymore Enhanced Growth & Income Fund Advent\/Claymore Enhanced Growth & Income Fund Common Shares of Beneficial Interest","shares":98500},{"symbol":"MPEL","exchange":"Q","type":"stock","description":"Melco Crown Entertainment Limited - American depositary shares each representing three ordinary shares","shares":5398100},{"symbol":"PWRD","exchange":"Q","type":"stock","description":"Perfect World Co., Ltd. - American Depositary Shares, each representing five Class B ordinary shares","shares":776000},{"symbol":"RYAAY","exchange":"Q","type":"stock","description":"Ryanair Holdings plc - American Depositary Shares, each representing five Ordinary Shares","shares":6195700},{"symbol":"SIMO","exchange":"Q","type":"stock","description":"Silicon Motion Technology Corporation - American Depositary Shares, each representing four ordinary shares","shares":1069900},{"symbol":"TX","exchange":"N","type":"stock","description":"Ternium S.A. Ternium S.A. American Depositary Shares (each representing ten shares, USD1.00 par value)","shares":1981600},{"symbol":"UGP","exchange":"N","type":"stock","description":"Ultrapar Participacoes S.A. (New) American Depositary Shares (Each representing one Common Share)","shares":991900}]}}
@@ -3,20 +3,20 @@
3
3
  require 'simplecov'
4
4
  require 'coveralls'
5
5
 
6
- SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
6
+ SimpleCov.formatters = [
7
7
  SimpleCov::Formatter::HTMLFormatter,
8
8
  Coveralls::SimpleCov::Formatter
9
9
  ]
10
10
  SimpleCov.start do
11
- add_group 'Tradier', 'lib/tradier'
12
- add_group 'Specs', 'spec'
13
- add_filter '.bundle'
11
+ add_filter '/spec/'
14
12
  end
15
13
 
16
14
  require 'tradier'
17
15
  require 'rspec'
18
16
  require 'webmock/rspec'
19
17
 
18
+ WebMock.disable_net_connect!(:allow => 'coveralls.io')
19
+
20
20
  RSpec.configure do |config|
21
21
  config.expect_with :rspec do |c|
22
22
  c.syntax = :expect
@@ -27,14 +27,14 @@ describe Tradier::Account do
27
27
  describe '#margin?' do
28
28
  it 'returns true when account type is margin' do
29
29
  account = Tradier::Account.new(:type => 'Margin')
30
- expect(account.margin?).to be_true
30
+ expect(account.margin?).to be_truthy
31
31
  end
32
32
  end
33
33
 
34
34
  describe '#cash?' do
35
35
  it 'returns true when account type is cash' do
36
36
  account = Tradier::Account.new(:type => 'Cash')
37
- expect(account.cash?).to be_true
37
+ expect(account.cash?).to be_truthy
38
38
  end
39
39
  end
40
40
 
@@ -64,48 +64,60 @@ describe Tradier::Account do
64
64
 
65
65
  describe '#gainloss' do
66
66
  it 'returns an array of closed positions' do
67
- pending
67
+ account = Tradier::Account.new(:gainloss => { :closed_position => [{ :id => '123' }]})
68
+ expect(account.gainloss).to be_an Array
69
+ end
70
+
71
+ it 'returns a collection of Tradier::Position' do
72
+ account = Tradier::Account.new(:gainloss => { :closed_position => [{ :id => '123' }]})
73
+ expect(account.gainloss.first).to be_a Tradier::Position
68
74
  end
69
75
  end
70
76
 
71
77
  describe '#history' do
72
78
  it 'returns an array of history' do
73
- pending
79
+ account = Tradier::Account.new(:history => { :event => [{ :id => '123' }]})
80
+ expect(account.history).to be_an Array
81
+ end
82
+
83
+ it 'returns a collection of Tradier::Event' do
84
+ account = Tradier::Account.new(:history => { :event => [{ :id => '123' }]})
85
+ expect(account.history.first).to be_a Tradier::Event
74
86
  end
75
87
  end
76
88
 
77
89
  describe '#individual_account?' do
78
90
  subject { described_class.new(:classification => 'individual') }
79
91
  it 'returns true when an individual account' do
80
- expect(subject.individual_account?).to be_true
92
+ expect(subject.individual_account?).to be_truthy
81
93
  end
82
94
  end
83
95
 
84
96
  describe '#joint_account?' do
85
97
  subject { described_class.new(:classification => 'joint') }
86
98
  it 'returns true when an joint account' do
87
- expect(subject.joint_account?).to be_true
99
+ expect(subject.joint_account?).to be_truthy
88
100
  end
89
101
  end
90
102
 
91
103
  describe '#traditional_ira?' do
92
104
  subject { described_class.new(:classification => 'traditional_ira') }
93
105
  it 'returns true when a traditional_ira account' do
94
- expect(subject.traditional_ira?).to be_true
106
+ expect(subject.traditional_ira?).to be_truthy
95
107
  end
96
108
  end
97
109
 
98
110
  describe '#rollover_ira?' do
99
111
  subject { described_class.new(:classification => 'rollover_ira') }
100
112
  it 'returns true when a rollover_ira account' do
101
- expect(subject.rollover_ira?).to be_true
113
+ expect(subject.rollover_ira?).to be_truthy
102
114
  end
103
115
  end
104
116
 
105
117
  describe '#roth_ira?' do
106
118
  subject { described_class.new(:classification => 'roth_ira') }
107
119
  it 'returns true when a roth_ira account' do
108
- expect(subject.roth_ira?).to be_true
120
+ expect(subject.roth_ira?).to be_truthy
109
121
  end
110
122
  end
111
123
 
@@ -113,7 +125,7 @@ describe Tradier::Account do
113
125
  %w(traditional_ira roth_ira rollover_ira).each do |ira_type|
114
126
  subject { described_class.new(:classification => ira_type) }
115
127
  it "returns true when a #{ira_type} account" do
116
- expect(subject.ira?).to be_true
128
+ expect(subject.ira?).to be_truthy
117
129
  end
118
130
  end
119
131
  end
@@ -293,4 +293,22 @@ describe Tradier::API::Markets do
293
293
  expect(results.first).to be_a Tradier::Security
294
294
  end
295
295
  end
296
+
297
+ describe '#etb' do
298
+ before do
299
+ stub_get("/v1/markets/etb").
300
+ to_return(:body => fixture("etb.json"), :headers => {:content_type => "application/json; charset=utf-8"})
301
+ end
302
+
303
+ it "requests the correct resource" do
304
+ @client.etb
305
+ expect(a_get("/v1/markets/etb")).to have_been_made
306
+ end
307
+
308
+ it "returns an array of Tradier::Security objects" do
309
+ results = @client.etb
310
+ expect(results).to be_an Array
311
+ expect(results.first).to be_a Tradier::Security
312
+ end
313
+ end
296
314
  end
@@ -55,7 +55,7 @@ describe Tradier::API::Watchlists do
55
55
 
56
56
  it "returns a 'Tradier::Watchlist' object" do
57
57
  status = @client.delete_watchlist('default')
58
- expect(status).to be_true
58
+ expect(status).to be_truthy
59
59
  end
60
60
  end
61
61
 
@@ -140,7 +140,7 @@ describe Tradier::API::Watchlists do
140
140
 
141
141
  it "returns a 'Tradier::WatchlistItem' object" do
142
142
  status = @client.remove_watchlist_item('default', 'aapl')
143
- expect(status).to be_true
143
+ expect(status).to be_truthy
144
144
  end
145
145
  end
146
146
 
@@ -88,11 +88,11 @@ describe Tradier::Client do
88
88
  describe "#credentials?" do
89
89
  it "returns true if all credentials are present" do
90
90
  client = Tradier::Client.new(:access_token => "AT")
91
- expect(client.credentials?).to be_true
91
+ expect(client.credentials?).to be_truthy
92
92
  end
93
93
  it "returns false if any credentials are missing" do
94
94
  client = Tradier::Client.new
95
- expect(client.credentials?).to be_false
95
+ expect(client.credentials?).to be_falsey
96
96
  end
97
97
  end
98
98
 
@@ -113,11 +113,11 @@ describe Tradier::Client do
113
113
  expect(a_get("/v1/markets/quotes").with(:query => {:symbols => "AAPL"})).to have_been_made
114
114
  end
115
115
  it "catches Faraday errors" do
116
- subject.stub(:connection).and_raise(Faraday::Error::ClientError.new("Oops"))
116
+ allow(subject).to receive(:connection).and_raise(Faraday::Error::ClientError.new("Oops"))
117
117
  expect{subject.send(:request, :get, "/path")}.to raise_error Tradier::Error::ClientError
118
118
  end
119
119
  it "catches MultiJson::ParseError errors" do
120
- subject.stub(:connection).and_raise(MultiJson::ParseError.build(ArgumentError.new, "<!DOCTYPE html>"))
120
+ allow(subject).to receive(:connection).and_raise(MultiJson::ParseError.build(ArgumentError.new, "<!DOCTYPE html>"))
121
121
  expect{subject.send(:request, :get, "/path")}.to raise_error Tradier::Error::DecodeError
122
122
  end
123
123
  end
@@ -6,36 +6,36 @@ describe Tradier::OptionQuote do
6
6
  it "returns true when objects symbols are the same" do
7
7
  quote = Tradier::OptionQuote.new(:symbol => 'AAPL150117C01000000')
8
8
  other = Tradier::OptionQuote.new(:symbol => 'AAPL150117C01000000')
9
- expect(quote == other).to be_true
9
+ expect(quote == other).to be_truthy
10
10
  end
11
11
  it "returns false when objects IDs are different" do
12
12
  quote = Tradier::OptionQuote.new(:symbol => 'AAPL150117C01000000')
13
13
  other = Tradier::OptionQuote.new(:symbol => 'AAPL150117P01000000')
14
- expect(quote == other).to be_false
14
+ expect(quote == other).to be_falsey
15
15
  end
16
16
  end
17
17
 
18
18
  describe '#put?' do
19
19
  it 'returns true when the option is a put' do
20
20
  quote = Tradier::OptionQuote.new(:symbol => 'AAPL150117P01000000')
21
- expect(quote.put?).to be_true
21
+ expect(quote.put?).to be_truthy
22
22
  end
23
23
 
24
24
  it 'returns false when the option is a call' do
25
25
  quote = Tradier::OptionQuote.new(:symbol => 'AAPL150117C01000000')
26
- expect(quote.put?).to be_false
26
+ expect(quote.put?).to be_falsey
27
27
  end
28
28
  end
29
29
 
30
30
  describe '#call?' do
31
31
  it 'returns true when the option is a call' do
32
32
  quote = Tradier::OptionQuote.new(:symbol => 'AAPL150117C01000000')
33
- expect(quote.call?).to be_true
33
+ expect(quote.call?).to be_truthy
34
34
  end
35
35
 
36
36
  it 'returns false when the option is a call' do
37
37
  quote = Tradier::OptionQuote.new(:symbol => 'AAPL150117P01000000')
38
- expect(quote.call?).to be_false
38
+ expect(quote.call?).to be_falsey
39
39
  end
40
40
  end
41
41
 
@@ -6,12 +6,12 @@ describe Tradier::Quote do
6
6
  it "returns true when objects symbols are the same" do
7
7
  quote = Tradier::Quote.new({ :symbol => 'AAPL' })
8
8
  other = Tradier::Quote.new({ :symbol => 'AAPL' })
9
- expect(quote == other).to be_true
9
+ expect(quote == other).to be_truthy
10
10
  end
11
11
  it "returns false when objects IDs are different" do
12
12
  quote = Tradier::Quote.new({ :symbol => 'AAPL' })
13
13
  other = Tradier::Quote.new({ :symbol => 'GE' })
14
- expect(quote == other).to be_false
14
+ expect(quote == other).to be_falsey
15
15
  end
16
16
  end
17
17
 
@@ -27,10 +27,10 @@ describe Tradier do
27
27
 
28
28
  describe ".respond_to?" do
29
29
  it "delegates to Tradier::Client" do
30
- expect(Tradier.respond_to?(:quotes)).to be_true
30
+ expect(Tradier.respond_to?(:quotes)).to be_truthy
31
31
  end
32
32
  it "takes an optional argument" do
33
- expect(Tradier.respond_to?(:quotes, true)).to be_true
33
+ expect(Tradier.respond_to?(:quotes, true)).to be_truthy
34
34
  end
35
35
  end
36
36
 
@@ -92,13 +92,13 @@ describe Tradier do
92
92
  Tradier.configure do |config|
93
93
  config.access_token = 'OT'
94
94
  end
95
- expect(Tradier.credentials?).to be_true
95
+ expect(Tradier.credentials?).to be_truthy
96
96
  end
97
97
  it "returns false if any credentials are missing" do
98
98
  Tradier.configure do |config|
99
99
  config.version = 'v2'
100
100
  end
101
- expect(Tradier.credentials?).to be_false
101
+ expect(Tradier.credentials?).to be_falsey
102
102
  end
103
103
  end
104
104
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tradier
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steve Agalloco
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-09-05 00:00:00.000000000 Z
12
+ date: 2014-12-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: faraday
@@ -97,7 +97,7 @@ files:
97
97
  - lib/tradier/api/utils/order.rb
98
98
  - lib/tradier/api/utils/position.rb
99
99
  - lib/tradier/api/utils/quote.rb
100
- - lib/tradier/api/utils/search.rb
100
+ - lib/tradier/api/utils/security.rb
101
101
  - lib/tradier/api/utils/strike.rb
102
102
  - lib/tradier/api/utils/timesales.rb
103
103
  - lib/tradier/api/utils/watchlist.rb
@@ -152,6 +152,7 @@ files:
152
152
  - spec/fixtures/calendar.json
153
153
  - spec/fixtures/chain.json
154
154
  - spec/fixtures/clock.json
155
+ - spec/fixtures/etb.json
155
156
  - spec/fixtures/expirations.json
156
157
  - spec/fixtures/expirations_with_strikes.json
157
158
  - spec/fixtures/history.json
@@ -235,6 +236,7 @@ test_files:
235
236
  - spec/fixtures/calendar.json
236
237
  - spec/fixtures/chain.json
237
238
  - spec/fixtures/clock.json
239
+ - spec/fixtures/etb.json
238
240
  - spec/fixtures/expirations.json
239
241
  - spec/fixtures/expirations_with_strikes.json
240
242
  - spec/fixtures/history.json