jvm crash OutOfMemoryException

infectedrhytms infectedrhythms at hotmail.com
Fri Mar 12 14:37:35 EST 2010


Hi I have been doing some testing on my netty application and I got a JVM
crash. 

Boostrap is pretty vanila from the examples.

My pipeline... JVM trace below... I'm probably thinking to many threads?

	public ChannelPipeline getPipeline() throws Exception {

		ChannelPipeline pipeline = Channels.pipeline();

		if(ssl)
		{
			SSLEngine engine =
SecureSSLContextFactory.getServerContext().createSSLEngine();
			engine.setUseClientMode(false);
	
			pipeline.addLast("ssl", new SslHandler(engine));
		}

		pipeline.addLast("frameDecoder", new LengthFieldBasedFrameDecoder(1024, 0,
2, 0, 2));
		pipeline.addLast("decoder", stringDecoder);
		pipeline.addLast("frameEncoder", new LengthFieldPrepender(2));
		pipeline.addLast("encoder", stringEncoder);
		pipeline.addLast("Ordered", new ExecutionHandler(eventExecutors)); //<--
MemoryAwareThreadPoolExecutor 2000 threads. Set up as... new
MemoryAwareThreadPoolExecutor(2000, 0 ,0)
		pipeline.addLast("handler", new MyHandler(sleep, close));

		return pipeline;
	}

My handler...

public void messageReceived(ChannelHandlerContext ctx, MessageEvent e) {

StringBuilder myResponse = new StringBuilder();	

String request = (String) String request = (String) e.getMessage();

//Do some string builder stuff here...

e.getChannel().write(myResponse.toString());


}

VM trace...

#
# A fatal error has been detected by the Java Runtime Environment:
#
# java.lang.OutOfMemoryError: requested 614472 bytes for Chunk::new. Out of
swap space?
#
#  Internal Error (allocation.cpp:215), pid=3388, tid=3960
#  Error: Chunk::new
#
# JRE version: 6.0_17-b04
# Java VM: Java HotSpot(TM) Server VM (14.3-b01 mixed mode windows-x86 )
# If you would like to submit a bug report, please visit:
#   http://java.sun.com/webapps/bugreport/crash.jsp
#

---------------  T H R E A D  ---------------

Current thread (0x531b8c00):  JavaThread "CompilerThread1" daemon
[_thread_in_native, id=3960, stack(0x53580000,0x535d0000)]

Stack: [0x53580000,0x535d0000],  sp=0x535ce778,  free space=313k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native
code)
V  [jvm.dll+0x3067f7]
V  [jvm.dll+0xf81ec]
V  [jvm.dll+0x3913c]
V  [jvm.dll+0x393d3]
V  [jvm.dll+0x29cdf3]
V  [jvm.dll+0x12ab38]
V  [jvm.dll+0x22a9cc]
V  [jvm.dll+0xd7430]
V  [jvm.dll+0xd7fd2]
V  [jvm.dll+0x9e112]
V  [jvm.dll+0xda170]
V  [jvm.dll+0xdacff]
V  [jvm.dll+0x2e6ad4]
V  [jvm.dll+0x2681dc]
C  [msvcr71.dll+0x9565]
C  [kernel32.dll+0x2482f]


Current CompileTask:
C2:420  !  
org.jboss.netty.channel.socket.nio.NioWorker.writeNow(Lorg/jboss/netty/channel/socket/nio/NioSocketChannel;I)V
(353 bytes)


---------------  P R O C E S S  ---------------

Java Threads: ( => current thread )
  0x53e11400 JavaThread "pool-3-thread-2002" [_thread_blocked, id=11340,
stack(0x7f670000,0x7f6c0000)]
  0x53e10000 JavaThread "pool-3-thread-2001" [_thread_blocked, id=11336,
stack(0x7f620000,0x7f670000)]
  0x53e0ec00 JavaThread "pool-3-thread-2000" [_thread_blocked, id=11228,
stack(0x7f5d0000,0x7f620000)]
  0x5422a400 JavaThread "pool-3-thread-1999" [_thread_blocked, id=11332,
stack(0x7f580000,0x7f5d0000)]
  0x54229000 JavaThread "pool-3-thread-1998" [_thread_blocked, id=11264,
stack(0x7f530000,0x7f580000)]
  0x54227800 JavaThread "pool-3-thread-1997" [_thread_blocked, id=11272,
stack(0x7f4e0000,0x7f530000)]
  0x54226000 JavaThread "pool-3-thread-1996" [_thread_blocked, id=11288,
stack(0x7f490000,0x7f4e0000)]
  0x54224c00 JavaThread "pool-3-thread-1995" [_thread_blocked, id=11296,
stack(0x7f440000,0x7f490000)]
  0x54223400 JavaThread "pool-3-thread-1994" [_thread_blocked, id=11284,
stack(0x7f3f0000,0x7f440000)]
  0x54221c00 JavaThread "pool-3-thread-1993" [_thread_blocked, id=11280,
stack(0x7f3a0000,0x7f3f0000)]
  0x54220800 JavaThread "pool-3-thread-1992" [_thread_blocked, id=11276,
stack(0x7f350000,0x7f3a0000)]
  0x5421f000 JavaThread "pool-3-thread-1991" [_thread_blocked, id=11240,
stack(0x7f300000,0x7f350000)]
  0x5421dc00 JavaThread "pool-3-thread-1990" [_thread_blocked, id=11232,
stack(0x7f2b0000,0x7f300000)]
  0x5421d000 JavaThread "pool-3-thread-1989" [_thread_blocked, id=11244,
stack(0x7f260000,0x7f2b0000)]
  0x5421c000 JavaThread "pool-3-thread-1988" [_thread_blocked, id=11160,
stack(0x7f210000,0x7f260000)]
  0x54219400 JavaThread "pool-3-thread-1987" [_thread_blocked, id=11236,
stack(0x7f1c0000,0x7f210000)]
  0x54217c00 JavaThread "pool-3-thread-1986" [_thread_blocked, id=11004,
stack(0x7f170000,0x7f1c0000)]
  0x54216400 JavaThread "pool-3-thread-1985" [_thread_blocked, id=11268,
stack(0x7f120000,0x7f170000)]
  0x54215000 JavaThread "pool-3-thread-1984" [_thread_blocked, id=1840,
stack(0x7f0d0000,0x7f120000)]
  0x54213800 JavaThread "pool-3-thread-1983" [_thread_blocked, id=11260,
stack(0x7f080000,0x7f0d0000)]
  0x54212000 JavaThread "pool-3-thread-1982" [_thread_blocked, id=11256,
stack(0x7f030000,0x7f080000)]
  0x54210c00 JavaThread "pool-3-thread-1981" [_thread_blocked, id=11252,
stack(0x7efe0000,0x7f030000)]
  0x5420f400 JavaThread "pool-3-thread-1980" [_thread_blocked, id=3808,
stack(0x7ef90000,0x7efe0000)]
  0x5420dc00 JavaThread "pool-3-thread-1979" [_thread_blocked, id=11224,
stack(0x7ef40000,0x7ef90000)]
  0x5420c400 JavaThread "pool-3-thread-1978" [_thread_blocked, id=11192,
stack(0x7eef0000,0x7ef40000)]
  0x5420b000 JavaThread "pool-3-thread-1977" [_thread_blocked, id=11184,
stack(0x7eea0000,0x7eef0000)]
  0x54209800 JavaThread "pool-3-thread-1976" [_thread_blocked, id=1236,
stack(0x7ee50000,0x7eea0000)]
  0x54208400 JavaThread "pool-3-thread-1975" [_thread_blocked, id=11188,
stack(0x7ee00000,0x7ee50000)]
  0x54206c00 JavaThread "pool-3-thread-1974" [_thread_blocked, id=11220,
stack(0x7edb0000,0x7ee00000)]
  0x54205400 JavaThread "pool-3-thread-1973" [_thread_blocked, id=11216,
stack(0x7ed60000,0x7edb0000)]
  0x54200c00 JavaThread "pool-3-thread-1972" [_thread_blocked, id=11212,
stack(0x7ed10000,0x7ed60000)]
  0x541ff400 JavaThread "pool-3-thread-1971" [_thread_blocked, id=11208,
stack(0x7ecc0000,0x7ed10000)]
  0x541fdc00 JavaThread "pool-3-thread-1970" [_thread_blocked, id=11204,
stack(0x7ec70000,0x7ecc0000)]
  0x541fc800 JavaThread "pool-3-thread-1969" [_thread_blocked, id=11200,
stack(0x7ec20000,0x7ec70000)]
  0x541fb000 JavaThread "pool-3-thread-1968" [_thread_blocked, id=11168,
stack(0x7ebd0000,0x7ec20000)]
  0x541f9800 JavaThread "pool-3-thread-1967" [_thread_blocked, id=11108,
stack(0x7eb80000,0x7ebd0000)]
  0x541f8400 JavaThread "pool-3-thread-1966" [_thread_blocked, id=11196,
stack(0x7eb30000,0x7eb80000)]
  0x541f6c00 JavaThread "pool-3-thread-1965" [_thread_blocked, id=11180,
stack(0x7eae0000,0x7eb30000)]
  0x541f5800 JavaThread "pool-3-thread-1964" [_thread_blocked, id=11176,
stack(0x7ea90000,0x7eae0000)]
  0x541f4000 JavaThread "pool-3-thread-1963" [_thread_blocked, id=11172,
stack(0x7ea40000,0x7ea90000)]
  0x541f2800 JavaThread "pool-3-thread-1962" [_thread_blocked, id=11140,
stack(0x7e9f0000,0x7ea40000)]
  0x541f1000 JavaThread "pool-3-thread-1961" [_thread_blocked, id=11000,
stack(0x7e9a0000,0x7e9f0000)]
  0x541efc00 JavaThread "pool-3-thread-1960" [_thread_blocked, id=11128,
stack(0x7e950000,0x7e9a0000)]
  0x541ee400 JavaThread "pool-3-thread-1959" [_thread_blocked, id=1572,
stack(0x7e900000,0x7e950000)]
  0x541ecc00 JavaThread "pool-3-thread-1958" [_thread_blocked, id=3068,
stack(0x7e8b0000,0x7e900000)]
  0x541eb800 JavaThread "pool-3-thread-1957" [_thread_blocked, id=11156,
stack(0x7e860000,0x7e8b0000)]
  0x541ea000 JavaThread "pool-3-thread-1956" [_thread_blocked, id=11152,
stack(0x7e810000,0x7e860000)]
  0x541e8800 JavaThread "pool-3-thread-1955" [_thread_blocked, id=11148,
stack(0x7e7c0000,0x7e810000)]
  0x541e7400 JavaThread "pool-3-thread-1954" [_thread_blocked, id=11144,
stack(0x7e770000,0x7e7c0000)]
  0x541e5c00 JavaThread "pool-3-thread-1953" [_thread_blocked, id=11104,
stack(0x7e720000,0x7e770000)]
  0x541e4400 JavaThread "pool-3-thread-1952" [_thread_blocked, id=11100,
stack(0x7e6d0000,0x7e720000)]
  0x541e2c00 JavaThread "pool-3-thread-1951" [_thread_blocked, id=11096,
stack(0x7e680000,0x7e6d0000)]
  0x541e1400 JavaThread "pool-3-thread-1950" [_thread_blocked, id=11112,
stack(0x7e630000,0x7e680000)]
  0x541e0000 JavaThread "pool-3-thread-1949" [_thread_blocked, id=11020,
stack(0x7e5e0000,0x7e630000)]
  0x541de800 JavaThread "pool-3-thread-1948" [_thread_blocked, id=11092,
stack(0x7e590000,0x7e5e0000)]
  0x541dd400 JavaThread "pool-3-thread-1947" [_thread_blocked, id=11136,
stack(0x7e540000,0x7e590000)]
  0x541dbc00 JavaThread "pool-3-thread-1946" [_thread_blocked, id=11124,
stack(0x7e4f0000,0x7e540000)]
  0x541da400 JavaThread "pool-3-thread-1945" [_thread_blocked, id=11120,
stack(0x7e4a0000,0x7e4f0000)]
  0x541d8c00 JavaThread "pool-3-thread-1944" [_thread_blocked, id=11116,
stack(0x7e450000,0x7e4a0000)]
  0x541d7800 JavaThread "pool-3-thread-1943" [_thread_blocked, id=11036,
stack(0x7e400000,0x7e450000)]
  0x541d6000 JavaThread "pool-3-thread-1942" [_thread_blocked, id=11040,
stack(0x7e3b0000,0x7e400000)]
  0x541d4800 JavaThread "pool-3-thread-1941" [_thread_blocked, id=11016,
stack(0x7e360000,0x7e3b0000)]
  0x541d3400 JavaThread "pool-3-thread-1940" [_thread_blocked, id=11088,
stack(0x7e310000,0x7e360000)]
  0x54190c00 JavaThread "pool-3-thread-1939" [_thread_blocked, id=11084,
stack(0x7e2c0000,0x7e310000)]
  0x5418f400 JavaThread "pool-3-thread-1938" [_thread_blocked, id=11080,
stack(0x7e270000,0x7e2c0000)]
  0x5418dc00 JavaThread "pool-3-thread-1937" [_thread_blocked, id=11076,
stack(0x7e220000,0x7e270000)]
  0x5418c800 JavaThread "pool-3-thread-1936" [_thread_blocked, id=10984,
stack(0x7e1d0000,0x7e220000)]
  0x5418ac00 JavaThread "pool-3-thread-1935" [_thread_blocked, id=10936,
stack(0x7e180000,0x7e1d0000)]
  0x54189800 JavaThread "pool-3-thread-1934" [_thread_blocked, id=11060,
stack(0x7e130000,0x7e180000)]
  0x54188400 JavaThread "pool-3-thread-1933" [_thread_blocked, id=11052,
stack(0x7e0e0000,0x7e130000)]
  0x54186c00 JavaThread "pool-3-thread-1932" [_thread_blocked, id=11064,
stack(0x7e090000,0x7e0e0000)]
  0x54185400 JavaThread "pool-3-thread-1931" [_thread_blocked, id=11072,
stack(0x7e040000,0x7e090000)]
  0x54183c00 JavaThread "pool-3-thread-1930" [_thread_blocked, id=2140,
stack(0x7dff0000,0x7e040000)]
  0x54182800 JavaThread "pool-3-thread-1929" [_thread_blocked, id=11048,
stack(0x7dfa0000,0x7dff0000)]
  0x54181000 JavaThread "pool-3-thread-1928" [_thread_blocked, id=11032,
stack(0x7df50000,0x7dfa0000)]
  0x5417f800 JavaThread "pool-3-thread-1927" [_thread_blocked, id=11028,
stack(0x7df00000,0x7df50000)]
  0x5417e400 JavaThread "pool-3-thread-1926" [_thread_blocked, id=11024,
stack(0x7deb0000,0x7df00000)]
  0x5417cc00 JavaThread "pool-3-thread-1925" [_thread_blocked, id=10988,
stack(0x7de60000,0x7deb0000)]
  0x5417b400 JavaThread "pool-3-thread-1924" [_thread_blocked, id=10960,
stack(0x7de10000,0x7de60000)]
  0x5417a000 JavaThread "pool-3-thread-1923" [_thread_blocked, id=2056,
stack(0x7ddc0000,0x7de10000)]
  0x54163800 JavaThread "pool-3-thread-1922" [_thread_blocked, id=3456,
stack(0x7dd70000,0x7ddc0000)]
  0x54162000 JavaThread "pool-3-thread-1921" [_thread_blocked, id=3244,
stack(0x7dd20000,0x7dd70000)]
  0x54160800 JavaThread "pool-3-thread-1920" [_thread_blocked, id=3528,
stack(0x7dcd0000,0x7dd20000)]
  0x5415f400 JavaThread "pool-3-thread-1919" [_thread_blocked, id=1288,
stack(0x7dc80000,0x7dcd0000)]
  0x5415dc00 JavaThread "pool-3-thread-1918" [_thread_blocked, id=4016,
stack(0x7dc30000,0x7dc80000)]
  0x5415c400 JavaThread "pool-3-thread-1917" [_thread_blocked, id=10980,
stack(0x7dbe0000,0x7dc30000)]
  0x5415b000 JavaThread "pool-3-thread-1916" [_thread_blocked, id=10996,
stack(0x7db90000,0x7dbe0000)]
  0x54159400 JavaThread "pool-3-thread-1915" [_thread_blocked, id=10992,
stack(0x7db40000,0x7db90000)]
  0x54158400 JavaThread "pool-3-thread-1914" [_thread_blocked, id=10976,
stack(0x7daf0000,0x7db40000)]
  0x54157400 JavaThread "pool-3-thread-1913" [_thread_blocked, id=10972,
stack(0x7daa0000,0x7daf0000)]
  0x54156400 JavaThread "pool-3-thread-1912" [_thread_blocked, id=10968,
stack(0x7da50000,0x7daa0000)]
  0x54155800 JavaThread "pool-3-thread-1911" [_thread_blocked, id=10940,
stack(0x7da00000,0x7da50000)]
  0x54154800 JavaThread "pool-3-thread-1910" [_thread_blocked, id=10932,
stack(0x7d9b0000,0x7da00000)]
  0x54150c00 JavaThread "pool-3-thread-1909" [_thread_blocked, id=10928,
stack(0x7d960000,0x7d9b0000)]
  0x5414f800 JavaThread "pool-3-thread-1908" [_thread_blocked, id=10876,
stack(0x7d910000,0x7d960000)]
  0x5414e400 JavaThread "pool-3-thread-1907" [_thread_blocked, id=10924,
stack(0x7d8c0000,0x7d910000)]
  0x54145800 JavaThread "pool-3-thread-1906" [_thread_blocked, id=10944,
stack(0x7d870000,0x7d8c0000)]
  0x54144000 JavaThread "pool-3-thread-1905" [_thread_blocked, id=10964,
stack(0x7d820000,0x7d870000)]
  0x54142c00 JavaThread "pool-3-thread-1904" [_thread_blocked, id=1880,
stack(0x7d7d0000,0x7d820000)]
  0x54141400 JavaThread "pool-3-thread-1903" [_thread_blocked, id=10956,
stack(0x7d780000,0x7d7d0000)]
  0x5413fc00 JavaThread "pool-3-thread-1902" [_thread_blocked, id=10952,
stack(0x7d730000,0x7d780000)]
  0x5413e800 JavaThread "pool-3-thread-1901" [_thread_blocked, id=10948,
stack(0x7d6e0000,0x7d730000)]
  0x5413d000 JavaThread "pool-3-thread-1900" [_thread_blocked, id=10892,
stack(0x7d690000,0x7d6e0000)]
  0x5413b800 JavaThread "pool-3-thread-1899" [_thread_blocked, id=10896,
stack(0x7d640000,0x7d690000)]
  0x5413a400 JavaThread "pool-3-thread-1898" [_thread_blocked, id=10916,
stack(0x7d5f0000,0x7d640000)]
  0x54138800 JavaThread "pool-3-thread-1897" [_thread_blocked, id=10920,
stack(0x7d5a0000,0x7d5f0000)]
  0x54137400 JavaThread "pool-3-thread-1896" [_thread_blocked, id=10912,
stack(0x7d550000,0x7d5a0000)]
  0x5411bc00 JavaThread "pool-3-thread-1895" [_thread_blocked, id=10908,
stack(0x7d500000,0x7d550000)]
  0x5411a400 JavaThread "pool-3-thread-1894" [_thread_blocked, id=10904,
stack(0x7d4b0000,0x7d500000)]
  0x54119000 JavaThread "pool-3-thread-1893" [_thread_blocked, id=10824,
stack(0x7d460000,0x7d4b0000)]
  0x54117800 JavaThread "pool-3-thread-1892" [_thread_blocked, id=10868,
stack(0x7d410000,0x7d460000)]
  0x54116400 JavaThread "pool-3-thread-1891" [_thread_blocked, id=10900,
stack(0x7d3c0000,0x7d410000)]
  0x540fdc00 JavaThread "pool-3-thread-1890" [_thread_blocked, id=3444,
stack(0x7d370000,0x7d3c0000)]
  0x540fc400 JavaThread "pool-3-thread-1889" [_thread_blocked, id=10888,
stack(0x7d320000,0x7d370000)]
  0x540fb000 JavaThread "pool-3-thread-1888" [_thread_blocked, id=10884,
stack(0x7d2d0000,0x7d320000)]
  0x540f9800 JavaThread "pool-3-thread-1887" [_thread_blocked, id=10880,
stack(0x7d280000,0x7d2d0000)]
  0x540f8400 JavaThread "pool-3-thread-1886" [_thread_blocked, id=10872,
stack(0x7d190000,0x7d1e0000)]
  0x540e5800 JavaThread "pool-3-thread-1885" [_thread_blocked, id=10792,
stack(0x7d140000,0x7d190000)]
  0x540e4400 JavaThread "pool-3-thread-1884" [_thread_blocked, id=10864,
stack(0x7d0f0000,0x7d140000)]
  0x540e2c00 JavaThread "pool-3-thread-1883" [_thread_blocked, id=10860,
stack(0x7d0a0000,0x7d0f0000)]
  0x540e1400 JavaThread "pool-3-thread-1882" [_thread_blocked, id=10856,
stack(0x7d050000,0x7d0a0000)]
  0x540e0400 JavaThread "pool-3-thread-1881" [_thread_blocked, id=10852,
stack(0x7d000000,0x7d050000)]
  0x540cd800 JavaThread "pool-3-thread-1880" [_thread_blocked, id=8952,
stack(0x7cfb0000,0x7d000000)]
  0x540cc000 JavaThread "pool-3-thread-1879" [_thread_blocked, id=10820,
stack(0x7cf60000,0x7cfb0000)]
  0x540ca800 JavaThread "pool-3-thread-1878" [_thread_blocked, id=10828,
stack(0x7cf10000,0x7cf60000)]
  0x540c9400 JavaThread "pool-3-thread-1877" [_thread_blocked, id=10848,
stack(0x7cec0000,0x7cf10000)]
  0x540c7c00 JavaThread "pool-3-thread-1876" [_thread_blocked, id=3956,
stack(0x7ce70000,0x7cec0000)]
  0x540c6400 JavaThread "pool-3-thread-1875" [_thread_blocked, id=10840,
stack(0x7ce20000,0x7ce70000)]
  0x540c4c00 JavaThread "pool-3-thread-1874" [_thread_blocked, id=10836,
stack(0x7cdd0000,0x7ce20000)]
  0x540c3800 JavaThread "pool-3-thread-1873" [_thread_blocked, id=10832,
stack(0x7cd80000,0x7cdd0000)]
  0x540c2000 JavaThread "pool-3-thread-1872" [_thread_blocked, id=3464,
stack(0x7cd30000,0x7cd80000)]
  0x540c0800 JavaThread "pool-3-thread-1871" [_thread_blocked, id=10448,
stack(0x7cce0000,0x7cd30000)]
  0x540bfc00 JavaThread "pool-3-thread-1870" [_thread_blocked, id=8908,
stack(0x7cc90000,0x7cce0000)]
  0x540bec00 JavaThread "pool-3-thread-1869" [_thread_blocked, id=8892,
stack(0x7cc40000,0x7cc90000)]
  0x540bdc00 JavaThread "pool-3-thread-1868" [_thread_blocked, id=8804,
stack(0x7cbf0000,0x7cc40000)]
  0x540bd000 JavaThread "pool-3-thread-1867" [_thread_blocked, id=8744,
stack(0x7cba0000,0x7cbf0000)]
  0x540bbc00 JavaThread "pool-3-thread-1866" [_thread_blocked, id=8572,
stack(0x7cb50000,0x7cba0000)]
  0x540b8000 JavaThread "pool-3-thread-1865" [_thread_blocked, id=8580,
stack(0x7cb00000,0x7cb50000)]
  0x540b6800 JavaThread "pool-3-thread-1864" [_thread_blocked, id=8504,
stack(0x7cab0000,0x7cb00000)]
  0x540b5400 JavaThread "pool-3-thread-1863" [_thread_blocked, id=8424,
stack(0x7ca60000,0x7cab0000)]
  0x540b3c00 JavaThread "pool-3-thread-1862" [_thread_blocked, id=8364,
stack(0x7ca10000,0x7ca60000)]
  0x540b2400 JavaThread "pool-3-thread-1861" [_thread_blocked, id=8288,
stack(0x7c9c0000,0x7ca10000)]
  0x540b0c00 JavaThread "pool-3-thread-1860" [_thread_blocked, id=8064,
stack(0x7c970000,0x7c9c0000)]
  0x540af800 JavaThread "pool-3-thread-1859" [_thread_blocked, id=7960,
stack(0x7c920000,0x7c970000)]
  0x540ae000 JavaThread "pool-3-thread-1858" [_thread_blocked, id=7996,
stack(0x7c8d0000,0x7c920000)]
  0x540ac800 JavaThread "pool-3-thread-1857" [_thread_blocked, id=7924,
stack(0x7c7b0000,0x7c800000)]
  0x540ab000 JavaThread "pool-3-thread-1856" [_thread_blocked, id=7784,
stack(0x7c760000,0x7c7b0000)]
  0x540a9c00 JavaThread "pool-3-thread-1855" [_thread_blocked, id=7720,
stack(0x7c710000,0x7c760000)]
  0x540a8400 JavaThread "pool-3-thread-1854" [_thread_blocked, id=7704,
stack(0x7c6c0000,0x7c710000)]
  0x540a6c00 JavaThread "pool-3-thread-1853" [_thread_blocked, id=7660,
stack(0x7c670000,0x7c6c0000)]
  0x540a5400 JavaThread "pool-3-thread-1852" [_thread_blocked, id=7500,
stack(0x7c620000,0x7c670000)]
  0x540a4000 JavaThread "pool-3-thread-1851" [_thread_blocked, id=7440,
stack(0x7c5d0000,0x7c620000)]
  0x540a2800 JavaThread "pool-3-thread-1850" [_thread_blocked, id=7420,
stack(0x7c580000,0x7c5d0000)]
  0x540a1400 JavaThread "pool-3-thread-1849" [_thread_blocked, id=7372,
stack(0x7c530000,0x7c580000)]
  0x5409fc00 JavaThread "pool-3-thread-1848" [_thread_blocked, id=7320,
stack(0x7c4e0000,0x7c530000)]
  0x5409e400 JavaThread "pool-3-thread-1847" [_thread_blocked, id=7328,
stack(0x7c490000,0x7c4e0000)]
  0x5409d000 JavaThread "pool-3-thread-1846" [_thread_blocked, id=7300,
stack(0x7c440000,0x7c490000)]
  0x5409b400 JavaThread "pool-3-thread-1845" [_thread_blocked, id=7280,
stack(0x7c3f0000,0x7c440000)]
  0x5409a000 JavaThread "pool-3-thread-1844" [_thread_blocked, id=7172,
stack(0x7c3a0000,0x7c3f0000)]
  0x54098800 JavaThread "pool-3-thread-1843" [_thread_blocked, id=7156,
stack(0x7c2e0000,0x7c330000)]
  0x54097400 JavaThread "pool-3-thread-1842" [_thread_blocked, id=7132,
stack(0x7c290000,0x7c2e0000)]
  0x54095c00 JavaThread "pool-3-thread-1841" [_thread_blocked, id=7076,
stack(0x7c240000,0x7c290000)]
  0x54094400 JavaThread "pool-3-thread-1840" [_thread_blocked, id=6936,
stack(0x7c1f0000,0x7c240000)]
  0x54093000 JavaThread "pool-3-thread-1839" [_thread_blocked, id=6916,
stack(0x7c1a0000,0x7c1f0000)]
  0x54091800 JavaThread "pool-3-thread-1838" [_thread_blocked, id=6848,
stack(0x7c150000,0x7c1a0000)]
  0x54090000 JavaThread "pool-3-thread-1837" [_thread_blocked, id=6880,
stack(0x7c100000,0x7c150000)]
  0x5408e800 JavaThread "pool-3-thread-1836" [_thread_blocked, id=6844,
stack(0x7c0b0000,0x7c100000)]
  0x5408d400 JavaThread "pool-3-thread-1835" [_thread_blocked, id=6832,
stack(0x7c060000,0x7c0b0000)]
  0x5408bc00 JavaThread "pool-3-thread-1834" [_thread_blocked, id=6756,
stack(0x7c010000,0x7c060000)]
  0x5408a400 JavaThread "pool-3-thread-1833" [_thread_blocked, id=6712,
stack(0x7bfc0000,0x7c010000)]
  0x54089000 JavaThread "pool-3-thread-1832" [_thread_blocked, id=6720,
stack(0x7bf70000,0x7bfc0000)]
  0x54087800 JavaThread "pool-3-thread-1831" [_thread_blocked, id=6612,
stack(0x7bf20000,0x7bf70000)]
  0x54086000 JavaThread "pool-3-thread-1830" [_thread_blocked, id=6604,
stack(0x7bed0000,0x7bf20000)]
  0x54084800 JavaThread "pool-3-thread-1829" [_thread_blocked, id=6524,
stack(0x7be80000,0x7bed0000)]
  0x54083000 JavaThread "pool-3-thread-1828" [_thread_blocked, id=6364,
stack(0x7be30000,0x7be80000)]
  0x54081c00 JavaThread "pool-3-thread-1827" [_thread_blocked, id=6256,
stack(0x7bde0000,0x7be30000)]
  0x54080400 JavaThread "pool-3-thread-1826" [_thread_blocked, id=6216,
stack(0x7bd90000,0x7bde0000)]
  0x5407f000 JavaThread "pool-3-thread-1825" [_thread_blocked, id=6268,
stack(0x7bd40000,0x7bd90000)]
  0x5407d800 JavaThread "pool-3-thread-1824" [_thread_blocked, id=6200,
stack(0x7bcf0000,0x7bd40000)]
  0x5407c000 JavaThread "pool-3-thread-1823" [_thread_blocked, id=1124,
stack(0x7bca0000,0x7bcf0000)]
  0x5407a800 JavaThread "pool-3-thread-1822" [_thread_blocked, id=3612,
stack(0x7bc50000,0x7bca0000)]
  0x54079400 JavaThread "pool-3-thread-1821" [_thread_blocked, id=1536,
stack(0x7bc00000,0x7bc50000)]
  0x54077c00 JavaThread "pool-3-thread-1820" [_thread_blocked, id=6132,
stack(0x7bbb0000,0x7bc00000)]
  0x5406e400 JavaThread "pool-3-thread-1819" [_thread_blocked, id=6128,
stack(0x7bb60000,0x7bbb0000)]
  0x5406cc00 JavaThread "pool-3-thread-1818" [_thread_blocked, id=6040,
stack(0x7bb10000,0x7bb60000)]
  0x5406b400 JavaThread "pool-3-thread-1817" [_thread_blocked, id=6036,
stack(0x7bac0000,0x7bb10000)]
  0x5406a000 JavaThread "pool-3-thread-1816" [_thread_blocked, id=5912,
stack(0x7ba70000,0x7bac0000)]
  0x54068800 JavaThread "pool-3-thread-1815" [_thread_blocked, id=5956,
stack(0x7ba20000,0x7ba70000)]
  0x54067400 JavaThread "pool-3-thread-1814" [_thread_blocked, id=5868,
stack(0x7b9d0000,0x7ba20000)]
  0x54065c00 JavaThread "pool-3-thread-1813" [_thread_blocked, id=5712,
stack(0x7b980000,0x7b9d0000)]
  0x54064400 JavaThread "pool-3-thread-1812" [_thread_blocked, id=5672,
stack(0x7b930000,0x7b980000)]
  0x54063000 JavaThread "pool-3-thread-1811" [_thread_blocked, id=5644,
stack(0x7b8e0000,0x7b930000)]
  0x54061400 JavaThread "pool-3-thread-1810" [_thread_blocked, id=5592,
stack(0x7b890000,0x7b8e0000)]
  0x54060000 JavaThread "pool-3-thread-1809" [_thread_blocked, id=5548,
stack(0x7b840000,0x7b890000)]
  0x5405e800 JavaThread "pool-3-thread-1808" [_thread_blocked, id=5496,
stack(0x7b7f0000,0x7b840000)]
  0x5405d400 JavaThread "pool-3-thread-1807" [_thread_blocked, id=5232,
stack(0x7b7a0000,0x7b7f0000)]
  0x5405bc00 JavaThread "pool-3-thread-1806" [_thread_blocked, id=5112,
stack(0x7b750000,0x7b7a0000)]
  0x5405a400 JavaThread "pool-3-thread-1805" [_thread_blocked, id=5020,
stack(0x7b700000,0x7b750000)]
  0x54059000 JavaThread "pool-3-thread-1804" [_thread_blocked, id=4976,
stack(0x7b6b0000,0x7b700000)]
  0x54057800 JavaThread "pool-3-thread-1803" [_thread_blocked, id=4908,
stack(0x7b660000,0x7b6b0000)]
  0x5404e000 JavaThread "pool-3-thread-1802" [_thread_blocked, id=4936,
stack(0x7b610000,0x7b660000)]
  0x5404c800 JavaThread "pool-3-thread-1801" [_thread_blocked, id=4900,
stack(0x7b5c0000,0x7b610000)]
  0x5404b000 JavaThread "pool-3-thread-1800" [_thread_blocked, id=4776,
stack(0x7b570000,0x7b5c0000)]
  0x54049c00 JavaThread "pool-3-thread-1799" [_thread_blocked, id=4572,
stack(0x7b520000,0x7b570000)]
  0x54048400 JavaThread "pool-3-thread-1798" [_thread_blocked, id=4508,
stack(0x7b4d0000,0x7b520000)]
  0x54047000 JavaThread "pool-3-thread-1797" [_thread_blocked, id=4424,
stack(0x7b480000,0x7b4d0000)]
  0x54045400 JavaThread "pool-3-thread-1796" [_thread_blocked, id=4368,
stack(0x7b430000,0x7b480000)]
  0x54044000 JavaThread "pool-3-thread-1795" [_thread_blocked, id=4324,
stack(0x7b3e0000,0x7b430000)]
  0x54042800 JavaThread "pool-3-thread-1794" [_thread_blocked, id=2168,
stack(0x7b390000,0x7b3e0000)]
  0x54041400 JavaThread "pool-3-thread-1793" [_thread_blocked, id=1904,
stack(0x7b340000,0x7b390000)]
  0x5403fc00 JavaThread "pool-3-thread-1792" [_thread_blocked, id=1760,
stack(0x7b2f0000,0x7b340000)]
  0x5403e400 JavaThread "pool-3-thread-1791" [_thread_blocked, id=3340,
stack(0x7b2a0000,0x7b2f0000)]
  0x5403d000 JavaThread "pool-3-thread-1790" [_thread_blocked, id=736,
stack(0x7b250000,0x7b2a0000)]
  0x5403b800 JavaThread "pool-3-thread-1789" [_thread_blocked, id=2984,
stack(0x7b200000,0x7b250000)]
  0x5403a000 JavaThread "pool-3-thread-1788" [_thread_blocked, id=3900,
stack(0x7b1b0000,0x7b200000)]
  0x54038800 JavaThread "pool-3-thread-1787" [_thread_blocked, id=352,
stack(0x7b160000,0x7b1b0000)]
  0x54037000 JavaThread "pool-3-thread-1786" [_thread_blocked, id=1252,
stack(0x7b110000,0x7b160000)]
  0x54035c00 JavaThread "pool-3-thread-1785" [_thread_blocked, id=1116,
stack(0x7b0c0000,0x7b110000)]
  0x54034400 JavaThread "pool-3-thread-1784" [_thread_blocked, id=4012,
stack(0x7b070000,0x7b0c0000)]
  0x54033000 JavaThread "pool-3-thread-1783" [_thread_blocked, id=2812,
stack(0x7b020000,0x7b070000)]
  0x54031800 JavaThread "pool-3-thread-1782" [_thread_blocked, id=3912,
stack(0x7afd0000,0x7b020000)]
  0x54030000 JavaThread "pool-3-thread-1781" [_thread_blocked, id=3160,
stack(0x7af80000,0x7afd0000)]
  0x5402ec00 JavaThread "pool-3-thread-1780" [_thread_blocked, id=10772,
stack(0x7af30000,0x7af80000)]
  0x5402d400 JavaThread "pool-3-thread-1779" [_thread_blocked, id=10744,
stack(0x7aee0000,0x7af30000)]
  0x5402bc00 JavaThread "pool-3-thread-1778" [_thread_blocked, id=10720,
stack(0x7ae90000,0x7aee0000)]
  0x5402a400 JavaThread "pool-3-thread-1777" [_thread_blocked, id=10636,
stack(0x7ae40000,0x7ae90000)]
  0x54029000 JavaThread "pool-3-thread-1776" [_thread_blocked, id=10556,
stack(0x7adf0000,0x7ae40000)]
  0x54027800 JavaThread "pool-3-thread-1775" [_thread_blocked, id=10504,
stack(0x7ada0000,0x7adf0000)]
  0x54026000 JavaThread "pool-3-thread-1774" [_thread_blocked, id=10508,
stack(0x7ad50000,0x7ada0000)]
  0x54024c00 JavaThread "pool-3-thread-1773" [_thread_blocked, id=10444,
stack(0x7ad00000,0x7ad50000)]
  0x54023400 JavaThread "pool-3-thread-1772" [_thread_blocked, id=10416,
stack(0x7acb0000,0x7ad00000)]
  0x54021c00 JavaThread "pool-3-thread-1771" [_thread_blocked, id=10400,
stack(0x7ac60000,0x7acb0000)]
  0x54020400 JavaThread "pool-3-thread-1770" [_thread_blocked, id=10300,
stack(0x7ac10000,0x7ac60000)]
  0x5401f400 JavaThread "pool-3-thread-1769" [_thread_blocked, id=10272,
stack(0x7abc0000,0x7ac10000)]
  0x54008800 JavaThread "pool-3-thread-1768" [_thread_blocked, id=10220,
stack(0x7ab70000,0x7abc0000)]
  0x54007000 JavaThread "pool-3-thread-1767" [_thread_blocked, id=10024,
stack(0x7ab20000,0x7ab70000)]
  0x54005c00 JavaThread "pool-3-thread-1766" [_thread_blocked, id=9960,
stack(0x7aad0000,0x7ab20000)]
  0x54004400 JavaThread "pool-3-thread-1765" [_thread_blocked, id=9936,
stack(0x7aa80000,0x7aad0000)]
  0x54002c00 JavaThread "pool-3-thread-1764" [_thread_blocked, id=9876,
stack(0x7aa30000,0x7aa80000)]
  0x54001400 JavaThread "pool-3-thread-1763" [_thread_blocked, id=9848,
stack(0x7a9e0000,0x7aa30000)]
  0x54000000 JavaThread "pool-3-thread-1762" [_thread_blocked, id=9856,
stack(0x7a990000,0x7a9e0000)]
  0x53ffe800 JavaThread "pool-3-thread-1761" [_thread_blocked, id=9776,
stack(0x7a940000,0x7a990000)]
  0x53ffd000 JavaThread "pool-3-thread-1760" [_thread_blocked, id=9712,
stack(0x7a8f0000,0x7a940000)]
  0x53ffbc00 JavaThread "pool-3-thread-1759" [_thread_blocked, id=9696,
stack(0x7a8a0000,0x7a8f0000)]
  0x53ffa000 JavaThread "pool-3-thread-1758" [_thread_blocked, id=9588,
stack(0x7a850000,0x7a8a0000)]
  0x53ff8c00 JavaThread "pool-3-thread-1757" [_thread_blocked, id=9500,
stack(0x7a800000,0x7a850000)]
  0x53ff7400 JavaThread "pool-3-thread-1756" [_thread_blocked, id=9528,
stack(0x7a7b0000,0x7a800000)]
  0x53ff6000 JavaThread "pool-3-thread-1755" [_thread_blocked, id=9504,
stack(0x7a760000,0x7a7b0000)]
  0x53ff4800 JavaThread "pool-3-thread-1754" [_thread_blocked, id=9452,
stack(0x7a710000,0x7a760000)]
  0x53ff3000 JavaThread "pool-3-thread-1753" [_thread_blocked, id=9436,
stack(0x7a6c0000,0x7a710000)]
  0x53ff1c00 JavaThread "pool-3-thread-1752" [_thread_blocked, id=9432,
stack(0x7a670000,0x7a6c0000)]
  0x53ff0400 JavaThread "pool-3-thread-1751" [_thread_blocked, id=9400,
stack(0x7a620000,0x7a670000)]
  0x53feec00 JavaThread "pool-3-thread-1750" [_thread_blocked, id=9344,
stack(0x7a5d0000,0x7a620000)]
  0x53fed800 JavaThread "pool-3-thread-1749" [_thread_blocked, id=9272,
stack(0x7a580000,0x7a5d0000)]
  0x53fec000 JavaThread "pool-3-thread-1748" [_thread_blocked, id=9264,
stack(0x7a530000,0x7a580000)]
  0x53fea800 JavaThread "pool-3-thread-1747" [_thread_blocked, id=9256,
stack(0x7a4e0000,0x7a530000)]
  0x53fe9000 JavaThread "pool-3-thread-1746" [_thread_blocked, id=9244,
stack(0x7a490000,0x7a4e0000)]
  0x53fe7c00 JavaThread "pool-3-thread-1745" [_thread_blocked, id=9096,
stack(0x7a440000,0x7a490000)]
  0x53fe6400 JavaThread "pool-3-thread-1744" [_thread_blocked, id=9060,
stack(0x7a3f0000,0x7a440000)]
  0x53fe4c00 JavaThread "pool-3-thread-1743" [_thread_blocked, id=9004,
stack(0x7a3a0000,0x7a3f0000)]
  0x53fe3800 JavaThread "pool-3-thread-1742" [_thread_blocked, id=8976,
stack(0x7a350000,0x7a3a0000)]
  0x53fe2000 JavaThread "pool-3-thread-1741" [_thread_blocked, id=8948,
stack(0x7a300000,0x7a350000)]
  0x53fe0800 JavaThread "pool-3-thread-1740" [_thread_blocked, id=8940,
stack(0x7a2b0000,0x7a300000)]
  0x53fdf000 JavaThread "pool-3-thread-1739" [_thread_blocked, id=8876,
stack(0x7a260000,0x7a2b0000)]
  0x53fddc00 JavaThread "pool-3-thread-1738" [_thread_blocked, id=8832,
stack(0x7a210000,0x7a260000)]
  0x53fdc400 JavaThread "pool-3-thread-1737" [_thread_blocked, id=8788,
stack(0x7a1c0000,0x7a210000)]
  0x53fdac00 JavaThread "pool-3-thread-1736" [_thread_blocked, id=8780,
stack(0x7a170000,0x7a1c0000)]
  0x53fd9800 JavaThread "pool-3-thread-1735" [_thread_blocked, id=8728,
stack(0x7a120000,0x7a170000)]
  0x53fd8000 JavaThread "pool-3-thread-1734" [_thread_blocked, id=8704,
stack(0x7a0d0000,0x7a120000)]
  0x53fd6800 JavaThread "pool-3-thread-1733" [_thread_blocked, id=8708,
stack(0x7a080000,0x7a0d0000)]
  0x53fd5000 JavaThread "pool-3-thread-1732" [_thread_blocked, id=8672,
stack(0x7a030000,0x7a080000)]
  0x53fd3800 JavaThread "pool-3-thread-1731" [_thread_blocked, id=8636,
stack(0x79fe0000,0x7a030000)]
  0x53fcf000 JavaThread "pool-3-thread-1730" [_thread_blocked, id=8596,
stack(0x79f90000,0x79fe0000)]
  0x53fcd800 JavaThread "pool-3-thread-1729" [_thread_blocked, id=8472,
stack(0x79f40000,0x79f90000)]
  0x53262400 JavaThread "pool-3-thread-1728" [_thread_blocked, id=8436,
stack(0x79ef0000,0x79f40000)]
  0x53273400 JavaThread "pool-3-thread-1727" [_thread_blocked, id=8440,
stack(0x79ea0000,0x79ef0000)]
  0x54362400 JavaThread "pool-3-thread-1726" [_thread_blocked, id=8376,
stack(0x79e50000,0x79ea0000)]
  0x54361000 JavaThread "pool-3-thread-1725" [_thread_blocked, id=8168,
stack(0x79e00000,0x79e50000)]
  0x53fcb000 JavaThread "pool-3-thread-1724" [_thread_blocked, id=8128,
stack(0x79db0000,0x79e00000)]
  0x53fc9c00 JavaThread "pool-3-thread-1723" [_thread_blocked, id=8112,
stack(0x79d60000,0x79db0000)]
  0x53fc8400 JavaThread "pool-3-thread-1722" [_thread_blocked, id=8044,
stack(0x79d10000,0x79d60000)]
  0x53fc6800 JavaThread "pool-3-thread-1721" [_thread_blocked, id=7972,
stack(0x79cc0000,0x79d10000)]
  0x53fc5400 JavaThread "pool-3-thread-1720" [_thread_blocked, id=7940,
stack(0x79c70000,0x79cc0000)]
  0x53fc4000 JavaThread "pool-3-thread-1719" [_thread_blocked, id=7912,
stack(0x79c20000,0x79c70000)]
  0x53fc2800 JavaThread "pool-3-thread-1718" [_thread_blocked, id=7848,
stack(0x79bd0000,0x79c20000)]
  0x53fc1000 JavaThread "pool-3-thread-1717" [_thread_blocked, id=7816,
stack(0x79b80000,0x79bd0000)]
  0x53fbfc00 JavaThread "pool-3-thread-1716" [_thread_blocked, id=7764,
stack(0x79b30000,0x79b80000)]
  0x53fbe400 JavaThread "pool-3-thread-1715" [_thread_blocked, id=7732,
stack(0x79ae0000,0x79b30000)]
  0x53fbcc00 JavaThread "pool-3-thread-1714" [_thread_blocked, id=7664,
stack(0x79a90000,0x79ae0000)]
  0x53fbb800 JavaThread "pool-3-thread-1713" [_thread_blocked, id=7644,
stack(0x79a40000,0x79a90000)]
  0x53fb9c00 JavaThread "pool-3-thread-1712" [_thread_blocked, id=7628,
stack(0x799f0000,0x79a40000)]
  0x53fb8400 JavaThread "pool-3-thread-1711" [_thread_blocked, id=7592,
stack(0x799a0000,0x799f0000)]
  0x53fb7000 JavaThread "pool-3-thread-1710" [_thread_blocked, id=7576,
stack(0x79950000,0x799a0000)]
  0x53fb5c00 JavaThread "pool-3-thread-1709" [_thread_blocked, id=7532,
stack(0x79900000,0x79950000)]
  0x53fb4400 JavaThread "pool-3-thread-1708" [_thread_blocked, id=7508,
stack(0x798b0000,0x79900000)]
  0x53fb2c00 JavaThread "pool-3-thread-1707" [_thread_blocked, id=7460,
stack(0x79860000,0x798b0000)]
  0x53fb1400 JavaThread "pool-3-thread-1706" [_thread_blocked, id=7448,
stack(0x79810000,0x79860000)]
  0x53fb0000 JavaThread "pool-3-thread-1705" [_thread_blocked, id=7400,
stack(0x797c0000,0x79810000)]
  0x53fae800 JavaThread "pool-3-thread-1704" [_thread_blocked, id=7368,
stack(0x79770000,0x797c0000)]
  0x53fad000 JavaThread "pool-3-thread-1703" [_thread_blocked, id=7308,
stack(0x79720000,0x79770000)]
  0x53fa1800 JavaThread "pool-3-thread-1702" [_thread_blocked, id=7304,
stack(0x796d0000,0x79720000)]
  0x53fa0000 JavaThread "pool-3-thread-1701" [_thread_blocked, id=7272,
stack(0x79680000,0x796d0000)]
  0x53f9ec00 JavaThread "pool-3-thread-1700" [_thread_blocked, id=7244,
stack(0x79630000,0x79680000)]
  0x53f9d400 JavaThread "pool-3-thread-1699" [_thread_blocked, id=7236,
stack(0x795e0000,0x79630000)]
  0x53f9c000 JavaThread "pool-3-thread-1698" [_thread_blocked, id=7200,
stack(0x79590000,0x795e0000)]
  0x53f55800 JavaThread "pool-3-thread-1697" [_thread_blocked, id=7116,
stack(0x79540000,0x79590000)]
  0x53f54000 JavaThread "pool-3-thread-1696" [_thread_blocked, id=7072,
stack(0x794f0000,0x79540000)]
  0x53f52c00 JavaThread "pool-3-thread-1695" [_thread_blocked, id=7044,
stack(0x794a0000,0x794f0000)]
  0x53f51400 JavaThread "pool-3-thread-1694" [_thread_blocked, id=7036,
stack(0x79450000,0x794a0000)]
  0x53f4fc00 JavaThread "pool-3-thread-1693" [_thread_blocked, id=6920,
stack(0x79400000,0x79450000)]
  0x53fab400 JavaThread "pool-3-thread-1692" [_thread_blocked, id=6800,
stack(0x793b0000,0x79400000)]
  0x53faa000 JavaThread "pool-3-thread-1691" [_thread_blocked, id=6788,
stack(0x79360000,0x793b0000)]
  0x53fa8800 JavaThread "pool-3-thread-1690" [_thread_blocked, id=6764,
stack(0x79310000,0x79360000)]
  0x53fa7000 JavaThread "pool-3-thread-1689" [_thread_blocked, id=6736,
stack(0x792c0000,0x79310000)]
  0x53fa5800 JavaThread "pool-3-thread-1688" [_thread_blocked, id=6676,
stack(0x79270000,0x792c0000)]
  0x53fa4400 JavaThread "pool-3-thread-1687" [_thread_blocked, id=6684,
stack(0x79220000,0x79270000)]
  0x53fa3400 JavaThread "pool-3-thread-1686" [_thread_blocked, id=6700,
stack(0x791d0000,0x79220000)]
  0x53f4d800 JavaThread "pool-3-thread-1685" [_thread_blocked, id=6680,
stack(0x79180000,0x791d0000)]
  0x53f4cc00 JavaThread "pool-3-thread-1684" [_thread_blocked, id=6592,
stack(0x79130000,0x79180000)]
  0x53f4b400 JavaThread "pool-3-thread-1683" [_thread_blocked, id=6560,
stack(0x790e0000,0x79130000)]
  0x53f49c00 JavaThread "pool-3-thread-1682" [_thread_blocked, id=6500,
stack(0x79090000,0x790e0000)]
  0x53f48800 JavaThread "pool-3-thread-1681" [_thread_blocked, id=6492,
stack(0x79040000,0x79090000)]
  0x53f47800 JavaThread "pool-3-thread-1680" [_thread_blocked, id=6448,
stack(0x78ff0000,0x79040000)]
  0x53f45c00 JavaThread "pool-3-thread-1679" [_thread_blocked, id=6432,
stack(0x78fa0000,0x78ff0000)]
  0x53f44400 JavaThread "pool-3-thread-1678" [_thread_blocked, id=6392,
stack(0x78f50000,0x78fa0000)]
  0x53f42c00 JavaThread "pool-3-thread-1677" [_thread_blocked, id=6388,
stack(0x78f00000,0x78f50000)]
  0x53f41800 JavaThread "pool-3-thread-1676" [_thread_blocked, id=6360,
stack(0x78eb0000,0x78f00000)]
  0x53f40000 JavaThread "pool-3-thread-1675" [_thread_blocked, id=6228,
stack(0x78e60000,0x78eb0000)]
  0x53f3ec00 JavaThread "pool-3-thread-1674" [_thread_blocked, id=6244,
stack(0x78e10000,0x78e60000)]
  0x53f3c800 JavaThread "pool-3-thread-1673" [_thread_blocked, id=1780,
stack(0x78dc0000,0x78e10000)]
  0x53f3ac00 JavaThread "pool-3-thread-1672" [_thread_blocked, id=1280,
stack(0x78d70000,0x78dc0000)]
  0x53f39400 JavaThread "pool-3-thread-1671" [_thread_blocked, id=2896,
stack(0x78d20000,0x78d70000)]
  0x53f38000 JavaThread "pool-3-thread-1670" [_thread_blocked, id=3976,
stack(0x78cd0000,0x78d20000)]
  0x53f25800 JavaThread "pool-3-thread-1669" [_thread_blocked, id=6088,
stack(0x78c80000,0x78cd0000)]
  0x53f24000 JavaThread "pool-3-thread-1668" [_thread_blocked, id=6092,
stack(0x78c30000,0x78c80000)]
  0x53f22c00 JavaThread "pool-3-thread-1667" [_thread_blocked, id=6052,
stack(0x78be0000,0x78c30000)]
  0x53f21400 JavaThread "pool-3-thread-1666" [_thread_blocked, id=6004,
stack(0x78b90000,0x78be0000)]
  0x53f1fc00 JavaThread "pool-3-thread-1665" [_thread_blocked, id=6020,
stack(0x78b40000,0x78b90000)]
  0x53f15800 JavaThread "pool-3-thread-1664" [_thread_blocked, id=5904,
stack(0x78af0000,0x78b40000)]
  0x53f14000 JavaThread "pool-3-thread-1663" [_thread_blocked, id=5848,
stack(0x78aa0000,0x78af0000)]
  0x53f12800 JavaThread "pool-3-thread-1662" [_thread_blocked, id=5624,
stack(0x78a50000,0x78aa0000)]
  0x53f11000 JavaThread "pool-3-thread-1661" [_thread_blocked, id=5660,
stack(0x78a00000,0x78a50000)]
  0x53f0f800 JavaThread "pool-3-thread-1660" [_thread_blocked, id=5580,
stack(0x789b0000,0x78a00000)]
  0x53f0e400 JavaThread "pool-3-thread-1659" [_thread_blocked, id=5500,
stack(0x78960000,0x789b0000)]
  0x53f0cc00 JavaThread "pool-3-thread-1658" [_thread_blocked, id=5480,
stack(0x78910000,0x78960000)]
  0x53f0b800 JavaThread "pool-3-thread-1657" [_thread_blocked, id=5432,
stack(0x788c0000,0x78910000)]
  0x53f0a000 JavaThread "pool-3-thread-1656" [_thread_blocked, id=5400,
stack(0x78870000,0x788c0000)]
  0x53f08800 JavaThread "pool-3-thread-1655" [_thread_blocked, id=5324,
stack(0x78820000,0x78870000)]
  0x53f07000 JavaThread "pool-3-thread-1654" [_thread_blocked, id=5320,
stack(0x787d0000,0x78820000)]
  0x53f05800 JavaThread "pool-3-thread-1653" [_thread_blocked, id=5272,
stack(0x78780000,0x787d0000)]
  0x53f04400 JavaThread "pool-3-thread-1652" [_thread_blocked, id=5108,
stack(0x78730000,0x78780000)]
  0x53f02c00 JavaThread "pool-3-thread-1651" [_thread_blocked, id=5072,
stack(0x786e0000,0x78730000)]
  0x53f01800 JavaThread "pool-3-thread-1650" [_thread_blocked, id=5012,
stack(0x78690000,0x786e0000)]
  0x53f00000 JavaThread "pool-3-thread-1649" [_thread_blocked, id=5032,
stack(0x78640000,0x78690000)]
  0x53efe800 JavaThread "pool-3-thread-1648" [_thread_blocked, id=4980,
stack(0x785f0000,0x78640000)]
  0x53efd000 JavaThread "pool-3-thread-1647" [_thread_blocked, id=5024,
stack(0x785a0000,0x785f0000)]
  0x53efbc00 JavaThread "pool-3-thread-1646" [_thread_blocked, id=4872,
stack(0x78550000,0x785a0000)]
  0x53efa400 JavaThread "pool-3-thread-1645" [_thread_blocked, id=4856,
stack(0x78500000,0x78550000)]
  0x53ef8c00 JavaThread "pool-3-thread-1644" [_thread_blocked, id=4684,
stack(0x784b0000,0x78500000)]
  0x53ef7800 JavaThread "pool-3-thread-1643" [_thread_blocked, id=4708,
stack(0x78460000,0x784b0000)]
  0x53eed000 JavaThread "pool-3-thread-1642" [_thread_blocked, id=4720,
stack(0x78410000,0x78460000)]
  0x53eeb800 JavaThread "pool-3-thread-1641" [_thread_blocked, id=4660,
stack(0x783c0000,0x78410000)]
  0x53eea000 JavaThread "pool-3-thread-1640" [_thread_blocked, id=4652,
stack(0x78370000,0x783c0000)]
  0x53ee8c00 JavaThread "pool-3-thread-1639" [_thread_blocked, id=4608,
stack(0x78320000,0x78370000)]
  0x53ee7400 JavaThread "pool-3-thread-1638" [_thread_blocked, id=4576,
stack(0x782d0000,0x78320000)]
  0x53ee5c00 JavaThread "pool-3-thread-1637" [_thread_blocked, id=4492,
stack(0x78280000,0x782d0000)]
  0x53ee4800 JavaThread "pool-3-thread-1636" [_thread_blocked, id=4504,
stack(0x78230000,0x78280000)]
  0x53ee2c00 JavaThread "pool-3-thread-1635" [_thread_blocked, id=4360,
stack(0x781e0000,0x78230000)]
  0x53ee1800 JavaThread "pool-3-thread-1634" [_thread_blocked, id=4284,
stack(0x78190000,0x781e0000)]
  0x53ee0000 JavaThread "pool-3-thread-1633" [_thread_blocked, id=4196,
stack(0x78140000,0x78190000)]
  0x53edec00 JavaThread "pool-3-thread-1632" [_thread_blocked, id=4104,
stack(0x780f0000,0x78140000)]
  0x53ed4400 JavaThread "pool-3-thread-1631" [_thread_blocked, id=4120,
stack(0x77fa0000,0x77ff0000)]
  0x53ed2c00 JavaThread "pool-3-thread-1630" [_thread_blocked, id=960,
stack(0x77f50000,0x77fa0000)]
  0x53ed1800 JavaThread "pool-3-thread-1629" [_thread_blocked, id=3108,
stack(0x77de0000,0x77e30000)]
  0x53ed0000 JavaThread "pool-3-thread-1628" [_thread_blocked, id=3744,
stack(0x77d90000,0x77de0000)]
  0x53ece800 JavaThread "pool-3-thread-1627" [_thread_blocked, id=1308,
stack(0x77d40000,0x77d90000)]
  0x53ecd400 JavaThread "pool-3-thread-1626" [_thread_blocked, id=2104,
stack(0x77cf0000,0x77d40000)]
  0x53ebac00 JavaThread "pool-3-thread-1625" [_thread_blocked, id=652,
stack(0x77b50000,0x77ba0000)]
  0x53eb9400 JavaThread "pool-3-thread-1624" [_thread_blocked, id=3440,
stack(0x77b00000,0x77b50000)]
  0x53eb7c00 JavaThread "pool-3-thread-1623" [_thread_blocked, id=2920,
stack(0x77ab0000,0x77b00000)]
  0x53eb6800 JavaThread "pool-3-thread-1622" [_thread_blocked, id=1276,
stack(0x77a60000,0x77ab0000)]
  0x53eb5000 JavaThread "pool-3-thread-1621" [_thread_blocked, id=2932,
stack(0x77a10000,0x77a60000)]
  0x53eaa800 JavaThread "pool-3-thread-1620" [_thread_blocked, id=3696,
stack(0x779c0000,0x77a10000)]
  0x53ea9000 JavaThread "pool-3-thread-1619" [_thread_blocked, id=328,
stack(0x77970000,0x779c0000)]
  0x53ea7800 JavaThread "pool-3-thread-1618" [_thread_blocked, id=1932,
stack(0x77920000,0x77970000)]
  0x53ea6400 JavaThread "pool-3-thread-1617" [_thread_blocked, id=2616,
stack(0x778d0000,0x77920000)]
  0x53ea4c00 JavaThread "pool-3-thread-1616" [_thread_blocked, id=4000,
stack(0x77880000,0x778d0000)]
  0x53ea3800 JavaThread "pool-3-thread-1615" [_thread_blocked, id=924,
stack(0x77830000,0x77880000)]
  0x53ea2000 JavaThread "pool-3-thread-1614" [_thread_blocked, id=416,
stack(0x777e0000,0x77830000)]
  0x53ea0800 JavaThread "pool-3-thread-1613" [_thread_blocked, id=1212,
stack(0x77790000,0x777e0000)]
  0x53e9f400 JavaThread "pool-3-thread-1612" [_thread_blocked, id=3888,
stack(0x77740000,0x77790000)]
  0x53e9dc00 JavaThread "pool-3-thread-1611" [_thread_blocked, id=3328,
stack(0x776f0000,0x77740000)]
  0x53e9c400 JavaThread "pool-3-thread-1610" [_thread_blocked, id=10776,
stack(0x776a0000,0x776f0000)]
  0x53e9ac00 JavaThread "pool-3-thread-1609" [_thread_blocked, id=10752,
stack(0x77650000,0x776a0000)]
  0x53e99800 JavaThread "pool-3-thread-1608" [_thread_blocked, id=10716,
stack(0x77600000,0x77650000)]
  0x53e98000 JavaThread "pool-3-thread-1607" [_thread_blocked, id=10700,
stack(0x775b0000,0x77600000)]
  0x53e96c00 JavaThread "pool-3-thread-1606" [_thread_blocked, id=10692,
stack(0x77560000,0x775b0000)]
  0x53e96400 JavaThread "pool-3-thread-1605" [_thread_blocked, id=10656,
stack(0x77510000,0x77560000)]
  0x53e61000 JavaThread "pool-3-thread-1604" [_thread_blocked, id=10660,
stack(0x774c0000,0x77510000)]
  0x53e5f800 JavaThread "pool-3-thread-1603" [_thread_blocked, id=10612,
stack(0x77470000,0x774c0000)]
  0x53e5cc00 JavaThread "pool-3-thread-1602" [_thread_blocked, id=10608,
stack(0x77420000,0x77470000)]
  0x53e5b800 JavaThread "pool-3-thread-1601" [_thread_blocked, id=10560,
stack(0x77300000,0x77350000)]
  0x53e59c00 JavaThread "pool-3-thread-1600" [_thread_blocked, id=10552,
stack(0x772b0000,0x77300000)]
  0x53e58800 JavaThread "pool-3-thread-1599" [_thread_blocked, id=10536,
stack(0x77260000,0x772b0000)]
  0x53e57400 JavaThread "pool-3-thread-1598" [_thread_blocked, id=10500,
stack(0x77210000,0x77260000)]
  0x53e55800 JavaThread "pool-3-thread-1597" [_thread_blocked, id=10432,
stack(0x77170000,0x771c0000)]
  0x53e54400 JavaThread "pool-3-thread-1596" [_thread_blocked, id=10368,
stack(0x77120000,0x77170000)]
  0x53e52c00 JavaThread "pool-3-thread-1595" [_thread_blocked, id=10404,
stack(0x770d0000,0x77120000)]
  0x53e51800 JavaThread "pool-3-thread-1594" [_thread_blocked, id=10380,
stack(0x77080000,0x770d0000)]
  0x53e50000 JavaThread "pool-3-thread-1593" [_thread_blocked, id=10360,
stack(0x77030000,0x77080000)]
  0x53e4e800 JavaThread "pool-3-thread-1592" [_thread_blocked, id=10332,
stack(0x76fe0000,0x77030000)]
  0x53e4d400 JavaThread "pool-3-thread-1591" [_thread_blocked, id=10328,
stack(0x76f90000,0x76fe0000)]
  0x53e4b800 JavaThread "pool-3-thread-1590" [_thread_blocked, id=10308,
stack(0x76e50000,0x76ea0000)]
  0x53e4a400 JavaThread "pool-3-thread-1589" [_thread_blocked, id=10292,
stack(0x76e00000,0x76e50000)]
  0x53e48c00 JavaThread "pool-3-thread-1588" [_thread_blocked, id=10268,
stack(0x76db0000,0x76e00000)]
  0x53e47400 JavaThread "pool-3-thread-1587" [_thread_blocked, id=10232,
stack(0x76d60000,0x76db0000)]
  0x53e46000 JavaThread "pool-3-thread-1586" [_thread_blocked, id=10184,
stack(0x76d10000,0x76d60000)]
  0x53e44800 JavaThread "pool-3-thread-1585" [_thread_blocked, id=10180,
stack(0x76cc0000,0x76d10000)]
  0x53e43400 JavaThread "pool-3-thread-1584" [_thread_blocked, id=10144,
stack(0x76c70000,0x76cc0000)]
  0x53cb2c00 JavaThread "pool-3-thread-1583" [_thread_blocked, id=10112,
stack(0x76c20000,0x76c70000)]
  0x53cb1400 JavaThread "pool-3-thread-1582" [_thread_blocked, id=10100,
stack(0x76bd0000,0x76c20000)]
  0x53cafc00 JavaThread "pool-3-thread-1581" [_thread_blocked, id=10076,
stack(0x76b80000,0x76bd0000)]
  0x53cae800 JavaThread "pool-3-thread-1580" [_thread_blocked, id=10064,
stack(0x76b20000,0x76b70000)]
  0x53cad400 JavaThread "pool-3-thread-1579" [_thread_blocked, id=10012,
stack(0x76ad0000,0x76b20000)]
  0x53ca8800 JavaThread "pool-3-thread-1578" [_thread_blocked, id=10004,
stack(0x76a40000,0x76a90000)]
  0x53ca7400 JavaThread "pool-3-thread-1577" [_thread_blocked, id=9980,
stack(0x769f0000,0x76a40000)]
  0x53ca5c00 JavaThread "pool-3-thread-1576" [_thread_blocked, id=9972,
stack(0x768a0000,0x768f0000)]
  0x53ca4400 JavaThread "pool-3-thread-1575" [_thread_blocked, id=9916,
stack(0x76850000,0x768a0000)]
  0x53c8ec00 JavaThread "pool-3-thread-1574" [_thread_blocked, id=9908,
stack(0x76800000,0x76850000)]
  0x53c8d400 JavaThread "pool-3-thread-1573" [_thread_blocked, id=9952,
stack(0x767b0000,0x76800000)]
  0x53c8c000 JavaThread "pool-3-thread-1572" [_thread_blocked, id=9920,
stack(0x76760000,0x767b0000)]
  0x53c8a800 JavaThread "pool-3-thread-1571" [_thread_blocked, id=9888,
stack(0x76710000,0x76760000)]
  0x53c89000 JavaThread "pool-3-thread-1570" [_thread_blocked, id=9864,
stack(0x766c0000,0x76710000)]
  0x53c75c00 JavaThread "pool-3-thread-1569" [_thread_blocked, id=9820,
stack(0x76670000,0x766c0000)]
  0x53c74400 JavaThread "pool-3-thread-1568" [_thread_blocked, id=9800,
stack(0x76620000,0x76670000)]
  0x53c72c00 JavaThread "pool-3-thread-1567" [_thread_blocked, id=9808,
stack(0x765d0000,0x76620000)]
  0x53c71800 JavaThread "pool-3-thread-1566" [_thread_blocked, id=9764,
stack(0x76580000,0x765d0000)]
  0x53c70000 JavaThread "pool-3-thread-1565" [_thread_blocked, id=9748,
stack(0x76530000,0x76580000)]
  0x53c40800 JavaThread "pool-3-thread-1564" [_thread_blocked, id=9752,
stack(0x764e0000,0x76530000)]
  0x53c3f400 JavaThread "pool-3-thread-1563" [_thread_blocked, id=9708,
stack(0x76490000,0x764e0000)]
  0x53c3dc00 JavaThread "pool-3-thread-1562" [_thread_blocked, id=9688,
stack(0x76440000,0x76490000)]
  0x53c3c400 JavaThread "pool-3-thread-1561" [_thread_blocked, id=9624,
stack(0x763f0000,0x76440000)]
  0x53c3ac00 JavaThread "pool-3-thread-1560" [_thread_blocked, id=9620,
stack(0x763a0000,0x763f0000)]
  0x53e95400 JavaThread "pool-3-thread-1559" [_thread_blocked, id=9616,
stack(0x76350000,0x763a0000)]
  0x53e93c00 JavaThread "pool-3-thread-1558" [_thread_blocked, id=9604,
stack(0x76300000,0x76350000)]
  0x53e92800 JavaThread "pool-3-thread-1557" [_thread_blocked, id=9576,
stack(0x762b0000,0x76300000)]
  0x53e91000 JavaThread "pool-3-thread-1556" [_thread_blocked, id=9544,
stack(0x76120000,0x76170000)]
  0x53e8f800 JavaThread "pool-3-thread-1555" [_thread_blocked, id=9524,
stack(0x760d0000,0x76120000)]
  0x53e8e400 JavaThread "pool-3-thread-1554" [_thread_blocked, id=9520,
stack(0x76080000,0x760d0000)]
  0x53e8cc00 JavaThread "pool-3-thread-1553" [_thread_blocked, id=9412,
stack(0x76030000,0x76080000)]
  0x53e8b400 JavaThread "pool-3-thread-1552" [_thread_blocked, id=9468,
stack(0x75fe0000,0x76030000)]
  0x53e8a000 JavaThread "pool-3-thread-1551" [_thread_blocked, id=9456,
stack(0x75f90000,0x75fe0000)]
  0x53e88800 JavaThread "pool-3-thread-1550" [_thread_blocked, id=9392,
stack(0x75f40000,0x75f90000)]
  0x53e87000 JavaThread "pool-3-thread-1549" [_thread_blocked, id=9384,
stack(0x75ef0000,0x75f40000)]
  0x53e85400 JavaThread "pool-3-thread-1548" [_thread_blocked, id=9348,
stack(0x75ea0000,0x75ef0000)]
  0x53e84000 JavaThread "pool-3-thread-1547" [_thread_blocked, id=9340,
stack(0x75e50000,0x75ea0000)]
  0x53e82800 JavaThread "pool-3-thread-1546" [_thread_blocked, id=9324,
stack(0x75e00000,0x75e50000)]
  0x53e81400 JavaThread "pool-3-thread-1545" [_thread_blocked, id=9288,
stack(0x75db0000,0x75e00000)]
  0x53e7fc00 JavaThread "pool-3-thread-1544" [_thread_blocked, id=9240,
stack(0x75d60000,0x75db0000)]
  0x53e7e400 JavaThread "pool-3-thread-1543" [_thread_blocked, id=9220,
stack(0x75d10000,0x75d60000)]
  0x53e7d000 JavaThread "pool-3-thread-1542" [_thread_blocked, id=9224,
stack(0x75cc0000,0x75d10000)]
  0x53d46400 JavaThread "pool-3-thread-1541" [_thread_blocked, id=9212,
stack(0x75c70000,0x75cc0000)]
  0x53d44c00 JavaThread "pool-3-thread-1540" [_thread_blocked, id=9184,
stack(0x75c20000,0x75c70000)]
  0x53d43800 JavaThread "pool-3-thread-1539" [_thread_blocked, id=9132,
stack(0x75bd0000,0x75c20000)]
  0x53d41c00 JavaThread "pool-3-thread-1538" [_thread_blocked, id=9136,
stack(0x75b80000,0x75bd0000)]
  0x53d40800 JavaThread "pool-3-thread-1537" [_thread_blocked, id=9076,
stack(0x75b30000,0x75b80000)]
  0x53d3f000 JavaThread "pool-3-thread-1536" [_thread_blocked, id=9036,
stack(0x75ae0000,0x75b30000)]
  0x53d3dc00 JavaThread "pool-3-thread-1535" [_thread_blocked, id=9020,
stack(0x75a90000,0x75ae0000)]
  0x53d3c400 JavaThread "pool-3-thread-1534" [_thread_blocked, id=9000,
stack(0x75a40000,0x75a90000)]
  0x53d3ac00 JavaThread "pool-3-thread-1533" [_thread_blocked, id=8972,
stack(0x759f0000,0x75a40000)]
  0x53dcfc00 JavaThread "pool-3-thread-1532" [_thread_blocked, id=8960,
stack(0x759a0000,0x759f0000)]
  0x53dce400 JavaThread "pool-3-thread-1531" [_thread_blocked, id=8912,
stack(0x75950000,0x759a0000)]
  0x53dccc00 JavaThread "pool-3-thread-1530" [_thread_blocked, id=8924,
stack(0x75900000,0x75950000)]
  0x53dcb800 JavaThread "pool-3-thread-1529" [_thread_blocked, id=8896,
stack(0x758b0000,0x75900000)]
  0x53dca000 JavaThread "pool-3-thread-1528" [_thread_blocked, id=8884,
stack(0x75860000,0x758b0000)]
  0x53dfd000 JavaThread "pool-3-thread-1527" [_thread_blocked, id=8864,
stack(0x75810000,0x75860000)]
  0x53dfbc00 JavaThread "pool-3-thread-1526" [_thread_blocked, id=8868,
stack(0x757c0000,0x75810000)]
  0x53dfa400 JavaThread "pool-3-thread-1525" [_thread_blocked, id=8816,
stack(0x75770000,0x757c0000)]
  0x53df8c00 JavaThread "pool-3-thread-1524" [_thread_blocked, id=8820,
stack(0x75720000,0x75770000)]
  0x53e20400 JavaThread "pool-3-thread-1523" [_thread_blocked, id=8772,
stack(0x756d0000,0x75720000)]
  0x53e1f000 JavaThread "pool-3-thread-1522" [_thread_blocked, id=8736,
stack(0x75680000,0x756d0000)]
  0x53d88800 JavaThread "pool-3-thread-1521" [_thread_blocked, id=8696,
stack(0x75630000,0x75680000)]
  0x53c28c00 JavaThread "pool-3-thread-1520" [_thread_blocked, id=8668,
stack(0x755e0000,0x75630000)]
  0x53c27000 JavaThread "pool-3-thread-1519" [_thread_blocked, id=8656,
stack(0x75590000,0x755e0000)]
  0x53c25c00 JavaThread "pool-3-thread-1518" [_thread_blocked, id=8604,
stack(0x75540000,0x75590000)]
  0x53c24000 JavaThread "pool-3-thread-1517" [_thread_blocked, id=8608,
stack(0x754f0000,0x75540000)]
  0x53c22c00 JavaThread "pool-3-thread-1516" [_thread_blocked, id=8556,
stack(0x754a0000,0x754f0000)]
  0x53a60400 JavaThread "pool-3-thread-1515" [_thread_blocked, id=8540,
stack(0x75450000,0x754a0000)]
  0x53a5ec00 JavaThread "pool-3-thread-1514" [_thread_blocked, id=8492,
stack(0x75400000,0x75450000)]
  0x53a5d400 JavaThread "pool-3-thread-1513" [_thread_blocked, id=8484,
stack(0x753b0000,0x75400000)]
  0x53a5c000 JavaThread "pool-3-thread-1512" [_thread_blocked, id=8476,
stack(0x75360000,0x753b0000)]
  0x53a5ac00 JavaThread "pool-3-thread-1511" [_thread_blocked, id=8368,
stack(0x75310000,0x75360000)]
  0x537b3000 JavaThread "pool-3-thread-1510" [_thread_blocked, id=8380,
stack(0x752c0000,0x75310000)]
  0x537b1800 JavaThread "pool-3-thread-1509" [_thread_blocked, id=8324,
stack(0x75270000,0x752c0000)]
  0x537b0400 JavaThread "pool-3-thread-1508" [_thread_blocked, id=8312,
stack(0x75220000,0x75270000)]
  0x537aec00 JavaThread "pool-3-thread-1507" [_thread_blocked, id=8308,
stack(0x751d0000,0x75220000)]
  0x537ad400 JavaThread "pool-3-thread-1506" [_thread_blocked, id=8272,
stack(0x75180000,0x751d0000)]
  0x53792c00 JavaThread "pool-3-thread-1505" [_thread_blocked, id=8224,
stack(0x75130000,0x75180000)]
  0x53791400 JavaThread "pool-3-thread-1504" [_thread_blocked, id=8252,
stack(0x750e0000,0x75130000)]
  0x53790000 JavaThread "pool-3-thread-1503" [_thread_blocked, id=8228,
stack(0x75090000,0x750e0000)]
  0x5378e800 JavaThread "pool-3-thread-1502" [_thread_blocked, id=8216,
stack(0x75040000,0x75090000)]
  0x5378d400 JavaThread "pool-3-thread-1501" [_thread_blocked, id=8184,
stack(0x74ff0000,0x75040000)]
  0x53701c00 JavaThread "pool-3-thread-1500" [_thread_blocked, id=8204,
stack(0x74fa0000,0x74ff0000)]
  0x53700400 JavaThread "pool-3-thread-1499" [_thread_blocked, id=8188,
stack(0x74f50000,0x74fa0000)]
  0x536fec00 JavaThread "pool-3-thread-1498" [_thread_blocked, id=8148,
stack(0x74f00000,0x74f50000)]
  0x536fd400 JavaThread "pool-3-thread-1497" [_thread_blocked, id=8144,
stack(0x74eb0000,0x74f00000)]
  0x536fc000 JavaThread "pool-3-thread-1496" [_thread_blocked, id=8052,
stack(0x74e60000,0x74eb0000)]
  0x536fa800 JavaThread "pool-3-thread-1495" [_thread_blocked, id=8040,
stack(0x74e10000,0x74e60000)]
  0x536d8000 JavaThread "pool-3-thread-1494" [_thread_blocked, id=8016,
stack(0x74dc0000,0x74e10000)]
  0x536d6c00 JavaThread "pool-3-thread-1493" [_thread_blocked, id=8004,
stack(0x74d70000,0x74dc0000)]
  0x536d5400 JavaThread "pool-3-thread-1492" [_thread_blocked, id=8012,
stack(0x74d20000,0x74d70000)]
  0x536d4000 JavaThread "pool-3-thread-1491" [_thread_blocked, id=7980,
stack(0x74cd0000,0x74d20000)]
  0x536d2800 JavaThread "pool-3-thread-1490" [_thread_blocked, id=7928,
stack(0x74c80000,0x74cd0000)]
  0x536d1000 JavaThread "pool-3-thread-1489" [_thread_blocked, id=7852,
stack(0x74c30000,0x74c80000)]
  0x536cf800 JavaThread "pool-3-thread-1488" [_thread_blocked, id=7828,
stack(0x74be0000,0x74c30000)]
  0x536ce400 JavaThread "pool-3-thread-1487" [_thread_blocked, id=7832,
stack(0x74b90000,0x74be0000)]
  0x536ccc00 JavaThread "pool-3-thread-1486" [_thread_blocked, id=7812,
stack(0x74b40000,0x74b90000)]
  0x536cb400 JavaThread "pool-3-thread-1485" [_thread_blocked, id=7748,
stack(0x74af0000,0x74b40000)]
  0x536c9c00 JavaThread "pool-3-thread-1484" [_thread_blocked, id=7744,
stack(0x74aa0000,0x74af0000)]
  0x54344800 JavaThread "pool-3-thread-1483" [_thread_blocked, id=7696,
stack(0x74a50000,0x74aa0000)]
  0x54343000 JavaThread "pool-3-thread-1482" [_thread_blocked, id=7632,
stack(0x74a00000,0x74a50000)]
  0x54341800 JavaThread "pool-3-thread-1481" [_thread_blocked, id=7648,
stack(0x749b0000,0x74a00000)]
  0x54340400 JavaThread "pool-3-thread-1480" [_thread_blocked, id=7656,
stack(0x74960000,0x749b0000)]
  0x5433ec00 JavaThread "pool-3-thread-1479" [_thread_blocked, id=7608,
stack(0x74910000,0x74960000)]
  0x5433d400 JavaThread "pool-3-thread-1478" [_thread_blocked, id=7612,
stack(0x748c0000,0x74910000)]
  0x5336cc00 JavaThread "pool-3-thread-1477" [_thread_blocked, id=7572,
stack(0x74870000,0x748c0000)]
  0x5336b400 JavaThread "pool-3-thread-1476" [_thread_blocked, id=7552,
stack(0x74820000,0x74870000)]
  0x5336a000 JavaThread "pool-3-thread-1475" [_thread_blocked, id=7548,
stack(0x747d0000,0x74820000)]
  0x53ebc400 JavaThread "pool-3-thread-1474" [_thread_blocked, id=7524,
stack(0x74780000,0x747d0000)]
  0x53eac400 JavaThread "pool-3-thread-1473" [_thread_blocked, id=7544,
stack(0x74730000,0x74780000)]
  0x54191800 JavaThread "pool-3-thread-1472" [_thread_blocked, id=7516,
stack(0x746e0000,0x74730000)]
  0x53ef6400 JavaThread "pool-3-thread-1471" [_thread_blocked, id=7492,
stack(0x74690000,0x746e0000)]
  0x541cd800 JavaThread "pool-3-thread-1470" [_thread_blocked, id=7468,
stack(0x74640000,0x74690000)]
  0x5411d400 JavaThread "pool-3-thread-1469" [_thread_blocked, id=7444,
stack(0x745f0000,0x74640000)]
  0x54324c00 JavaThread "pool-3-thread-1468" [_thread_blocked, id=7376,
stack(0x745a0000,0x745f0000)]
  0x548c2400 JavaThread "pool-3-thread-1467" [_thread_blocked, id=7408,
stack(0x74550000,0x745a0000)]
  0x53c92800 JavaThread "pool-3-thread-1466" [_thread_blocked, id=7396,
stack(0x74500000,0x74550000)]
  0x53f1ec00 JavaThread "pool-3-thread-1465" [_thread_blocked, id=7352,
stack(0x744b0000,0x74500000)]
  0x53f36400 JavaThread "pool-3-thread-1464" [_thread_blocked, id=7356,
stack(0x74460000,0x744b0000)]
  0x53c8f800 JavaThread "pool-3-thread-1463" [_thread_blocked, id=7340,
stack(0x74410000,0x74460000)]
  0x53a61800 JavaThread "pool-3-thread-1462" [_thread_blocked, id=7312,
stack(0x743c0000,0x74410000)]
  0x54336400 JavaThread "pool-3-thread-1461" [_thread_blocked, id=7268,
stack(0x74370000,0x743c0000)]
  0x53d89400 JavaThread "pool-3-thread-1460" [_thread_blocked, id=7252,
stack(0x74320000,0x74370000)]
  0x53fa2400 JavaThread "pool-3-thread-1459" [_thread_blocked, id=7232,
stack(0x742d0000,0x74320000)]
  0x53f9ac00 JavaThread "pool-3-thread-1458" [_thread_blocked, id=7212,
stack(0x74280000,0x742d0000)]
  0x53cacc00 JavaThread "pool-3-thread-1457" [_thread_blocked, id=7184,
stack(0x74230000,0x74280000)]
  0x53d39c00 JavaThread "pool-3-thread-1456" [_thread_blocked, id=7196,
stack(0x741e0000,0x74230000)]
  0x53d91c00 JavaThread "pool-3-thread-1455" [_thread_blocked, id=7144,
stack(0x74190000,0x741e0000)]
  0x541cbc00 JavaThread "pool-3-thread-1454" [_thread_blocked, id=7124,
stack(0x74140000,0x74190000)]
  0x541ca400 JavaThread "pool-3-thread-1453" [_thread_blocked, id=7084,
stack(0x740f0000,0x74140000)]
  0x541c9000 JavaThread "pool-3-thread-1452" [_thread_blocked, id=7056,
stack(0x740a0000,0x740f0000)]
  0x541c6400 JavaThread "pool-3-thread-1451" [_thread_blocked, id=7024,
stack(0x73f50000,0x73fa0000)]
  0x541c5000 JavaThread "pool-3-thread-1450" [_thread_blocked, id=7040,
stack(0x73f00000,0x73f50000)]
  0x541c3800 JavaThread "pool-3-thread-1449" [_thread_blocked, id=7012,
stack(0x73eb0000,0x73f00000)]
  0x541c2000 JavaThread "pool-3-thread-1448" [_thread_blocked, id=7032,
stack(0x73e60000,0x73eb0000)]
  0x541c0c00 JavaThread "pool-3-thread-1447" [_thread_blocked, id=6976,
stack(0x73e10000,0x73e60000)]
  0x541bf400 JavaThread "pool-3-thread-1446" [_thread_blocked, id=7000,
stack(0x73dc0000,0x73e10000)]
  0x541bdc00 JavaThread "pool-3-thread-1445" [_thread_blocked, id=6964,
stack(0x73d70000,0x73dc0000)]
  0x541bc800 JavaThread "pool-3-thread-1444" [_thread_blocked, id=6960,
stack(0x73d20000,0x73d70000)]
  0x541bb000 JavaThread "pool-3-thread-1443" [_thread_blocked, id=6896,
stack(0x73cd0000,0x73d20000)]
  0x541b9c00 JavaThread "pool-3-thread-1442" [_thread_blocked, id=6884,
stack(0x73c80000,0x73cd0000)]
  0x541b8c00 JavaThread "pool-3-thread-1441" [_thread_blocked, id=6812,
stack(0x73c30000,0x73c80000)]
  0x541b7c00 JavaThread "pool-3-thread-1440" [_thread_blocked, id=6728,
stack(0x73be0000,0x73c30000)]
  0x541b7000 JavaThread "pool-3-thread-1439" [_thread_blocked, id=6704,
stack(0x73b90000,0x73be0000)]
  0x541b5c00 JavaThread "pool-3-thread-1438" [_thread_blocked, id=6624,
stack(0x73b40000,0x73b90000)]
  0x541b3800 JavaThread "pool-3-thread-1437" [_thread_blocked, id=6608,
stack(0x73af0000,0x73b40000)]
  0x541b2400 JavaThread "pool-3-thread-1436" [_thread_blocked, id=6576,
stack(0x73aa0000,0x73af0000)]
  0x541b0c00 JavaThread "pool-3-thread-1435" [_thread_blocked, id=6548,
stack(0x73a50000,0x73aa0000)]
  0x541af800 JavaThread "pool-3-thread-1434" [_thread_blocked, id=6512,
stack(0x73a00000,0x73a50000)]
  0x541ae000 JavaThread "pool-3-thread-1433" [_thread_blocked, id=6480,
stack(0x739b0000,0x73a00000)]
  0x541ab400 JavaThread "pool-3-thread-1432" [_thread_blocked, id=6484,
stack(0x73960000,0x739b0000)]
  0x541a9c00 JavaThread "pool-3-thread-1431" [_thread_blocked, id=6460,
stack(0x73910000,0x73960000)]
  0x541a8400 JavaThread "pool-3-thread-1430" [_thread_blocked, id=6436,
stack(0x738c0000,0x73910000)]
  0x541a6c00 JavaThread "pool-3-thread-1429" [_thread_blocked, id=6408,
stack(0x73870000,0x738c0000)]
  0x541a5800 JavaThread "pool-3-thread-1428" [_thread_blocked, id=6380,
stack(0x73820000,0x73870000)]
  0x541a4000 JavaThread "pool-3-thread-1427" [_thread_blocked, id=6336,
stack(0x737d0000,0x73820000)]
  0x54198c00 JavaThread "pool-3-thread-1426" [_thread_blocked, id=6324,
stack(0x73780000,0x737d0000)]
  0x54197400 JavaThread "pool-3-thread-1425" [_thread_blocked, id=6288,
stack(0x73730000,0x73780000)]
  0x54196000 JavaThread "pool-3-thread-1424" [_thread_blocked, id=6312,
stack(0x736e0000,0x73730000)]
  0x54195400 JavaThread "pool-3-thread-1423" [_thread_blocked, id=6280,
stack(0x73690000,0x736e0000)]
  0x54194400 JavaThread "pool-3-thread-1422" [_thread_blocked, id=6272,
stack(0x73640000,0x73690000)]
  0x541a2800 JavaThread "pool-3-thread-1421" [_thread_blocked, id=6240,
stack(0x735f0000,0x73640000)]
  0x541a1000 JavaThread "pool-3-thread-1420" [_thread_blocked, id=6232,
stack(0x735a0000,0x735f0000)]
  0x5419f800 JavaThread "pool-3-thread-1419" [_thread_blocked, id=6236,
stack(0x73550000,0x735a0000)]
  0x5419e400 JavaThread "pool-3-thread-1418" [_thread_blocked, id=6220,
stack(0x73500000,0x73550000)]
  0x5419cc00 JavaThread "pool-3-thread-1417" [_thread_blocked, id=6160,
stack(0x734b0000,0x73500000)]
  0x5419c000 JavaThread "pool-3-thread-1416" [_thread_blocked, id=1704,
stack(0x73460000,0x734b0000)]
  0x5419b000 JavaThread "pool-3-thread-1415" [_thread_blocked, id=984,
stack(0x73410000,0x73460000)]
  0x5419a400 JavaThread "pool-3-thread-1414" [_thread_blocked, id=492,
stack(0x733c0000,0x73410000)]
  0x54177c00 JavaThread "pool-3-thread-1413" [_thread_blocked, id=1576,
stack(0x73370000,0x733c0000)]
  0x54177400 JavaThread "pool-3-thread-1412" [_thread_blocked, id=2864,
stack(0x73320000,0x73370000)]
  0x54173400 JavaThread "pool-3-thread-1411" [_thread_blocked, id=3048,
stack(0x732d0000,0x73320000)]
  0x54170c00 JavaThread "pool-3-thread-1410" [_thread_blocked, id=6116,
stack(0x73280000,0x732d0000)]
  0x5416f800 JavaThread "pool-3-thread-1409" [_thread_blocked, id=6100,
stack(0x73230000,0x73280000)]
  0x5416e000 JavaThread "pool-3-thread-1408" [_thread_blocked, id=6056,
stack(0x731e0000,0x73230000)]
  0x5416b800 JavaThread "pool-3-thread-1407" [_thread_blocked, id=5992,
stack(0x73190000,0x731e0000)]
  0x5416a000 JavaThread "pool-3-thread-1406" [_thread_blocked, id=6028,
stack(0x73140000,0x73190000)]
  0x54168c00 JavaThread "pool-3-thread-1405" [_thread_blocked, id=5964,
stack(0x730f0000,0x73140000)]
  0x54167400 JavaThread "pool-3-thread-1404" [_thread_blocked, id=5988,
stack(0x730a0000,0x730f0000)]
  0x54166400 JavaThread "pool-3-thread-1403" [_thread_blocked, id=5924,
stack(0x73050000,0x730a0000)]
  0x54130400 JavaThread "pool-3-thread-1402" [_thread_blocked, id=5884,
stack(0x73000000,0x73050000)]
  0x5412ec00 JavaThread "pool-3-thread-1401" [_thread_blocked, id=5836,
stack(0x72fb0000,0x73000000)]
  0x5412d800 JavaThread "pool-3-thread-1400" [_thread_blocked, id=5832,
stack(0x72f60000,0x72fb0000)]
  0x5412c000 JavaThread "pool-3-thread-1399" [_thread_blocked, id=5796,
stack(0x72f10000,0x72f60000)]
  0x54129c00 JavaThread "pool-3-thread-1398" [_thread_blocked, id=5752,
stack(0x72ec0000,0x72f10000)]
  0x54128400 JavaThread "pool-3-thread-1397" [_thread_blocked, id=5732,
stack(0x72e70000,0x72ec0000)]
  0x54126c00 JavaThread "pool-3-thread-1396" [_thread_blocked, id=5708,
stack(0x72e20000,0x72e70000)]
  0x54125800 JavaThread "pool-3-thread-1395" [_thread_blocked, id=5692,
stack(0x72dd0000,0x72e20000)]
  0x540f6000 JavaThread "pool-3-thread-1394" [_thread_blocked, id=5664,
stack(0x72d80000,0x72dd0000)]
  0x540f4800 JavaThread "pool-3-thread-1393" [_thread_blocked, id=5636,
stack(0x72d30000,0x72d80000)]
  0x540f3000 JavaThread "pool-3-thread-1392" [_thread_blocked, id=5628,
stack(0x72ce0000,0x72d30000)]
  0x540f1c00 JavaThread "pool-3-thread-1391" [_thread_blocked, id=5556,
stack(0x72c90000,0x72ce0000)]
  0x540f0400 JavaThread "pool-3-thread-1390" [_thread_blocked, id=5560,
stack(0x72c40000,0x72c90000)]
  0x540eec00 JavaThread "pool-3-thread-1389" [_thread_blocked, id=5520,
stack(0x72bf0000,0x72c40000)]
  0x540ed400 JavaThread "pool-3-thread-1388" [_thread_blocked, id=5516,
stack(0x72ba0000,0x72bf0000)]
  0x540ec000 JavaThread "pool-3-thread-1387" [_thread_blocked, id=5460,
stack(0x72b50000,0x72ba0000)]
  0x540ea800 JavaThread "pool-3-thread-1386" [_thread_blocked, id=5476,
stack(0x72b00000,0x72b50000)]
  0x540e9000 JavaThread "pool-3-thread-1385" [_thread_blocked, id=5448,
stack(0x72ab0000,0x72b00000)]
  0x540dec00 JavaThread "pool-3-thread-1384" [_thread_blocked, id=5444,
stack(0x72a60000,0x72ab0000)]
  0x540dd400 JavaThread "pool-3-thread-1383" [_thread_blocked, id=5440,
stack(0x72a10000,0x72a60000)]
  0x540dbc00 JavaThread "pool-3-thread-1382" [_thread_blocked, id=5376,
stack(0x729c0000,0x72a10000)]
  0x540da400 JavaThread "pool-3-thread-1381" [_thread_blocked, id=5392,
stack(0x72970000,0x729c0000)]
  0x540d8c00 JavaThread "pool-3-thread-1380" [_thread_blocked, id=5340,
stack(0x72920000,0x72970000)]
  0x540d7800 JavaThread "pool-3-thread-1379" [_thread_blocked, id=5352,
stack(0x728d0000,0x72920000)]
  0x540d6000 JavaThread "pool-3-thread-1378" [_thread_blocked, id=5316,
stack(0x72880000,0x728d0000)]
  0x540d4c00 JavaThread "pool-3-thread-1377" [_thread_blocked, id=5268,
stack(0x72830000,0x72880000)]
  0x540d3400 JavaThread "pool-3-thread-1376" [_thread_blocked, id=5280,
stack(0x727e0000,0x72830000)]
  0x540d1c00 JavaThread "pool-3-thread-1375" [_thread_blocked, id=5276,
stack(0x72790000,0x727e0000)]
  0x540d0800 JavaThread "pool-3-thread-1374" [_thread_blocked, id=5204,
stack(0x72740000,0x72790000)]
  0x540cf400 JavaThread "pool-3-thread-1373" [_thread_blocked, id=5176,
stack(0x726f0000,0x72740000)]
  0x54074800 JavaThread "pool-3-thread-1372" [_thread_blocked, id=5136,
stack(0x726a0000,0x726f0000)]
  0x54073000 JavaThread "pool-3-thread-1371" [_thread_blocked, id=5144,
stack(0x72650000,0x726a0000)]
  0x54071c00 JavaThread "pool-3-thread-1370" [_thread_blocked, id=5120,
stack(0x72600000,0x72650000)]
  0x54070400 JavaThread "pool-3-thread-1369" [_thread_blocked, id=5100,
stack(0x725b0000,0x72600000)]
  0x54055c00 JavaThread "pool-3-thread-1368" [_thread_blocked, id=5068,
stack(0x72560000,0x725b0000)]
  0x54054800 JavaThread "pool-3-thread-1367" [_thread_blocked, id=4984,
stack(0x72510000,0x72560000)]
  0x54053000 JavaThread "pool-3-thread-1366" [_thread_blocked, id=4944,
stack(0x724c0000,0x72510000)]
  0x54051800 JavaThread "pool-3-thread-1365" [_thread_blocked, id=4860,
stack(0x72470000,0x724c0000)]
  0x54050000 JavaThread "pool-3-thread-1364" [_thread_blocked, id=4892,
stack(0x72420000,0x72470000)]
  0x54015c00 JavaThread "pool-3-thread-1363" [_thread_blocked, id=4828,
stack(0x723d0000,0x72420000)]
  0x54014400 JavaThread "pool-3-thread-1362" [_thread_blocked, id=4820,
stack(0x72380000,0x723d0000)]
  0x54012c00 JavaThread "pool-3-thread-1361" [_thread_blocked, id=4816,
stack(0x72330000,0x72380000)]
  0x54011400 JavaThread "pool-3-thread-1360" [_thread_blocked, id=4772,
stack(0x722e0000,0x72330000)]
  0x53f98000 JavaThread "pool-3-thread-1359" [_thread_blocked, id=4744,
stack(0x72290000,0x722e0000)]
  0x53f96800 JavaThread "pool-3-thread-1358" [_thread_blocked, id=4736,
stack(0x72240000,0x72290000)]
  0x53f95000 JavaThread "pool-3-thread-1357" [_thread_blocked, id=4680,
stack(0x721f0000,0x72240000)]
  0x53f93c00 JavaThread "pool-3-thread-1356" [_thread_blocked, id=4664,
stack(0x721a0000,0x721f0000)]
  0x53f92400 JavaThread "pool-3-thread-1355" [_thread_blocked, id=4624,
stack(0x72150000,0x721a0000)]
  0x53f90c00 JavaThread "pool-3-thread-1354" [_thread_blocked, id=4580,
stack(0x72100000,0x72150000)]
  0x53f8f800 JavaThread "pool-3-thread-1353" [_thread_blocked, id=4540,
stack(0x720b0000,0x72100000)]
  0x53f8dc00 JavaThread "pool-3-thread-1352" [_thread_blocked, id=4524,
stack(0x72060000,0x720b0000)]
  0x53f8c400 JavaThread "pool-3-thread-1351" [_thread_blocked, id=4456,
stack(0x72010000,0x72060000)]
  0x53f8b000 JavaThread "pool-3-thread-1350" [_thread_blocked, id=4400,
stack(0x71fc0000,0x72010000)]
  0x53f89800 JavaThread "pool-3-thread-1349" [_thread_blocked, id=4356,
stack(0x71f70000,0x71fc0000)]
  0x53f88400 JavaThread "pool-3-thread-1348" [_thread_blocked, id=4308,
stack(0x71f20000,0x71f70000)]
  0x53f86c00 JavaThread "pool-3-thread-1347" [_thread_blocked, id=4288,
stack(0x71ed0000,0x71f20000)]
  0x53f85800 JavaThread "pool-3-thread-1346" [_thread_blocked, id=4264,
stack(0x71e80000,0x71ed0000)]
  0x53f84000 JavaThread "pool-3-thread-1345" [_thread_blocked, id=4256,
stack(0x71e30000,0x71e80000)]
  0x53f82800 JavaThread "pool-3-thread-1344" [_thread_blocked, id=4208,
stack(0x71de0000,0x71e30000)]
  0x53f81000 JavaThread "pool-3-thread-1343" [_thread_blocked, id=4164,
stack(0x71d90000,0x71de0000)]
  0x53f7fc00 JavaThread "pool-3-thread-1342" [_thread_blocked, id=4160,
stack(0x71d40000,0x71d90000)]
  0x53f7e400 JavaThread "pool-3-thread-1341" [_thread_blocked, id=4128,
stack(0x71cf0000,0x71d40000)]
  0x53f7cc00 JavaThread "pool-3-thread-1340" [_thread_blocked, id=1072,
stack(0x71ca0000,0x71cf0000)]
  0x53f7b400 JavaThread "pool-3-thread-1339" [_thread_blocked, id=1640,
stack(0x71b70000,0x71bc0000)]
  0x53f7a000 JavaThread "pool-3-thread-1338" [_thread_blocked, id=3316,
stack(0x71a80000,0x71ad0000)]
  0x53f78800 JavaThread "pool-3-thread-1337" [_thread_blocked, id=3784,
stack(0x71a30000,0x71a80000)]
  0x53f77400 JavaThread "pool-3-thread-1336" [_thread_blocked, id=3276,
stack(0x719e0000,0x71a30000)]
  0x53f75c00 JavaThread "pool-3-thread-1335" [_thread_blocked, id=3348,
stack(0x71990000,0x719e0000)]
  0x53f74400 JavaThread "pool-3-thread-1334" [_thread_blocked, id=1976,
stack(0x71940000,0x71990000)]
  0x53f72c00 JavaThread "pool-3-thread-1333" [_thread_blocked, id=3980,
stack(0x718f0000,0x71940000)]
  0x53f71800 JavaThread "pool-3-thread-1332" [_thread_blocked, id=2888,
stack(0x718a0000,0x718f0000)]
  0x53f6fc00 JavaThread "pool-3-thread-1331" [_thread_blocked, id=2372,
stack(0x71850000,0x718a0000)]
  0x53f6e400 JavaThread "pool-3-thread-1330" [_thread_blocked, id=1052,
stack(0x71800000,0x71850000)]
  0x53f6d000 JavaThread "pool-3-thread-1329" [_thread_blocked, id=1132,
stack(0x717b0000,0x71800000)]
  0x53f6bc00 JavaThread "pool-3-thread-1328" [_thread_blocked, id=4008,
stack(0x71760000,0x717b0000)]
  0x53f6a400 JavaThread "pool-3-thread-1327" [_thread_blocked, id=2904,
stack(0x71710000,0x71760000)]
  0x53f68c00 JavaThread "pool-3-thread-1326" [_thread_blocked, id=2152,
stack(0x716c0000,0x71710000)]
  0x53f67800 JavaThread "pool-3-thread-1325" [_thread_blocked, id=344,
stack(0x71670000,0x716c0000)]
  0x53f66000 JavaThread "pool-3-thread-1324" [_thread_blocked, id=3920,
stack(0x71620000,0x71670000)]
  0x53f64800 JavaThread "pool-3-thread-1323" [_thread_blocked, id=912,
stack(0x715d0000,0x71620000)]
  0x53f63000 JavaThread "pool-3-thread-1322" [_thread_blocked, id=2032,
stack(0x71580000,0x715d0000)]
  0x53f61c00 JavaThread "pool-3-thread-1321" [_thread_blocked, id=3288,
stack(0x71530000,0x71580000)]
  0x53f60400 JavaThread "pool-3-thread-1320" [_thread_blocked, id=4088,
stack(0x714e0000,0x71530000)]
  0x53f5ec00 JavaThread "pool-3-thread-1319" [_thread_blocked, id=3152,
stack(0x71490000,0x714e0000)]
  0x53f5d400 JavaThread "pool-3-thread-1318" [_thread_blocked, id=3720,
stack(0x71440000,0x71490000)]
  0x53f5c000 JavaThread "pool-3-thread-1317" [_thread_blocked, id=1620,
stack(0x713f0000,0x71440000)]
  0x53f5a800 JavaThread "pool-3-thread-1316" [_thread_blocked, id=2164,
stack(0x713a0000,0x713f0000)]
  0x53f59400 JavaThread "pool-3-thread-1315" [_thread_blocked, id=904,
stack(0x71350000,0x713a0000)]
  0x53f58400 JavaThread "pool-3-thread-1314" [_thread_blocked, id=4052,
stack(0x71300000,0x71350000)]
  0x53f57000 JavaThread "pool-3-thread-1313" [_thread_blocked, id=964,
stack(0x712b0000,0x71300000)]
  0x53f34800 JavaThread "pool-3-thread-1312" [_thread_blocked, id=3432,
stack(0x71260000,0x712b0000)]
  0x53f33800 JavaThread "pool-3-thread-1311" [_thread_blocked, id=3864,
stack(0x71210000,0x71260000)]
  0x53f31000 JavaThread "pool-3-thread-1310" [_thread_blocked, id=3512,
stack(0x711c0000,0x71210000)]
  0x53f2fc00 JavaThread "pool-3-thread-1309" [_thread_blocked, id=2072,
stack(0x71170000,0x711c0000)]
  0x53f2ec00 JavaThread "pool-3-thread-1308" [_thread_blocked, id=2804,
stack(0x71120000,0x71170000)]
  0x53f2dc00 JavaThread "pool-3-thread-1307" [_thread_blocked, id=440,
stack(0x710d0000,0x71120000)]
  0x53f2c800 JavaThread "pool-3-thread-1306" [_thread_blocked, id=10768,
stack(0x71080000,0x710d0000)]
  0x53f29c00 JavaThread "pool-3-thread-1305" [_thread_blocked, id=10736,
stack(0x71030000,0x71080000)]
  0x53f28800 JavaThread "pool-3-thread-1304" [_thread_blocked, id=10748,
stack(0x70fe0000,0x71030000)]
  0x53f27400 JavaThread "pool-3-thread-1303" [_thread_blocked, id=10728,
stack(0x70f90000,0x70fe0000)]
  0x53f1c800 JavaThread "pool-3-thread-1302" [_thread_blocked, id=10712,
stack(0x70f40000,0x70f90000)]
  0x53f1b000 JavaThread "pool-3-thread-1301" [_thread_blocked, id=10696,
stack(0x70ef0000,0x70f40000)]
  0x53f19c00 JavaThread "pool-3-thread-1300" [_thread_blocked, id=10684,
stack(0x70ea0000,0x70ef0000)]
  0x53f18400 JavaThread "pool-3-thread-1299" [_thread_blocked, id=10668,
stack(0x70e50000,0x70ea0000)]
  0x53f17000 JavaThread "pool-3-thread-1298" [_thread_blocked, id=10640,
stack(0x70e00000,0x70e50000)]
  0x53eda800 JavaThread "pool-3-thread-1297" [_thread_blocked, id=10644,
stack(0x70db0000,0x70e00000)]
  0x53ed9000 JavaThread "pool-3-thread-1296" [_thread_blocked, id=10632,
stack(0x70d60000,0x70db0000)]
  0x53ed7800 JavaThread "pool-3-thread-1295" [_thread_blocked, id=10628,
stack(0x70d10000,0x70d60000)]
  0x53ed6400 JavaThread "pool-3-thread-1294" [_thread_blocked, id=10588,
stack(0x70cc0000,0x70d10000)]
  0x53ecbc00 JavaThread "pool-3-thread-1293" [_thread_blocked, id=10596,
stack(0x70c70000,0x70cc0000)]
  0x53eca000 JavaThread "pool-3-thread-1292" [_thread_blocked, id=10592,
stack(0x70c20000,0x70c70000)]
  0x53ec8c00 JavaThread "pool-3-thread-1291" [_thread_blocked, id=10568,
stack(0x70bd0000,0x70c20000)]
  0x53ec7400 JavaThread "pool-3-thread-1290" [_thread_blocked, id=10540,
stack(0x70b80000,0x70bd0000)]
  0x53ec6000 JavaThread "pool-3-thread-1289" [_thread_blocked, id=10532,
stack(0x70b30000,0x70b80000)]
  0x53ec3800 JavaThread "pool-3-thread-1288" [_thread_blocked, id=10524,
stack(0x70ae0000,0x70b30000)]
  0x53ec2000 JavaThread "pool-3-thread-1287" [_thread_blocked, id=10520,
stack(0x70a90000,0x70ae0000)]
  0x53ec0c00 JavaThread "pool-3-thread-1286" [_thread_blocked, id=10512,
stack(0x70a40000,0x70a90000)]
  0x53ebf400 JavaThread "pool-3-thread-1285" [_thread_blocked, id=10476,
stack(0x709f0000,0x70a40000)]
  0x53ebdc00 JavaThread "pool-3-thread-1284" [_thread_blocked, id=10480,
stack(0x709a0000,0x709f0000)]
  0x53e71400 JavaThread "pool-3-thread-1283" [_thread_blocked, id=10488,
stack(0x70950000,0x709a0000)]
  0x53e70000 JavaThread "pool-3-thread-1282" [_thread_blocked, id=10464,
stack(0x70900000,0x70950000)]
  0x53e6e800 JavaThread "pool-3-thread-1281" [_thread_blocked, id=10460,
stack(0x708b0000,0x70900000)]
  0x53e6d400 JavaThread "pool-3-thread-1280" [_thread_blocked, id=10408,
stack(0x70860000,0x708b0000)]
  0x53d2fc00 JavaThread "pool-3-thread-1279" [_thread_blocked, id=10428,
stack(0x70810000,0x70860000)]
  0x53d2e400 JavaThread "pool-3-thread-1278" [_thread_blocked, id=10396,
stack(0x707c0000,0x70810000)]
  0x53d2cc00 JavaThread "pool-3-thread-1277" [_thread_blocked, id=10376,
stack(0x70770000,0x707c0000)]
  0x53d2b400 JavaThread "pool-3-thread-1276" [_thread_blocked, id=10344,
stack(0x70720000,0x70770000)]
  0x53d2a000 JavaThread "pool-3-thread-1275" [_thread_blocked, id=10348,
stack(0x706d0000,0x70720000)]
  0x54115800 JavaThread "pool-3-thread-1274" [_thread_blocked, id=10336,
stack(0x70680000,0x706d0000)]
  0x54114000 JavaThread "pool-3-thread-1273" [_thread_blocked, id=10320,
stack(0x70630000,0x70680000)]
  0x54112800 JavaThread "pool-3-thread-1272" [_thread_blocked, id=10312,
stack(0x705e0000,0x70630000)]
  0x54111400 JavaThread "pool-3-thread-1271" [_thread_blocked, id=10296,
stack(0x70590000,0x705e0000)]
  0x5410fc00 JavaThread "pool-3-thread-1270" [_thread_blocked, id=10288,
stack(0x70540000,0x70590000)]
  0x5410e800 JavaThread "pool-3-thread-1269" [_thread_blocked, id=10248,
stack(0x704f0000,0x70540000)]
  0x5410d000 JavaThread "pool-3-thread-1268" [_thread_blocked, id=10260,
stack(0x704a0000,0x704f0000)]
  0x5410b800 JavaThread "pool-3-thread-1267" [_thread_blocked, id=10256,
stack(0x70450000,0x704a0000)]
  0x5410a000 JavaThread "pool-3-thread-1266" [_thread_blocked, id=10244,
stack(0x70400000,0x70450000)]
  0x54108c00 JavaThread "pool-3-thread-1265" [_thread_blocked, id=10196,
stack(0x703b0000,0x70400000)]
  0x54107400 JavaThread "pool-3-thread-1264" [_thread_blocked, id=10208,
stack(0x70360000,0x703b0000)]
  0x54105c00 JavaThread "pool-3-thread-1263" [_thread_blocked, id=10188,
stack(0x70310000,0x70360000)]
  0x54104800 JavaThread "pool-3-thread-1262" [_thread_blocked, id=10164,
stack(0x702c0000,0x70310000)]
  0x54103000 JavaThread "pool-3-thread-1261" [_thread_blocked, id=10176,
stack(0x70270000,0x702c0000)]
  0x54101800 JavaThread "pool-3-thread-1260" [_thread_blocked, id=10160,
stack(0x70220000,0x70270000)]
  0x54100400 JavaThread "pool-3-thread-1259" [_thread_blocked, id=10136,
stack(0x701d0000,0x70220000)]
  0x53ef5c00 JavaThread "pool-3-thread-1258" [_thread_blocked, id=10108,
stack(0x70180000,0x701d0000)]
  0x53ef4400 JavaThread "pool-3-thread-1257" [_thread_blocked, id=10068,
stack(0x70130000,0x70180000)]
  0x53ef2c00 JavaThread "pool-3-thread-1256" [_thread_blocked, id=10056,
stack(0x700e0000,0x70130000)]
  0x53ef1400 JavaThread "pool-3-thread-1255" [_thread_blocked, id=10040,
stack(0x70090000,0x700e0000)]
  0x53eefc00 JavaThread "pool-3-thread-1254" [_thread_blocked, id=10020,
stack(0x70040000,0x70090000)]
  0x53eee800 JavaThread "pool-3-thread-1253" [_thread_blocked, id=10000,
stack(0x6fff0000,0x70040000)]
  0x53d90c00 JavaThread "pool-3-thread-1252" [_thread_blocked, id=9984,
stack(0x6ffa0000,0x6fff0000)]
  0x53d8f400 JavaThread "pool-3-thread-1251" [_thread_blocked, id=9956,
stack(0x6ff50000,0x6ffa0000)]
  0x53d8e000 JavaThread "pool-3-thread-1250" [_thread_blocked, id=9976,
stack(0x6ff00000,0x6ff50000)]
  0x53d8c800 JavaThread "pool-3-thread-1249" [_thread_blocked, id=9932,
stack(0x6feb0000,0x6ff00000)]
  0x53d8b000 JavaThread "pool-3-thread-1248" [_thread_blocked, id=9944,
stack(0x6fe60000,0x6feb0000)]
  0x53d89c00 JavaThread "pool-3-thread-1247" [_thread_blocked, id=9940,
stack(0x6fe10000,0x6fe60000)]
  0x54313800 JavaThread "pool-3-thread-1246" [_thread_blocked, id=9892,
stack(0x6fdc0000,0x6fe10000)]
  0x54312000 JavaThread "pool-3-thread-1245" [_thread_blocked, id=9880,
stack(0x6fd70000,0x6fdc0000)]
  0x54310800 JavaThread "pool-3-thread-1244" [_thread_blocked, id=9872,
stack(0x6fd20000,0x6fd70000)]
  0x5430f400 JavaThread "pool-3-thread-1243" [_thread_blocked, id=9860,
stack(0x6fcd0000,0x6fd20000)]
  0x54124400 JavaThread "pool-3-thread-1242" [_thread_blocked, id=9852,
stack(0x6fc80000,0x6fcd0000)]
  0x54123000 JavaThread "pool-3-thread-1241" [_thread_blocked, id=9832,
stack(0x6fc30000,0x6fc80000)]
  0x54121800 JavaThread "pool-3-thread-1240" [_thread_blocked, id=9824,
stack(0x6fbe0000,0x6fc30000)]
  0x54120000 JavaThread "pool-3-thread-1239" [_thread_blocked, id=9812,
stack(0x6fb90000,0x6fbe0000)]
  0x5411e800 JavaThread "pool-3-thread-1238" [_thread_blocked, id=9780,
stack(0x6fb40000,0x6fb90000)]
  0x5414c800 JavaThread "pool-3-thread-1237" [_thread_blocked, id=9788,
stack(0x6faf0000,0x6fb40000)]
  0x5414ac00 JavaThread "pool-3-thread-1236" [_thread_blocked, id=9772,
stack(0x6faa0000,0x6faf0000)]
  0x54395c00 JavaThread "pool-3-thread-1235" [_thread_blocked, id=9736,
stack(0x6fa50000,0x6faa0000)]
  0x540e7400 JavaThread "pool-3-thread-1234" [_thread_blocked, id=9700,
stack(0x6fa00000,0x6fa50000)]
  0x53f26c00 JavaThread "pool-3-thread-1233" [_thread_blocked, id=9680,
stack(0x6f9b0000,0x6fa00000)]
  0x5442f800 JavaThread "pool-3-thread-1232" [_thread_blocked, id=9672,
stack(0x6f960000,0x6f9b0000)]
  0x54165800 JavaThread "pool-3-thread-1231" [_thread_blocked, id=9668,
stack(0x6f910000,0x6f960000)]
  0x54590400 JavaThread "pool-3-thread-1230" [_thread_blocked, id=9660,
stack(0x6f8c0000,0x6f910000)]
  0x542ee400 JavaThread "pool-3-thread-1229" [_thread_blocked, id=9644,
stack(0x6f870000,0x6f8c0000)]
  0x53f99400 JavaThread "pool-3-thread-1228" [_thread_blocked, id=9640,
stack(0x6f820000,0x6f870000)]
  0x54147400 JavaThread "pool-3-thread-1227" [_thread_blocked, id=9636,
stack(0x6f7d0000,0x6f820000)]
  0x5400f800 JavaThread "pool-3-thread-1226" [_thread_blocked, id=9632,
stack(0x6f780000,0x6f7d0000)]
  0x5400d800 JavaThread "pool-3-thread-1225" [_thread_blocked, id=9608,
stack(0x6f730000,0x6f780000)]
  0x5400c000 JavaThread "pool-3-thread-1224" [_thread_blocked, id=9600,
stack(0x6f6e0000,0x6f730000)]
  0x5400b000 JavaThread "pool-3-thread-1223" [_thread_blocked, id=9596,
stack(0x6f690000,0x6f6e0000)]
  0x53e6a800 JavaThread "pool-3-thread-1222" [_thread_blocked, id=9568,
stack(0x6f640000,0x6f690000)]
  0x5424bc00 JavaThread "pool-3-thread-1221" [_thread_blocked, id=9552,
stack(0x6f5f0000,0x6f640000)]
  0x54325c00 JavaThread "pool-3-thread-1220" [_thread_blocked, id=9536,
stack(0x6f5a0000,0x6f5f0000)]
  0x54176400 JavaThread "pool-3-thread-1219" [_thread_blocked, id=9516,
stack(0x6f550000,0x6f5a0000)]
  0x53f9a400 JavaThread "pool-3-thread-1218" [_thread_blocked, id=9508,
stack(0x6f500000,0x6f550000)]
  0x5426a800 JavaThread "pool-3-thread-1217" [_thread_blocked, id=9488,
stack(0x6f4b0000,0x6f500000)]
  0x53f16400 JavaThread "pool-3-thread-1216" [_thread_blocked, id=9444,
stack(0x6f460000,0x6f4b0000)]
  0x541c8400 JavaThread "pool-3-thread-1215" [_thread_blocked, id=9440,
stack(0x6f410000,0x6f460000)]
  0x542f6c00 JavaThread "pool-3-thread-1214" [_thread_blocked, id=9424,
stack(0x6f3c0000,0x6f410000)]
  0x54202400 JavaThread "pool-3-thread-1213" [_thread_blocked, id=9404,
stack(0x6f370000,0x6f3c0000)]
  0x53e22000 JavaThread "pool-3-thread-1212" [_thread_blocked, id=9364,
stack(0x6f320000,0x6f370000)]
  0x53d37400 JavaThread "pool-3-thread-1211" [_thread_blocked, id=9368,
stack(0x6f2d0000,0x6f320000)]
  0x53d35c00 JavaThread "pool-3-thread-1210" [_thread_blocked, id=9372,
stack(0x6f280000,0x6f2d0000)]
  0x53d34400 JavaThread "pool-3-thread-1209" [_thread_blocked, id=9356,
stack(0x6f230000,0x6f280000)]
  0x53d32c00 JavaThread "pool-3-thread-1208" [_thread_blocked, id=9320,
stack(0x6f1e0000,0x6f230000)]
  0x53d31800 JavaThread "pool-3-thread-1207" [_thread_blocked, id=9316,
stack(0x6f190000,0x6f1e0000)]
  0x53d30400 JavaThread "pool-3-thread-1206" [_thread_blocked, id=9300,
stack(0x6f140000,0x6f190000)]
  0x53d25800 JavaThread "pool-3-thread-1205" [_thread_blocked, id=9284,
stack(0x6f0f0000,0x6f140000)]
  0x53d24000 JavaThread "pool-3-thread-1204" [_thread_blocked, id=9252,
stack(0x6f0a0000,0x6f0f0000)]
  0x53d22800 JavaThread "pool-3-thread-1203" [_thread_blocked, id=9248,
stack(0x6f050000,0x6f0a0000)]
  0x53d21000 JavaThread "pool-3-thread-1202" [_thread_blocked, id=9204,
stack(0x6f000000,0x6f050000)]
  0x53d1f800 JavaThread "pool-3-thread-1201" [_thread_blocked, id=9188,
stack(0x6efb0000,0x6f000000)]
  0x53d1e400 JavaThread "pool-3-thread-1200" [_thread_blocked, id=9176,
stack(0x6ef60000,0x6efb0000)]
  0x53d1cc00 JavaThread "pool-3-thread-1199" [_thread_blocked, id=9160,
stack(0x6ef10000,0x6ef60000)]
  0x53d1b800 JavaThread "pool-3-thread-1198" [_thread_blocked, id=9140,
stack(0x6eec0000,0x6ef10000)]
  0x53d1a800 JavaThread "pool-3-thread-1197" [_thread_blocked, id=9128,
stack(0x6ee70000,0x6eec0000)]
  0x53d19800 JavaThread "pool-3-thread-1196" [_thread_blocked, id=9100,
stack(0x6ee20000,0x6ee70000)]
  0x53d18800 JavaThread "pool-3-thread-1195" [_thread_blocked, id=9112,
stack(0x6edd0000,0x6ee20000)]
  0x53d15c00 JavaThread "pool-3-thread-1194" [_thread_blocked, id=9104,
stack(0x6ed80000,0x6edd0000)]
  0x53d14800 JavaThread "pool-3-thread-1193" [_thread_blocked, id=9084,
stack(0x6ed30000,0x6ed80000)]
  0x53d12c00 JavaThread "pool-3-thread-1192" [_thread_blocked, id=9068,
stack(0x6ece0000,0x6ed30000)]
  0x53d11400 JavaThread "pool-3-thread-1191" [_thread_blocked, id=9044,
stack(0x6ec90000,0x6ece0000)]
  0x53d10000 JavaThread "pool-3-thread-1190" [_thread_blocked, id=9040,
stack(0x6ec40000,0x6ec90000)]
  0x53d0e800 JavaThread "pool-3-thread-1189" [_thread_blocked, id=9024,
stack(0x6ebf0000,0x6ec40000)]
  0x53d0d400 JavaThread "pool-3-thread-1188" [_thread_blocked, id=8984,
stack(0x6eba0000,0x6ebf0000)]
  0x53d0bc00 JavaThread "pool-3-thread-1187" [_thread_blocked, id=8964,
stack(0x6eb50000,0x6eba0000)]
  0x53d0a400 JavaThread "pool-3-thread-1186" [_thread_blocked, id=8928,
stack(0x6eb00000,0x6eb50000)]
  0x53d09000 JavaThread "pool-3-thread-1185" [_thread_blocked, id=8944,
stack(0x6eab0000,0x6eb00000)]
  0x53d07800 JavaThread "pool-3-thread-1184" [_thread_blocked, id=8904,
stack(0x6ea60000,0x6eab0000)]
  0x53d06400 JavaThread "pool-3-thread-1183" [_thread_blocked, id=8860,
stack(0x6ea10000,0x6ea60000)]
  0x53d04800 JavaThread "pool-3-thread-1182" [_thread_blocked, id=8852,
stack(0x6e9c0000,0x6ea10000)]
  0x53d00000 JavaThread "pool-3-thread-1181" [_thread_blocked, id=8844,
stack(0x6e970000,0x6e9c0000)]
  0x53cfe800 JavaThread "pool-3-thread-1180" [_thread_blocked, id=8800,
stack(0x6e920000,0x6e970000)]
  0x53cfd000 JavaThread "pool-3-thread-1179" [_thread_blocked, id=8752,
stack(0x6e8d0000,0x6e920000)]
  0x53cfb800 JavaThread "pool-3-thread-1178" [_thread_blocked, id=8756,
stack(0x6e880000,0x6e8d0000)]
  0x53cfa400 JavaThread "pool-3-thread-1177" [_thread_blocked, id=8700,
stack(0x6e830000,0x6e880000)]
  0x53cf8c00 JavaThread "pool-3-thread-1176" [_thread_blocked, id=8676,
stack(0x6e7e0000,0x6e830000)]
  0x53cf7800 JavaThread "pool-3-thread-1175" [_thread_blocked, id=8648,
stack(0x6e790000,0x6e7e0000)]
  0x53cf6000 JavaThread "pool-3-thread-1174" [_thread_blocked, id=8632,
stack(0x6e740000,0x6e790000)]
  0x53cf4800 JavaThread "pool-3-thread-1173" [_thread_blocked, id=8624,
stack(0x6e6f0000,0x6e740000)]
  0x53cf3400 JavaThread "pool-3-thread-1172" [_thread_blocked, id=8612,
stack(0x6e6a0000,0x6e6f0000)]
  0x53cf1800 JavaThread "pool-3-thread-1171" [_thread_blocked, id=8592,
stack(0x6e650000,0x6e6a0000)]
  0x53cf0000 JavaThread "pool-3-thread-1170" [_thread_blocked, id=8588,
stack(0x6e600000,0x6e650000)]
  0x53ceec00 JavaThread "pool-3-thread-1169" [_thread_blocked, id=8568,
stack(0x6e5b0000,0x6e600000)]
  0x53ced400 JavaThread "pool-3-thread-1168" [_thread_blocked, id=8560,
stack(0x6e560000,0x6e5b0000)]
  0x53cec000 JavaThread "pool-3-thread-1167" [_thread_blocked, id=8552,
stack(0x6e510000,0x6e560000)]
  0x53cea800 JavaThread "pool-3-thread-1166" [_thread_blocked, id=8532,
stack(0x6e4c0000,0x6e510000)]
  0x53ce9400 JavaThread "pool-3-thread-1165" [_thread_blocked, id=8516,
stack(0x6e470000,0x6e4c0000)]
  0x53ce7c00 JavaThread "pool-3-thread-1164" [_thread_blocked, id=8488,
stack(0x6e420000,0x6e470000)]
  0x53ce6400 JavaThread "pool-3-thread-1163" [_thread_blocked, id=8456,
stack(0x6e3d0000,0x6e420000)]
  0x53ce4c00 JavaThread "pool-3-thread-1162" [_thread_blocked, id=8460,
stack(0x6e380000,0x6e3d0000)]
  0x53ce3800 JavaThread "pool-3-thread-1161" [_thread_blocked, id=8444,
stack(0x6e330000,0x6e380000)]
  0x53ce2000 JavaThread "pool-3-thread-1160" [_thread_blocked, id=8396,
stack(0x6e2e0000,0x6e330000)]
  0x53ce0800 JavaThread "pool-3-thread-1159" [_thread_blocked, id=8404,
stack(0x6e290000,0x6e2e0000)]
  0x53cdf000 JavaThread "pool-3-thread-1158" [_thread_blocked, id=8416,
stack(0x6e240000,0x6e290000)]
  0x53cddc00 JavaThread "pool-3-thread-1157" [_thread_blocked, id=8400,
stack(0x6e1f0000,0x6e240000)]
  0x53cdc400 JavaThread "pool-3-thread-1156" [_thread_blocked, id=8348,
stack(0x6e1a0000,0x6e1f0000)]
  0x53cdac00 JavaThread "pool-3-thread-1155" [_thread_blocked, id=8332,
stack(0x6e150000,0x6e1a0000)]
  0x53cd9800 JavaThread "pool-3-thread-1154" [_thread_blocked, id=8316,
stack(0x6e100000,0x6e150000)]
  0x53cd8000 JavaThread "pool-3-thread-1153" [_thread_blocked, id=8292,
stack(0x6e0b0000,0x6e100000)]
  0x53cd6800 JavaThread "pool-3-thread-1152" [_thread_blocked, id=8264,
stack(0x6e060000,0x6e0b0000)]
  0x53cd5400 JavaThread "pool-3-thread-1151" [_thread_blocked, id=8284,
stack(0x6e010000,0x6e060000)]
  0x53cd3c00 JavaThread "pool-3-thread-1150" [_thread_blocked, id=8256,
stack(0x6dfc0000,0x6e010000)]
  0x53cd2400 JavaThread "pool-3-thread-1149" [_thread_blocked, id=8248,
stack(0x6df70000,0x6dfc0000)]
  0x53cd1000 JavaThread "pool-3-thread-1148" [_thread_blocked, id=8232,
stack(0x6dae0000,0x6db30000)]
  0x53ccf000 JavaThread "pool-3-thread-1147" [_thread_blocked, id=8236,
stack(0x6da90000,0x6dae0000)]
  0x53ccd800 JavaThread "pool-3-thread-1146" [_thread_blocked, id=8200,
stack(0x6da40000,0x6da90000)]
  0x53ccc400 JavaThread "pool-3-thread-1145" [_thread_blocked, id=8172,
stack(0x6d9f0000,0x6da40000)]
  0x53ccb400 JavaThread "pool-3-thread-1144" [_thread_blocked, id=8152,
stack(0x6d9a0000,0x6d9f0000)]
  0x53cca400 JavaThread "pool-3-thread-1143" [_thread_blocked, id=8136,
stack(0x6d950000,0x6d9a0000)]
  0x53cc9800 JavaThread "pool-3-thread-1142" [_thread_blocked, id=8096,
stack(0x6d900000,0x6d950000)]
  0x53cc8800 JavaThread "pool-3-thread-1141" [_thread_blocked, id=8108,
stack(0x6d8b0000,0x6d900000)]
  0x53cc7800 JavaThread "pool-3-thread-1140" [_thread_blocked, id=8100,
stack(0x6d7e0000,0x6d830000)]
  0x53cc4400 JavaThread "pool-3-thread-1139" [_thread_blocked, id=8092,
stack(0x6d790000,0x6d7e0000)]
  0x53cc2000 JavaThread "pool-3-thread-1138" [_thread_blocked, id=8084,
stack(0x6d740000,0x6d790000)]
  0x53cc0c00 JavaThread "pool-3-thread-1137" [_thread_blocked, id=8072,
stack(0x6d6f0000,0x6d740000)]
  0x53cbf800 JavaThread "pool-3-thread-1136" [_thread_blocked, id=8060,
stack(0x6d630000,0x6d680000)]
  0x53cbe400 JavaThread "pool-3-thread-1135" [_thread_blocked, id=8028,
stack(0x6d5e0000,0x6d630000)]
  0x53cbd000 JavaThread "pool-3-thread-1134" [_thread_blocked, id=8000,
stack(0x6d590000,0x6d5e0000)]
  0x53cbb800 JavaThread "pool-3-thread-1133" [_thread_blocked, id=7984,
stack(0x6d540000,0x6d590000)]
  0x53cba400 JavaThread "pool-3-thread-1132" [_thread_blocked, id=7952,
stack(0x6d4f0000,0x6d540000)]
  0x53cb7c00 JavaThread "pool-3-thread-1131" [_thread_blocked, id=7948,
stack(0x6d4a0000,0x6d4f0000)]
  0x53cb6400 JavaThread "pool-3-thread-1130" [_thread_blocked, id=7932,
stack(0x6d450000,0x6d4a0000)]
  0x53cb5400 JavaThread "pool-3-thread-1129" [_thread_blocked, id=7888,
stack(0x6d400000,0x6d450000)]
  0x53c46000 JavaThread "pool-3-thread-1128" [_thread_blocked, id=7920,
stack(0x6d350000,0x6d3a0000)]
  0x53c44c00 JavaThread "pool-3-thread-1127" [_thread_blocked, id=7916,
stack(0x6d2c0000,0x6d310000)]
  0x53c43400 JavaThread "pool-3-thread-1126" [_thread_blocked, id=7872,
stack(0x6d270000,0x6d2c0000)]
  0x53c91400 JavaThread "pool-3-thread-1125" [_thread_blocked, id=7856,
stack(0x6d220000,0x6d270000)]
  0x53c8fc00 JavaThread "pool-3-thread-1124" [_thread_blocked, id=7876,
stack(0x6d1d0000,0x6d220000)]
  0x53cab400 JavaThread "pool-3-thread-1123" [_thread_blocked, id=7860,
stack(0x6d180000,0x6d1d0000)]
  0x53caa400 JavaThread "pool-3-thread-1122" [_thread_blocked, id=7836,
stack(0x6d130000,0x6d180000)]
  0x53c76c00 JavaThread "pool-3-thread-1121" [_thread_blocked, id=7824,
stack(0x6d0e0000,0x6d130000)]
  0x53cc3800 JavaThread "pool-3-thread-1120" [_thread_blocked, id=7800,
stack(0x6d090000,0x6d0e0000)]
  0x53c10400 JavaThread "pool-3-thread-1119" [_thread_blocked, id=7776,
stack(0x6d040000,0x6d090000)]
  0x53c0d800 JavaThread "pool-3-thread-1118" [_thread_blocked, id=7760,
stack(0x6cff0000,0x6d040000)]
  0x53c0c400 JavaThread "pool-3-thread-1117" [_thread_blocked, id=7780,
stack(0x6cfa0000,0x6cff0000)]
  0x53c0ac00 JavaThread "pool-3-thread-1116" [_thread_blocked, id=7752,
stack(0x6cf50000,0x6cfa0000)]
  0x53c09400 JavaThread "pool-3-thread-1115" [_thread_blocked, id=7724,
stack(0x6cf00000,0x6cf50000)]
  0x53c08000 JavaThread "pool-3-thread-1114" [_thread_blocked, id=7700,
stack(0x6ceb0000,0x6cf00000)]
  0x53c06800 JavaThread "pool-3-thread-1113" [_thread_blocked, id=7708,
stack(0x6ce60000,0x6ceb0000)]
  0x53c05000 JavaThread "pool-3-thread-1112" [_thread_blocked, id=7712,
stack(0x6ce10000,0x6ce60000)]
  0x53c03c00 JavaThread "pool-3-thread-1111" [_thread_blocked, id=7692,
stack(0x6cdc0000,0x6ce10000)]
  0x53c02400 JavaThread "pool-3-thread-1110" [_thread_blocked, id=7668,
stack(0x6cd70000,0x6cdc0000)]
  0x53c00c00 JavaThread "pool-3-thread-1109" [_thread_blocked, id=7640,
stack(0x6cd20000,0x6cd70000)]
  0x53bff400 JavaThread "pool-3-thread-1108" [_thread_blocked, id=7624,
stack(0x6ccd0000,0x6cd20000)]
  0x53bfe000 JavaThread "pool-3-thread-1107" [_thread_blocked, id=7604,
stack(0x6cc80000,0x6ccd0000)]
  0x53bfc800 JavaThread "pool-3-thread-1106" [_thread_blocked, id=7588,
stack(0x6cc30000,0x6cc80000)]
  0x53bfb400 JavaThread "pool-3-thread-1105" [_thread_blocked, id=7580,
stack(0x6cbe0000,0x6cc30000)]
  0x53bf9c00 JavaThread "pool-3-thread-1104" [_thread_blocked, id=7528,
stack(0x6cb90000,0x6cbe0000)]
  0x53bf8400 JavaThread "pool-3-thread-1103" [_thread_blocked, id=7504,
stack(0x6cb40000,0x6cb90000)]
  0x53bf7000 JavaThread "pool-3-thread-1102" [_thread_blocked, id=7464,
stack(0x6caf0000,0x6cb40000)]
  0x53bf5800 JavaThread "pool-3-thread-1101" [_thread_blocked, id=7472,
stack(0x6caa0000,0x6caf0000)]
  0x53bf4000 JavaThread "pool-3-thread-1100" [_thread_blocked, id=7488,
stack(0x6ca50000,0x6caa0000)]
  0x53bf2800 JavaThread "pool-3-thread-1099" [_thread_blocked, id=7456,
stack(0x6ca00000,0x6ca50000)]
  0x53bf1000 JavaThread "pool-3-thread-1098" [_thread_blocked, id=7432,
stack(0x6c9b0000,0x6ca00000)]
  0x53bef800 JavaThread "pool-3-thread-1097" [_thread_blocked, id=7428,
stack(0x6c960000,0x6c9b0000)]
  0x53bee400 JavaThread "pool-3-thread-1096" [_thread_blocked, id=7412,
stack(0x6c910000,0x6c960000)]
  0x53becc00 JavaThread "pool-3-thread-1095" [_thread_blocked, id=7384,
stack(0x6c8c0000,0x6c910000)]
  0x53beb800 JavaThread "pool-3-thread-1094" [_thread_blocked, id=7344,
stack(0x6c870000,0x6c8c0000)]
  0x53bea000 JavaThread "pool-3-thread-1093" [_thread_blocked, id=7332,
stack(0x6c820000,0x6c870000)]
  0x53be8800 JavaThread "pool-3-thread-1092" [_thread_blocked, id=7264,
stack(0x6c7d0000,0x6c820000)]
  0x53be7400 JavaThread "pool-3-thread-1091" [_thread_blocked, id=7248,
stack(0x6c780000,0x6c7d0000)]
  0x53be5c00 JavaThread "pool-3-thread-1090" [_thread_blocked, id=7228,
stack(0x6c730000,0x6c780000)]
  0x53be4400 JavaThread "pool-3-thread-1089" [_thread_blocked, id=7220,
stack(0x6c6e0000,0x6c730000)]
  0x53be2c00 JavaThread "pool-3-thread-1088" [_thread_blocked, id=7168,
stack(0x6c690000,0x6c6e0000)]
  0x53be1800 JavaThread "pool-3-thread-1087" [_thread_blocked, id=7160,
stack(0x6c640000,0x6c690000)]
  0x53bdfc00 JavaThread "pool-3-thread-1086" [_thread_blocked, id=7104,
stack(0x6c5f0000,0x6c640000)]
  0x53bde800 JavaThread "pool-3-thread-1085" [_thread_blocked, id=7100,
stack(0x6c5a0000,0x6c5f0000)]
  0x53bdd000 JavaThread "pool-3-thread-1084" [_thread_blocked, id=7096,
stack(0x6c550000,0x6c5a0000)]
  0x53bdbc00 JavaThread "pool-3-thread-1083" [_thread_blocked, id=7064,
stack(0x6c500000,0x6c550000)]
  0x53bda400 JavaThread "pool-3-thread-1082" [_thread_blocked, id=7048,
stack(0x6c4b0000,0x6c500000)]
  0x53bd9000 JavaThread "pool-3-thread-1081" [_thread_blocked, id=7028,
stack(0x6c460000,0x6c4b0000)]
  0x53bd7800 JavaThread "pool-3-thread-1080" [_thread_blocked, id=7004,
stack(0x6c410000,0x6c460000)]
  0x53bd6000 JavaThread "pool-3-thread-1079" [_thread_blocked, id=6988,
stack(0x6c3c0000,0x6c410000)]
  0x53bd4800 JavaThread "pool-3-thread-1078" [_thread_blocked, id=6980,
stack(0x6c370000,0x6c3c0000)]
  0x53bd3400 JavaThread "pool-3-thread-1077" [_thread_blocked, id=6992,
stack(0x6c320000,0x6c370000)]
  0x53bd1c00 JavaThread "pool-3-thread-1076" [_thread_blocked, id=6984,
stack(0x6c2d0000,0x6c320000)]
  0x53bd0400 JavaThread "pool-3-thread-1075" [_thread_blocked, id=6968,
stack(0x6c280000,0x6c2d0000)]
  0x53bcec00 JavaThread "pool-3-thread-1074" [_thread_blocked, id=6956,
stack(0x6c230000,0x6c280000)]
  0x53bcd800 JavaThread "pool-3-thread-1073" [_thread_blocked, id=6952,
stack(0x6c1e0000,0x6c230000)]
  0x53bcc000 JavaThread "pool-3-thread-1072" [_thread_blocked, id=6924,
stack(0x6c190000,0x6c1e0000)]
  0x53bca800 JavaThread "pool-3-thread-1071" [_thread_blocked, id=6912,
stack(0x6c140000,0x6c190000)]
  0x53bc9400 JavaThread "pool-3-thread-1070" [_thread_blocked, id=6904,
stack(0x6c0f0000,0x6c140000)]
  0x53bc7c00 JavaThread "pool-3-thread-1069" [_thread_blocked, id=6892,
stack(0x6c0a0000,0x6c0f0000)]
  0x53bc6400 JavaThread "pool-3-thread-1068" [_thread_blocked, id=6876,
stack(0x6c050000,0x6c0a0000)]
  0x53bc4c00 JavaThread "pool-3-thread-1067" [_thread_blocked, id=6856,
stack(0x6c000000,0x6c050000)]
  0x53bc3400 JavaThread "pool-3-thread-1066" [_thread_blocked, id=6864,
stack(0x6bfb0000,0x6c000000)]
  0x53bc1c00 JavaThread "pool-3-thread-1065" [_thread_blocked, id=6860,
stack(0x6bf60000,0x6bfb0000)]
  0x53aba800 JavaThread "pool-3-thread-1064" [_thread_blocked, id=6824,
stack(0x6bf10000,0x6bf60000)]
  0x53ab9400 JavaThread "pool-3-thread-1063" [_thread_blocked, id=6816,
stack(0x6bec0000,0x6bf10000)]
  0x53ab7c00 JavaThread "pool-3-thread-1062" [_thread_blocked, id=6804,
stack(0x6be70000,0x6bec0000)]
  0x53ab6400 JavaThread "pool-3-thread-1061" [_thread_blocked, id=6784,
stack(0x6be20000,0x6be70000)]
  0x53ab5000 JavaThread "pool-3-thread-1060" [_thread_blocked, id=6792,
stack(0x6bdd0000,0x6be20000)]
  0x53ab2c00 JavaThread "pool-3-thread-1059" [_thread_blocked, id=6760,
stack(0x6bd80000,0x6bdd0000)]
  0x53ab1c00 JavaThread "pool-3-thread-1058" [_thread_blocked, id=6744,
stack(0x6bd30000,0x6bd80000)]
  0x53ab0c00 JavaThread "pool-3-thread-1057" [_thread_blocked, id=6740,
stack(0x6bce0000,0x6bd30000)]
  0x53aaf800 JavaThread "pool-3-thread-1056" [_thread_blocked, id=6668,
stack(0x6bc90000,0x6bce0000)]
  0x53aac800 JavaThread "pool-3-thread-1055" [_thread_blocked, id=6652,
stack(0x6bc40000,0x6bc90000)]
  0x53aab400 JavaThread "pool-3-thread-1054" [_thread_blocked, id=6644,
stack(0x6bbf0000,0x6bc40000)]
  0x53aa9c00 JavaThread "pool-3-thread-1053" [_thread_blocked, id=6632,
stack(0x6bba0000,0x6bbf0000)]
  0x53aa8400 JavaThread "pool-3-thread-1052" [_thread_blocked, id=6656,
stack(0x6bb50000,0x6bba0000)]
  0x53aa7000 JavaThread "pool-3-thread-1051" [_thread_blocked, id=6664,
stack(0x6bb00000,0x6bb50000)]
  0x53aa5800 JavaThread "pool-3-thread-1050" [_thread_blocked, id=6620,
stack(0x6bab0000,0x6bb00000)]
  0x53aa4400 JavaThread "pool-3-thread-1049" [_thread_blocked, id=6584,
stack(0x6ba60000,0x6bab0000)]
  0x53aa2c00 JavaThread "pool-3-thread-1048" [_thread_blocked, id=6588,
stack(0x6ba10000,0x6ba60000)]
  0x53aa1400 JavaThread "pool-3-thread-1047" [_thread_blocked, id=6572,
stack(0x6b9c0000,0x6ba10000)]
  0x53aa0400 JavaThread "pool-3-thread-1046" [_thread_blocked, id=6568,
stack(0x6b970000,0x6b9c0000)]
  0x53a9f000 JavaThread "pool-3-thread-1045" [_thread_blocked, id=6544,
stack(0x6b920000,0x6b970000)]
  0x53a9e400 JavaThread "pool-3-thread-1044" [_thread_blocked, id=6540,
stack(0x6b8d0000,0x6b920000)]
  0x53a9b800 JavaThread "pool-3-thread-1043" [_thread_blocked, id=6528,
stack(0x6b880000,0x6b8d0000)]
  0x53a9a000 JavaThread "pool-3-thread-1042" [_thread_blocked, id=6520,
stack(0x6b830000,0x6b880000)]
  0x53a98c00 JavaThread "pool-3-thread-1041" [_thread_blocked, id=6508,
stack(0x6b7e0000,0x6b830000)]
  0x53a97400 JavaThread "pool-3-thread-1040" [_thread_blocked, id=6488,
stack(0x6b790000,0x6b7e0000)]
  0x53a95c00 JavaThread "pool-3-thread-1039" [_thread_blocked, id=6464,
stack(0x6b740000,0x6b790000)]
  0x53a94800 JavaThread "pool-3-thread-1038" [_thread_blocked, id=6452,
stack(0x6b6f0000,0x6b740000)]
  0x53a93400 JavaThread "pool-3-thread-1037" [_thread_blocked, id=6444,
stack(0x6b6a0000,0x6b6f0000)]
  0x53a92400 JavaThread "pool-3-thread-1036" [_thread_blocked, id=6412,
stack(0x6b650000,0x6b6a0000)]
  0x53a91800 JavaThread "pool-3-thread-1035" [_thread_blocked, id=6396,
stack(0x6b600000,0x6b650000)]
  0x53a8ec00 JavaThread "pool-3-thread-1034" [_thread_blocked, id=6376,
stack(0x6b5b0000,0x6b600000)]
  0x53a8d400 JavaThread "pool-3-thread-1033" [_thread_blocked, id=6372,
stack(0x6b560000,0x6b5b0000)]
  0x53a8bc00 JavaThread "pool-3-thread-1032" [_thread_blocked, id=6328,
stack(0x6b510000,0x6b560000)]
  0x53a8a800 JavaThread "pool-3-thread-1031" [_thread_blocked, id=6340,
stack(0x6b4c0000,0x6b510000)]
  0x53a89000 JavaThread "pool-3-thread-1030" [_thread_blocked, id=6316,
stack(0x6b470000,0x6b4c0000)]
  0x53a87800 JavaThread "pool-3-thread-1029" [_thread_blocked, id=6296,
stack(0x6b420000,0x6b470000)]
  0x53a86400 JavaThread "pool-3-thread-1028" [_thread_blocked, id=6300,
stack(0x6b3d0000,0x6b420000)]
  0x53a84800 JavaThread "pool-3-thread-1027" [_thread_blocked, id=6264,
stack(0x6b380000,0x6b3d0000)]
  0x53a83400 JavaThread "pool-3-thread-1026" [_thread_blocked, id=6204,
stack(0x6b330000,0x6b380000)]
  0x53a81c00 JavaThread "pool-3-thread-1025" [_thread_blocked, id=6176,
stack(0x6b2e0000,0x6b330000)]
  0x53a80400 JavaThread "pool-3-thread-1024" [_thread_blocked, id=6172,
stack(0x6b290000,0x6b2e0000)]
  0x53a7f000 JavaThread "pool-3-thread-1023" [_thread_blocked, id=6168,
stack(0x6b240000,0x6b290000)]
  0x53a7d800 JavaThread "pool-3-thread-1022" [_thread_blocked, id=6156,
stack(0x6b1f0000,0x6b240000)]
  0x53a7c400 JavaThread "pool-3-thread-1021" [_thread_blocked, id=3356,
stack(0x6b1a0000,0x6b1f0000)]
  0x53a7ac00 JavaThread "pool-3-thread-1020" [_thread_blocked, id=3120,
stack(0x6b150000,0x6b1a0000)]
  0x53a79400 JavaThread "pool-3-thread-1019" [_thread_blocked, id=3804,
stack(0x6b100000,0x6b150000)]
  0x53a77c00 JavaThread "pool-3-thread-1018" [_thread_blocked, id=3700,
stack(0x6b0b0000,0x6b100000)]
  0x53a76800 JavaThread "pool-3-thread-1017" [_thread_blocked, id=3972,
stack(0x6b060000,0x6b0b0000)]
  0x53a75000 JavaThread "pool-3-thread-1016" [_thread_blocked, id=3468,
stack(0x6b010000,0x6b060000)]
  0x53a73c00 JavaThread "pool-3-thread-1015" [_thread_blocked, id=2924,
stack(0x6afc0000,0x6b010000)]
  0x53a73000 JavaThread "pool-3-thread-1014" [_thread_blocked, id=3640,
stack(0x6af70000,0x6afc0000)]
  0x53a71c00 JavaThread "pool-3-thread-1013" [_thread_blocked, id=648,
stack(0x6af20000,0x6af70000)]
  0x53a70800 JavaThread "pool-3-thread-1012" [_thread_blocked, id=1412,
stack(0x6aed0000,0x6af20000)]
  0x53a6e000 JavaThread "pool-3-thread-1011" [_thread_blocked, id=2928,
stack(0x6ae80000,0x6aed0000)]
  0x53a6c400 JavaThread "pool-3-thread-1010" [_thread_blocked, id=1564,
stack(0x6ae30000,0x6ae80000)]
  0x53a6b000 JavaThread "pool-3-thread-1009" [_thread_blocked, id=212,
stack(0x6ade0000,0x6ae30000)]
  0x53a69800 JavaThread "pool-3-thread-1008" [_thread_blocked, id=3256,
stack(0x6ad90000,0x6ade0000)]
  0x53a68400 JavaThread "pool-3-thread-1007" [_thread_blocked, id=6140,
stack(0x6ad40000,0x6ad90000)]
  0x53a66c00 JavaThread "pool-3-thread-1006" [_thread_blocked, id=6136,
stack(0x6acf0000,0x6ad40000)]
  0x53a65400 JavaThread "pool-3-thread-1005" [_thread_blocked, id=6112,
stack(0x6aca0000,0x6acf0000)]
  0x536efc00 JavaThread "pool-3-thread-1004" [_thread_blocked, id=6108,
stack(0x6ac50000,0x6aca0000)]
  0x536ee400 JavaThread "pool-3-thread-1003" [_thread_blocked, id=6096,
stack(0x6ac00000,0x6ac50000)]
  0x536ed000 JavaThread "pool-3-thread-1002" [_thread_blocked, id=6072,
stack(0x6abb0000,0x6ac00000)]
  0x536eb800 JavaThread "pool-3-thread-1001" [_thread_blocked, id=6064,
stack(0x6ab60000,0x6abb0000)]
  0x536ea400 JavaThread "pool-3-thread-1000" [_thread_blocked, id=6048,
stack(0x6ab10000,0x6ab60000)]
  0x536e8c00 JavaThread "pool-3-thread-999" [_thread_blocked, id=6016,
stack(0x6aac0000,0x6ab10000)]
  0x536e7400 JavaThread "pool-3-thread-998" [_thread_blocked, id=5996,
stack(0x6aa70000,0x6aac0000)]
  0x536e6000 JavaThread "pool-3-thread-997" [_thread_blocked, id=5968,
stack(0x6aa20000,0x6aa70000)]
  0x536e4800 JavaThread "pool-3-thread-996" [_thread_blocked, id=5952,
stack(0x6a9d0000,0x6aa20000)]
  0x536e3000 JavaThread "pool-3-thread-995" [_thread_blocked, id=5948,
stack(0x6a980000,0x6a9d0000)]
  0x536e1800 JavaThread "pool-3-thread-994" [_thread_blocked, id=5940,
stack(0x6a930000,0x6a980000)]
  0x536e0000 JavaThread "pool-3-thread-993" [_thread_blocked, id=5908,
stack(0x6a8e0000,0x6a930000)]
  0x536dec00 JavaThread "pool-3-thread-992" [_thread_blocked, id=5888,
stack(0x6a890000,0x6a8e0000)]
  0x536dd400 JavaThread "pool-3-thread-991" [_thread_blocked, id=5892,
stack(0x6a840000,0x6a890000)]
  0x536dc000 JavaThread "pool-3-thread-990" [_thread_blocked, id=5864,
stack(0x6a7f0000,0x6a840000)]
  0x536da800 JavaThread "pool-3-thread-989" [_thread_blocked, id=5872,
stack(0x6a7a0000,0x6a7f0000)]
  0x53385000 JavaThread "pool-3-thread-988" [_thread_blocked, id=5852,
stack(0x6a750000,0x6a7a0000)]
  0x53383800 JavaThread "pool-3-thread-987" [_thread_blocked, id=5820,
stack(0x6a700000,0x6a750000)]
  0x53382400 JavaThread "pool-3-thread-986" [_thread_blocked, id=5828,
stack(0x6a6b0000,0x6a700000)]
  0x53380c00 JavaThread "pool-3-thread-985" [_thread_blocked, id=5808,
stack(0x6a660000,0x6a6b0000)]
  0x5337f400 JavaThread "pool-3-thread-984" [_thread_blocked, id=5784,
stack(0x6a610000,0x6a660000)]
  0x5337dc00 JavaThread "pool-3-thread-983" [_thread_blocked, id=5776,
stack(0x6a5c0000,0x6a610000)]
  0x5337c400 JavaThread "pool-3-thread-982" [_thread_blocked, id=5768,
stack(0x6a570000,0x6a5c0000)]
  0x5337b000 JavaThread "pool-3-thread-981" [_thread_blocked, id=5780,
stack(0x6a520000,0x6a570000)]
  0x53379800 JavaThread "pool-3-thread-980" [_thread_blocked, id=5760,
stack(0x6a4d0000,0x6a520000)]
  0x53378400 JavaThread "pool-3-thread-979" [_thread_blocked, id=5748,
stack(0x6a480000,0x6a4d0000)]
  0x53376c00 JavaThread "pool-3-thread-978" [_thread_blocked, id=5744,
stack(0x6a430000,0x6a480000)]
  0x53375400 JavaThread "pool-3-thread-977" [_thread_blocked, id=5736,
stack(0x6a3e0000,0x6a430000)]
  0x53374000 JavaThread "pool-3-thread-976" [_thread_blocked, id=5716,
stack(0x6a390000,0x6a3e0000)]
  0x53372800 JavaThread "pool-3-thread-975" [_thread_blocked, id=5688,
stack(0x6a340000,0x6a390000)]
  0x53371000 JavaThread "pool-3-thread-974" [_thread_blocked, id=5648,
stack(0x6a2f0000,0x6a340000)]
  0x5336fc00 JavaThread "pool-3-thread-973" [_thread_blocked, id=5656,
stack(0x6a2a0000,0x6a2f0000)]
  0x5336ec00 JavaThread "pool-3-thread-972" [_thread_blocked, id=5652,
stack(0x6a250000,0x6a2a0000)]
  0x5336e400 JavaThread "pool-3-thread-971" [_thread_blocked, id=5616,
stack(0x6a200000,0x6a250000)]
  0x5374e800 JavaThread "pool-3-thread-970" [_thread_blocked, id=5612,
stack(0x6a1b0000,0x6a200000)]
  0x5374c000 JavaThread "pool-3-thread-969" [_thread_blocked, id=5604,
stack(0x6a160000,0x6a1b0000)]
  0x5374a800 JavaThread "pool-3-thread-968" [_thread_blocked, id=5600,
stack(0x6a110000,0x6a160000)]
  0x53749000 JavaThread "pool-3-thread-967" [_thread_blocked, id=5596,
stack(0x6a0c0000,0x6a110000)]
  0x53747c00 JavaThread "pool-3-thread-966" [_thread_blocked, id=5572,
stack(0x6a070000,0x6a0c0000)]
  0x53746000 JavaThread "pool-3-thread-965" [_thread_blocked, id=5564,
stack(0x6a020000,0x6a070000)]
  0x53744c00 JavaThread "pool-3-thread-964" [_thread_blocked, id=5532,
stack(0x69fd0000,0x6a020000)]
  0x53743400 JavaThread "pool-3-thread-963" [_thread_blocked, id=5540,
stack(0x69f80000,0x69fd0000)]
  0x53741c00 JavaThread "pool-3-thread-962" [_thread_blocked, id=5552,
stack(0x69f30000,0x69f80000)]
  0x53740800 JavaThread "pool-3-thread-961" [_thread_blocked, id=5492,
stack(0x69ee0000,0x69f30000)]
  0x53a58800 JavaThread "pool-3-thread-960" [_thread_blocked, id=5484,
stack(0x69e90000,0x69ee0000)]
  0x53a57400 JavaThread "pool-3-thread-959" [_thread_blocked, id=5472,
stack(0x69e40000,0x69e90000)]
  0x53a55c00 JavaThread "pool-3-thread-958" [_thread_blocked, id=5456,
stack(0x69df0000,0x69e40000)]
  0x53a54800 JavaThread "pool-3-thread-957" [_thread_blocked, id=5412,
stack(0x69da0000,0x69df0000)]
  0x53a53000 JavaThread "pool-3-thread-956" [_thread_blocked, id=5416,
stack(0x69d50000,0x69da0000)]
  0x53a51800 JavaThread "pool-3-thread-955" [_thread_blocked, id=5404,
stack(0x69d00000,0x69d50000)]
  0x53a50000 JavaThread "pool-3-thread-954" [_thread_blocked, id=5372,
stack(0x69cb0000,0x69d00000)]
  0x53a4e800 JavaThread "pool-3-thread-953" [_thread_blocked, id=5364,
stack(0x69c60000,0x69cb0000)]
  0x53a4d400 JavaThread "pool-3-thread-952" [_thread_blocked, id=5292,
stack(0x69c10000,0x69c60000)]
  0x53a4bc00 JavaThread "pool-3-thread-951" [_thread_blocked, id=5312,
stack(0x69bc0000,0x69c10000)]
  0x53a4a400 JavaThread "pool-3-thread-950" [_thread_blocked, id=5284,
stack(0x69b70000,0x69bc0000)]
  0x5377f000 JavaThread "pool-3-thread-949" [_thread_blocked, id=5264,
stack(0x69b20000,0x69b70000)]
  0x5377d800 JavaThread "pool-3-thread-948" [_thread_blocked, id=5240,
stack(0x69ad0000,0x69b20000)]
  0x5377c000 JavaThread "pool-3-thread-947" [_thread_blocked, id=5212,
stack(0x69a80000,0x69ad0000)]
  0x5377a800 JavaThread "pool-3-thread-946" [_thread_blocked, id=5216,
stack(0x69a30000,0x69a80000)]
  0x53779400 JavaThread "pool-3-thread-945" [_thread_blocked, id=5196,
stack(0x699e0000,0x69a30000)]
  0x53777c00 JavaThread "pool-3-thread-944" [_thread_blocked, id=5208,
stack(0x69990000,0x699e0000)]
  0x54474400 JavaThread "pool-3-thread-943" [_thread_blocked, id=5200,
stack(0x69940000,0x69990000)]
  0x54472c00 JavaThread "pool-3-thread-942" [_thread_blocked, id=5156,
stack(0x698f0000,0x69940000)]
  0x54471800 JavaThread "pool-3-thread-941" [_thread_blocked, id=5160,
stack(0x698a0000,0x698f0000)]
  0x54470000 JavaThread "pool-3-thread-940" [_thread_blocked, id=5148,
stack(0x69850000,0x698a0000)]
  0x5446ec00 JavaThread "pool-3-thread-939" [_thread_blocked, id=5140,
stack(0x69800000,0x69850000)]
  0x536c8c00 JavaThread "pool-3-thread-938" [_thread_blocked, id=5128,
stack(0x697b0000,0x69800000)]
  0x536c7400 JavaThread "pool-3-thread-937" [_thread_blocked, id=5104,
stack(0x69760000,0x697b0000)]
  0x536c5c00 JavaThread "pool-3-thread-936" [_thread_blocked, id=5076,
stack(0x69710000,0x69760000)]
  0x536c4400 JavaThread "pool-3-thread-935" [_thread_blocked, id=5052,
stack(0x696c0000,0x69710000)]
  0x536c3000 JavaThread "pool-3-thread-934" [_thread_blocked, id=5056,
stack(0x69670000,0x696c0000)]
  0x536c1800 JavaThread "pool-3-thread-933" [_thread_blocked, id=5036,
stack(0x69620000,0x69670000)]
  0x5372e000 JavaThread "pool-3-thread-932" [_thread_blocked, id=5016,
stack(0x695d0000,0x69620000)]
  0x5372c400 JavaThread "pool-3-thread-931" [_thread_blocked, id=5000,
stack(0x69580000,0x695d0000)]
  0x5372ac00 JavaThread "pool-3-thread-930" [_thread_blocked, id=4996,
stack(0x69530000,0x69580000)]
  0x53729800 JavaThread "pool-3-thread-929" [_thread_blocked, id=4956,
stack(0x694e0000,0x69530000)]
  0x53728400 JavaThread "pool-3-thread-928" [_thread_blocked, id=4960,
stack(0x69490000,0x694e0000)]
  0x53e7b000 JavaThread "pool-3-thread-927" [_thread_blocked, id=4940,
stack(0x69440000,0x69490000)]
  0x53e7a000 JavaThread "pool-3-thread-926" [_thread_blocked, id=4916,
stack(0x693f0000,0x69440000)]
  0x53e79400 JavaThread "pool-3-thread-925" [_thread_blocked, id=4920,
stack(0x693a0000,0x693f0000)]
  0x53e77800 JavaThread "pool-3-thread-924" [_thread_blocked, id=4876,
stack(0x69350000,0x693a0000)]
  0x53e76400 JavaThread "pool-3-thread-923" [_thread_blocked, id=4864,
stack(0x69300000,0x69350000)]
  0x53e74c00 JavaThread "pool-3-thread-922" [_thread_blocked, id=4836,
stack(0x692b0000,0x69300000)]
  0x53e73c00 JavaThread "pool-3-thread-921" [_thread_blocked, id=4824,
stack(0x69260000,0x692b0000)]
  0x537abc00 JavaThread "pool-3-thread-920" [_thread_blocked, id=4796,
stack(0x69210000,0x69260000)]
  0x537aa400 JavaThread "pool-3-thread-919" [_thread_blocked, id=4788,
stack(0x691c0000,0x69210000)]
  0x537a9000 JavaThread "pool-3-thread-918" [_thread_blocked, id=4800,
stack(0x69170000,0x691c0000)]
  0x537a7800 JavaThread "pool-3-thread-917" [_thread_blocked, id=4768,
stack(0x69120000,0x69170000)]
  0x537a6400 JavaThread "pool-3-thread-916" [_thread_blocked, id=4764,
stack(0x690d0000,0x69120000)]
  0x53a46c00 JavaThread "pool-3-thread-915" [_thread_blocked, id=4724,
stack(0x69080000,0x690d0000)]
  0x53a46000 JavaThread "pool-3-thread-914" [_thread_blocked, id=4732,
stack(0x69030000,0x69080000)]
  0x53a44400 JavaThread "pool-3-thread-913" [_thread_blocked, id=4692,
stack(0x68fe0000,0x69030000)]
  0x53a41800 JavaThread "pool-3-thread-912" [_thread_blocked, id=4700,
stack(0x68f90000,0x68fe0000)]
  0x53a40400 JavaThread "pool-3-thread-911" [_thread_blocked, id=4704,
stack(0x68f40000,0x68f90000)]
  0x53774c00 JavaThread "pool-3-thread-910" [_thread_blocked, id=4672,
stack(0x68ef0000,0x68f40000)]
  0x53773800 JavaThread "pool-3-thread-909" [_thread_blocked, id=4632,
stack(0x68ea0000,0x68ef0000)]
  0x53772000 JavaThread "pool-3-thread-908" [_thread_blocked, id=4640,
stack(0x68e50000,0x68ea0000)]
  0x53770800 JavaThread "pool-3-thread-907" [_thread_blocked, id=4628,
stack(0x68e00000,0x68e50000)]
  0x5376f000 JavaThread "pool-3-thread-906" [_thread_blocked, id=4604,
stack(0x68db0000,0x68e00000)]
  0x5376dc00 JavaThread "pool-3-thread-905" [_thread_blocked, id=4612,
stack(0x68d60000,0x68db0000)]
  0x54c5fc00 JavaThread "pool-3-thread-904" [_thread_blocked, id=4584,
stack(0x68d10000,0x68d60000)]
  0x54c5e400 JavaThread "pool-3-thread-903" [_thread_blocked, id=4564,
stack(0x68cc0000,0x68d10000)]
  0x54c5d000 JavaThread "pool-3-thread-902" [_thread_blocked, id=4552,
stack(0x68c70000,0x68cc0000)]
  0x54c5b800 JavaThread "pool-3-thread-901" [_thread_blocked, id=4544,
stack(0x68c20000,0x68c70000)]
  0x54c5a400 JavaThread "pool-3-thread-900" [_thread_blocked, id=4536,
stack(0x68bd0000,0x68c20000)]
  0x54c59000 JavaThread "pool-3-thread-899" [_thread_blocked, id=4512,
stack(0x68b80000,0x68bd0000)]
  0x5334f800 JavaThread "pool-3-thread-898" [_thread_blocked, id=4480,
stack(0x68b30000,0x68b80000)]
  0x5334e400 JavaThread "pool-3-thread-897" [_thread_blocked, id=4472,
stack(0x68ae0000,0x68b30000)]
  0x5334cc00 JavaThread "pool-3-thread-896" [_thread_blocked, id=4444,
stack(0x68a90000,0x68ae0000)]
  0x5334b400 JavaThread "pool-3-thread-895" [_thread_blocked, id=4452,
stack(0x68a40000,0x68a90000)]
  0x53349c00 JavaThread "pool-3-thread-894" [_thread_blocked, id=4420,
stack(0x689f0000,0x68a40000)]
  0x5323b400 JavaThread "pool-3-thread-893" [_thread_blocked, id=4408,
stack(0x689a0000,0x689f0000)]
  0x53239c00 JavaThread "pool-3-thread-892" [_thread_blocked, id=4388,
stack(0x68950000,0x689a0000)]
  0x53238800 JavaThread "pool-3-thread-891" [_thread_blocked, id=4364,
stack(0x68900000,0x68950000)]
  0x53237000 JavaThread "pool-3-thread-890" [_thread_blocked, id=4352,
stack(0x688b0000,0x68900000)]
  0x53235c00 JavaThread "pool-3-thread-889" [_thread_blocked, id=4304,
stack(0x68860000,0x688b0000)]
  0x53234400 JavaThread "pool-3-thread-888" [_thread_blocked, id=4320,
stack(0x68810000,0x68860000)]
  0x53a3d400 JavaThread "pool-3-thread-887" [_thread_blocked, id=4300,
stack(0x687c0000,0x68810000)]
  0x53a3bc00 JavaThread "pool-3-thread-886" [_thread_blocked, id=4292,
stack(0x68770000,0x687c0000)]
  0x53a3a800 JavaThread "pool-3-thread-885" [_thread_blocked, id=4248,
stack(0x68720000,0x68770000)]
  0x53a39000 JavaThread "pool-3-thread-884" [_thread_blocked, id=4252,
stack(0x686d0000,0x68720000)]
  0x53a37800 JavaThread "pool-3-thread-883" [_thread_blocked, id=4216,
stack(0x68680000,0x686d0000)]
  0x53709800 JavaThread "pool-3-thread-882" [_thread_blocked, id=4212,
stack(0x68630000,0x68680000)]
  0x53708000 JavaThread "pool-3-thread-881" [_thread_blocked, id=4184,
stack(0x685e0000,0x68630000)]
  0x53706c00 JavaThread "pool-3-thread-880" [_thread_blocked, id=4180,
stack(0x68590000,0x685e0000)]
  0x53705400 JavaThread "pool-3-thread-879" [_thread_blocked, id=4168,
stack(0x68540000,0x68590000)]
  0x53703c00 JavaThread "pool-3-thread-878" [_thread_blocked, id=4132,
stack(0x684f0000,0x68540000)]
  0x53702800 JavaThread "pool-3-thread-877" [_thread_blocked, id=4140,
stack(0x684a0000,0x684f0000)]
  0x536f1800 JavaThread "pool-3-thread-876" [_thread_blocked, id=4124,
stack(0x68450000,0x684a0000)]
  0x53a64c00 JavaThread "pool-3-thread-875" [_thread_blocked, id=4100,
stack(0x68400000,0x68450000)]
  0x53a63400 JavaThread "pool-3-thread-874" [_thread_blocked, id=2380,
stack(0x683b0000,0x68400000)]
  0x53a62400 JavaThread "pool-3-thread-873" [_thread_blocked, id=712,
stack(0x68360000,0x683b0000)]
  0x53a47800 JavaThread "pool-3-thread-872" [_thread_blocked, id=2632,
stack(0x68310000,0x68360000)]
  0x53a3e800 JavaThread "pool-3-thread-871" [_thread_blocked, id=2520,
stack(0x682c0000,0x68310000)]
  0x53a35400 JavaThread "pool-3-thread-870" [_thread_blocked, id=3712,
stack(0x68270000,0x682c0000)]
  0x53a34000 JavaThread "pool-3-thread-869" [_thread_blocked, id=3148,
stack(0x68220000,0x68270000)]
  0x53a32800 JavaThread "pool-3-thread-868" [_thread_blocked, id=868,
stack(0x681d0000,0x68220000)]
  0x53a31400 JavaThread "pool-3-thread-867" [_thread_blocked, id=632,
stack(0x68180000,0x681d0000)]
  0x53a25000 JavaThread "pool-3-thread-866" [_thread_blocked, id=656,
stack(0x68130000,0x68180000)]
  0x53a22400 JavaThread "pool-3-thread-865" [_thread_blocked, id=4020,
stack(0x680e0000,0x68130000)]
  0x53a20c00 JavaThread "pool-3-thread-864" [_thread_blocked, id=1584,
stack(0x68090000,0x680e0000)]
  0x53a1f400 JavaThread "pool-3-thread-863" [_thread_blocked, id=3268,
stack(0x68040000,0x68090000)]
  0x53a1dc00 JavaThread "pool-3-thread-862" [_thread_blocked, id=3860,
stack(0x67f70000,0x67fc0000)]
  0x53a1c800 JavaThread "pool-3-thread-861" [_thread_blocked, id=1896,
stack(0x67f20000,0x67f70000)]
  0x53a1ac00 JavaThread "pool-3-thread-860" [_thread_blocked, id=2856,
stack(0x67ed0000,0x67f20000)]
  0x53a19000 JavaThread "pool-3-thread-859" [_thread_blocked, id=1284,
stack(0x67e80000,0x67ed0000)]
  0x53a17c00 JavaThread "pool-3-thread-858" [_thread_blocked, id=3144,
stack(0x67e30000,0x67e80000)]
  0x53a16800 JavaThread "pool-3-thread-857" [_thread_blocked, id=3580,
stack(0x67de0000,0x67e30000)]
  0x53a15000 JavaThread "pool-3-thread-856" [_thread_blocked, id=496,
stack(0x67d90000,0x67de0000)]
  0x53a13800 JavaThread "pool-3-thread-855" [_thread_blocked, id=532,
stack(0x67d40000,0x67d90000)]
  0x53a12400 JavaThread "pool-3-thread-854" [_thread_blocked, id=3448,
stack(0x67cf0000,0x67d40000)]
  0x53a10c00 JavaThread "pool-3-thread-853" [_thread_blocked, id=1256,
stack(0x67ca0000,0x67cf0000)]
  0x53a0f400 JavaThread "pool-3-thread-852" [_thread_blocked, id=3588,
stack(0x67c50000,0x67ca0000)]
  0x53a30400 JavaThread "pool-3-thread-851" [_thread_blocked, id=3800,
stack(0x67c00000,0x67c50000)]
  0x53a2ec00 JavaThread "pool-3-thread-850" [_thread_blocked, id=256,
stack(0x67bb0000,0x67c00000)]
  0x53a2d400 JavaThread "pool-3-thread-849" [_thread_blocked, id=1948,
stack(0x67b60000,0x67bb0000)]
  0x53a2bc00 JavaThread "pool-3-thread-848" [_thread_blocked, id=2180,
stack(0x67b10000,0x67b60000)]
  0x53a2a800 JavaThread "pool-3-thread-847" [_thread_blocked, id=968,
stack(0x67ac0000,0x67b10000)]
  0x53a29000 JavaThread "pool-3-thread-846" [_thread_blocked, id=1456,
stack(0x67a70000,0x67ac0000)]
  0x53a27c00 JavaThread "pool-3-thread-845" [_thread_blocked, id=1368,
stack(0x67a20000,0x67a70000)]
  0x53a27000 JavaThread "pool-3-thread-844" [_thread_blocked, id=2776,
stack(0x679d0000,0x67a20000)]
  0x53a26000 JavaThread "pool-3-thread-843" [_thread_blocked, id=3952,
stack(0x67980000,0x679d0000)]
  0x53a0d400 JavaThread "pool-3-thread-842" [_thread_blocked, id=848,
stack(0x67930000,0x67980000)]
  0x53a0c000 JavaThread "pool-3-thread-841" [_thread_blocked, id=3520,
stack(0x678e0000,0x67930000)]
  0x53a0ac00 JavaThread "pool-3-thread-840" [_thread_blocked, id=724,
stack(0x67890000,0x678e0000)]
  0x53a09400 JavaThread "pool-3-thread-839" [_thread_blocked, id=2204,
stack(0x67840000,0x67890000)]
  0x53a06c00 JavaThread "pool-3-thread-838" [_thread_blocked, id=3272,
stack(0x677f0000,0x67840000)]
  0x53a05400 JavaThread "pool-3-thread-837" [_thread_blocked, id=3508,
stack(0x677a0000,0x677f0000)]
  0x53a03c00 JavaThread "pool-3-thread-836" [_thread_blocked, id=2824,
stack(0x67750000,0x677a0000)]
  0x53a02800 JavaThread "pool-3-thread-835" [_thread_blocked, id=4084,
stack(0x67700000,0x67750000)]
  0x53a01000 JavaThread "pool-3-thread-834" [_thread_blocked, id=2956,
stack(0x676b0000,0x67700000)]
  0x539ff800 JavaThread "pool-3-thread-833" [_thread_blocked, id=1856,
stack(0x67660000,0x676b0000)]
  0x539fe000 JavaThread "pool-3-thread-832" [_thread_blocked, id=3876,
stack(0x67610000,0x67660000)]
  0x539fc800 JavaThread "pool-3-thread-831" [_thread_blocked, id=3420,
stack(0x675c0000,0x67610000)]
  0x539fb400 JavaThread "pool-3-thread-830" [_thread_blocked, id=3908,
stack(0x67570000,0x675c0000)]
  0x539f9c00 JavaThread "pool-3-thread-829" [_thread_blocked, id=144,
stack(0x67520000,0x67570000)]
  0x539f8400 JavaThread "pool-3-thread-828" [_thread_blocked, id=1596,
stack(0x674d0000,0x67520000)]
  0x539f6c00 JavaThread "pool-3-thread-827" [_thread_blocked, id=3156,
stack(0x67480000,0x674d0000)]
  0x539f5800 JavaThread "pool-3-thread-826" [_thread_blocked, id=216,
stack(0x67430000,0x67480000)]
  0x539f4000 JavaThread "pool-3-thread-825" [_thread_blocked, id=2848,
stack(0x673e0000,0x67430000)]
  0x539f2800 JavaThread "pool-3-thread-824" [_thread_blocked, id=588,
stack(0x67390000,0x673e0000)]
  0x539f1400 JavaThread "pool-3-thread-823" [_thread_blocked, id=3692,
stack(0x67340000,0x67390000)]
  0x539efc00 JavaThread "pool-3-thread-822" [_thread_blocked, id=1260,
stack(0x672f0000,0x67340000)]
  0x539ee800 JavaThread "pool-3-thread-821" [_thread_blocked, id=1532,
stack(0x672a0000,0x672f0000)]
  0x539ed000 JavaThread "pool-3-thread-820" [_thread_blocked, id=1956,
stack(0x67250000,0x672a0000)]
  0x539eb800 JavaThread "pool-3-thread-819" [_thread_blocked, id=660,
stack(0x67200000,0x67250000)]
  0x539ea000 JavaThread "pool-3-thread-818" [_thread_blocked, id=1696,
stack(0x671b0000,0x67200000)]
  0x539e8c00 JavaThread "pool-3-thread-817" [_thread_blocked, id=1044,
stack(0x67160000,0x671b0000)]
  0x539e7000 JavaThread "pool-3-thread-816" [_thread_blocked, id=3084,
stack(0x67110000,0x67160000)]
  0x539e5800 JavaThread "pool-3-thread-815" [_thread_blocked, id=2172,
stack(0x670c0000,0x67110000)]
  0x539e4400 JavaThread "pool-3-thread-814" [_thread_blocked, id=2556,
stack(0x67070000,0x670c0000)]
  0x539e1000 JavaThread "pool-3-thread-813" [_thread_blocked, id=3568,
stack(0x67020000,0x67070000)]
  0x539df800 JavaThread "pool-3-thread-812" [_thread_blocked, id=2264,
stack(0x66fd0000,0x67020000)]
  0x539de000 JavaThread "pool-3-thread-811" [_thread_blocked, id=336,
stack(0x66f80000,0x66fd0000)]
  0x539dcc00 JavaThread "pool-3-thread-810" [_thread_blocked, id=10764,
stack(0x66f30000,0x66f80000)]
  0x539db800 JavaThread "pool-3-thread-809" [_thread_blocked, id=10760,
stack(0x66ee0000,0x66f30000)]
  0x539da000 JavaThread "pool-3-thread-808" [_thread_blocked, id=10740,
stack(0x66e90000,0x66ee0000)]
  0x539d8800 JavaThread "pool-3-thread-807" [_thread_blocked, id=10756,
stack(0x66e40000,0x66e90000)]
  0x539d7400 JavaThread "pool-3-thread-806" [_thread_blocked, id=10732,
stack(0x66df0000,0x66e40000)]
  0x539d5c00 JavaThread "pool-3-thread-805" [_thread_blocked, id=10724,
stack(0x66da0000,0x66df0000)]
  0x539d4400 JavaThread "pool-3-thread-804" [_thread_blocked, id=10708,
stack(0x66d50000,0x66da0000)]
  0x539d2c00 JavaThread "pool-3-thread-803" [_thread_blocked, id=10704,
stack(0x66d00000,0x66d50000)]
  0x539d1400 JavaThread "pool-3-thread-802" [_thread_blocked, id=10688,
stack(0x66cb0000,0x66d00000)]
  0x539d0000 JavaThread "pool-3-thread-801" [_thread_blocked, id=10672,
stack(0x66c60000,0x66cb0000)]
  0x539ce800 JavaThread "pool-3-thread-800" [_thread_blocked, id=10680,
stack(0x66c10000,0x66c60000)]
  0x539cd000 JavaThread "pool-3-thread-799" [_thread_blocked, id=10664,
stack(0x66bc0000,0x66c10000)]
  0x539cbc00 JavaThread "pool-3-thread-798" [_thread_blocked, id=10676,
stack(0x66b70000,0x66bc0000)]
  0x539ca400 JavaThread "pool-3-thread-797" [_thread_blocked, id=10648,
stack(0x66b20000,0x66b70000)]
  0x539c9000 JavaThread "pool-3-thread-796" [_thread_blocked, id=10652,
stack(0x66ad0000,0x66b20000)]
  0x539c7800 JavaThread "pool-3-thread-795" [_thread_blocked, id=10624,
stack(0x66a80000,0x66ad0000)]
  0x539c6000 JavaThread "pool-3-thread-794" [_thread_blocked, id=10616,
stack(0x66a30000,0x66a80000)]
  0x539c4800 JavaThread "pool-3-thread-793" [_thread_blocked, id=10620,
stack(0x669e0000,0x66a30000)]
  0x539c3000 JavaThread "pool-3-thread-792" [_thread_blocked, id=10604,
stack(0x66990000,0x669e0000)]
  0x539c1c00 JavaThread "pool-3-thread-791" [_thread_blocked, id=10600,
stack(0x66940000,0x66990000)]
  0x539c0400 JavaThread "pool-3-thread-790" [_thread_blocked, id=10584,
stack(0x668f0000,0x66940000)]
  0x539bf000 JavaThread "pool-3-thread-789" [_thread_blocked, id=10572,
stack(0x668a0000,0x668f0000)]
  0x539bd800 JavaThread "pool-3-thread-788" [_thread_blocked, id=10580,
stack(0x66850000,0x668a0000)]
  0x539bb000 JavaThread "pool-3-thread-787" [_thread_blocked, id=10576,
stack(0x66800000,0x66850000)]
  0x539b9800 JavaThread "pool-3-thread-786" [_thread_blocked, id=10564,
stack(0x667b0000,0x66800000)]
  0x539b8400 JavaThread "pool-3-thread-785" [_thread_blocked, id=10548,
stack(0x66760000,0x667b0000)]
  0x539b6c00 JavaThread "pool-3-thread-784" [_thread_blocked, id=10544,
stack(0x66710000,0x66760000)]
  0x539b5400 JavaThread "pool-3-thread-783" [_thread_blocked, id=10528,
stack(0x666c0000,0x66710000)]
  0x539b3c00 JavaThread "pool-3-thread-782" [_thread_blocked, id=10496,
stack(0x66670000,0x666c0000)]
  0x539b2400 JavaThread "pool-3-thread-781" [_thread_blocked, id=10492,
stack(0x66620000,0x66670000)]
  0x539b1000 JavaThread "pool-3-thread-780" [_thread_blocked, id=10484,
stack(0x665d0000,0x66620000)]
  0x539af800 JavaThread "pool-3-thread-779" [_thread_blocked, id=10472,
stack(0x66580000,0x665d0000)]
  0x539ae000 JavaThread "pool-3-thread-778" [_thread_blocked, id=10468,
stack(0x66530000,0x66580000)]
  0x539acc00 JavaThread "pool-3-thread-777" [_thread_blocked, id=10452,
stack(0x664e0000,0x66530000)]
  0x539ab400 JavaThread "pool-3-thread-776" [_thread_blocked, id=10456,
stack(0x66490000,0x664e0000)]
  0x539aa000 JavaThread "pool-3-thread-775" [_thread_blocked, id=10436,
stack(0x66440000,0x66490000)]
  0x539a8400 JavaThread "pool-3-thread-774" [_thread_blocked, id=10420,
stack(0x663f0000,0x66440000)]
  0x539a7000 JavaThread "pool-3-thread-773" [_thread_blocked, id=10424,
stack(0x663a0000,0x663f0000)]
  0x539a5400 JavaThread "pool-3-thread-772" [_thread_blocked, id=10412,
stack(0x66350000,0x663a0000)]
  0x539a4000 JavaThread "pool-3-thread-771" [_thread_blocked, id=10392,
stack(0x66300000,0x66350000)]
  0x539a2c00 JavaThread "pool-3-thread-770" [_thread_blocked, id=10388,
stack(0x662b0000,0x66300000)]
  0x539a1400 JavaThread "pool-3-thread-769" [_thread_blocked, id=10384,
stack(0x66260000,0x662b0000)]
  0x5399fc00 JavaThread "pool-3-thread-768" [_thread_blocked, id=10372,
stack(0x66210000,0x66260000)]
  0x5399e800 JavaThread "pool-3-thread-767" [_thread_blocked, id=10352,
stack(0x661c0000,0x66210000)]
  0x5399d000 JavaThread "pool-3-thread-766" [_thread_blocked, id=10364,
stack(0x66170000,0x661c0000)]
  0x5399b800 JavaThread "pool-3-thread-765" [_thread_blocked, id=10356,
stack(0x66120000,0x66170000)]
  0x5399a400 JavaThread "pool-3-thread-764" [_thread_blocked, id=10340,
stack(0x660d0000,0x66120000)]
  0x53998c00 JavaThread "pool-3-thread-763" [_thread_blocked, id=10324,
stack(0x66080000,0x660d0000)]
  0x53997800 JavaThread "pool-3-thread-762" [_thread_blocked, id=10316,
stack(0x66030000,0x66080000)]
  0x53995c00 JavaThread "pool-3-thread-761" [_thread_blocked, id=10304,
stack(0x65fe0000,0x66030000)]
  0x53994400 JavaThread "pool-3-thread-760" [_thread_blocked, id=10284,
stack(0x65f90000,0x65fe0000)]
  0x53993000 JavaThread "pool-3-thread-759" [_thread_blocked, id=10276,
stack(0x65f40000,0x65f90000)]
  0x53991800 JavaThread "pool-3-thread-758" [_thread_blocked, id=10280,
stack(0x65ef0000,0x65f40000)]
  0x53990400 JavaThread "pool-3-thread-757" [_thread_blocked, id=10264,
stack(0x65ea0000,0x65ef0000)]
  0x5398ec00 JavaThread "pool-3-thread-756" [_thread_blocked, id=10252,
stack(0x65e50000,0x65ea0000)]
  0x5398d400 JavaThread "pool-3-thread-755" [_thread_blocked, id=10236,
stack(0x65e00000,0x65e50000)]
  0x5398c000 JavaThread "pool-3-thread-754" [_thread_blocked, id=10228,
stack(0x65db0000,0x65e00000)]
  0x5398a400 JavaThread "pool-3-thread-753" [_thread_blocked, id=10224,
stack(0x65d60000,0x65db0000)]
  0x53989000 JavaThread "pool-3-thread-752" [_thread_blocked, id=10212,
stack(0x65d10000,0x65d60000)]
  0x53987800 JavaThread "pool-3-thread-751" [_thread_blocked, id=10216,
stack(0x65cc0000,0x65d10000)]
  0x53986400 JavaThread "pool-3-thread-750" [_thread_blocked, id=10204,
stack(0x65c70000,0x65cc0000)]
  0x53984c00 JavaThread "pool-3-thread-749" [_thread_blocked, id=10200,
stack(0x65c20000,0x65c70000)]
  0x53983400 JavaThread "pool-3-thread-748" [_thread_blocked, id=10192,
stack(0x65bd0000,0x65c20000)]
  0x53981c00 JavaThread "pool-3-thread-747" [_thread_blocked, id=10172,
stack(0x65b80000,0x65bd0000)]
  0x53980800 JavaThread "pool-3-thread-746" [_thread_blocked, id=10168,
stack(0x65b30000,0x65b80000)]
  0x5397f000 JavaThread "pool-3-thread-745" [_thread_blocked, id=10152,
stack(0x65ae0000,0x65b30000)]
  0x5397dc00 JavaThread "pool-3-thread-744" [_thread_blocked, id=10156,
stack(0x65a90000,0x65ae0000)]
  0x5397c400 JavaThread "pool-3-thread-743" [_thread_blocked, id=10148,
stack(0x65a40000,0x65a90000)]
  0x5397ac00 JavaThread "pool-3-thread-742" [_thread_blocked, id=10140,
stack(0x659f0000,0x65a40000)]
  0x53979400 JavaThread "pool-3-thread-741" [_thread_blocked, id=10124,
stack(0x659a0000,0x659f0000)]
  0x53977c00 JavaThread "pool-3-thread-740" [_thread_blocked, id=10128,
stack(0x65950000,0x659a0000)]
  0x53976400 JavaThread "pool-3-thread-739" [_thread_blocked, id=10132,
stack(0x65900000,0x65950000)]
  0x53975000 JavaThread "pool-3-thread-738" [_thread_blocked, id=10116,
stack(0x658b0000,0x65900000)]
  0x53973800 JavaThread "pool-3-thread-737" [_thread_blocked, id=10120,
stack(0x65860000,0x658b0000)]
  0x53972000 JavaThread "pool-3-thread-736" [_thread_blocked, id=10092,
stack(0x65810000,0x65860000)]
  0x53970c00 JavaThread "pool-3-thread-735" [_thread_blocked, id=10104,
stack(0x657c0000,0x65810000)]
  0x5396f400 JavaThread "pool-3-thread-734" [_thread_blocked, id=10088,
stack(0x65770000,0x657c0000)]
  0x5396dc00 JavaThread "pool-3-thread-733" [_thread_blocked, id=10096,
stack(0x65720000,0x65770000)]
  0x5396c800 JavaThread "pool-3-thread-732" [_thread_blocked, id=10084,
stack(0x656d0000,0x65720000)]
  0x5396b000 JavaThread "pool-3-thread-731" [_thread_blocked, id=10080,
stack(0x65680000,0x656d0000)]
  0x53969c00 JavaThread "pool-3-thread-730" [_thread_blocked, id=10052,
stack(0x65630000,0x65680000)]
  0x53968000 JavaThread "pool-3-thread-729" [_thread_blocked, id=10048,
stack(0x655e0000,0x65630000)]
  0x53966800 JavaThread "pool-3-thread-728" [_thread_blocked, id=10060,
stack(0x65590000,0x655e0000)]
  0x53965400 JavaThread "pool-3-thread-727" [_thread_blocked, id=10044,
stack(0x65540000,0x65590000)]
  0x53963c00 JavaThread "pool-3-thread-726" [_thread_blocked, id=10032,
stack(0x654f0000,0x65540000)]
  0x53962800 JavaThread "pool-3-thread-725" [_thread_blocked, id=10036,
stack(0x654a0000,0x654f0000)]
  0x53961000 JavaThread "pool-3-thread-724" [_thread_blocked, id=10028,
stack(0x65450000,0x654a0000)]
  0x5395fc00 JavaThread "pool-3-thread-723" [_thread_blocked, id=10016,
stack(0x65400000,0x65450000)]
  0x5395e400 JavaThread "pool-3-thread-722" [_thread_blocked, id=10008,
stack(0x653b0000,0x65400000)]
  0x5395cc00 JavaThread "pool-3-thread-721" [_thread_blocked, id=9996,
stack(0x65360000,0x653b0000)]
  0x5395b800 JavaThread "pool-3-thread-720" [_thread_blocked, id=9992,
stack(0x65310000,0x65360000)]
  0x5395ac00 JavaThread "pool-3-thread-719" [_thread_blocked, id=9988,
stack(0x652c0000,0x65310000)]
  0x53959c00 JavaThread "pool-3-thread-718" [_thread_blocked, id=9968,
stack(0x65270000,0x652c0000)]
  0x53958400 JavaThread "pool-3-thread-717" [_thread_blocked, id=9964,
stack(0x65220000,0x65270000)]
  0x53957000 JavaThread "pool-3-thread-716" [_thread_blocked, id=9948,
stack(0x651d0000,0x65220000)]
  0x53954000 JavaThread "pool-3-thread-715" [_thread_blocked, id=9924,
stack(0x65180000,0x651d0000)]
  0x53952800 JavaThread "pool-3-thread-714" [_thread_blocked, id=9928,
stack(0x65130000,0x65180000)]
  0x53951400 JavaThread "pool-3-thread-713" [_thread_blocked, id=9912,
stack(0x650e0000,0x65130000)]
  0x5394fc00 JavaThread "pool-3-thread-712" [_thread_blocked, id=9904,
stack(0x65090000,0x650e0000)]
  0x5394e400 JavaThread "pool-3-thread-711" [_thread_blocked, id=9900,
stack(0x65040000,0x65090000)]
  0x5394cc00 JavaThread "pool-3-thread-710" [_thread_blocked, id=9896,
stack(0x64ff0000,0x65040000)]
  0x5394b800 JavaThread "pool-3-thread-709" [_thread_blocked, id=9884,
stack(0x64fa0000,0x64ff0000)]
  0x5394a000 JavaThread "pool-3-thread-708" [_thread_blocked, id=9868,
stack(0x64f50000,0x64fa0000)]
  0x53948c00 JavaThread "pool-3-thread-707" [_thread_blocked, id=9844,
stack(0x64f00000,0x64f50000)]
  0x53947400 JavaThread "pool-3-thread-706" [_thread_blocked, id=9840,
stack(0x64eb0000,0x64f00000)]
  0x53945c00 JavaThread "pool-3-thread-705" [_thread_blocked, id=9836,
stack(0x64e60000,0x64eb0000)]
  0x53944400 JavaThread "pool-3-thread-704" [_thread_blocked, id=9828,
stack(0x64e10000,0x64e60000)]
  0x53943000 JavaThread "pool-3-thread-703" [_thread_blocked, id=9816,
stack(0x64dc0000,0x64e10000)]
  0x53941800 JavaThread "pool-3-thread-702" [_thread_blocked, id=9804,
stack(0x64d70000,0x64dc0000)]
  0x53940400 JavaThread "pool-3-thread-701" [_thread_blocked, id=9796,
stack(0x64d20000,0x64d70000)]
  0x5393ec00 JavaThread "pool-3-thread-700" [_thread_blocked, id=9792,
stack(0x64cd0000,0x64d20000)]
  0x5393d800 JavaThread "pool-3-thread-699" [_thread_blocked, id=9784,
stack(0x64c80000,0x64cd0000)]
  0x5393c000 JavaThread "pool-3-thread-698" [_thread_blocked, id=9768,
stack(0x64c30000,0x64c80000)]
  0x5393a800 JavaThread "pool-3-thread-697" [_thread_blocked, id=9756,
stack(0x64be0000,0x64c30000)]
  0x53939000 JavaThread "pool-3-thread-696" [_thread_blocked, id=9760,
stack(0x64b90000,0x64be0000)]
  0x53937c00 JavaThread "pool-3-thread-695" [_thread_blocked, id=9740,
stack(0x64b40000,0x64b90000)]
  0x53936400 JavaThread "pool-3-thread-694" [_thread_blocked, id=9744,
stack(0x64af0000,0x64b40000)]
  0x53934c00 JavaThread "pool-3-thread-693" [_thread_blocked, id=9724,
stack(0x64aa0000,0x64af0000)]
  0x53933400 JavaThread "pool-3-thread-692" [_thread_blocked, id=9732,
stack(0x64a50000,0x64aa0000)]
  0x53932000 JavaThread "pool-3-thread-691" [_thread_blocked, id=9716,
stack(0x64a00000,0x64a50000)]
  0x53930800 JavaThread "pool-3-thread-690" [_thread_blocked, id=9728,
stack(0x649b0000,0x64a00000)]
  0x5392f000 JavaThread "pool-3-thread-689" [_thread_blocked, id=9720,
stack(0x64960000,0x649b0000)]
  0x5392dc00 JavaThread "pool-3-thread-688" [_thread_blocked, id=9704,
stack(0x64910000,0x64960000)]
  0x5392c400 JavaThread "pool-3-thread-687" [_thread_blocked, id=9684,
stack(0x648c0000,0x64910000)]
  0x5392ac00 JavaThread "pool-3-thread-686" [_thread_blocked, id=9692,
stack(0x64870000,0x648c0000)]
  0x53929800 JavaThread "pool-3-thread-685" [_thread_blocked, id=9676,
stack(0x64820000,0x64870000)]
  0x53927c00 JavaThread "pool-3-thread-684" [_thread_blocked, id=9664,
stack(0x647d0000,0x64820000)]
  0x53926400 JavaThread "pool-3-thread-683" [_thread_blocked, id=9652,
stack(0x64780000,0x647d0000)]
  0x53925000 JavaThread "pool-3-thread-682" [_thread_blocked, id=9656,
stack(0x64730000,0x64780000)]
  0x53923800 JavaThread "pool-3-thread-681" [_thread_blocked, id=9648,
stack(0x646e0000,0x64730000)]
  0x53922400 JavaThread "pool-3-thread-680" [_thread_blocked, id=9628,
stack(0x64690000,0x646e0000)]
  0x53921000 JavaThread "pool-3-thread-679" [_thread_blocked, id=9612,
stack(0x64640000,0x64690000)]
  0x53920400 JavaThread "pool-3-thread-678" [_thread_blocked, id=9592,
stack(0x645f0000,0x64640000)]
  0x5391f400 JavaThread "pool-3-thread-677" [_thread_blocked, id=9580,
stack(0x645a0000,0x645f0000)]
  0x5391dc00 JavaThread "pool-3-thread-676" [_thread_blocked, id=9584,
stack(0x64550000,0x645a0000)]
  0x5391c800 JavaThread "pool-3-thread-675" [_thread_blocked, id=9572,
stack(0x64500000,0x64550000)]
  0x5390f800 JavaThread "pool-3-thread-674" [_thread_blocked, id=9564,
stack(0x644b0000,0x64500000)]
  0x5390e400 JavaThread "pool-3-thread-673" [_thread_blocked, id=9560,
stack(0x64460000,0x644b0000)]
  0x5390d400 JavaThread "pool-3-thread-672" [_thread_blocked, id=9556,
stack(0x64410000,0x64460000)]
  0x5390a800 JavaThread "pool-3-thread-671" [_thread_blocked, id=9548,
stack(0x643c0000,0x64410000)]
  0x53909000 JavaThread "pool-3-thread-670" [_thread_blocked, id=9532,
stack(0x64370000,0x643c0000)]
  0x53907800 JavaThread "pool-3-thread-669" [_thread_blocked, id=9540,
stack(0x64320000,0x64370000)]
  0x53906000 JavaThread "pool-3-thread-668" [_thread_blocked, id=9512,
stack(0x642d0000,0x64320000)]
  0x53904800 JavaThread "pool-3-thread-667" [_thread_blocked, id=9496,
stack(0x64280000,0x642d0000)]
  0x53903400 JavaThread "pool-3-thread-666" [_thread_blocked, id=9492,
stack(0x64230000,0x64280000)]
  0x53901c00 JavaThread "pool-3-thread-665" [_thread_blocked, id=9484,
stack(0x641e0000,0x64230000)]
  0x53900400 JavaThread "pool-3-thread-664" [_thread_blocked, id=9472,
stack(0x64190000,0x641e0000)]
  0x538ff000 JavaThread "pool-3-thread-663" [_thread_blocked, id=9480,
stack(0x64140000,0x64190000)]
  0x538fd800 JavaThread "pool-3-thread-662" [_thread_blocked, id=9460,
stack(0x640f0000,0x64140000)]
  0x538fc000 JavaThread "pool-3-thread-661" [_thread_blocked, id=9476,
stack(0x640a0000,0x640f0000)]
  0x538fac00 JavaThread "pool-3-thread-660" [_thread_blocked, id=9464,
stack(0x64050000,0x640a0000)]
  0x538f9400 JavaThread "pool-3-thread-659" [_thread_blocked, id=9448,
stack(0x64000000,0x64050000)]
  0x538f7c00 JavaThread "pool-3-thread-658" [_thread_blocked, id=9428,
stack(0x63fb0000,0x64000000)]
  0x538f6400 JavaThread "pool-3-thread-657" [_thread_blocked, id=9416,
stack(0x63f60000,0x63fb0000)]
  0x538f5000 JavaThread "pool-3-thread-656" [_thread_blocked, id=9408,
stack(0x63f10000,0x63f60000)]
  0x538f3400 JavaThread "pool-3-thread-655" [_thread_blocked, id=9396,
stack(0x63ec0000,0x63f10000)]
  0x538f1c00 JavaThread "pool-3-thread-654" [_thread_blocked, id=9380,
stack(0x63e70000,0x63ec0000)]
  0x538f0800 JavaThread "pool-3-thread-653" [_thread_blocked, id=9388,
stack(0x63e20000,0x63e70000)]
  0x538eec00 JavaThread "pool-3-thread-652" [_thread_blocked, id=9376,
stack(0x63dd0000,0x63e20000)]
  0x538ed800 JavaThread "pool-3-thread-651" [_thread_blocked, id=9360,
stack(0x63d80000,0x63dd0000)]
  0x538ec400 JavaThread "pool-3-thread-650" [_thread_blocked, id=9352,
stack(0x63d30000,0x63d80000)]
  0x538eac00 JavaThread "pool-3-thread-649" [_thread_blocked, id=9336,
stack(0x63ce0000,0x63d30000)]
  0x538e9800 JavaThread "pool-3-thread-648" [_thread_blocked, id=9332,
stack(0x63c90000,0x63ce0000)]
  0x538e8000 JavaThread "pool-3-thread-647" [_thread_blocked, id=9328,
stack(0x63c40000,0x63c90000)]
  0x538e6c00 JavaThread "pool-3-thread-646" [_thread_blocked, id=9312,
stack(0x63bf0000,0x63c40000)]
  0x538e5000 JavaThread "pool-3-thread-645" [_thread_blocked, id=9308,
stack(0x63ba0000,0x63bf0000)]
  0x538e3c00 JavaThread "pool-3-thread-644" [_thread_blocked, id=9304,
stack(0x63b50000,0x63ba0000)]
  0x538e2800 JavaThread "pool-3-thread-643" [_thread_blocked, id=9292,
stack(0x63b00000,0x63b50000)]
  0x538e0c00 JavaThread "pool-3-thread-642" [_thread_blocked, id=9296,
stack(0x63ab0000,0x63b00000)]
  0x538df400 JavaThread "pool-3-thread-641" [_thread_blocked, id=9280,
stack(0x63a60000,0x63ab0000)]
  0x538de000 JavaThread "pool-3-thread-640" [_thread_blocked, id=9276,
stack(0x63a10000,0x63a60000)]
  0x538dc800 JavaThread "pool-3-thread-639" [_thread_blocked, id=9268,
stack(0x639c0000,0x63a10000)]
  0x538db400 JavaThread "pool-3-thread-638" [_thread_blocked, id=9260,
stack(0x63970000,0x639c0000)]
  0x538da800 JavaThread "pool-3-thread-637" [_thread_blocked, id=9236,
stack(0x63920000,0x63970000)]
  0x538d9c00 JavaThread "pool-3-thread-636" [_thread_blocked, id=9228,
stack(0x638d0000,0x63920000)]
  0x5485f400 JavaThread "pool-3-thread-635" [_thread_blocked, id=9232,
stack(0x55410000,0x55460000)]
  0x548f7400 JavaThread "pool-3-thread-634" [_thread_blocked, id=9216,
stack(0x553c0000,0x55410000)]
  0x538d6c00 JavaThread "pool-3-thread-633" [_thread_blocked, id=9196,
stack(0x63880000,0x638d0000)]
  0x538d5400 JavaThread "pool-3-thread-632" [_thread_blocked, id=9208,
stack(0x63830000,0x63880000)]
  0x538d4000 JavaThread "pool-3-thread-631" [_thread_blocked, id=9200,
stack(0x637e0000,0x63830000)]
  0x538d2c00 JavaThread "pool-3-thread-630" [_thread_blocked, id=9192,
stack(0x63790000,0x637e0000)]
  0x538d0c00 JavaThread "pool-3-thread-629" [_thread_blocked, id=9180,
stack(0x63740000,0x63790000)]
  0x538cf800 JavaThread "pool-3-thread-628" [_thread_blocked, id=9172,
stack(0x636f0000,0x63740000)]
  0x538cb000 JavaThread "pool-3-thread-627" [_thread_blocked, id=9168,
stack(0x636a0000,0x636f0000)]
  0x538c9800 JavaThread "pool-3-thread-626" [_thread_blocked, id=9152,
stack(0x63650000,0x636a0000)]
  0x538c8000 JavaThread "pool-3-thread-625" [_thread_blocked, id=9164,
stack(0x63600000,0x63650000)]
  0x538c6c00 JavaThread "pool-3-thread-624" [_thread_blocked, id=9144,
stack(0x635b0000,0x63600000)]
  0x538c5400 JavaThread "pool-3-thread-623" [_thread_blocked, id=9148,
stack(0x63560000,0x635b0000)]
  0x538c4000 JavaThread "pool-3-thread-622" [_thread_blocked, id=9156,
stack(0x63510000,0x63560000)]
  0x538c3000 JavaThread "pool-3-thread-621" [_thread_blocked, id=9124,
stack(0x634c0000,0x63510000)]
  0x538c2400 JavaThread "pool-3-thread-620" [_thread_blocked, id=9120,
stack(0x63470000,0x634c0000)]
  0x538cdc00 JavaThread "pool-3-thread-619" [_thread_blocked, id=9116,
stack(0x63420000,0x63470000)]
  0x538cc800 JavaThread "pool-3-thread-618" [_thread_blocked, id=9108,
stack(0x633d0000,0x63420000)]
  0x538c1000 JavaThread "pool-3-thread-617" [_thread_blocked, id=9092,
stack(0x63380000,0x633d0000)]
  0x538bf800 JavaThread "pool-3-thread-616" [_thread_blocked, id=9088,
stack(0x63330000,0x63380000)]
  0x538be400 JavaThread "pool-3-thread-615" [_thread_blocked, id=9080,
stack(0x632e0000,0x63330000)]
  0x538bcc00 JavaThread "pool-3-thread-614" [_thread_blocked, id=9052,
stack(0x63290000,0x632e0000)]
  0x538bb400 JavaThread "pool-3-thread-613" [_thread_blocked, id=9064,
stack(0x63240000,0x63290000)]
  0x538ba000 JavaThread "pool-3-thread-612" [_thread_blocked, id=9048,
stack(0x631f0000,0x63240000)]
  0x538b8800 JavaThread "pool-3-thread-611" [_thread_blocked, id=9056,
stack(0x631a0000,0x631f0000)]
  0x538b6000 JavaThread "pool-3-thread-610" [_thread_blocked, id=9032,
stack(0x63150000,0x631a0000)]
  0x538b5400 JavaThread "pool-3-thread-609" [_thread_blocked, id=9028,
stack(0x63100000,0x63150000)]
  0x538b4000 JavaThread "pool-3-thread-608" [_thread_blocked, id=9016,
stack(0x630b0000,0x63100000)]
  0x538b2c00 JavaThread "pool-3-thread-607" [_thread_blocked, id=9012,
stack(0x63060000,0x630b0000)]
  0x538b1800 JavaThread "pool-3-thread-606" [_thread_blocked, id=9008,
stack(0x63010000,0x63060000)]
  0x538aec00 JavaThread "pool-3-thread-605" [_thread_blocked, id=8996,
stack(0x62fc0000,0x63010000)]
  0x538ad400 JavaThread "pool-3-thread-604" [_thread_blocked, id=8992,
stack(0x62f70000,0x62fc0000)]
  0x538abc00 JavaThread "pool-3-thread-603" [_thread_blocked, id=8980,
stack(0x62f20000,0x62f70000)]
  0x538aa400 JavaThread "pool-3-thread-602" [_thread_blocked, id=8988,
stack(0x62ed0000,0x62f20000)]
  0x538a9000 JavaThread "pool-3-thread-601" [_thread_blocked, id=8968,
stack(0x62e80000,0x62ed0000)]
  0x538a7800 JavaThread "pool-3-thread-600" [_thread_blocked, id=8956,
stack(0x62e30000,0x62e80000)]
  0x538a6400 JavaThread "pool-3-thread-599" [_thread_blocked, id=8936,
stack(0x62de0000,0x62e30000)]
  0x538a4c00 JavaThread "pool-3-thread-598" [_thread_blocked, id=8932,
stack(0x62d90000,0x62de0000)]
  0x538a3400 JavaThread "pool-3-thread-597" [_thread_blocked, id=8916,
stack(0x62d40000,0x62d90000)]
  0x538a2000 JavaThread "pool-3-thread-596" [_thread_blocked, id=8920,
stack(0x62cf0000,0x62d40000)]
  0x538a0800 JavaThread "pool-3-thread-595" [_thread_blocked, id=8900,
stack(0x62ca0000,0x62cf0000)]
  0x5389f000 JavaThread "pool-3-thread-594" [_thread_blocked, id=8888,
stack(0x62c50000,0x62ca0000)]
  0x5389dc00 JavaThread "pool-3-thread-593" [_thread_blocked, id=8880,
stack(0x62c00000,0x62c50000)]
  0x5389c800 JavaThread "pool-3-thread-592" [_thread_blocked, id=8872,
stack(0x62bb0000,0x62c00000)]
  0x5389b800 JavaThread "pool-3-thread-591" [_thread_blocked, id=8856,
stack(0x62b60000,0x62bb0000)]
  0x5389a800 JavaThread "pool-3-thread-590" [_thread_blocked, id=8848,
stack(0x62b10000,0x62b60000)]
  0x53898000 JavaThread "pool-3-thread-589" [_thread_blocked, id=8836,
stack(0x62ac0000,0x62b10000)]
  0x53896400 JavaThread "pool-3-thread-588" [_thread_blocked, id=8840,
stack(0x62a70000,0x62ac0000)]
  0x53895000 JavaThread "pool-3-thread-587" [_thread_blocked, id=8824,
stack(0x62a20000,0x62a70000)]
  0x53893800 JavaThread "pool-3-thread-586" [_thread_blocked, id=8828,
stack(0x629d0000,0x62a20000)]
  0x53892000 JavaThread "pool-3-thread-585" [_thread_blocked, id=8808,
stack(0x62980000,0x629d0000)]
  0x53890c00 JavaThread "pool-3-thread-584" [_thread_blocked, id=8812,
stack(0x62930000,0x62980000)]
  0x5388f400 JavaThread "pool-3-thread-583" [_thread_blocked, id=8796,
stack(0x628e0000,0x62930000)]
  0x5388dc00 JavaThread "pool-3-thread-582" [_thread_blocked, id=8792,
stack(0x62890000,0x628e0000)]
  0x5388c400 JavaThread "pool-3-thread-581" [_thread_blocked, id=8784,
stack(0x62840000,0x62890000)]
  0x5388ac00 JavaThread "pool-3-thread-580" [_thread_blocked, id=8768,
stack(0x627f0000,0x62840000)]
  0x53889800 JavaThread "pool-3-thread-579" [_thread_blocked, id=8776,
stack(0x627a0000,0x627f0000)]
  0x53888000 JavaThread "pool-3-thread-578" [_thread_blocked, id=8764,
stack(0x62750000,0x627a0000)]
  0x53886c00 JavaThread "pool-3-thread-577" [_thread_blocked, id=8760,
stack(0x62700000,0x62750000)]
  0x53885400 JavaThread "pool-3-thread-576" [_thread_blocked, id=8748,
stack(0x626b0000,0x62700000)]
  0x53883000 JavaThread "pool-3-thread-575" [_thread_blocked, id=8740,
stack(0x62660000,0x626b0000)]
  0x53881800 JavaThread "pool-3-thread-574" [_thread_blocked, id=8720,
stack(0x62610000,0x62660000)]
  0x53880000 JavaThread "pool-3-thread-573" [_thread_blocked, id=8732,
stack(0x625c0000,0x62610000)]
  0x5387e800 JavaThread "pool-3-thread-572" [_thread_blocked, id=8712,
stack(0x62570000,0x625c0000)]
  0x5387d000 JavaThread "pool-3-thread-571" [_thread_blocked, id=8716,
stack(0x62520000,0x62570000)]
  0x5387b800 JavaThread "pool-3-thread-570" [_thread_blocked, id=8724,
stack(0x624d0000,0x62520000)]
  0x5387a400 JavaThread "pool-3-thread-569" [_thread_blocked, id=8692,
stack(0x62480000,0x624d0000)]
  0x53878c00 JavaThread "pool-3-thread-568" [_thread_blocked, id=8688,
stack(0x62430000,0x62480000)]
  0x53877800 JavaThread "pool-3-thread-567" [_thread_blocked, id=8684,
stack(0x623e0000,0x62430000)]
  0x53876000 JavaThread "pool-3-thread-566" [_thread_blocked, id=8680,
stack(0x62390000,0x623e0000)]
  0x53874800 JavaThread "pool-3-thread-565" [_thread_blocked, id=8664,
stack(0x62340000,0x62390000)]
  0x53873400 JavaThread "pool-3-thread-564" [_thread_blocked, id=8660,
stack(0x622f0000,0x62340000)]
  0x53871c00 JavaThread "pool-3-thread-563" [_thread_blocked, id=8652,
stack(0x622a0000,0x622f0000)]
  0x53870400 JavaThread "pool-3-thread-562" [_thread_blocked, id=8644,
stack(0x62250000,0x622a0000)]
  0x5386f000 JavaThread "pool-3-thread-561" [_thread_blocked, id=8640,
stack(0x62200000,0x62250000)]
  0x5386e400 JavaThread "pool-3-thread-560" [_thread_blocked, id=8616,
stack(0x621b0000,0x62200000)]
  0x5386d000 JavaThread "pool-3-thread-559" [_thread_blocked, id=8628,
stack(0x62160000,0x621b0000)]
  0x5386bc00 JavaThread "pool-3-thread-558" [_thread_blocked, id=8620,
stack(0x62110000,0x62160000)]
  0x5386a800 JavaThread "pool-3-thread-557" [_thread_blocked, id=8600,
stack(0x620c0000,0x62110000)]
  0x53864c00 JavaThread "pool-3-thread-556" [_thread_blocked, id=8584,
stack(0x62070000,0x620c0000)]
  0x53863400 JavaThread "pool-3-thread-555" [_thread_blocked, id=8576,
stack(0x62020000,0x62070000)]
  0x53862000 JavaThread "pool-3-thread-554" [_thread_blocked, id=8564,
stack(0x61fd0000,0x62020000)]
  0x53860800 JavaThread "pool-3-thread-553" [_thread_blocked, id=8544,
stack(0x61f80000,0x61fd0000)]
  0x5385e000 JavaThread "pool-3-thread-552" [_thread_blocked, id=8548,
stack(0x61f30000,0x61f80000)]
  0x5385c800 JavaThread "pool-3-thread-551" [_thread_blocked, id=8536,
stack(0x61ee0000,0x61f30000)]
  0x5385b000 JavaThread "pool-3-thread-550" [_thread_blocked, id=8528,
stack(0x61e90000,0x61ee0000)]
  0x53859c00 JavaThread "pool-3-thread-549" [_thread_blocked, id=8524,
stack(0x61e40000,0x61e90000)]
  0x53858400 JavaThread "pool-3-thread-548" [_thread_blocked, id=8512,
stack(0x61df0000,0x61e40000)]
  0x53857000 JavaThread "pool-3-thread-547" [_thread_blocked, id=8520,
stack(0x61da0000,0x61df0000)]
  0x53855800 JavaThread "pool-3-thread-546" [_thread_blocked, id=8508,
stack(0x61d50000,0x61da0000)]
  0x53854000 JavaThread "pool-3-thread-545" [_thread_blocked, id=8500,
stack(0x61d00000,0x61d50000)]
  0x53852800 JavaThread "pool-3-thread-544" [_thread_blocked, id=8496,
stack(0x61cb0000,0x61d00000)]
  0x53851000 JavaThread "pool-3-thread-543" [_thread_blocked, id=8480,
stack(0x61c60000,0x61cb0000)]
  0x5384fc00 JavaThread "pool-3-thread-542" [_thread_blocked, id=8468,
stack(0x61c10000,0x61c60000)]
  0x5384e400 JavaThread "pool-3-thread-541" [_thread_blocked, id=8464,
stack(0x61bc0000,0x61c10000)]
  0x5384cc00 JavaThread "pool-3-thread-540" [_thread_blocked, id=8448,
stack(0x61b70000,0x61bc0000)]
  0x5384b400 JavaThread "pool-3-thread-539" [_thread_blocked, id=8452,
stack(0x61b20000,0x61b70000)]
  0x5384a000 JavaThread "pool-3-thread-538" [_thread_blocked, id=8432,
stack(0x61ad0000,0x61b20000)]
  0x53848800 JavaThread "pool-3-thread-537" [_thread_blocked, id=8428,
stack(0x61a80000,0x61ad0000)]
  0x53847400 JavaThread "pool-3-thread-536" [_thread_blocked, id=8420,
stack(0x61a30000,0x61a80000)]
  0x53845c00 JavaThread "pool-3-thread-535" [_thread_blocked, id=8412,
stack(0x619e0000,0x61a30000)]
  0x53844400 JavaThread "pool-3-thread-534" [_thread_blocked, id=8408,
stack(0x61990000,0x619e0000)]
  0x53843000 JavaThread "pool-3-thread-533" [_thread_blocked, id=8384,
stack(0x61940000,0x61990000)]
  0x53841400 JavaThread "pool-3-thread-532" [_thread_blocked, id=8392,
stack(0x618f0000,0x61940000)]
  0x53840000 JavaThread "pool-3-thread-531" [_thread_blocked, id=8388,
stack(0x618a0000,0x618f0000)]
  0x5383e800 JavaThread "pool-3-thread-530" [_thread_blocked, id=8372,
stack(0x61850000,0x618a0000)]
  0x5383d400 JavaThread "pool-3-thread-529" [_thread_blocked, id=8356,
stack(0x61800000,0x61850000)]
  0x5383bc00 JavaThread "pool-3-thread-528" [_thread_blocked, id=8352,
stack(0x617b0000,0x61800000)]
  0x5383a400 JavaThread "pool-3-thread-527" [_thread_blocked, id=8360,
stack(0x61760000,0x617b0000)]
  0x53839000 JavaThread "pool-3-thread-526" [_thread_blocked, id=8344,
stack(0x61710000,0x61760000)]
  0x5382d800 JavaThread "pool-3-thread-525" [_thread_blocked, id=8340,
stack(0x616c0000,0x61710000)]
  0x5382c000 JavaThread "pool-3-thread-524" [_thread_blocked, id=8336,
stack(0x61670000,0x616c0000)]
  0x53837c00 JavaThread "pool-3-thread-523" [_thread_blocked, id=8328,
stack(0x61620000,0x61670000)]
  0x53836000 JavaThread "pool-3-thread-522" [_thread_blocked, id=8320,
stack(0x615d0000,0x61620000)]
  0x53834800 JavaThread "pool-3-thread-521" [_thread_blocked, id=8300,
stack(0x61580000,0x615d0000)]
  0x53833400 JavaThread "pool-3-thread-520" [_thread_blocked, id=8296,
stack(0x61530000,0x61580000)]
  0x53832000 JavaThread "pool-3-thread-519" [_thread_blocked, id=8304,
stack(0x614e0000,0x61530000)]
  0x53830c00 JavaThread "pool-3-thread-518" [_thread_blocked, id=8280,
stack(0x61490000,0x614e0000)]
  0x5382fc00 JavaThread "pool-3-thread-517" [_thread_blocked, id=8276,
stack(0x61440000,0x61490000)]
  0x5382f400 JavaThread "pool-3-thread-516" [_thread_blocked, id=8268,
stack(0x613f0000,0x61440000)]
  0x53829400 JavaThread "pool-3-thread-515" [_thread_blocked, id=8260,
stack(0x613a0000,0x613f0000)]
  0x53828000 JavaThread "pool-3-thread-514" [_thread_blocked, id=8244,
stack(0x61350000,0x613a0000)]
  0x53825800 JavaThread "pool-3-thread-513" [_thread_blocked, id=8240,
stack(0x61300000,0x61350000)]
  0x53823c00 JavaThread "pool-3-thread-512" [_thread_blocked, id=8220,
stack(0x612b0000,0x61300000)]
  0x53822800 JavaThread "pool-3-thread-511" [_thread_blocked, id=8208,
stack(0x61260000,0x612b0000)]
  0x53821000 JavaThread "pool-3-thread-510" [_thread_blocked, id=8212,
stack(0x61210000,0x61260000)]
  0x5381f800 JavaThread "pool-3-thread-509" [_thread_blocked, id=8196,
stack(0x611c0000,0x61210000)]
  0x5381e400 JavaThread "pool-3-thread-508" [_thread_blocked, id=2728,
stack(0x61170000,0x611c0000)]
  0x5381cc00 JavaThread "pool-3-thread-507" [_thread_blocked, id=8176,
stack(0x61120000,0x61170000)]
  0x5381b400 JavaThread "pool-3-thread-506" [_thread_blocked, id=8180,
stack(0x610d0000,0x61120000)]
  0x5381a000 JavaThread "pool-3-thread-505" [_thread_blocked, id=8160,
stack(0x61080000,0x610d0000)]
  0x53815000 JavaThread "pool-3-thread-504" [_thread_blocked, id=8164,
stack(0x61030000,0x61080000)]
  0x53813c00 JavaThread "pool-3-thread-503" [_thread_blocked, id=8156,
stack(0x60fe0000,0x61030000)]
  0x53813000 JavaThread "pool-3-thread-502" [_thread_blocked, id=8140,
stack(0x60f90000,0x60fe0000)]
  0x53812000 JavaThread "pool-3-thread-501" [_thread_blocked, id=8124,
stack(0x60f40000,0x60f90000)]
  0x53810c00 JavaThread "pool-3-thread-500" [_thread_blocked, id=8132,
stack(0x60ef0000,0x60f40000)]
  0x5380e000 JavaThread "pool-3-thread-499" [_thread_blocked, id=8120,
stack(0x60ea0000,0x60ef0000)]
  0x5380cc00 JavaThread "pool-3-thread-498" [_thread_blocked, id=8116,
stack(0x60e50000,0x60ea0000)]
  0x5380b400 JavaThread "pool-3-thread-497" [_thread_blocked, id=8104,
stack(0x60e00000,0x60e50000)]
  0x53809800 JavaThread "pool-3-thread-496" [_thread_blocked, id=8088,
stack(0x60db0000,0x60e00000)]
  0x53808400 JavaThread "pool-3-thread-495" [_thread_blocked, id=8080,
stack(0x60d60000,0x60db0000)]
  0x53806c00 JavaThread "pool-3-thread-494" [_thread_blocked, id=8076,
stack(0x60d10000,0x60d60000)]
  0x53805800 JavaThread "pool-3-thread-493" [_thread_blocked, id=8068,
stack(0x60cc0000,0x60d10000)]
  0x53804000 JavaThread "pool-3-thread-492" [_thread_blocked, id=8056,
stack(0x60c70000,0x60cc0000)]
  0x53802c00 JavaThread "pool-3-thread-491" [_thread_blocked, id=8048,
stack(0x60c20000,0x60c70000)]
  0x53801400 JavaThread "pool-3-thread-490" [_thread_blocked, id=8032,
stack(0x60bd0000,0x60c20000)]
  0x537ffc00 JavaThread "pool-3-thread-489" [_thread_blocked, id=8036,
stack(0x60b80000,0x60bd0000)]
  0x537fe800 JavaThread "pool-3-thread-488" [_thread_blocked, id=8008,
stack(0x60b30000,0x60b80000)]
  0x537fd000 JavaThread "pool-3-thread-487" [_thread_blocked, id=8024,
stack(0x60ae0000,0x60b30000)]
  0x537fb800 JavaThread "pool-3-thread-486" [_thread_blocked, id=8020,
stack(0x60a90000,0x60ae0000)]
  0x537fa000 JavaThread "pool-3-thread-485" [_thread_blocked, id=7992,
stack(0x60a40000,0x60a90000)]
  0x537f8c00 JavaThread "pool-3-thread-484" [_thread_blocked, id=7988,
stack(0x609f0000,0x60a40000)]
  0x537f7400 JavaThread "pool-3-thread-483" [_thread_blocked, id=7976,
stack(0x609a0000,0x609f0000)]
  0x537f6400 JavaThread "pool-3-thread-482" [_thread_blocked, id=7968,
stack(0x60950000,0x609a0000)]
  0x537f2000 JavaThread "pool-3-thread-481" [_thread_blocked, id=7964,
stack(0x60900000,0x60950000)]
  0x537f0800 JavaThread "pool-3-thread-480" [_thread_blocked, id=7956,
stack(0x608b0000,0x60900000)]
  0x537ef400 JavaThread "pool-3-thread-479" [_thread_blocked, id=7944,
stack(0x60860000,0x608b0000)]
  0x537ee000 JavaThread "pool-3-thread-478" [_thread_blocked, id=7936,
stack(0x60810000,0x60860000)]
  0x537ec800 JavaThread "pool-3-thread-477" [_thread_blocked, id=7896,
stack(0x607c0000,0x60810000)]
  0x537eb000 JavaThread "pool-3-thread-476" [_thread_blocked, id=7904,
stack(0x60770000,0x607c0000)]
  0x537e9c00 JavaThread "pool-3-thread-475" [_thread_blocked, id=7880,
stack(0x60720000,0x60770000)]
  0x537e8400 JavaThread "pool-3-thread-474" [_thread_blocked, id=7908,
stack(0x606d0000,0x60720000)]
  0x537e6c00 JavaThread "pool-3-thread-473" [_thread_blocked, id=7900,
stack(0x60680000,0x606d0000)]
  0x537e5400 JavaThread "pool-3-thread-472" [_thread_blocked, id=7884,
stack(0x60630000,0x60680000)]
  0x537e4000 JavaThread "pool-3-thread-471" [_thread_blocked, id=7892,
stack(0x605e0000,0x60630000)]
  0x537e2800 JavaThread "pool-3-thread-470" [_thread_blocked, id=7864,
stack(0x60590000,0x605e0000)]
  0x537e1400 JavaThread "pool-3-thread-469" [_thread_blocked, id=7868,
stack(0x60540000,0x60590000)]
  0x537dfc00 JavaThread "pool-3-thread-468" [_thread_blocked, id=7844,
stack(0x604f0000,0x60540000)]
  0x537de800 JavaThread "pool-3-thread-467" [_thread_blocked, id=7840,
stack(0x604a0000,0x604f0000)]
  0x537dd000 JavaThread "pool-3-thread-466" [_thread_blocked, id=7820,
stack(0x60450000,0x604a0000)]
  0x537db800 JavaThread "pool-3-thread-465" [_thread_blocked, id=7808,
stack(0x60400000,0x60450000)]
  0x537da000 JavaThread "pool-3-thread-464" [_thread_blocked, id=7804,
stack(0x603b0000,0x60400000)]
  0x537d8c00 JavaThread "pool-3-thread-463" [_thread_blocked, id=7796,
stack(0x60360000,0x603b0000)]
  0x537d7400 JavaThread "pool-3-thread-462" [_thread_blocked, id=7792,
stack(0x60310000,0x60360000)]
  0x537d5c00 JavaThread "pool-3-thread-461" [_thread_blocked, id=7788,
stack(0x602c0000,0x60310000)]
  0x537d4400 JavaThread "pool-3-thread-460" [_thread_blocked, id=7772,
stack(0x60270000,0x602c0000)]
  0x537d3000 JavaThread "pool-3-thread-459" [_thread_blocked, id=7768,
stack(0x60220000,0x60270000)]
  0x537d1800 JavaThread "pool-3-thread-458" [_thread_blocked, id=7756,
stack(0x601d0000,0x60220000)]
  0x537d0400 JavaThread "pool-3-thread-457" [_thread_blocked, id=7740,
stack(0x60180000,0x601d0000)]
  0x537a2c00 JavaThread "pool-3-thread-456" [_thread_blocked, id=7736,
stack(0x60130000,0x60180000)]
  0x537a1400 JavaThread "pool-3-thread-455" [_thread_blocked, id=7728,
stack(0x600e0000,0x60130000)]
  0x5379fc00 JavaThread "pool-3-thread-454" [_thread_blocked, id=7716,
stack(0x60090000,0x600e0000)]
  0x5379e400 JavaThread "pool-3-thread-453" [_thread_blocked, id=7688,
stack(0x60040000,0x60090000)]
  0x5379d400 JavaThread "pool-3-thread-452" [_thread_blocked, id=7680,
stack(0x5fff0000,0x60040000)]
  0x53799800 JavaThread "pool-3-thread-451" [_thread_blocked, id=7684,
stack(0x5ffa0000,0x5fff0000)]
  0x53798400 JavaThread "pool-3-thread-450" [_thread_blocked, id=7672,
stack(0x5ff50000,0x5ffa0000)]
  0x53787c00 JavaThread "pool-3-thread-449" [_thread_blocked, id=7676,
stack(0x5ff00000,0x5ff50000)]
  0x53786400 JavaThread "pool-3-thread-448" [_thread_blocked, id=7652,
stack(0x5feb0000,0x5ff00000)]
  0x53767c00 JavaThread "pool-3-thread-447" [_thread_blocked, id=7636,
stack(0x5fe60000,0x5feb0000)]
  0x53766800 JavaThread "pool-3-thread-446" [_thread_blocked, id=7620,
stack(0x5fe10000,0x5fe60000)]
  0x53765000 JavaThread "pool-3-thread-445" [_thread_blocked, id=7616,
stack(0x5fdc0000,0x5fe10000)]
  0x53763400 JavaThread "pool-3-thread-444" [_thread_blocked, id=7596,
stack(0x5fd70000,0x5fdc0000)]
  0x53762400 JavaThread "pool-3-thread-443" [_thread_blocked, id=7600,
stack(0x5fd20000,0x5fd70000)]
  0x5375f800 JavaThread "pool-3-thread-442" [_thread_blocked, id=7584,
stack(0x5fcd0000,0x5fd20000)]
  0x5375e400 JavaThread "pool-3-thread-441" [_thread_blocked, id=7568,
stack(0x5fc80000,0x5fcd0000)]
  0x5375cc00 JavaThread "pool-3-thread-440" [_thread_blocked, id=7564,
stack(0x5fc30000,0x5fc80000)]
  0x5375b800 JavaThread "pool-3-thread-439" [_thread_blocked, id=7556,
stack(0x5fbe0000,0x5fc30000)]
  0x5375a400 JavaThread "pool-3-thread-438" [_thread_blocked, id=7560,
stack(0x5fb90000,0x5fbe0000)]
  0x53757800 JavaThread "pool-3-thread-437" [_thread_blocked, id=7536,
stack(0x5fb40000,0x5fb90000)]
  0x53756400 JavaThread "pool-3-thread-436" [_thread_blocked, id=7540,
stack(0x5faf0000,0x5fb40000)]
  0x537cd800 JavaThread "pool-3-thread-435" [_thread_blocked, id=7520,
stack(0x5faa0000,0x5faf0000)]
  0x537cc400 JavaThread "pool-3-thread-434" [_thread_blocked, id=7512,
stack(0x5fa50000,0x5faa0000)]
  0x537cac00 JavaThread "pool-3-thread-433" [_thread_blocked, id=7496,
stack(0x5fa00000,0x5fa50000)]
  0x537c9400 JavaThread "pool-3-thread-432" [_thread_blocked, id=7484,
stack(0x5f9b0000,0x5fa00000)]
  0x537c7c00 JavaThread "pool-3-thread-431" [_thread_blocked, id=7480,
stack(0x5f960000,0x5f9b0000)]
  0x537c6800 JavaThread "pool-3-thread-430" [_thread_blocked, id=7476,
stack(0x5f910000,0x5f960000)]
  0x537c5000 JavaThread "pool-3-thread-429" [_thread_blocked, id=7452,
stack(0x5f8c0000,0x5f910000)]
  0x537c3c00 JavaThread "pool-3-thread-428" [_thread_blocked, id=7436,
stack(0x5f870000,0x5f8c0000)]
  0x537c3000 JavaThread "pool-3-thread-427" [_thread_blocked, id=7424,
stack(0x5f820000,0x5f870000)]
  0x537c2000 JavaThread "pool-3-thread-426" [_thread_blocked, id=7416,
stack(0x5f7d0000,0x5f820000)]
  0x537c0c00 JavaThread "pool-3-thread-425" [_thread_blocked, id=7404,
stack(0x5f780000,0x5f7d0000)]
  0x537bb400 JavaThread "pool-3-thread-424" [_thread_blocked, id=7392,
stack(0x5f730000,0x5f780000)]
  0x537b9c00 JavaThread "pool-3-thread-423" [_thread_blocked, id=7388,
stack(0x5f6e0000,0x5f730000)]
  0x537b8400 JavaThread "pool-3-thread-422" [_thread_blocked, id=7380,
stack(0x5f690000,0x5f6e0000)]
  0x537b6c00 JavaThread "pool-3-thread-421" [_thread_blocked, id=7364,
stack(0x5f640000,0x5f690000)]
  0x53785000 JavaThread "pool-3-thread-420" [_thread_blocked, id=7360,
stack(0x5f5f0000,0x5f640000)]
  0x53783800 JavaThread "pool-3-thread-419" [_thread_blocked, id=7348,
stack(0x5f5a0000,0x5f5f0000)]
  0x53782400 JavaThread "pool-3-thread-418" [_thread_blocked, id=7336,
stack(0x5f550000,0x5f5a0000)]
  0x53780c00 JavaThread "pool-3-thread-417" [_thread_blocked, id=7324,
stack(0x5f500000,0x5f550000)]
  0x5377fc00 JavaThread "pool-3-thread-416" [_thread_blocked, id=7316,
stack(0x5f4b0000,0x5f500000)]
  0x53796000 JavaThread "pool-3-thread-415" [_thread_blocked, id=7296,
stack(0x5f460000,0x5f4b0000)]
  0x53794c00 JavaThread "pool-3-thread-414" [_thread_blocked, id=7288,
stack(0x5f410000,0x5f460000)]
  0x53794400 JavaThread "pool-3-thread-413" [_thread_blocked, id=7292,
stack(0x5f3c0000,0x5f410000)]
  0x53775400 JavaThread "pool-3-thread-412" [_thread_blocked, id=7284,
stack(0x5f370000,0x5f3c0000)]
  0x53797c00 JavaThread "pool-3-thread-411" [_thread_blocked, id=7276,
stack(0x5f320000,0x5f370000)]
  0x5376c000 JavaThread "pool-3-thread-410" [_thread_blocked, id=7256,
stack(0x5f2d0000,0x5f320000)]
  0x53755c00 JavaThread "pool-3-thread-409" [_thread_blocked, id=7260,
stack(0x5f220000,0x5f270000)]
  0x53754400 JavaThread "pool-3-thread-408" [_thread_blocked, id=7240,
stack(0x5f1d0000,0x5f220000)]
  0x53752c00 JavaThread "pool-3-thread-407" [_thread_blocked, id=7224,
stack(0x5f180000,0x5f1d0000)]
  0x53751c00 JavaThread "pool-3-thread-406" [_thread_blocked, id=7216,
stack(0x5f130000,0x5f180000)]
  0x5373bc00 JavaThread "pool-3-thread-405" [_thread_blocked, id=7204,
stack(0x5f0e0000,0x5f130000)]
  0x5373a800 JavaThread "pool-3-thread-404" [_thread_blocked, id=7208,
stack(0x5f090000,0x5f0e0000)]
  0x53739000 JavaThread "pool-3-thread-403" [_thread_blocked, id=7192,
stack(0x5f040000,0x5f090000)]
  0x53725800 JavaThread "pool-3-thread-402" [_thread_blocked, id=7180,
stack(0x5eff0000,0x5f040000)]
  0x53723c00 JavaThread "pool-3-thread-401" [_thread_blocked, id=7188,
stack(0x5efa0000,0x5eff0000)]
  0x53722800 JavaThread "pool-3-thread-400" [_thread_blocked, id=7176,
stack(0x5ef50000,0x5efa0000)]
  0x53721000 JavaThread "pool-3-thread-399" [_thread_blocked, id=7164,
stack(0x5ef00000,0x5ef50000)]
  0x5371fc00 JavaThread "pool-3-thread-398" [_thread_blocked, id=7148,
stack(0x5eeb0000,0x5ef00000)]
  0x5371d400 JavaThread "pool-3-thread-397" [_thread_blocked, id=7140,
stack(0x5ee60000,0x5eeb0000)]
  0x5371bc00 JavaThread "pool-3-thread-396" [_thread_blocked, id=7152,
stack(0x5ee10000,0x5ee60000)]
  0x5371a800 JavaThread "pool-3-thread-395" [_thread_blocked, id=7136,
stack(0x5edc0000,0x5ee10000)]
  0x53719400 JavaThread "pool-3-thread-394" [_thread_blocked, id=7128,
stack(0x5ed70000,0x5edc0000)]
  0x5370ec00 JavaThread "pool-3-thread-393" [_thread_blocked, id=7120,
stack(0x5ed20000,0x5ed70000)]
  0x5370d400 JavaThread "pool-3-thread-392" [_thread_blocked, id=7112,
stack(0x5ecd0000,0x5ed20000)]
  0x5370bc00 JavaThread "pool-3-thread-391" [_thread_blocked, id=7108,
stack(0x5ec80000,0x5ecd0000)]
  0x5370a800 JavaThread "pool-3-thread-390" [_thread_blocked, id=7088,
stack(0x5ec30000,0x5ec80000)]
  0x536f8000 JavaThread "pool-3-thread-389" [_thread_blocked, id=7080,
stack(0x5ebe0000,0x5ec30000)]
  0x536f6800 JavaThread "pool-3-thread-388" [_thread_blocked, id=7092,
stack(0x5eb90000,0x5ebe0000)]
  0x536f5400 JavaThread "pool-3-thread-387" [_thread_blocked, id=7068,
stack(0x5eb40000,0x5eb90000)]
  0x536f3c00 JavaThread "pool-3-thread-386" [_thread_blocked, id=7060,
stack(0x5eaf0000,0x5eb40000)]
  0x536f2400 JavaThread "pool-3-thread-385" [_thread_blocked, id=7052,
stack(0x5eaa0000,0x5eaf0000)]
  0x5339ec00 JavaThread "pool-3-thread-384" [_thread_blocked, id=7016,
stack(0x5ea50000,0x5eaa0000)]
  0x5339c800 JavaThread "pool-3-thread-383" [_thread_blocked, id=7020,
stack(0x5ea00000,0x5ea50000)]
  0x5339b000 JavaThread "pool-3-thread-382" [_thread_blocked, id=7008,
stack(0x5e9b0000,0x5ea00000)]
  0x53399800 JavaThread "pool-3-thread-381" [_thread_blocked, id=6996,
stack(0x5e960000,0x5e9b0000)]
  0x53398000 JavaThread "pool-3-thread-380" [_thread_blocked, id=6972,
stack(0x5e910000,0x5e960000)]
  0x53396800 JavaThread "pool-3-thread-379" [_thread_blocked, id=6948,
stack(0x5e8c0000,0x5e910000)]
  0x5338f400 JavaThread "pool-3-thread-378" [_thread_blocked, id=6940,
stack(0x5e870000,0x5e8c0000)]
  0x53364000 JavaThread "pool-3-thread-377" [_thread_blocked, id=6944,
stack(0x5e820000,0x5e870000)]
  0x53363400 JavaThread "pool-3-thread-376" [_thread_blocked, id=6928,
stack(0x5e7d0000,0x5e820000)]
  0x53362400 JavaThread "pool-3-thread-375" [_thread_blocked, id=6932,
stack(0x5e780000,0x5e7d0000)]
  0x53750800 JavaThread "pool-3-thread-374" [_thread_blocked, id=6900,
stack(0x5e730000,0x5e780000)]
  0x53361800 JavaThread "pool-3-thread-373" [_thread_blocked, id=6908,
stack(0x5e6e0000,0x5e730000)]
  0x5335e800 JavaThread "pool-3-thread-372" [_thread_blocked, id=6888,
stack(0x5e690000,0x5e6e0000)]
  0x53351400 JavaThread "pool-3-thread-371" [_thread_blocked, id=6872,
stack(0x5e640000,0x5e690000)]
  0x53347c00 JavaThread "pool-3-thread-370" [_thread_blocked, id=6868,
stack(0x5e5f0000,0x5e640000)]
  0x53346800 JavaThread "pool-3-thread-369" [_thread_blocked, id=6852,
stack(0x5e5a0000,0x5e5f0000)]
  0x53345400 JavaThread "pool-3-thread-368" [_thread_blocked, id=6840,
stack(0x5e550000,0x5e5a0000)]
  0x53342800 JavaThread "pool-3-thread-367" [_thread_blocked, id=6820,
stack(0x5e500000,0x5e550000)]
  0x53341400 JavaThread "pool-3-thread-366" [_thread_blocked, id=6836,
stack(0x5e4b0000,0x5e500000)]
  0x5333f800 JavaThread "pool-3-thread-365" [_thread_blocked, id=6828,
stack(0x5e460000,0x5e4b0000)]
  0x5333e400 JavaThread "pool-3-thread-364" [_thread_blocked, id=6808,
stack(0x5e410000,0x5e460000)]
  0x5333cc00 JavaThread "pool-3-thread-363" [_thread_blocked, id=6776,
stack(0x5e3c0000,0x5e410000)]
  0x5333b800 JavaThread "pool-3-thread-362" [_thread_blocked, id=6796,
stack(0x5e370000,0x5e3c0000)]
  0x5332e000 JavaThread "pool-3-thread-361" [_thread_blocked, id=6780,
stack(0x5e320000,0x5e370000)]
  0x5332c800 JavaThread "pool-3-thread-360" [_thread_blocked, id=6772,
stack(0x5e2d0000,0x5e320000)]
  0x5332b400 JavaThread "pool-3-thread-359" [_thread_blocked, id=6768,
stack(0x5e280000,0x5e2d0000)]
  0x53316c00 JavaThread "pool-3-thread-358" [_thread_blocked, id=6748,
stack(0x5e230000,0x5e280000)]
  0x53315c00 JavaThread "pool-3-thread-357" [_thread_blocked, id=6752,
stack(0x5e1e0000,0x5e230000)]
  0x53314c00 JavaThread "pool-3-thread-356" [_thread_blocked, id=6732,
stack(0x5e190000,0x5e1e0000)]
  0x53313800 JavaThread "pool-3-thread-355" [_thread_blocked, id=6724,
stack(0x5e140000,0x5e190000)]
  0x53311000 JavaThread "pool-3-thread-354" [_thread_blocked, id=6716,
stack(0x5e0f0000,0x5e140000)]
  0x5330f800 JavaThread "pool-3-thread-353" [_thread_blocked, id=6696,
stack(0x5e0a0000,0x5e0f0000)]
  0x5330e400 JavaThread "pool-3-thread-352" [_thread_blocked, id=6708,
stack(0x5e050000,0x5e0a0000)]
  0x5330cc00 JavaThread "pool-3-thread-351" [_thread_blocked, id=6688,
stack(0x5e000000,0x5e050000)]
  0x5330b400 JavaThread "pool-3-thread-350" [_thread_blocked, id=6692,
stack(0x5dfb0000,0x5e000000)]
  0x53309c00 JavaThread "pool-3-thread-349" [_thread_blocked, id=6672,
stack(0x5df60000,0x5dfb0000)]
  0x53309000 JavaThread "pool-3-thread-348" [_thread_blocked, id=6660,
stack(0x5df10000,0x5df60000)]
  0x53308000 JavaThread "pool-3-thread-347" [_thread_blocked, id=6640,
stack(0x5dec0000,0x5df10000)]
  0x532ffc00 JavaThread "pool-3-thread-346" [_thread_blocked, id=6648,
stack(0x5de70000,0x5dec0000)]
  0x532fd400 JavaThread "pool-3-thread-345" [_thread_blocked, id=6636,
stack(0x5de20000,0x5de70000)]
  0x532fbc00 JavaThread "pool-3-thread-344" [_thread_blocked, id=6628,
stack(0x5ddd0000,0x5de20000)]
  0x532fa400 JavaThread "pool-3-thread-343" [_thread_blocked, id=6616,
stack(0x5dd80000,0x5ddd0000)]
  0x5326bc00 JavaThread "pool-3-thread-342" [_thread_blocked, id=6600,
stack(0x5dd30000,0x5dd80000)]
  0x5326a800 JavaThread "pool-3-thread-341" [_thread_blocked, id=6596,
stack(0x5dce0000,0x5dd30000)]
  0x53269000 JavaThread "pool-3-thread-340" [_thread_blocked, id=6580,
stack(0x5dc90000,0x5dce0000)]
  0x53267800 JavaThread "pool-3-thread-339" [_thread_blocked, id=6556,
stack(0x5dc40000,0x5dc90000)]
  0x53266400 JavaThread "pool-3-thread-338" [_thread_blocked, id=6552,
stack(0x5dbf0000,0x5dc40000)]
  0x53264800 JavaThread "pool-3-thread-337" [_thread_blocked, id=6536,
stack(0x5dba0000,0x5dbf0000)]
  0x53263400 JavaThread "pool-3-thread-336" [_thread_blocked, id=6532,
stack(0x5db50000,0x5dba0000)]
  0x53260000 JavaThread "pool-3-thread-335" [_thread_blocked, id=6516,
stack(0x5db00000,0x5db50000)]
  0x5325ec00 JavaThread "pool-3-thread-334" [_thread_blocked, id=6504,
stack(0x5dab0000,0x5db00000)]
  0x53252400 JavaThread "pool-3-thread-333" [_thread_blocked, id=6496,
stack(0x5da60000,0x5dab0000)]
  0x53250c00 JavaThread "pool-3-thread-332" [_thread_blocked, id=6472,
stack(0x5da10000,0x5da60000)]
  0x5324f800 JavaThread "pool-3-thread-331" [_thread_blocked, id=6476,
stack(0x5d9c0000,0x5da10000)]
  0x5324e000 JavaThread "pool-3-thread-330" [_thread_blocked, id=6468,
stack(0x5d970000,0x5d9c0000)]
  0x5324c800 JavaThread "pool-3-thread-329" [_thread_blocked, id=6456,
stack(0x5d920000,0x5d970000)]
  0x53242000 JavaThread "pool-3-thread-328" [_thread_blocked, id=6440,
stack(0x5d8d0000,0x5d920000)]
  0x53240c00 JavaThread "pool-3-thread-327" [_thread_blocked, id=6424,
stack(0x5d880000,0x5d8d0000)]
  0x5323f000 JavaThread "pool-3-thread-326" [_thread_blocked, id=6420,
stack(0x5d830000,0x5d880000)]
  0x5323dc00 JavaThread "pool-3-thread-325" [_thread_blocked, id=6428,
stack(0x5d7e0000,0x5d830000)]
  0x5323c800 JavaThread "pool-3-thread-324" [_thread_blocked, id=6416,
stack(0x5d790000,0x5d7e0000)]
  0x531cf000 JavaThread "pool-3-thread-323" [_thread_blocked, id=6404,
stack(0x5d740000,0x5d790000)]
  0x531cd800 JavaThread "pool-3-thread-322" [_thread_blocked, id=6400,
stack(0x5d6f0000,0x5d740000)]
  0x531cc400 JavaThread "pool-3-thread-321" [_thread_blocked, id=6384,
stack(0x5d6a0000,0x5d6f0000)]
  0x531cac00 JavaThread "pool-3-thread-320" [_thread_blocked, id=6368,
stack(0x5d650000,0x5d6a0000)]
  0x531c9400 JavaThread "pool-3-thread-319" [_thread_blocked, id=6348,
stack(0x5d600000,0x5d650000)]
  0x5310ac00 JavaThread "pool-3-thread-318" [_thread_blocked, id=6356,
stack(0x5d5b0000,0x5d600000)]
  0x53109800 JavaThread "pool-3-thread-317" [_thread_blocked, id=6344,
stack(0x5d560000,0x5d5b0000)]
  0x53108000 JavaThread "pool-3-thread-316" [_thread_blocked, id=6352,
stack(0x5d410000,0x5d460000)]
  0x53106c00 JavaThread "pool-3-thread-315" [_thread_blocked, id=6332,
stack(0x5d3c0000,0x5d410000)]
  0x53106000 JavaThread "pool-3-thread-314" [_thread_blocked, id=6320,
stack(0x5d370000,0x5d3c0000)]
  0x53105000 JavaThread "pool-3-thread-313" [_thread_blocked, id=6308,
stack(0x5d320000,0x5d370000)]
  0x53335400 JavaThread "pool-3-thread-312" [_thread_blocked, id=6304,
stack(0x5d2d0000,0x5d320000)]
  0x53333c00 JavaThread "pool-3-thread-311" [_thread_blocked, id=6292,
stack(0x5d280000,0x5d2d0000)]
  0x53332800 JavaThread "pool-3-thread-310" [_thread_blocked, id=6284,
stack(0x5d230000,0x5d280000)]
  0x53331000 JavaThread "pool-3-thread-309" [_thread_blocked, id=6276,
stack(0x5d1e0000,0x5d230000)]
  0x5373e800 JavaThread "pool-3-thread-308" [_thread_blocked, id=6252,
stack(0x5d190000,0x5d1e0000)]
  0x53737400 JavaThread "pool-3-thread-307" [_thread_blocked, id=6260,
stack(0x5d140000,0x5d190000)]
  0x53301800 JavaThread "pool-3-thread-306" [_thread_blocked, id=6248,
stack(0x5d0f0000,0x5d140000)]
  0x53395400 JavaThread "pool-3-thread-305" [_thread_blocked, id=6224,
stack(0x5d0a0000,0x5d0f0000)]
  0x5333ac00 JavaThread "pool-3-thread-304" [_thread_blocked, id=6212,
stack(0x5d050000,0x5d0a0000)]
  0x53307400 JavaThread "pool-3-thread-303" [_thread_blocked, id=6208,
stack(0x5d000000,0x5d050000)]
  0x54a71800 JavaThread "pool-3-thread-302" [_thread_blocked, id=6196,
stack(0x5cfb0000,0x5d000000)]
  0x5335dc00 JavaThread "pool-3-thread-301" [_thread_blocked, id=6184,
stack(0x5cf60000,0x5cfb0000)]
  0x54c58400 JavaThread "pool-3-thread-300" [_thread_blocked, id=6188,
stack(0x5cf10000,0x5cf60000)]
  0x5385f800 JavaThread "pool-3-thread-299" [_thread_blocked, id=6192,
stack(0x5cec0000,0x5cf10000)]
  0x53ec4800 JavaThread "pool-3-thread-298" [_thread_blocked, id=6180,
stack(0x5ce70000,0x5cec0000)]
  0x53726400 JavaThread "pool-3-thread-297" [_thread_blocked, id=6152,
stack(0x5ce20000,0x5ce70000)]
  0x54812400 JavaThread "pool-3-thread-296" [_thread_blocked, id=1924,
stack(0x5cdd0000,0x5ce20000)]
  0x543b1c00 JavaThread "pool-3-thread-295" [_thread_blocked, id=6164,
stack(0x5cd80000,0x5cdd0000)]
  0x54a3d400 JavaThread "pool-3-thread-294" [_thread_blocked, id=2964,
stack(0x5cd30000,0x5cd80000)]
  0x53761800 JavaThread "pool-3-thread-293" [_thread_blocked, id=6148,
stack(0x5cce0000,0x5cd30000)]
  0x53769400 JavaThread "pool-3-thread-292" [_thread_blocked, id=1768,
stack(0x5cc90000,0x5cce0000)]
  0x547cac00 JavaThread "pool-3-thread-291" [_thread_blocked, id=2332,
stack(0x5cc40000,0x5cc90000)]
  0x543b9400 JavaThread "pool-3-thread-290" [_thread_blocked, id=1992,
stack(0x5cbf0000,0x5cc40000)]
  0x53233c00 JavaThread "pool-3-thread-289" [_thread_blocked, id=3932,
stack(0x5cba0000,0x5cbf0000)]
  0x53ab3c00 JavaThread "pool-3-thread-288" [_thread_blocked, id=3868,
stack(0x5cb50000,0x5cba0000)]
  0x53328800 JavaThread "pool-3-thread-287" [_thread_blocked, id=3688,
stack(0x5cb00000,0x5cb50000)]
  0x53327000 JavaThread "pool-3-thread-286" [_thread_blocked, id=944,
stack(0x5cab0000,0x5cb00000)]
  0x53325800 JavaThread "pool-3-thread-285" [_thread_blocked, id=760,
stack(0x5ca60000,0x5cab0000)]
  0x53324000 JavaThread "pool-3-thread-284" [_thread_blocked, id=4044,
stack(0x5ca10000,0x5ca60000)]
  0x53322c00 JavaThread "pool-3-thread-283" [_thread_blocked, id=3460,
stack(0x5c9c0000,0x5ca10000)]
  0x53321400 JavaThread "pool-3-thread-282" [_thread_blocked, id=2364,
stack(0x5c970000,0x5c9c0000)]
  0x53320400 JavaThread "pool-3-thread-281" [_thread_blocked, id=3620,
stack(0x5c920000,0x5c970000)]
  0x532f6800 JavaThread "pool-3-thread-280" [_thread_blocked, id=400,
stack(0x5c8d0000,0x5c920000)]
  0x532f5000 JavaThread "pool-3-thread-279" [_thread_blocked, id=2052,
stack(0x5c880000,0x5c8d0000)]
  0x532f3c00 JavaThread "pool-3-thread-278" [_thread_blocked, id=3840,
stack(0x5c830000,0x5c880000)]
  0x532f2400 JavaThread "pool-3-thread-277" [_thread_blocked, id=2108,
stack(0x5c7e0000,0x5c830000)]
  0x532f0c00 JavaThread "pool-3-thread-276" [_thread_blocked, id=1512,
stack(0x5c790000,0x5c7e0000)]
  0x532ef400 JavaThread "pool-3-thread-275" [_thread_blocked, id=2828,
stack(0x5c740000,0x5c790000)]
  0x532edc00 JavaThread "pool-3-thread-274" [_thread_blocked, id=140,
stack(0x5c6f0000,0x5c740000)]
  0x532ec800 JavaThread "pool-3-thread-273" [_thread_blocked, id=3132,
stack(0x5c6a0000,0x5c6f0000)]
  0x532eac00 JavaThread "pool-3-thread-272" [_thread_blocked, id=3088,
stack(0x5c650000,0x5c6a0000)]
  0x532e9400 JavaThread "pool-3-thread-271" [_thread_blocked, id=3296,
stack(0x5c600000,0x5c650000)]
  0x532e7400 JavaThread "pool-3-thread-270" [_thread_blocked, id=1192,
stack(0x5c5b0000,0x5c600000)]
  0x532b5000 JavaThread "pool-3-thread-269" [_thread_blocked, id=3112,
stack(0x5c560000,0x5c5b0000)]
  0x532b4400 JavaThread "pool-3-thread-268" [_thread_blocked, id=1664,
stack(0x5c510000,0x5c560000)]
  0x532b3000 JavaThread "pool-3-thread-267" [_thread_blocked, id=2580,
stack(0x5c4c0000,0x5c510000)]
  0x532b1800 JavaThread "pool-3-thread-266" [_thread_blocked, id=6120,
stack(0x5c470000,0x5c4c0000)]
  0x532af000 JavaThread "pool-3-thread-265" [_thread_blocked, id=6124,
stack(0x5c420000,0x5c470000)]
  0x532ad800 JavaThread "pool-3-thread-264" [_thread_blocked, id=6104,
stack(0x5c3d0000,0x5c420000)]
  0x532ac400 JavaThread "pool-3-thread-263" [_thread_blocked, id=6084,
stack(0x5c380000,0x5c3d0000)]
  0x532aac00 JavaThread "pool-3-thread-262" [_thread_blocked, id=6076,
stack(0x5c330000,0x5c380000)]
  0x532a9400 JavaThread "pool-3-thread-261" [_thread_blocked, id=6080,
stack(0x5c2e0000,0x5c330000)]
  0x532a8000 JavaThread "pool-3-thread-260" [_thread_blocked, id=6068,
stack(0x5c290000,0x5c2e0000)]
  0x532a6800 JavaThread "pool-3-thread-259" [_thread_blocked, id=6060,
stack(0x5c240000,0x5c290000)]
  0x532a5000 JavaThread "pool-3-thread-258" [_thread_blocked, id=6044,
stack(0x5c1f0000,0x5c240000)]
  0x532a3c00 JavaThread "pool-3-thread-257" [_thread_blocked, id=6032,
stack(0x5c1a0000,0x5c1f0000)]
  0x532a2000 JavaThread "pool-3-thread-256" [_thread_blocked, id=6008,
stack(0x5c150000,0x5c1a0000)]
  0x532a0800 JavaThread "pool-3-thread-255" [_thread_blocked, id=6024,
stack(0x5c100000,0x5c150000)]
  0x5329f400 JavaThread "pool-3-thread-254" [_thread_blocked, id=6012,
stack(0x5c0b0000,0x5c100000)]
  0x5329bc00 JavaThread "pool-3-thread-253" [_thread_blocked, id=6000,
stack(0x5c060000,0x5c0b0000)]
  0x5329a800 JavaThread "pool-3-thread-252" [_thread_blocked, id=5976,
stack(0x5c010000,0x5c060000)]
  0x53299000 JavaThread "pool-3-thread-251" [_thread_blocked, id=5980,
stack(0x5bfc0000,0x5c010000)]
  0x53297800 JavaThread "pool-3-thread-250" [_thread_blocked, id=5984,
stack(0x5bf70000,0x5bfc0000)]
  0x53296400 JavaThread "pool-3-thread-249" [_thread_blocked, id=5972,
stack(0x5bf20000,0x5bf70000)]
  0x53294c00 JavaThread "pool-3-thread-248" [_thread_blocked, id=5960,
stack(0x5bed0000,0x5bf20000)]
  0x53293800 JavaThread "pool-3-thread-247" [_thread_blocked, id=5944,
stack(0x5be80000,0x5bed0000)]
  0x53291c00 JavaThread "pool-3-thread-246" [_thread_blocked, id=5932,
stack(0x5be30000,0x5be80000)]
  0x53290400 JavaThread "pool-3-thread-245" [_thread_blocked, id=5928,
stack(0x5bde0000,0x5be30000)]
  0x5328f000 JavaThread "pool-3-thread-244" [_thread_blocked, id=5916,
stack(0x5bd90000,0x5bde0000)]
  0x53284c00 JavaThread "pool-3-thread-243" [_thread_blocked, id=5920,
stack(0x5bd40000,0x5bd90000)]
  0x53283000 JavaThread "pool-3-thread-242" [_thread_blocked, id=5900,
stack(0x5bcf0000,0x5bd40000)]
  0x53281800 JavaThread "pool-3-thread-241" [_thread_blocked, id=5896,
stack(0x5bca0000,0x5bcf0000)]
  0x53280400 JavaThread "pool-3-thread-240" [_thread_blocked, id=5880,
stack(0x5bc50000,0x5bca0000)]
  0x5327f000 JavaThread "pool-3-thread-239" [_thread_blocked, id=5876,
stack(0x5bc00000,0x5bc50000)]
  0x5327d800 JavaThread "pool-3-thread-238" [_thread_blocked, id=5856,
stack(0x5bbb0000,0x5bc00000)]
  0x5327c000 JavaThread "pool-3-thread-237" [_thread_blocked, id=5860,
stack(0x5bb60000,0x5bbb0000)]
  0x5327ac00 JavaThread "pool-3-thread-236" [_thread_blocked, id=5844,
stack(0x5bb10000,0x5bb60000)]
  0x53279000 JavaThread "pool-3-thread-235" [_thread_blocked, id=5824,
stack(0x5bac0000,0x5bb10000)]
  0x53277c00 JavaThread "pool-3-thread-234" [_thread_blocked, id=5816,
stack(0x5ba70000,0x5bac0000)]
  0x53276400 JavaThread "pool-3-thread-233" [_thread_blocked, id=5812,
stack(0x5ba20000,0x5ba70000)]
  0x53275000 JavaThread "pool-3-thread-232" [_thread_blocked, id=5804,
stack(0x5b9d0000,0x5ba20000)]
  0x53247800 JavaThread "pool-3-thread-231" [_thread_blocked, id=5800,
stack(0x5b980000,0x5b9d0000)]
  0x532e5800 JavaThread "pool-3-thread-230" [_thread_blocked, id=5792,
stack(0x5b930000,0x5b980000)]
  0x532e4000 JavaThread "pool-3-thread-229" [_thread_blocked, id=5764,
stack(0x5b8e0000,0x5b930000)]
  0x532e2800 JavaThread "pool-3-thread-228" [_thread_blocked, id=5788,
stack(0x5b890000,0x5b8e0000)]
  0x532e1400 JavaThread "pool-3-thread-227" [_thread_blocked, id=5772,
stack(0x5b840000,0x5b890000)]
  0x532dfc00 JavaThread "pool-3-thread-226" [_thread_blocked, id=5756,
stack(0x5b7f0000,0x5b840000)]
  0x532de400 JavaThread "pool-3-thread-225" [_thread_blocked, id=5740,
stack(0x5b7a0000,0x5b7f0000)]
  0x532dcc00 JavaThread "pool-3-thread-224" [_thread_blocked, id=5724,
stack(0x5b750000,0x5b7a0000)]
  0x532db400 JavaThread "pool-3-thread-223" [_thread_blocked, id=5728,
stack(0x5b700000,0x5b750000)]
  0x532da000 JavaThread "pool-3-thread-222" [_thread_blocked, id=5720,
stack(0x5b6b0000,0x5b700000)]
  0x532d8800 JavaThread "pool-3-thread-221" [_thread_blocked, id=5704,
stack(0x5b660000,0x5b6b0000)]
  0x532d7000 JavaThread "pool-3-thread-220" [_thread_blocked, id=5700,
stack(0x5b610000,0x5b660000)]
  0x532d5c00 JavaThread "pool-3-thread-219" [_thread_blocked, id=5696,
stack(0x5b5c0000,0x5b610000)]
  0x532d4400 JavaThread "pool-3-thread-218" [_thread_blocked, id=5684,
stack(0x5b570000,0x5b5c0000)]
  0x532d3000 JavaThread "pool-3-thread-217" [_thread_blocked, id=5680,
stack(0x5b520000,0x5b570000)]
  0x532d1800 JavaThread "pool-3-thread-216" [_thread_blocked, id=5676,
stack(0x5b4d0000,0x5b520000)]
  0x532d0000 JavaThread "pool-3-thread-215" [_thread_blocked, id=5668,
stack(0x5b480000,0x5b4d0000)]
  0x532ce800 JavaThread "pool-3-thread-214" [_thread_blocked, id=5640,
stack(0x5b430000,0x5b480000)]
  0x532cd000 JavaThread "pool-3-thread-213" [_thread_blocked, id=5632,
stack(0x5b3e0000,0x5b430000)]
  0x532cbc00 JavaThread "pool-3-thread-212" [_thread_blocked, id=5620,
stack(0x5b390000,0x5b3e0000)]
  0x532ca400 JavaThread "pool-3-thread-211" [_thread_blocked, id=5608,
stack(0x5b340000,0x5b390000)]
  0x532c9000 JavaThread "pool-3-thread-210" [_thread_blocked, id=5588,
stack(0x5b2f0000,0x5b340000)]
  0x532c7800 JavaThread "pool-3-thread-209" [_thread_blocked, id=5584,
stack(0x5b2a0000,0x5b2f0000)]
  0x532c6000 JavaThread "pool-3-thread-208" [_thread_blocked, id=5576,
stack(0x5b250000,0x5b2a0000)]
  0x532c4800 JavaThread "pool-3-thread-207" [_thread_blocked, id=5568,
stack(0x5b200000,0x5b250000)]
  0x532c3400 JavaThread "pool-3-thread-206" [_thread_blocked, id=5544,
stack(0x5b1b0000,0x5b200000)]
  0x532c1c00 JavaThread "pool-3-thread-205" [_thread_blocked, id=5536,
stack(0x5b160000,0x5b1b0000)]
  0x532c0400 JavaThread "pool-3-thread-204" [_thread_blocked, id=5524,
stack(0x5b110000,0x5b160000)]
  0x532bf000 JavaThread "pool-3-thread-203" [_thread_blocked, id=5528,
stack(0x5b0c0000,0x5b110000)]
  0x532bd800 JavaThread "pool-3-thread-202" [_thread_blocked, id=5508,
stack(0x5b070000,0x5b0c0000)]
  0x532bc000 JavaThread "pool-3-thread-201" [_thread_blocked, id=5512,
stack(0x5b020000,0x5b070000)]
  0x532ba800 JavaThread "pool-3-thread-200" [_thread_blocked, id=5504,
stack(0x5afd0000,0x5b020000)]
  0x532b9400 JavaThread "pool-3-thread-199" [_thread_blocked, id=5488,
stack(0x5af80000,0x5afd0000)]
  0x532b7c00 JavaThread "pool-3-thread-198" [_thread_blocked, id=5464,
stack(0x5af30000,0x5af80000)]
  0x532b6400 JavaThread "pool-3-thread-197" [_thread_blocked, id=5468,
stack(0x5aee0000,0x5af30000)]
  0x54a6dc00 JavaThread "pool-3-thread-196" [_thread_blocked, id=5452,
stack(0x5ae90000,0x5aee0000)]
  0x54a6c000 JavaThread "pool-3-thread-195" [_thread_blocked, id=5428,
stack(0x5ae40000,0x5ae90000)]
  0x54a6ac00 JavaThread "pool-3-thread-194" [_thread_blocked, id=5424,
stack(0x5adf0000,0x5ae40000)]
  0x54a69400 JavaThread "pool-3-thread-193" [_thread_blocked, id=5436,
stack(0x5ada0000,0x5adf0000)]
  0x54a68400 JavaThread "pool-3-thread-192" [_thread_blocked, id=5420,
stack(0x5ad50000,0x5ada0000)]
  0x54a67400 JavaThread "pool-3-thread-191" [_thread_blocked, id=5408,
stack(0x5ad00000,0x5ad50000)]
  0x54a66400 JavaThread "pool-3-thread-190" [_thread_blocked, id=5388,
stack(0x5acb0000,0x5ad00000)]
  0x54a65000 JavaThread "pool-3-thread-189" [_thread_blocked, id=5384,
stack(0x5ac60000,0x5acb0000)]
  0x54a62400 JavaThread "pool-3-thread-188" [_thread_blocked, id=5396,
stack(0x5ac10000,0x5ac60000)]
  0x54a60c00 JavaThread "pool-3-thread-187" [_thread_blocked, id=5380,
stack(0x5abc0000,0x5ac10000)]
  0x54a5f400 JavaThread "pool-3-thread-186" [_thread_blocked, id=5368,
stack(0x5ab70000,0x5abc0000)]
  0x54a5e000 JavaThread "pool-3-thread-185" [_thread_blocked, id=5348,
stack(0x5ab20000,0x5ab70000)]
  0x54a5c800 JavaThread "pool-3-thread-184" [_thread_blocked, id=5360,
stack(0x5aad0000,0x5ab20000)]
  0x54a5b000 JavaThread "pool-3-thread-183" [_thread_blocked, id=5328,
stack(0x5aa80000,0x5aad0000)]
  0x54a59c00 JavaThread "pool-3-thread-182" [_thread_blocked, id=5356,
stack(0x5aa30000,0x5aa80000)]
  0x54a58400 JavaThread "pool-3-thread-181" [_thread_blocked, id=5344,
stack(0x5a9e0000,0x5aa30000)]
  0x54a56c00 JavaThread "pool-3-thread-180" [_thread_blocked, id=5332,
stack(0x5a990000,0x5a9e0000)]
  0x54a55400 JavaThread "pool-3-thread-179" [_thread_blocked, id=5336,
stack(0x5a940000,0x5a990000)]
  0x54a53c00 JavaThread "pool-3-thread-178" [_thread_blocked, id=5308,
stack(0x5a8f0000,0x5a940000)]
  0x54a52800 JavaThread "pool-3-thread-177" [_thread_blocked, id=5300,
stack(0x5a8a0000,0x5a8f0000)]
  0x54204800 JavaThread "pool-3-thread-176" [_thread_blocked, id=5304,
stack(0x5a850000,0x5a8a0000)]
  0x54a51000 JavaThread "pool-3-thread-175" [_thread_blocked, id=5296,
stack(0x5a800000,0x5a850000)]
  0x54a4f800 JavaThread "pool-3-thread-174" [_thread_blocked, id=5288,
stack(0x5a7b0000,0x5a800000)]
  0x54a4e000 JavaThread "pool-3-thread-173" [_thread_blocked, id=5252,
stack(0x5a760000,0x5a7b0000)]
  0x54a4cc00 JavaThread "pool-3-thread-172" [_thread_blocked, id=5256,
stack(0x5a710000,0x5a760000)]
  0x54a4b400 JavaThread "pool-3-thread-171" [_thread_blocked, id=5244,
stack(0x5a6c0000,0x5a710000)]
  0x54a49c00 JavaThread "pool-3-thread-170" [_thread_blocked, id=5260,
stack(0x5a670000,0x5a6c0000)]
  0x54a48800 JavaThread "pool-3-thread-169" [_thread_blocked, id=5248,
stack(0x5a620000,0x5a670000)]
  0x54a47000 JavaThread "pool-3-thread-168" [_thread_blocked, id=5236,
stack(0x5a5d0000,0x5a620000)]
  0x54a45800 JavaThread "pool-3-thread-167" [_thread_blocked, id=5228,
stack(0x5a580000,0x5a5d0000)]
  0x54a44000 JavaThread "pool-3-thread-166" [_thread_blocked, id=5224,
stack(0x5a530000,0x5a580000)]
  0x54a42c00 JavaThread "pool-3-thread-165" [_thread_blocked, id=5220,
stack(0x5a4e0000,0x5a530000)]
  0x54a41400 JavaThread "pool-3-thread-164" [_thread_blocked, id=5188,
stack(0x5a490000,0x5a4e0000)]
  0x54a3fc00 JavaThread "pool-3-thread-163" [_thread_blocked, id=5172,
stack(0x5a440000,0x5a490000)]
  0x543b0c00 JavaThread "pool-3-thread-162" [_thread_blocked, id=5192,
stack(0x5a3f0000,0x5a440000)]
  0x543af800 JavaThread "pool-3-thread-161" [_thread_blocked, id=5184,
stack(0x5a3a0000,0x5a3f0000)]
  0x543ae000 JavaThread "pool-3-thread-160" [_thread_blocked, id=5180,
stack(0x5a350000,0x5a3a0000)]
  0x543acc00 JavaThread "pool-3-thread-159" [_thread_blocked, id=5164,
stack(0x5a300000,0x5a350000)]
  0x543abc00 JavaThread "pool-3-thread-158" [_thread_blocked, id=5168,
stack(0x5a2b0000,0x5a300000)]
  0x543ab000 JavaThread "pool-3-thread-157" [_thread_blocked, id=5152,
stack(0x5a260000,0x5a2b0000)]
  0x543a9c00 JavaThread "pool-3-thread-156" [_thread_blocked, id=5124,
stack(0x5a210000,0x5a260000)]
  0x543a7000 JavaThread "pool-3-thread-155" [_thread_blocked, id=5132,
stack(0x5a1c0000,0x5a210000)]
  0x543a5800 JavaThread "pool-3-thread-154" [_thread_blocked, id=5116,
stack(0x5a170000,0x5a1c0000)]
  0x543a4400 JavaThread "pool-3-thread-153" [_thread_blocked, id=5096,
stack(0x5a120000,0x5a170000)]
  0x543a2c00 JavaThread "pool-3-thread-152" [_thread_blocked, id=5092,
stack(0x5a0d0000,0x5a120000)]
  0x543a1400 JavaThread "pool-3-thread-151" [_thread_blocked, id=5084,
stack(0x5a080000,0x5a0d0000)]
  0x543a0000 JavaThread "pool-3-thread-150" [_thread_blocked, id=5088,
stack(0x5a030000,0x5a080000)]
  0x5439e800 JavaThread "pool-3-thread-149" [_thread_blocked, id=5080,
stack(0x59fe0000,0x5a030000)]
  0x5439d000 JavaThread "pool-3-thread-148" [_thread_blocked, id=5064,
stack(0x59f90000,0x59fe0000)]
  0x5439bc00 JavaThread "pool-3-thread-147" [_thread_blocked, id=5060,
stack(0x59f40000,0x59f90000)]
  0x5439a400 JavaThread "pool-3-thread-146" [_thread_blocked, id=5048,
stack(0x59ef0000,0x59f40000)]
  0x54398c00 JavaThread "pool-3-thread-145" [_thread_blocked, id=5044,
stack(0x59ea0000,0x59ef0000)]
  0x54397800 JavaThread "pool-3-thread-144" [_thread_blocked, id=5040,
stack(0x59e50000,0x59ea0000)]
  0x5448d800 JavaThread "pool-3-thread-143" [_thread_blocked, id=5028,
stack(0x59e00000,0x59e50000)]
  0x5448c400 JavaThread "pool-3-thread-142" [_thread_blocked, id=5004,
stack(0x59db0000,0x59e00000)]
  0x5448ac00 JavaThread "pool-3-thread-141" [_thread_blocked, id=5008,
stack(0x59d60000,0x59db0000)]
  0x54489400 JavaThread "pool-3-thread-140" [_thread_blocked, id=4992,
stack(0x59d10000,0x59d60000)]
  0x54488000 JavaThread "pool-3-thread-139" [_thread_blocked, id=4988,
stack(0x59cc0000,0x59d10000)]
  0x54486800 JavaThread "pool-3-thread-138" [_thread_blocked, id=4972,
stack(0x59c70000,0x59cc0000)]
  0x54485000 JavaThread "pool-3-thread-137" [_thread_blocked, id=4968,
stack(0x59c20000,0x59c70000)]
  0x54483800 JavaThread "pool-3-thread-136" [_thread_blocked, id=4964,
stack(0x59bd0000,0x59c20000)]
  0x54482400 JavaThread "pool-3-thread-135" [_thread_blocked, id=4952,
stack(0x59b80000,0x59bd0000)]
  0x54480c00 JavaThread "pool-3-thread-134" [_thread_blocked, id=4948,
stack(0x59b30000,0x59b80000)]
  0x5447f400 JavaThread "pool-3-thread-133" [_thread_blocked, id=4932,
stack(0x59ae0000,0x59b30000)]
  0x5447e000 JavaThread "pool-3-thread-132" [_thread_blocked, id=4924,
stack(0x59a90000,0x59ae0000)]
  0x5447c800 JavaThread "pool-3-thread-131" [_thread_blocked, id=4928,
stack(0x59a40000,0x59a90000)]
  0x5447b000 JavaThread "pool-3-thread-130" [_thread_blocked, id=4912,
stack(0x599f0000,0x59a40000)]
  0x54479800 JavaThread "pool-3-thread-129" [_thread_blocked, id=4896,
stack(0x599a0000,0x599f0000)]
  0x54478400 JavaThread "pool-3-thread-128" [_thread_blocked, id=4904,
stack(0x59950000,0x599a0000)]
  0x54476c00 JavaThread "pool-3-thread-127" [_thread_blocked, id=4884,
stack(0x59900000,0x59950000)]
  0x54475c00 JavaThread "pool-3-thread-126" [_thread_blocked, id=4888,
stack(0x598b0000,0x59900000)]
  0x5322f000 JavaThread "pool-3-thread-125" [_thread_blocked, id=4880,
stack(0x59860000,0x598b0000)]
  0x5322dc00 JavaThread "pool-3-thread-124" [_thread_blocked, id=4868,
stack(0x59810000,0x59860000)]
  0x5322c400 JavaThread "pool-3-thread-123" [_thread_blocked, id=4852,
stack(0x597c0000,0x59810000)]
  0x5322ac00 JavaThread "pool-3-thread-122" [_thread_blocked, id=4844,
stack(0x59770000,0x597c0000)]
  0x53229400 JavaThread "pool-3-thread-121" [_thread_blocked, id=4848,
stack(0x59720000,0x59770000)]
  0x53228000 JavaThread "pool-3-thread-120" [_thread_blocked, id=4840,
stack(0x596d0000,0x59720000)]
  0x53226800 JavaThread "pool-3-thread-119" [_thread_blocked, id=4832,
stack(0x59680000,0x596d0000)]
  0x53225000 JavaThread "pool-3-thread-118" [_thread_blocked, id=4812,
stack(0x59630000,0x59680000)]
  0x53223c00 JavaThread "pool-3-thread-117" [_thread_blocked, id=4804,
stack(0x595e0000,0x59630000)]
  0x53222400 JavaThread "pool-3-thread-116" [_thread_blocked, id=4808,
stack(0x59590000,0x595e0000)]
  0x53220c00 JavaThread "pool-3-thread-115" [_thread_blocked, id=4792,
stack(0x59540000,0x59590000)]
  0x5321f800 JavaThread "pool-3-thread-114" [_thread_blocked, id=4784,
stack(0x594f0000,0x59540000)]
  0x5321e000 JavaThread "pool-3-thread-113" [_thread_blocked, id=4780,
stack(0x594a0000,0x594f0000)]
  0x5321c800 JavaThread "pool-3-thread-112" [_thread_blocked, id=4752,
stack(0x59450000,0x594a0000)]
  0x5321b000 JavaThread "pool-3-thread-111" [_thread_blocked, id=4748,
stack(0x59400000,0x59450000)]
  0x53219800 JavaThread "pool-3-thread-110" [_thread_blocked, id=4756,
stack(0x593b0000,0x59400000)]
  0x54ffdc00 JavaThread "pool-3-thread-109" [_thread_blocked, id=4760,
stack(0x59360000,0x593b0000)]
  0x54ffc400 JavaThread "pool-3-thread-108" [_thread_blocked, id=4740,
stack(0x59310000,0x59360000)]
  0x54ffac00 JavaThread "pool-3-thread-107" [_thread_blocked, id=4728,
stack(0x592c0000,0x59310000)]
  0x54ff9800 JavaThread "pool-3-thread-106" [_thread_blocked, id=4712,
stack(0x59270000,0x592c0000)]
  0x54ff8000 JavaThread "pool-3-thread-105" [_thread_blocked, id=4716,
stack(0x59220000,0x59270000)]
  0x54ff6800 JavaThread "pool-3-thread-104" [_thread_blocked, id=4696,
stack(0x591d0000,0x59220000)]
  0x54ff5400 JavaThread "pool-3-thread-103" [_thread_blocked, id=4688,
stack(0x59180000,0x591d0000)]
  0x54ff3800 JavaThread "pool-3-thread-102" [_thread_blocked, id=4676,
stack(0x59130000,0x59180000)]
  0x54ff2400 JavaThread "pool-3-thread-101" [_thread_blocked, id=4656,
stack(0x590e0000,0x59130000)]
  0x54ff0c00 JavaThread "pool-3-thread-100" [_thread_blocked, id=4668,
stack(0x59090000,0x590e0000)]
  0x54fef800 JavaThread "pool-3-thread-99" [_thread_blocked, id=4644,
stack(0x59040000,0x59090000)]
  0x54fee000 JavaThread "pool-3-thread-98" [_thread_blocked, id=4648,
stack(0x58ff0000,0x59040000)]
  0x54fec800 JavaThread "pool-3-thread-97" [_thread_blocked, id=4636,
stack(0x58fa0000,0x58ff0000)]
  0x54feb400 JavaThread "pool-3-thread-96" [_thread_blocked, id=4616,
stack(0x58f50000,0x58fa0000)]
  0x54fe9c00 JavaThread "pool-3-thread-95" [_thread_blocked, id=4620,
stack(0x58f00000,0x58f50000)]
  0x55470c00 JavaThread "pool-3-thread-94" [_thread_blocked, id=4596,
stack(0x58eb0000,0x58f00000)]
  0x53271800 JavaThread "pool-3-thread-93" [_thread_blocked, id=4600,
stack(0x58e60000,0x58eb0000)]
  0x54fe7400 JavaThread "pool-3-thread-92" [_thread_blocked, id=4588,
stack(0x58e10000,0x58e60000)]
  0x543bdc00 JavaThread "pool-3-thread-91" [_thread_blocked, id=4592,
stack(0x58dc0000,0x58e10000)]
  0x543bc800 JavaThread "pool-3-thread-90" [_thread_blocked, id=4568,
stack(0x58d70000,0x58dc0000)]
  0x543bb000 JavaThread "pool-3-thread-89" [_thread_blocked, id=4560,
stack(0x58d20000,0x58d70000)]
  0x543b9800 JavaThread "pool-3-thread-88" [_thread_blocked, id=4556,
stack(0x58cd0000,0x58d20000)]
  0x5476c000 JavaThread "pool-3-thread-87" [_thread_blocked, id=4548,
stack(0x58c80000,0x58cd0000)]
  0x5476b000 JavaThread "pool-3-thread-86" [_thread_blocked, id=4528,
stack(0x58c30000,0x58c80000)]
  0x5476a000 JavaThread "pool-3-thread-85" [_thread_blocked, id=4532,
stack(0x58be0000,0x58c30000)]
  0x54769000 JavaThread "pool-3-thread-84" [_thread_blocked, id=4516,
stack(0x58b90000,0x58be0000)]
  0x54768800 JavaThread "pool-3-thread-83" [_thread_blocked, id=4520,
stack(0x58b40000,0x58b90000)]
  0x53abec00 JavaThread "pool-3-thread-82" [_thread_blocked, id=4500,
stack(0x58af0000,0x58b40000)]
  0x54360400 JavaThread "pool-3-thread-81" [_thread_blocked, id=4488,
stack(0x58aa0000,0x58af0000)]
  0x53867c00 JavaThread "pool-3-thread-80" [_thread_blocked, id=4496,
stack(0x58a50000,0x58aa0000)]
  0x53259400 JavaThread "pool-3-thread-79" [_thread_blocked, id=4476,
stack(0x58a00000,0x58a50000)]
  0x5338ec00 JavaThread "pool-3-thread-78" [_thread_blocked, id=4484,
stack(0x589b0000,0x58a00000)]
  0x53359400 JavaThread "pool-3-thread-77" [_thread_blocked, id=4468,
stack(0x58960000,0x589b0000)]
  0x54542400 JavaThread "pool-3-thread-76" [_thread_blocked, id=4464,
stack(0x58910000,0x58960000)]
  0x545b0400 JavaThread "pool-3-thread-75" [_thread_blocked, id=4448,
stack(0x588c0000,0x58910000)]
  0x53306400 JavaThread "pool-3-thread-74" [_thread_blocked, id=4460,
stack(0x58870000,0x588c0000)]
  0x54b51800 JavaThread "pool-3-thread-73" [_thread_blocked, id=4436,
stack(0x58820000,0x58870000)]
  0x5444e400 JavaThread "pool-3-thread-72" [_thread_blocked, id=4440,
stack(0x587d0000,0x58820000)]
  0x546bb400 JavaThread "pool-3-thread-71" [_thread_blocked, id=4428,
stack(0x58780000,0x587d0000)]
  0x54e9e800 JavaThread "pool-3-thread-70" [_thread_blocked, id=4432,
stack(0x58730000,0x58780000)]
  0x54ee6400 JavaThread "pool-3-thread-69" [_thread_blocked, id=4412,
stack(0x586e0000,0x58730000)]
  0x54cfd400 JavaThread "pool-3-thread-68" [_thread_blocked, id=4404,
stack(0x58690000,0x586e0000)]
  0x5502dc00 JavaThread "pool-3-thread-67" [_thread_blocked, id=4416,
stack(0x58640000,0x58690000)]
  0x54ef9800 JavaThread "pool-3-thread-66" [_thread_blocked, id=4396,
stack(0x585f0000,0x58640000)]
  0x5433c400 JavaThread "pool-3-thread-65" [_thread_blocked, id=4392,
stack(0x585a0000,0x585f0000)]
  0x54362c00 JavaThread "pool-3-thread-64" [_thread_blocked, id=4384,
stack(0x58550000,0x585a0000)]
  0x542fc400 JavaThread "pool-3-thread-63" [_thread_blocked, id=4380,
stack(0x58500000,0x58550000)]
  0x53248400 JavaThread "pool-3-thread-62" [_thread_blocked, id=4376,
stack(0x584b0000,0x58500000)]
  0x54e5fc00 JavaThread "pool-3-thread-61" [_thread_blocked, id=4372,
stack(0x58460000,0x584b0000)]
  0x551e0400 JavaThread "pool-3-thread-60" [_thread_blocked, id=4316,
stack(0x58410000,0x58460000)]
  0x557ab800 JavaThread "pool-3-thread-59" [_thread_blocked, id=4340,
stack(0x583c0000,0x58410000)]
  0x549fd400 JavaThread "pool-3-thread-58" [_thread_blocked, id=4332,
stack(0x58370000,0x583c0000)]
  0x5326d400 JavaThread "pool-3-thread-57" [_thread_blocked, id=4344,
stack(0x58320000,0x58370000)]
  0x548ba800 JavaThread "pool-3-thread-56" [_thread_blocked, id=4336,
stack(0x582d0000,0x58320000)]
  0x54a7a800 JavaThread "pool-3-thread-55" [_thread_blocked, id=4348,
stack(0x58280000,0x582d0000)]
  0x544ab800 JavaThread "pool-3-thread-54" [_thread_blocked, id=4328,
stack(0x58230000,0x58280000)]
  0x54438400 JavaThread "pool-3-thread-53" [_thread_blocked, id=4312,
stack(0x581e0000,0x58230000)]
  0x544cb800 JavaThread "pool-3-thread-52" [_thread_blocked, id=4296,
stack(0x58190000,0x581e0000)]
  0x544eb800 JavaThread "pool-3-thread-51" [_thread_blocked, id=4280,
stack(0x58140000,0x58190000)]
  0x549b4400 JavaThread "pool-3-thread-50" [_thread_blocked, id=4276,
stack(0x580f0000,0x58140000)]
  0x55213400 JavaThread "pool-3-thread-49" [_thread_blocked, id=4268,
stack(0x580a0000,0x580f0000)]
  0x539bc400 JavaThread "pool-3-thread-48" [_thread_blocked, id=4272,
stack(0x58050000,0x580a0000)]
  0x532f8400 JavaThread "pool-3-thread-47" [_thread_blocked, id=4260,
stack(0x58000000,0x58050000)]
  0x545b7400 JavaThread "pool-3-thread-46" [_thread_blocked, id=4236,
stack(0x57fb0000,0x58000000)]
  0x5401e800 JavaThread "pool-3-thread-45" [_thread_blocked, id=4240,
stack(0x57f60000,0x57fb0000)]
  0x53869400 JavaThread "pool-3-thread-44" [_thread_blocked, id=4244,
stack(0x57f10000,0x57f60000)]
  0x54056400 JavaThread "pool-3-thread-43" [_thread_blocked, id=4232,
stack(0x57ec0000,0x57f10000)]
  0x54076400 JavaThread "pool-3-thread-42" [_thread_blocked, id=4228,
stack(0x57e70000,0x57ec0000)]
  0x54bae400 JavaThread "pool-3-thread-41" [_thread_blocked, id=4224,
stack(0x57e20000,0x57e70000)]
  0x5390c400 JavaThread "pool-3-thread-40" [_thread_blocked, id=4220,
stack(0x57dd0000,0x57e20000)]
  0x5515dc00 JavaThread "pool-3-thread-39" [_thread_blocked, id=4204,
stack(0x57d80000,0x57dd0000)]
  0x55179800 JavaThread "pool-3-thread-38" [_thread_blocked, id=4200,
stack(0x57d30000,0x57d80000)]
  0x55695400 JavaThread "pool-3-thread-37" [_thread_blocked, id=4192,
stack(0x57ce0000,0x57d30000)]
  0x5496a000 JavaThread "pool-3-thread-36" [_thread_blocked, id=4188,
stack(0x57c90000,0x57ce0000)]
  0x5379c400 JavaThread "pool-3-thread-35" [_thread_blocked, id=4176,
stack(0x57c40000,0x57c90000)]
  0x53e7c800 JavaThread "pool-3-thread-34" [_thread_blocked, id=4172,
stack(0x57bf0000,0x57c40000)]
  0x5463d800 JavaThread "pool-3-thread-33" [_thread_blocked, id=4156,
stack(0x57ba0000,0x57bf0000)]
  0x5391bc00 JavaThread "pool-3-thread-32" [_thread_blocked, id=4148,
stack(0x57b50000,0x57ba0000)]
  0x54364c00 JavaThread "pool-3-thread-31" [_thread_blocked, id=4152,
stack(0x57b00000,0x57b50000)]
  0x54199800 JavaThread "pool-3-thread-30" [_thread_blocked, id=4144,
stack(0x57ab0000,0x57b00000)]
  0x541d1c00 JavaThread "pool-3-thread-29" [_thread_blocked, id=4136,
stack(0x57a60000,0x57ab0000)]
  0x5382e800 JavaThread "pool-3-thread-28" [_thread_blocked, id=4116,
stack(0x57a10000,0x57a60000)]
  0x53ab3400 JavaThread "pool-3-thread-27" [_thread_blocked, id=4112,
stack(0x579c0000,0x57a10000)]
  0x54135800 JavaThread "pool-3-thread-26" [_thread_blocked, id=4108,
stack(0x57970000,0x579c0000)]
  0x5489f800 JavaThread "pool-3-thread-25" [_thread_blocked, id=568,
stack(0x57920000,0x57970000)]
  0x548f7800 JavaThread "pool-3-thread-24" [_thread_blocked, id=3624,
stack(0x578d0000,0x57920000)]
  0x54a34400 JavaThread "pool-3-thread-23" [_thread_blocked, id=1568,
stack(0x57880000,0x578d0000)]
  0x54291400 JavaThread "pool-3-thread-22" [_thread_blocked, id=2772,
stack(0x57830000,0x57880000)]
  0x5496ac00 JavaThread "pool-3-thread-21" [_thread_blocked, id=1244,
stack(0x577e0000,0x57830000)]
  0x559f3c00 JavaThread "pool-3-thread-20" [_thread_blocked, id=2596,
stack(0x57790000,0x577e0000)]
  0x54271c00 JavaThread "pool-3-thread-19" [_thread_blocked, id=3140,
stack(0x57740000,0x57790000)]
  0x54291c00 JavaThread "pool-3-thread-18" [_thread_blocked, id=3300,
stack(0x576f0000,0x57740000)]
  0x5493f400 JavaThread "pool-3-thread-17" [_thread_blocked, id=4048,
stack(0x576a0000,0x576f0000)]
  0x54a0cc00 JavaThread "pool-3-thread-16" [_thread_blocked, id=192,
stack(0x57650000,0x576a0000)]
  0x5328c800 JavaThread "pool-3-thread-15" [_thread_blocked, id=696,
stack(0x57600000,0x57650000)]
  0x5434f400 JavaThread "pool-3-thread-14" [_thread_blocked, id=1544,
stack(0x575b0000,0x57600000)]
  0x55005c00 JavaThread "pool-3-thread-13" [_thread_blocked, id=920,
stack(0x57560000,0x575b0000)]
  0x5489f400 JavaThread "pool-3-thread-12" [_thread_blocked, id=3400,
stack(0x57510000,0x57560000)]
  0x5335c800 JavaThread "pool-3-thread-11" [_thread_blocked, id=1592,
stack(0x57470000,0x574c0000)]
  0x54259400 JavaThread "New I/O server worker #1-1" [_thread_in_native,
id=1616, stack(0x574c0000,0x57510000)]
  0x002a6c00 JavaThread "DestroyJavaVM" [_thread_blocked, id=316,
stack(0x008c0000,0x00910000)]
  0x53365400 JavaThread "New I/O server boss #1 (channelId: 11646147,
/0.0.0.0:8181)" [_thread_in_native, id=3648, stack(0x53b00000,0x53b50000)]
  0x531d0800 JavaThread "Low Memory Detector" daemon [_thread_blocked,
id=3936, stack(0x535d0000,0x53620000)]
=>0x531b8c00 JavaThread "CompilerThread1" daemon [_thread_in_native,
id=3960, stack(0x53580000,0x535d0000)]
  0x531c3400 JavaThread "CompilerThread0" daemon [_thread_blocked, id=4040,
stack(0x53530000,0x53580000)]
  0x531c1c00 JavaThread "Attach Listener" daemon [_thread_blocked, id=2504,
stack(0x534e0000,0x53530000)]
  0x531b6400 JavaThread "Signal Dispatcher" daemon [_thread_blocked,
id=1084, stack(0x53490000,0x534e0000)]
  0x531b3c00 JavaThread "Finalizer" daemon [_thread_blocked, id=2944,
stack(0x53440000,0x53490000)]
  0x531ba800 JavaThread "Reference Handler" daemon [_thread_blocked,
id=2968, stack(0x533f0000,0x53440000)]

Other Threads:
  0x531b1000 VMThread [stack: 0x533a0000,0x533f0000] [id=3616]
  0x531d2400 WatcherThread [stack: 0x53620000,0x53670000] [id=3284]

VM state:not at safepoint (normal execution)

VM Mutex/Monitor currently owned by a thread: None

Heap
 PSYoungGen      total 229376K, used 169329K [0x3f9d0000, 0x4f9d0000,
0x4f9d0000)
  eden space 196608K, 84% used [0x3f9d0000,0x49c071e0,0x4b9d0000)
  from space 32768K, 9% used [0x4b9d0000,0x4bcf5600,0x4d9d0000)
  to   space 3904K, 0% used [0x4f600000,0x4f600000,0x4f9d0000)
 ParOldGen       total 262144K, used 0K [0x0f9d0000, 0x1f9d0000, 0x3f9d0000)
  object space 262144K, 0% used [0x0f9d0000,0x0f9d0000,0x1f9d0000)
 PSPermGen       total 16384K, used 6948K [0x039d0000, 0x049d0000,
0x0f9d0000)
  object space 16384K, 42% used [0x039d0000,0x040993d8,0x049d0000)

Dynamic libraries:
0x00400000 - 0x00424000 	xyz\jdk1.6.0_17\bin\java.exe
0x7c800000 - 0x7c8c2000 	C:\WINDOWS\system32\ntdll.dll
0x77e40000 - 0x77f42000 	C:\WINDOWS\system32\kernel32.dll
0x7d1e0000 - 0x7d27c000 	C:\WINDOWS\system32\ADVAPI32.dll
0x77c50000 - 0x77cef000 	C:\WINDOWS\system32\RPCRT4.dll
0x76f50000 - 0x76f63000 	C:\WINDOWS\system32\Secur32.dll
0x7c340000 - 0x7c396000 	xyz\jdk1.6.0_17\jre\bin\msvcr71.dll
0x6db60000 - 0x6df6a000 	xyz\jdk1.6.0_17\jre\bin\server\jvm.dll
0x77380000 - 0x77411000 	C:\WINDOWS\system32\USER32.dll
0x77c00000 - 0x77c49000 	C:\WINDOWS\system32\GDI32.dll
0x76aa0000 - 0x76acd000 	C:\WINDOWS\system32\WINMM.dll
0x76290000 - 0x762ad000 	C:\WINDOWS\system32\IMM32.DLL
0x71bc0000 - 0x71bc8000 	C:\WINDOWS\system32\rdpsnd.dll
0x771f0000 - 0x77201000 	C:\WINDOWS\system32\WINSTA.dll
0x77ba0000 - 0x77bfa000 	C:\WINDOWS\system32\msvcrt.dll
0x71c40000 - 0x71c97000 	C:\WINDOWS\system32\NETAPI32.dll
0x76b70000 - 0x76b7b000 	C:\WINDOWS\system32\PSAPI.DLL
0x6d860000 - 0x6d86c000 	xyz\jdk1.6.0_17\jre\bin\verify.dll
0x6d3e0000 - 0x6d3ff000 	xyz\jdk1.6.0_17\jre\bin\java.dll
0x6d340000 - 0x6d348000 	xyz\jdk1.6.0_17\jre\bin\hpi.dll
0x6d8a0000 - 0x6d8af000 	xyz\jdk1.6.0_17\jre\bin\zip.dll
0x6d6c0000 - 0x6d6d3000 	xyz\jdk1.6.0_17\jre\bin\net.dll
0x71c00000 - 0x71c17000 	C:\WINDOWS\system32\WS2_32.dll
0x71bf0000 - 0x71bf8000 	C:\WINDOWS\system32\WS2HELP.dll
0x6d6e0000 - 0x6d6e9000 	xyz\jdk1.6.0_17\jre\bin\nio.dll
0x71b20000 - 0x71b61000 	C:\WINDOWS\system32\mswsock.dll
0x5f270000 - 0x5f2ca000 	C:\WINDOWS\system32\hnetcfg.dll
0x71ae0000 - 0x71ae8000 	C:\WINDOWS\System32\wshtcpip.dll
0x68000000 - 0x68035000 	C:\WINDOWS\system32\rsaenh.dll
0x76920000 - 0x769e2000 	C:\WINDOWS\system32\USERENV.dll
0x76ed0000 - 0x76efa000 	C:\WINDOWS\system32\DNSAPI.dll
0x76f70000 - 0x76f77000 	C:\WINDOWS\System32\winrnr.dll
0x76f10000 - 0x76f3e000 	C:\WINDOWS\system32\WLDAP32.dll
0x76f80000 - 0x76f85000 	C:\WINDOWS\system32\rasadhlp.dll
0x6d840000 - 0x6d848000 	xyz\jdk1.6.0_17\jre\bin\sunmscapi.dll
0x761b0000 - 0x76243000 	C:\WINDOWS\system32\CRYPT32.dll
0x76190000 - 0x761a2000 	C:\WINDOWS\system32\MSASN1.dll

VM Arguments:
jvm_args: -Xmx1024m -Xms512m -Xmn256m -XX:+UseParallelGC
-XX:+UseParallelOldGC -XX:+AggressiveOpts -XX:MaxPermSize=192m 
java_command: ca.xyz.ISOLoopbackBroker 8181 2000 0 true false
Launcher Type: SUN_STANDARD

Environment Variables:
JAVA_HOME=xyz\jdk1.6.0_17
PATH=xyz\jdk1.6.0_17\bin;...
USERNAME=xyz
OS=Windows_NT
PROCESSOR_IDENTIFIER=x86 Family 15 Model 6 Stepping 4, GenuineIntel



---------------  S Y S T E M  ---------------

OS: Windows Server 2003 family Build 3790 Service Pack 2

CPU:total 2 (2 cores per cpu, 1 threads per core) family 15 model 6 stepping
4, cmov, cx8, fxsr, mmx, sse, sse2, sse3

Memory: 4k page, physical 1046360k(106548k free), swap 2527412k(997476k
free)

vm_info: Java HotSpot(TM) Server VM (14.3-b01) for windows-x86 JRE
(1.6.0_17-b04), built on Oct 11 2009 00:46:21 by "java_re" with MS VC++ 7.1

time: Fri Mar 12 18:44:03 2010
elapsed time: 176 seconds


-- 
View this message in context: http://n2.nabble.com/jvm-crash-OutOfMemoryException-tp4724030p4724030.html
Sent from the Netty User Group mailing list archive at Nabble.com.


More information about the netty-users mailing list