From c1635c321a7515e2b8559119dc8adfb89e968044 Mon Sep 17 00:00:00 2001 From: "guy.peleg" Date: Tue, 28 May 2019 16:09:32 +1000 Subject: [PATCH 1/8] basic container configuration --- .../leader/container/ContainerHandler.kt | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 leader-yarn/src/main/kotlin/org/apache/amaterasu/leader/container/ContainerHandler.kt diff --git a/leader-yarn/src/main/kotlin/org/apache/amaterasu/leader/container/ContainerHandler.kt b/leader-yarn/src/main/kotlin/org/apache/amaterasu/leader/container/ContainerHandler.kt new file mode 100644 index 00000000..637dc281 --- /dev/null +++ b/leader-yarn/src/main/kotlin/org/apache/amaterasu/leader/container/ContainerHandler.kt @@ -0,0 +1,38 @@ +package org.apache.amaterasu.leader.container + +import com.github.dockerjava.api.DockerClient +import com.github.dockerjava.core.DefaultDockerClientConfig +import com.github.dockerjava.core.DockerClientBuilder +import com.github.dockerjava.jaxrs.JerseyDockerCmdExecFactory + + +class ContainerHandler { + + private val dockerHost = System.getenv("DOCKER_HOST") ?: "unix:///var/run/docker.sock" + private val dockerRegistry = System.getenv("DOCKER_REGISTRY") ?: "127.0.0.1:5000" + + + private fun getDockerClient(config: DefaultDockerClientConfig, dockerCmdExecFactory: JerseyDockerCmdExecFactory?): DockerClient { + return DockerClientBuilder.getInstance(config) + .withDockerCmdExecFactory(dockerCmdExecFactory) + .build() + } + + + private fun buildDockerServerExecutor() : JerseyDockerCmdExecFactory { + return JerseyDockerCmdExecFactory() + .withReadTimeout(1000) + .withConnectTimeout(1000) + .withMaxTotalConnections(100) + .withMaxPerRouteConnections(10) + } + + private fun defaultContainerHandler() { + DefaultDockerClientConfig.createDefaultConfigBuilder() + .withDockerHost(dockerHost) + .withDockerTlsVerify(false) + .withRegistryUrl(dockerRegistry) + .build() + } + +} \ No newline at end of file From e6c2f3c1f120e1c42dddeb94cad87cf530a8f0a6 Mon Sep 17 00:00:00 2001 From: "guy.peleg" Date: Mon, 3 Jun 2019 11:29:08 +1000 Subject: [PATCH 2/8] Docker Build ImageDsl --- leader-yarn/build.gradle | 2 +- .../leader/container/DockerImageFile.kt | 30 +++++++++++++++++++ .../src/test/kotlin/DockerImageFileTest.kt | 20 +++++++++++++ 3 files changed, 51 insertions(+), 1 deletion(-) create mode 100644 leader-yarn/src/main/kotlin/org/apache/amaterasu/leader/container/DockerImageFile.kt create mode 100644 leader-yarn/src/test/kotlin/DockerImageFileTest.kt diff --git a/leader-yarn/build.gradle b/leader-yarn/build.gradle index 65c33dc3..401ed75f 100644 --- a/leader-yarn/build.gradle +++ b/leader-yarn/build.gradle @@ -72,7 +72,7 @@ dependencies { compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" compile "org.jetbrains.kotlin:kotlin-reflect" compile group: 'org.jetbrains.kotlinx', name: 'kotlinx-coroutines-core', version: '1.1.1' - + compile group: 'com.github.docker-java', name: 'docker-java', version: '3.1.0-rc-5' testCompile 'org.jetbrains.spek:spek-api:1.1.5' testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version" testCompile 'org.apache.curator:curator-test:2.13.0' diff --git a/leader-yarn/src/main/kotlin/org/apache/amaterasu/leader/container/DockerImageFile.kt b/leader-yarn/src/main/kotlin/org/apache/amaterasu/leader/container/DockerImageFile.kt new file mode 100644 index 00000000..c5972507 --- /dev/null +++ b/leader-yarn/src/main/kotlin/org/apache/amaterasu/leader/container/DockerImageFile.kt @@ -0,0 +1,30 @@ +package org.apache.amaterasu.leader.container + + + +fun dockerFile(initilizer: DockerImageFile.() -> Unit) : DockerImageFile { + return DockerImageFile().apply(initilizer) +} + +class DockerImageFile { + var baseImage : String = "" + var commandsList : MutableList = mutableListOf() + var entrypoint = mutableListOf() + fun from(baseImage : String) { + this.baseImage = baseImage + } + + fun commands(vararg commands : String){ + commandsList.addAll(commands) + } + + fun entrypoint(vararg command : String) { + entrypoint.addAll(command) + } + + fun compileImage() : String { + return "FROM " + baseImage + "\n" + + commandsList.joinToString (separator = "\n") + "\n" + + "ENTRYPOINT " + entrypoint + } +} diff --git a/leader-yarn/src/test/kotlin/DockerImageFileTest.kt b/leader-yarn/src/test/kotlin/DockerImageFileTest.kt new file mode 100644 index 00000000..ff10e84b --- /dev/null +++ b/leader-yarn/src/test/kotlin/DockerImageFileTest.kt @@ -0,0 +1,20 @@ + +import org.apache.amaterasu.leader.container.dockerFile +import org.junit.Test + +class DockerImageFileTest { + + + @Test + fun buildBasicImageTest() { + val dockerFile = dockerFile { + from("busybox") + commands("COPY A to B","Volume A/B") + entrypoint("java", "-jar", "DirBuster-0.12.jar", "-H") + } + + println(dockerFile.compileImage()) + + } + +} \ No newline at end of file From 19732583039f1117faafa8a63b544168c94003fc Mon Sep 17 00:00:00 2001 From: "guy.peleg" Date: Thu, 13 Jun 2019 15:37:49 +1000 Subject: [PATCH 3/8] basic cli skelton to handle creation of docker image --- ama-cli/build.gradle | 105 ++++ .../ama/cli}/container/ContainerHandler.kt | 2 +- .../ama/cli}/container/DockerImageFile.kt | 10 +- .../amaterasu/ama/cli/main/AmaCliMain.kt | 38 ++ .../src/test/kotlin/DockerImageFileTest.kt | 32 ++ .../amaterasu_pandas-0.2.0-incubating-rc4.zip | Bin 8304 -> 7602 bytes .../amaterasu_python-0.2.0-incubating-rc4.zip | Bin 6167 -> 5629 bytes ...amaterasu_pyspark-0.2.0-incubating-rc4.zip | Bin 14488 -> 13770 bytes .../leader/yarn/AppMasterArgsParser.kt | 37 -- .../leader/yarn/ApplicationMaster.kt | 479 ------------------ .../leader/yarn/YarnNMCallbackHandler.kt | 57 --- .../src/test/kotlin/DockerImageFileTest.kt | 16 +- .../amaterasu-sdk-0.2.0-incubating-rc4.zip | Bin 15020 -> 13978 bytes settings.gradle | 22 +- 14 files changed, 211 insertions(+), 587 deletions(-) create mode 100644 ama-cli/build.gradle rename {leader-yarn/src/main/kotlin/org/apache/amaterasu/leader => ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli}/container/ContainerHandler.kt (96%) rename {leader-yarn/src/main/kotlin/org/apache/amaterasu/leader => ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli}/container/DockerImageFile.kt (69%) create mode 100644 ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/main/AmaCliMain.kt create mode 100644 ama-cli/src/test/kotlin/DockerImageFileTest.kt delete mode 100644 leader-yarn/src/main/kotlin/org/apache/amaterasu/leader/yarn/AppMasterArgsParser.kt delete mode 100644 leader-yarn/src/main/kotlin/org/apache/amaterasu/leader/yarn/ApplicationMaster.kt delete mode 100644 leader-yarn/src/main/kotlin/org/apache/amaterasu/leader/yarn/YarnNMCallbackHandler.kt diff --git a/ama-cli/build.gradle b/ama-cli/build.gradle new file mode 100644 index 00000000..549506ce --- /dev/null +++ b/ama-cli/build.gradle @@ -0,0 +1,105 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +buildscript { + + repositories { + mavenCentral() + maven { + url 'http://repository.jetbrains.com/all' + } + maven { + url "https://jetbrains.jfrog.io/jetbrains/spek-snapshots" + } + } + + dependencies { + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.0' + } +} + +plugins { + id "com.github.johnrengelman.shadow" version "2.0.4" +} + +apply plugin: 'kotlin' +apply plugin: 'org.junit.platform.gradle.plugin' + +junitPlatform { + filters { + engines { + include 'spek' + } + } +} + +sourceCompatibility = 1.8 +targetCompatibility = 1.8 + +shadowJar { + zip64 true +} + +repositories { + maven { url "https://plugins.gradle.org/m2/" } + maven { url 'http://repository.jetbrains.com/all' } + maven { url "https://jetbrains.jfrog.io/jetbrains/spek-snapshots" } + maven { url "http://dl.bintray.com/jetbrains/spek" } + maven { url "http://oss.jfrog.org/artifactory/oss-snapshot-local" } + + mavenCentral() + jcenter() +} + +dependencies { + compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" + compile "org.jetbrains.kotlin:kotlin-reflect" + compile group: 'org.jetbrains.kotlinx', name: 'kotlinx-coroutines-core', version: '1.1.1' + compile group: 'com.github.docker-java', name: 'docker-java', version: '3.1.0-rc-5' + testCompile 'org.jetbrains.spek:spek-api:1.1.5' + testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version" + testCompile 'org.apache.curator:curator-test:2.13.0' + testRuntime 'org.jetbrains.spek:spek-junit-platform-engine:1.1.5' + compile group: 'com.xenomachina', name: 'kotlin-argparser', version: '2.0.7' + + // Spek requires kotlin-reflect, can be omitted if already in the classpath + testRuntimeOnly "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version" +} + +task copyToHomeRoot(type: Copy) { + from 'src/main/scripts' + into '../build/amaterasu/' +} + +task copyToHomeBin(type: Copy) { + dependsOn shadowJar + from 'build/libs' + into '../build/amaterasu/bin' +} + +task copyToHome() { + dependsOn copyToHomeRoot + dependsOn copyToHomeBin +} + +compileKotlin{ + kotlinOptions.jvmTarget = "1.8" +} + +compileTestKotlin { + kotlinOptions.jvmTarget = "1.8" +} diff --git a/leader-yarn/src/main/kotlin/org/apache/amaterasu/leader/container/ContainerHandler.kt b/ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/container/ContainerHandler.kt similarity index 96% rename from leader-yarn/src/main/kotlin/org/apache/amaterasu/leader/container/ContainerHandler.kt rename to ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/container/ContainerHandler.kt index 637dc281..294ec1a5 100644 --- a/leader-yarn/src/main/kotlin/org/apache/amaterasu/leader/container/ContainerHandler.kt +++ b/ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/container/ContainerHandler.kt @@ -1,4 +1,4 @@ -package org.apache.amaterasu.leader.container +package org.apache.amaterasu.ama.cli.container import com.github.dockerjava.api.DockerClient import com.github.dockerjava.core.DefaultDockerClientConfig diff --git a/leader-yarn/src/main/kotlin/org/apache/amaterasu/leader/container/DockerImageFile.kt b/ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/container/DockerImageFile.kt similarity index 69% rename from leader-yarn/src/main/kotlin/org/apache/amaterasu/leader/container/DockerImageFile.kt rename to ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/container/DockerImageFile.kt index c5972507..221151de 100644 --- a/leader-yarn/src/main/kotlin/org/apache/amaterasu/leader/container/DockerImageFile.kt +++ b/ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/container/DockerImageFile.kt @@ -1,5 +1,6 @@ -package org.apache.amaterasu.leader.container +package org.apache.amaterasu.ama.cli.container +import java.io.File fun dockerFile(initilizer: DockerImageFile.() -> Unit) : DockerImageFile { @@ -7,6 +8,7 @@ fun dockerFile(initilizer: DockerImageFile.() -> Unit) : DockerImageFile { } class DockerImageFile { + val DOCKER_FILE_NAME = "Dockerfile" var baseImage : String = "" var commandsList : MutableList = mutableListOf() var entrypoint = mutableListOf() @@ -22,7 +24,11 @@ class DockerImageFile { entrypoint.addAll(command) } - fun compileImage() : String { + fun createImageFile(dockerFileName : String = DOCKER_FILE_NAME) { + File(dockerFileName).writeText(compileImageString()) + } + + private fun compileImageString() : String { return "FROM " + baseImage + "\n" + commandsList.joinToString (separator = "\n") + "\n" + "ENTRYPOINT " + entrypoint diff --git a/ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/main/AmaCliMain.kt b/ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/main/AmaCliMain.kt new file mode 100644 index 00000000..2cccfb7c --- /dev/null +++ b/ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/main/AmaCliMain.kt @@ -0,0 +1,38 @@ +package org.apache.amaterasu.ama.cli.main + +import com.xenomachina.argparser.ArgParser +import com.xenomachina.argparser.mainBody +import org.apache.amaterasu.ama.cli.container.dockerFile + + +fun main( args : Array ) = mainBody("ama-cli") { + + if (args.size < AmaCLIArgs.REQUIRED_ARGS){ + ArgParser(arrayOf("--help")).parseInto( ::AmaCLIArgs ) + } + + val parsedArgs = ArgParser(args).parseInto(::AmaCLIArgs) + dockerFile { + from(parsedArgs.baseimage) + commands(parsedArgs.commands) + entrypoint(parsedArgs.entrypoint) + }.createImageFile() + + +} + +class AmaCLIArgs(parser: ArgParser) { + + companion object { + const val REQUIRED_ARGS = 3 + } + + val v by parser.flagging("enable verbose mode") + + val baseimage by parser.storing("base docker image") + + val commands by parser.storing("commands to run") + + val entrypoint by parser.storing("entrypoint to the container") +} + diff --git a/ama-cli/src/test/kotlin/DockerImageFileTest.kt b/ama-cli/src/test/kotlin/DockerImageFileTest.kt new file mode 100644 index 00000000..6427eb8f --- /dev/null +++ b/ama-cli/src/test/kotlin/DockerImageFileTest.kt @@ -0,0 +1,32 @@ + +import org.apache.amaterasu.ama.cli.container.dockerFile +import org.junit.Test +import java.io.File +import kotlin.test.assertEquals + +class DockerImageFileTest { + + + @Test + fun buildBasicImageTest() { + //given + val expectedDockerFile = """FROM busybox +COPY A to B +Volume A/B +ENTRYPOINT [java, -jar, somejar.jar, -H]""" + val dockerFile = dockerFile { + from("busybox") + commands("COPY A to B", "Volume A/B") + entrypoint("java", "-jar", "somejar.jar", "-H") + } + + //when + dockerFile.createImageFile() + + //then + assertEquals(expectedDockerFile, File("Dockerfile").readLines().joinToString(separator = "\n")) + + File("Dockerfile").delete() + } + +} \ No newline at end of file diff --git a/frameworks/python/pandas_runtime/dist/amaterasu_pandas-0.2.0-incubating-rc4.zip b/frameworks/python/pandas_runtime/dist/amaterasu_pandas-0.2.0-incubating-rc4.zip index 65419309ab0565b8e06a6d2c365cdf715ef3dcd0..b2f00332fc0ac243a65b085e76a9df27383be1de 100644 GIT binary patch delta 509 zcmez1u*sS?z?+#xgn@y9gJE;wp3Odt9!$(%vv+Tv&K$|Y3>2CCnLQUIFgckc1jOIG zizAT`{WSGpzp*fjdS_EvnoU}BPH`Bxfjmi6^*(PU7^MS3X0*WqY zgNTYM0A1+^($54n#2jWAkY3U#&OR|gZ}I{T?#a3`JYd~6GSWnf5m5ko z&QFc^FmE4Fc?{4=-YD8Hae@`*b8}CYk%j2jmX&5Y$psefl9d4)xe_Q8#|;+x&BLP; z;LXS+!VC{xKl!@v72-f+MS<8C#dvWZpr&ZB8S~_%nP!5xPLu!2DS&;iATQ0t#|!eO z0VDt91$^9->*aaCGJQZ9DPfq*8WD)^K=JhlC}SlGlL=4|;^SrDWmwM2!0;911O@qAZKjk^8Rz?+#xgn@y9gJDbIp3O{*ZcNNyvv+UyW;SPG28v8>WzPi*d}Wt~$cS>y zVgku*-oz6RW=t00e-2jqkAE_lo+8i-rd0$h!Sn*bB37{RlWl~h85t%EFd9zo6y{L? z+T$0!t5&X1E*u-mG!jqYPB12E_U> z^+0+_V>262i!I2xlLJMhnLY!#j2e?S2=Pz0=HQ;ZL4*e^wI3)Y%n6r@=Hi+xE6M|Q zsg9^L(+2Lz2YI}}4g~trkLiVPKqJT|Mg|6N6x)ROfC`-^Gm43W^-7CLGyQ=G`3ne4 z?h=C-ITI*6i65-;hnR!{$jG8;yFUm5jp7GlUlb#i1i%W5#3jK-_K8a~&4UQN6_?@T QX5ePH!ot8H4ARU10Ej|?PXGV_ delta 752 zcmeyXJ>5Viz?+#xgaHIhN>})S8BjuvVe&*#4Lk}=!3rkV2=U`lwQKfrt>!0^_Q0qkI%0B=Sn5oYY3HifBY0BLZ6`w*`t2NX@y!9GUP z0QR$=ikI*Fzl;nF|5z9p^xzs87?w1Ch1ilVC;|$D$#sI#Om@tmu%9e1#5Vb)ARpL+ zw}8SG>`-A*1)xg56#a0`LqH?hnHd-mZU7ni0-~@+NDZv;!)bMH2POuF44~ciD0Xvj zflUO);pCq}VhW%%5R~b??hn+V9w>^J@_^!UG9M4eOdlcA2_iCJ-_?sqGqz8jAnH8%13%B?S0X%M(Vswt;(}mv p8U%PTf^;(5bt9nH8Gv>(grHbH8KfzWkB@? diff --git a/frameworks/spark/pyspark_runtime/dist/amaterasu_pyspark-0.2.0-incubating-rc4.zip b/frameworks/spark/pyspark_runtime/dist/amaterasu_pyspark-0.2.0-incubating-rc4.zip index 377a24164f9c6cca33bba3f224ce9753c434ae84..635596b98127a606044d6e229700ac1fb59ba0d6 100644 GIT binary patch delta 769 zcmbPHcq*GWz?+#xgn@y9gJDtOp3NbQUQEnivv+S^$ZX5P3>2CCkUftNDB!nU@O8_6 zW(J1cT$Af~>^INhxWWupSj?jc(J`IxC<|C5Ubqgzcpxqck@_KN$O@Lyk)Hw)IjmR+ zQDd$a%?z?<^Hj}bCNSf-Ha{cSW?tQiV0xkMY%p!F*8--G>6IvgUF)}h@wsRQCI*K8 zEDQ|#KtI61l17HfjXYYDc??AqKyKHxnpgE1=yncHbalQ=6B9KjXBvutO>QuhX6j`F zi5xQ&1vz-~J)p=xw#kVcZu|k>j7%cTke~ud1sF*)$#YLkw4S_|hg%0t)-Q%Jv?m?t ztYh2^49+lj0qG@;&b%N!QpRFnr@c7hBBcgYw+g7v7DXMm&}2mu{mJ#lGGLd?GnQuR z5d#a!NnqM{j#;zjD$pDYpgE2x<}8r_YVrqLw)LqbvokQfSbz%6P!!#e1)IFzL=>#B zzGqgW3{cT~plMbp3iB1f3YASI!LG75m1cUZ0v75v6^29?P{>hZ@0*b;Q6x()c12rWmfD}!;7AVk{_02Tn})S8BjueL)hDVVTNRicK zejP4em|HkNZrRA|#l*ZiX!+(SCR-L}pupr=Y$O=~cRCWqPq(-3-qUM82G&9KH&3+omOkl*DX=P7E-Wq6JU7j$N=`WPJlNflL#~RptXdlX8>t%1&1SE4Z0{A=D@=huO=rH zP0!)sjHC%1(ti6FpNnQ-Vqo~s!oZ*p*TlfEq|u!blm;f->4_)+qry+qYF^c6W(Ech zPIQG+n86BX0~LbO(VI0+dz67DsR6M8iiua)!3uxqiGpHfvVguclPd>M$a->yzBt&D z6#a0`LyQaz>_CfLQ1qtpfEC_?DvV(a?MVkZ`4~3?gENZ4E`5m2!)5F?i-OB$!ZG;vK{tHXn#@wh_NUn!s_ x2_W_dVi;J`Xru>snzt_RWCK$ku&eD&rI~gjq!yUU@QE>qF$4h() - private val completedContainersAndTaskIds = ConcurrentHashMap() - private val containersIdsToTask = ConcurrentHashMap() - private val yamlMapper = ObjectMapper(YAMLFactory()) - - private lateinit var propPath: String - private lateinit var props: FileInputStream - private lateinit var jobManager: JobManager - private lateinit var zkClient: CuratorFramework - private lateinit var env: String - private lateinit var rmClient: AMRMClientAsync - private lateinit var frameworkFactory: FrameworkProvidersFactory - private lateinit var config: ClusterConfig - private lateinit var fs: FileSystem - private lateinit var consumer: MessageConsumer - private lateinit var configManager: ConfigManager - private lateinit var notifier: ActiveNotifier - private lateinit var nmClient: NMClientAsync - - init { - yamlMapper.registerModule(KotlinModule()) - } - - fun execute(opts: AmaOpts) { - - propPath = System.getenv("PWD") + "/amaterasu.properties" - props = FileInputStream(File(propPath)) - - // no need for HDFS double check (nod to Aaron Rodgers) - // jars on HDFS should have been verified by the YARN zkClient - config = ClusterConfig.apply(props) - fs = FileSystem.get(conf) - - initJob(opts) - - // now that the job was initiated, the curator zkClient is Started and we can - // register the broker's address - zkClient.create().withMode(CreateMode.PERSISTENT).forPath("/${jobManager.jobId}/broker") - zkClient.setData().forPath("/${jobManager.jobId}/broker", address.toByteArray()) - - // once the broker is registered, we can remove the barrier so clients can connect - log.info("/${jobManager.jobId}-report-barrier") - val barrier = DistributedBarrier(zkClient, "/${jobManager.jobId}-report-barrier") - barrier.removeBarrier() - - consumer = MessagingClientUtil.setupMessaging(address) - notifier = ActiveNotifier(address) - - log.info("number of messages ${broker.adminView.totalMessageCount}") - - // Initialize clients to ResourceManager and NodeManagers - nmClient = NMClientAsyncImpl(YarnNMCallbackHandler(notifier)) - nmClient.init(conf) - nmClient.start() - - rmClient = startRMClient() - - val items = mutableListOf() - - for (p in frameworkFactory.providers().values()) { - items.add(p) - } - val configItems = items.flatMap { it.configurationItems.asIterable() } - configManager = ConfigManager(env, "repo", configItems) - - - val registrationResponse = rmClient.registerApplicationMaster("", 0, "") - val maxMem = registrationResponse.maximumResourceCapability.memorySize - val maxVCores = registrationResponse.maximumResourceCapability.virtualCores - - while (!jobManager.outOfActions) { - val capability = Records.newRecord(Resource::class.java) - - val actionData = jobManager.nextActionData - if (actionData != null) { - - notifier.info("requesting container fo ${actionData.name}") - val frameworkProvider = frameworkFactory.getFramework(actionData.groupId) - val driverConfiguration = frameworkProvider.driverConfiguration - - var mem: Long = driverConfiguration.memory.toLong() - mem = Math.min(mem, maxMem) - capability.memorySize = mem - - var cpu = driverConfiguration.cpus - cpu = Math.min(cpu, maxVCores) - capability.virtualCores = cpu - - createTaskConfiguration(actionData) - requestContainer(actionData, capability) - - } - } - - log.info("Finished requesting containers") - readLine() - } - - private fun initJob(opts: AmaOpts) { - - this.env = opts.env - frameworkFactory = FrameworkProvidersFactory.apply(env, config) - - try { - val retryPolicy = ExponentialBackoffRetry(1000, 3) - zkClient = CuratorFrameworkFactory.newClient(config.zk(), retryPolicy) - zkClient.start() - } catch (e: Exception) { - log.error("Error connecting to zookeeper", e) - throw e - } - - val zkPath = zkClient.checkExists().forPath("/${opts.newJobId}") - - log.info("zkPath is $zkPath") - if (zkPath != null) { - log.info("resuming job" + opts.newJobId) - jobManager = JobLoader.reloadJob( - opts.newJobId, - opts.userName, - opts.password, - zkClient, - config.Jobs().tasks().attempts(), - LinkedBlockingQueue()) - - } else { - log.info("new job is being created") - try { - - jobManager = JobLoader.loadJob( - opts.repo, - opts.branch, - opts.newJobId, - opts.userName, - opts.password, - zkClient, - config.Jobs().tasks().attempts(), - LinkedBlockingQueue()) - } catch (e: Exception) { - log.error("Error creating JobManager.", e) - throw e - } - - } - - jobManager.start() - log.info("Started jobManager") - } - - override fun onContainersAllocated(containers: MutableList?) = runBlocking { - containers?.let { - for (container in it) { - - log.info("container ${container.id} allocated") - if (actionsBuffer.isNotEmpty()) { - val actionData = actionsBuffer.poll() - //val cd = async { - try { - log.info("container ${container.id} allocated") - - val framework = frameworkFactory.getFramework(actionData.groupId) - val runnerProvider = framework.getRunnerProvider(actionData.typeId) - val ctx = Records.newRecord(ContainerLaunchContext::class.java) - - - val envConf = configManager.getActionConfiguration(actionData.name, actionData.config) - val commands: List = listOf(runnerProvider.getCommand(jobManager.jobId, actionData, envConf, "${actionData.id}-${container.id.containerId}", address)) - - notifier.info("container command ${commands.joinToString(prefix = " ", postfix = " ")}") - ctx.commands = commands - ctx.tokens = allTokens() - - ctx.localResources = setupContainerResources(framework, runnerProvider, actionData) - ctx.environment = framework.environmentVariables - - nmClient.startContainerAsync(container, ctx) - - jobManager.actionStarted(actionData.id) - containersIdsToTask[container.id.containerId] = actionData - notifier.info("created container for ${actionData.name} created") - //ctx.localResources.forEach { t: String, u: LocalResource -> notifier.info("resource: $t = ${u.resource}") } - log.info("launching container succeeded: ${container.id.containerId}; task: ${actionData.id}") - } catch (e: Exception) { - notifier.error("", "error launching container with ${e.message} in ${ExceptionUtils.getStackTrace(e)}") - requestContainer(actionData, container.resource) - } - } - } - } - }!! - - private fun allTokens(): ByteBuffer { - // creating the credentials for container execution - val credentials = UserGroupInformation.getCurrentUser().credentials - val dob = DataOutputBuffer() - credentials.writeTokenStorageToStream(dob) - - // removing the AM->RM token so that containers cannot access it. - val iter = credentials.allTokens.iterator() - log.info("Executing with tokens:") - for (token in iter) { - log.info(token.toString()) - if (token.kind == AMRMTokenIdentifier.KIND_NAME) iter.remove() - } - return ByteBuffer.wrap(dob.data, 0, dob.length) - } - - /** - * Creates the map of resources to be copied into the container - * @framework The frameworkSetupProvider for the action - * @runnerProvider the actions runner provider - */ - private fun setupContainerResources(framework: FrameworkSetupProvider, runnerProvider: RunnerSetupProvider, actionData: ActionData): Map { - - val yarnJarPath = Path(config.yarn().hdfsJarsPath()) - - // Getting framework (group) resources - val result = framework.groupResources.map { it.path to createLocalResourceFromPath(Path.mergePaths(yarnJarPath, createDistPath(it.path))) }.toMap().toMutableMap() - - // Getting runner resources - result.putAll(runnerProvider.runnerResources.map { it to createLocalResourceFromPath(Path.mergePaths(yarnJarPath, createDistPath(it))) }.toMap()) - - // getting the action specific resources - result.putAll(runnerProvider.getActionResources(jobManager.jobId, actionData).map { it.removePrefix("${jobManager.jobId}/${actionData.name}/") to createLocalResourceFromPath(Path.mergePaths(yarnJarPath, createDistPath(it))) }) - - // getting the action specific dependencies - runnerProvider.getActionDependencies(jobManager.jobId, actionData).forEach { distributeFile(it, "${jobManager.jobId}/${actionData.name}/") } - - result.putAll(runnerProvider.getActionDependencies(jobManager.jobId, actionData).map { File(it).name to createLocalResourceFromPath(Path.mergePaths(yarnJarPath, createDistPath("${jobManager.jobId}/${actionData.name}/$it"))) }) - - // Adding the Amaterasu configuration files - result["amaterasu.properties"] = createLocalResourceFromPath(Path.mergePaths(yarnJarPath, Path("/amaterasu.properties"))) - result["log4j.properties"] = createLocalResourceFromPath(Path.mergePaths(yarnJarPath, Path("/log4j.properties"))) - - // getting the action executable - val executable = runnerProvider.getActionExecutable(jobManager.jobId, actionData) - - // setting the action executable - distributeFile(executable, "${jobManager.jobId}/${actionData.name}/") - result[File(executable).name] = createLocalResourceFromPath(Path.mergePaths(yarnJarPath, createDistPath("${jobManager.jobId}/${actionData.name}/$executable"))) - - result.forEach { log.debug("entry ${it.key} with value ${it.value}") } - - return result.map { x -> x.key.removePrefix("/") to x.value }.toMap() - } - - private fun createTaskConfiguration(actionData: ActionData) { - - // setting up the configuration files for the container - val envYaml = configManager.getActionConfigContent(actionData.name, actionData.config) - writeConfigFile(envYaml, jobManager.jobId, actionData.name, "env.yaml") - - val dataStores = DataLoader.getTaskData(actionData, env).exports - val dataStoresYaml = yamlMapper.writeValueAsString(dataStores) - writeConfigFile(dataStoresYaml, jobManager.jobId, actionData.name, "datastores.yaml") - - val datasets = DataLoader.getDatasets(env) - writeConfigFile(datasets, jobManager.jobId, actionData.name, "datasets.yaml") - - writeConfigFile("jobId: ${jobManager.jobId}\nactionName: ${actionData.name}", jobManager.jobId, actionData.name, "runtime.yaml") - - } - - private fun writeConfigFile(content: String, jobId: String, actionName: String, fileName: String) { - - val actionDistPath = createDistPath("$jobId/$actionName/$fileName") - val yarnJarPath = Path(config.yarn().hdfsJarsPath()) - val targetPath = Path.mergePaths(yarnJarPath, actionDistPath) - - val outputStream = fs.create(targetPath) - outputStream.write(content.toByteArray()) - outputStream.close() - log.info("written file $targetPath") - - } - - private fun distributeFile(file: String, distributionPath: String) { - - - val actionDistPath = createDistPath("$distributionPath/$file") - val yarnJarPath = Path(config.yarn().hdfsJarsPath()) - val targetPath = Path.mergePaths(yarnJarPath, actionDistPath) - - notifier.info("copying file $file, file status ${File(file).exists()} to $targetPath") - - log.info("target is $targetPath") - - fs.copyFromLocalFile(false, true, Path(file), targetPath) - - } - - private fun createDistPath(path: String): Path = Path("/dist/$path") - - private fun startRMClient(): AMRMClientAsync { - val client = AMRMClientAsync.createAMRMClientAsync(1000, this) - client.init(conf) - client.start() - return client - } - - private fun createLocalResourceFromPath(path: Path): LocalResource { - - val stat = fs.getFileStatus(path) - val fileResource = Records.newRecord(LocalResource::class.java) - - fileResource.shouldBeUploadedToSharedCache = true - fileResource.visibility = LocalResourceVisibility.PUBLIC - fileResource.resource = URL.fromPath(path) - fileResource.size = stat.len - fileResource.timestamp = stat.modificationTime - fileResource.type = LocalResourceType.FILE - fileResource.visibility = LocalResourceVisibility.PUBLIC - return fileResource - - } - - private fun requestContainer(actionData: ActionData, capability: Resource) { - - actionsBuffer.add(actionData) - log.info("About to ask container for action ${actionData.id} with mem ${capability.memory} and cores ${capability.virtualCores}. Action buffer size is: ${actionsBuffer.size}") - - // we have an action to schedule, let's request a container - val priority: Priority = Records.newRecord(Priority::class.java) - priority.priority = 1 - val containerReq = AMRMClient.ContainerRequest(capability, null, null, priority) - rmClient.addContainerRequest(containerReq) - log.info("Asked container for action ${actionData.id}") - - } - - override fun onNodesUpdated(updatedNodes: MutableList?) { - log.info("Nodes change. Nothing to report.") - } - - override fun onShutdownRequest() { - log.error("Shutdown requested.") - stopApplication(FinalApplicationStatus.KILLED, "Shutdown requested") - } - - override fun getProgress(): Float { - return jobManager.registeredActions.size.toFloat() / completedContainersAndTaskIds.size - } - - override fun onError(e: Throwable?) { - notifier.error("Error running a container ${e!!.message!!}", ExceptionUtils.getStackTrace(e)) - stopApplication(FinalApplicationStatus.FAILED, "Error on AM") - } - - override fun onContainersCompleted(statuses: MutableList?) { - for (status in statuses!!) { - if (status.state == ContainerState.COMPLETE) { - - val containerId = status.containerId.containerId - val task = containersIdsToTask[containerId] - rmClient.releaseAssignedContainer(status.containerId) - - val taskId = task!!.id - if (status.exitStatus == 0) { - - //completedContainersAndTaskIds.put(containerId, task.id) - jobManager.actionComplete(taskId) - notifier.info("Container $containerId Complete with task $taskId with success.") - } else { - // TODO: Check the getDiagnostics value and see if appropriate - jobManager.actionFailed(taskId, status.diagnostics) - notifier.error("Container $containerId Complete with task $taskId with Failed status code (${status.exitStatus})", status.diagnostics) - } - } - } - - if (jobManager.outOfActions) { - log.info("Finished all tasks successfully! Wow!") - jobManager.actionsCount() - stopApplication(FinalApplicationStatus.SUCCEEDED, "SUCCESS") - } else { - log.info("jobManager.registeredActions.size: ${jobManager.registeredActions.size}; completedContainersAndTaskIds.size: ${completedContainersAndTaskIds.size}") - } - } - - private fun stopApplication(finalApplicationStatus: FinalApplicationStatus, appMessage: String) { - - try { - rmClient.unregisterApplicationMaster(finalApplicationStatus, appMessage, null) - } catch (ex: YarnException) { - - log.error("Failed to unregister application", ex) - } catch (e: IOException) { - log.error("Failed to unregister application", e) - } - rmClient.stop() - nmClient.stop() - } - - companion object { - @JvmStatic - fun main(args: Array) = AppMasterArgsParser().main(args) - - } -} diff --git a/leader-yarn/src/main/kotlin/org/apache/amaterasu/leader/yarn/YarnNMCallbackHandler.kt b/leader-yarn/src/main/kotlin/org/apache/amaterasu/leader/yarn/YarnNMCallbackHandler.kt deleted file mode 100644 index 697bb40f..00000000 --- a/leader-yarn/src/main/kotlin/org/apache/amaterasu/leader/yarn/YarnNMCallbackHandler.kt +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.apache.amaterasu.leader.yarn - -import org.apache.amaterasu.common.logging.KLogging -import org.apache.amaterasu.common.utils.ActiveNotifier -import org.apache.commons.lang.exception.ExceptionUtils - -import java.nio.ByteBuffer - -import org.apache.hadoop.yarn.api.records.ContainerId -import org.apache.hadoop.yarn.api.records.ContainerStatus -import org.apache.hadoop.yarn.client.api.async.NMClientAsync - - - -class YarnNMCallbackHandler(val notifier: ActiveNotifier) : KLogging() , NMClientAsync.CallbackHandler { - - override fun onStartContainerError(containerId: ContainerId, t: Throwable) { - notifier.error("Error starting a container ${t.message!!}", ExceptionUtils.getStackTrace(t)) - } - - override fun onGetContainerStatusError(containerId: ContainerId, t: Throwable) { - notifier.error("","Couldn't get status from container ${containerId.containerId}. message ${t.message}") - } - - override fun onContainerStatusReceived(containerId: ContainerId, containerStatus: ContainerStatus) { - notifier.info("Container ${containerId.containerId} has status of ${containerStatus.state}") - } - - override fun onContainerStarted(containerId: ContainerId, allServiceResponse: Map) { - notifier.info("Container ${containerId.containerId} Started") - } - - override fun onStopContainerError(containerId: ContainerId, t: Throwable) { - notifier.error("Error running a container ${t.message!!}", ExceptionUtils.getStackTrace(t)) - } - - override fun onContainerStopped(containerId: ContainerId) { - notifier.info("Container ${containerId.containerId} stopped") - } - -} \ No newline at end of file diff --git a/leader-yarn/src/test/kotlin/DockerImageFileTest.kt b/leader-yarn/src/test/kotlin/DockerImageFileTest.kt index ff10e84b..74fffdfe 100644 --- a/leader-yarn/src/test/kotlin/DockerImageFileTest.kt +++ b/leader-yarn/src/test/kotlin/DockerImageFileTest.kt @@ -1,20 +1,32 @@ import org.apache.amaterasu.leader.container.dockerFile import org.junit.Test +import java.io.File +import kotlin.test.assertEquals class DockerImageFileTest { @Test fun buildBasicImageTest() { + //given + val expectedDockerFile = """FROM busybox +COPY A to B +Volume A/B +ENTRYPOINT [java, -jar, somejar.jar, -H]""" val dockerFile = dockerFile { from("busybox") commands("COPY A to B","Volume A/B") - entrypoint("java", "-jar", "DirBuster-0.12.jar", "-H") + entrypoint("java", "-jar", "somejar.jar", "-H") } - println(dockerFile.compileImage()) + //when + dockerFile.createImageFile() + //then + assertEquals(expectedDockerFile, File("Dockerfile").readLines().joinToString(separator = "\n")) + + File("Dockerfile").delete() } } \ No newline at end of file diff --git a/sdk_python/dist/amaterasu-sdk-0.2.0-incubating-rc4.zip b/sdk_python/dist/amaterasu-sdk-0.2.0-incubating-rc4.zip index 9c18986974ac0d53b30afce51a6e5634b270b9d4..4200b851276cf4bb7ed55b2ca4810ba81bf5b733 100644 GIT binary patch delta 752 zcmZ2eIxCkqz?+#xgn@y9gJDbIo{b+JnV7$3@7`?6+|I%b6qvl9Jqtu{*5Qa?0t>Wr zeF4*T+?8PZ7k3_*&gRKtWMgwi1&Moe6|uObdC)y z^x8;N0VsrGniI?@Aibo~njNUnZgQNl5Ln>{x!9&DK#8kBt6fnPPU8eBw3&RySRAa- zb;0*q37`ToAa+Ah*vkc0Xm26`c1@ItG!rK`SZK3}Bv|M?P^bzbq+u!t3EasAX3|VA zxhE%@>rdw8*J5X2xCIOi8x$i$ znEY2=5af2Sv1fq7&$Pk9+%A~$rC-T9+TpX7|h1aZG5Qc1Lpl5Z8!>wI}nUuA9KXi`oY^}IYYtc5gnq}Cd{*j!4JEi}3F|Ffgv1e`h zVIBVt-d)$GK6MeS5ykKgPln?WX8=pMSG66<3i~AsWBr-}W97nL3C2S~=rWt25^+!~ zUq=-F!rXu@p?}neA9;(b8wSSy2)#o(t=>+NGyq>L4!96?25?|&{`}Qjg7i@&9M+L% ztPQdkenf3_@Oo6?mt;+2H0B|AGN$m=P552ROVVKaq)I|kD6_3EM!7I%(=_(0{#~t2 zN@`B9N$+j&RUOG}Ly zQQ0diV;M~Yo3+vKJ9JR z05!J^m86Yimu}v*oE0*+#diqx8mnBm+^Z%0^vU2!)f28Az4CmYnXwfYV+WdS5zB>e zfD$4}g$_NDRQTc^yaOmD>(-V8^d?M@Jyow=_pa&W`~!lRagF3UOo)5LXIV`1hbaF0 E3mL#2GXMYp diff --git a/settings.gradle b/settings.gradle index 1f45aabc..7f26f18a 100644 --- a/settings.gradle +++ b/settings.gradle @@ -25,6 +25,8 @@ project(':leader-common') include 'leader-mesos' project(':leader-mesos') +include 'ama-cli' +project(':ama-cli') include 'leader-yarn' project(':leader-yarn') @@ -41,23 +43,23 @@ findProject(':sdk')?.name = 'amaterasu-sdk' // Frameworks // Spark include 'spark-runner' -project(':spark-runner').projectDir=file("frameworks/spark/runner") +project(':spark-runner').projectDir = file("frameworks/spark/runner") include 'spark-runtime' -project(':spark-runtime').projectDir=file("frameworks/spark/runtime") +project(':spark-runtime').projectDir = file("frameworks/spark/runtime") include 'spark-dispatcher' -project(':spark-dispatcher').projectDir=file("frameworks/spark/dispatcher") +project(':spark-dispatcher').projectDir = file("frameworks/spark/dispatcher") // Python include 'python-dispatcher' -project(':python-dispatcher').projectDir=file("frameworks/python/dispatcher") +project(':python-dispatcher').projectDir = file("frameworks/python/dispatcher") include 'pyspark-runtime' -project(':pyspark-runtime').projectDir=file("frameworks/spark/pyspark_runtime") +project(':pyspark-runtime').projectDir = file("frameworks/spark/pyspark_runtime") include 'sdk-python' -project(':sdk-python').projectDir=file("sdk_python") +project(':sdk-python').projectDir = file("sdk_python") include 'python-runtime' -project(':python-runtime').projectDir=file("frameworks/python/python_runtime") +project(':python-runtime').projectDir = file("frameworks/python/python_runtime") include 'python-pandas' -project(':python-pandas').projectDir=file("frameworks/python/pandas_runtime") +project(':python-pandas').projectDir = file("frameworks/python/pandas_runtime") File spekProject = file("../../kotlin/spek") if (spekProject.exists()) { @@ -68,4 +70,6 @@ if (spekProject.exists()) { substitute module('org.jetbrains.spek:spek-junit-platform-engine') with project(':spek-junit-platform-engine') } } -} \ No newline at end of file +} + + From 3e5467b42a912d0ad957826fe1fa07319849f44f Mon Sep 17 00:00:00 2001 From: "guy.peleg" Date: Wed, 19 Jun 2019 11:25:45 +1000 Subject: [PATCH 4/8] adding support for build image from given dockerfile --- ama-cli/build.gradle | 47 ++++--------------- ama-cli/settings.gradle | 16 +++++++ .../ama/cli/container/ContainerHandler.kt | 45 ++++++++++++++---- .../amaterasu/ama/cli/main/AmaCliMain.kt | 35 ++++++++++---- ama-cli/src/main/resources/log4j.properties | 17 +++++++ .../src/test/kotlin/DockerImageFileTest.kt | 7 +-- build.gradle | 2 + .../src/test/kotlin/DockerImageFileTest.kt | 32 ------------- settings.gradle | 3 -- 9 files changed, 112 insertions(+), 92 deletions(-) create mode 100644 ama-cli/settings.gradle create mode 100644 ama-cli/src/main/resources/log4j.properties delete mode 100644 leader-yarn/src/test/kotlin/DockerImageFileTest.kt diff --git a/ama-cli/build.gradle b/ama-cli/build.gradle index 549506ce..d2c49a33 100644 --- a/ama-cli/build.gradle +++ b/ama-cli/build.gradle @@ -14,45 +14,29 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + buildscript { + ext.kotlin_version = '1.3.21' repositories { mavenCentral() - maven { - url 'http://repository.jetbrains.com/all' - } - maven { - url "https://jetbrains.jfrog.io/jetbrains/spek-snapshots" - } } dependencies { classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" - classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.0' + classpath 'org.junit.platform:junit-platform-gradle-plugin:1.1.0' } } plugins { - id "com.github.johnrengelman.shadow" version "2.0.4" -} - -apply plugin: 'kotlin' -apply plugin: 'org.junit.platform.gradle.plugin' - -junitPlatform { - filters { - engines { - include 'spek' - } - } + id "org.nosphere.apache.rat" version "0.3.1" + id "org.jetbrains.kotlin.jvm" version "1.3.0" + id "distribution" } sourceCompatibility = 1.8 targetCompatibility = 1.8 -shadowJar { - zip64 true -} repositories { maven { url "https://plugins.gradle.org/m2/" } @@ -68,6 +52,10 @@ repositories { dependencies { compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" compile "org.jetbrains.kotlin:kotlin-reflect" + compile group: 'org.slf4j', name: 'slf4j-api', version: '2.0.0-alpha0' + compile group: 'org.slf4j', name: 'slf4j-log4j12', version: '2.0.0-alpha0' + + compile group: 'org.jetbrains.kotlinx', name: 'kotlinx-coroutines-core', version: '1.1.1' compile group: 'com.github.docker-java', name: 'docker-java', version: '3.1.0-rc-5' testCompile 'org.jetbrains.spek:spek-api:1.1.5' @@ -80,21 +68,6 @@ dependencies { testRuntimeOnly "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version" } -task copyToHomeRoot(type: Copy) { - from 'src/main/scripts' - into '../build/amaterasu/' -} - -task copyToHomeBin(type: Copy) { - dependsOn shadowJar - from 'build/libs' - into '../build/amaterasu/bin' -} - -task copyToHome() { - dependsOn copyToHomeRoot - dependsOn copyToHomeBin -} compileKotlin{ kotlinOptions.jvmTarget = "1.8" diff --git a/ama-cli/settings.gradle b/ama-cli/settings.gradle new file mode 100644 index 00000000..f974c9ac --- /dev/null +++ b/ama-cli/settings.gradle @@ -0,0 +1,16 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ \ No newline at end of file diff --git a/ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/container/ContainerHandler.kt b/ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/container/ContainerHandler.kt index 294ec1a5..692de1b0 100644 --- a/ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/container/ContainerHandler.kt +++ b/ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/container/ContainerHandler.kt @@ -1,23 +1,35 @@ package org.apache.amaterasu.ama.cli.container import com.github.dockerjava.api.DockerClient +import com.github.dockerjava.api.model.BuildResponseItem import com.github.dockerjava.core.DefaultDockerClientConfig import com.github.dockerjava.core.DockerClientBuilder +import com.github.dockerjava.core.command.BuildImageResultCallback import com.github.dockerjava.jaxrs.JerseyDockerCmdExecFactory +import org.slf4j.LoggerFactory +import java.io.File -class ContainerHandler { - +class ContainerHandler(val action : String) { + val logger = LoggerFactory.getLogger(ContainerHandler::class.java) private val dockerHost = System.getenv("DOCKER_HOST") ?: "unix:///var/run/docker.sock" private val dockerRegistry = System.getenv("DOCKER_REGISTRY") ?: "127.0.0.1:5000" + private val actionHandlers = mapOf("BUILD" to ::buildDockerImage) - private fun getDockerClient(config: DefaultDockerClientConfig, dockerCmdExecFactory: JerseyDockerCmdExecFactory?): DockerClient { - return DockerClientBuilder.getInstance(config) - .withDockerCmdExecFactory(dockerCmdExecFactory) - .build() + init { + logger.info("Got $action for docker as action") + val dockerExec = buildDockerServerExecutor() + val dockerClient = getDockerClient(defaultContainerHandler(), dockerExec) + val reuslt = actionHandlers[action]?.invoke(dockerClient) + + println(reuslt) } + private fun buildDockerImage(dockerClient: DockerClient): String? { + val baseDir = File("./") + return dockerClient.buildImageCmd(baseDir).exec(BuildImageCallback()).awaitImageId() + } private fun buildDockerServerExecutor() : JerseyDockerCmdExecFactory { return JerseyDockerCmdExecFactory() @@ -27,12 +39,29 @@ class ContainerHandler { .withMaxPerRouteConnections(10) } - private fun defaultContainerHandler() { - DefaultDockerClientConfig.createDefaultConfigBuilder() + private fun defaultContainerHandler(): DefaultDockerClientConfig { + return DefaultDockerClientConfig.createDefaultConfigBuilder() .withDockerHost(dockerHost) .withDockerTlsVerify(false) .withRegistryUrl(dockerRegistry) .build() } + private fun getDockerClient(config: DefaultDockerClientConfig, dockerCmdExecFactory: JerseyDockerCmdExecFactory?): DockerClient { + return DockerClientBuilder.getInstance(config) + .withDockerCmdExecFactory(dockerCmdExecFactory) + .build() + } + + + + + private class BuildImageCallback : BuildImageResultCallback() { + override fun onNext(item: BuildResponseItem) { + super.onNext(item) + } + } + + + } \ No newline at end of file diff --git a/ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/main/AmaCliMain.kt b/ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/main/AmaCliMain.kt index 2cccfb7c..46e29e48 100644 --- a/ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/main/AmaCliMain.kt +++ b/ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/main/AmaCliMain.kt @@ -2,29 +2,44 @@ package org.apache.amaterasu.ama.cli.main import com.xenomachina.argparser.ArgParser import com.xenomachina.argparser.mainBody +import org.apache.amaterasu.ama.cli.container.ContainerHandler import org.apache.amaterasu.ama.cli.container.dockerFile -fun main( args : Array ) = mainBody("ama-cli") { - - if (args.size < AmaCLIArgs.REQUIRED_ARGS){ +fun main( args : Array ): Unit = mainBody("ama-cli") { + if (shouldPrintUsage(args)){ ArgParser(arrayOf("--help")).parseInto( ::AmaCLIArgs ) } val parsedArgs = ArgParser(args).parseInto(::AmaCLIArgs) - dockerFile { - from(parsedArgs.baseimage) - commands(parsedArgs.commands) - entrypoint(parsedArgs.entrypoint) - }.createImageFile() + actionToContainer[parsedArgs.agentAction]?.invoke(parsedArgs) + + + +} + +private fun createContainerImage(parsedArgs: AmaCLIArgs) { + dockerFile { + from(parsedArgs.baseimage) + commands(parsedArgs.commands) + entrypoint(parsedArgs.entrypoint) + }.createImageFile() +} +private fun buildDockerImage(parsedArgs: AmaCLIArgs){ + ContainerHandler(parsedArgs.agentAction) } +private val actionToContainer = mapOf("CREATE" to ::createContainerImage, + "BUILD" to ::buildDockerImage) + +private fun shouldPrintUsage(args: Array) = args.size < AmaCLIArgs.REQUIRED_ARGS + class AmaCLIArgs(parser: ArgParser) { companion object { - const val REQUIRED_ARGS = 3 + const val REQUIRED_ARGS = 4 } val v by parser.flagging("enable verbose mode") @@ -34,5 +49,7 @@ class AmaCLIArgs(parser: ArgParser) { val commands by parser.storing("commands to run") val entrypoint by parser.storing("entrypoint to the container") + + val agentAction by parser.storing("action to preform [CREATE,BUILD,TAG,PUSH,RUN,COLLECT]") } diff --git a/ama-cli/src/main/resources/log4j.properties b/ama-cli/src/main/resources/log4j.properties new file mode 100644 index 00000000..d1ffed62 --- /dev/null +++ b/ama-cli/src/main/resources/log4j.properties @@ -0,0 +1,17 @@ +log4j.rootLogger=debug, stdout, R + +log4j.appender.stdout=org.apache.log4j.ConsoleAppender +log4j.appender.stdout.layout=org.apache.log4j.PatternLayout + +# Pattern to output the caller's file name and line number. +log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n + +log4j.appender.R=org.apache.log4j.RollingFileAppender +log4j.appender.R.File=example.log + +log4j.appender.R.MaxFileSize=100KB +# Keep one backup file +log4j.appender.R.MaxBackupIndex=1 + +log4j.appender.R.layout=org.apache.log4j.PatternLayout +log4j.appender.R.layout.ConversionPattern=%p %t %c - %m%n \ No newline at end of file diff --git a/ama-cli/src/test/kotlin/DockerImageFileTest.kt b/ama-cli/src/test/kotlin/DockerImageFileTest.kt index 6427eb8f..ab6bd701 100644 --- a/ama-cli/src/test/kotlin/DockerImageFileTest.kt +++ b/ama-cli/src/test/kotlin/DockerImageFileTest.kt @@ -11,9 +11,10 @@ class DockerImageFileTest { fun buildBasicImageTest() { //given val expectedDockerFile = """FROM busybox -COPY A to B -Volume A/B -ENTRYPOINT [java, -jar, somejar.jar, -H]""" + COPY A to B + Volume A/B + ENTRYPOINT [java, -jar, somejar.jar, -H]""".trimIndent() + val dockerFile = dockerFile { from("busybox") commands("COPY A to B", "Volume A/B") diff --git a/build.gradle b/build.gradle index dc5aa95f..613cff3c 100644 --- a/build.gradle +++ b/build.gradle @@ -92,6 +92,8 @@ repositories { } dependencies { + compile "ch.qos.logback:logback-classic:1.2.3" + compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" diff --git a/leader-yarn/src/test/kotlin/DockerImageFileTest.kt b/leader-yarn/src/test/kotlin/DockerImageFileTest.kt deleted file mode 100644 index 74fffdfe..00000000 --- a/leader-yarn/src/test/kotlin/DockerImageFileTest.kt +++ /dev/null @@ -1,32 +0,0 @@ - -import org.apache.amaterasu.leader.container.dockerFile -import org.junit.Test -import java.io.File -import kotlin.test.assertEquals - -class DockerImageFileTest { - - - @Test - fun buildBasicImageTest() { - //given - val expectedDockerFile = """FROM busybox -COPY A to B -Volume A/B -ENTRYPOINT [java, -jar, somejar.jar, -H]""" - val dockerFile = dockerFile { - from("busybox") - commands("COPY A to B","Volume A/B") - entrypoint("java", "-jar", "somejar.jar", "-H") - } - - //when - dockerFile.createImageFile() - - //then - assertEquals(expectedDockerFile, File("Dockerfile").readLines().joinToString(separator = "\n")) - - File("Dockerfile").delete() - } - -} \ No newline at end of file diff --git a/settings.gradle b/settings.gradle index 7f26f18a..608bf048 100644 --- a/settings.gradle +++ b/settings.gradle @@ -25,9 +25,6 @@ project(':leader-common') include 'leader-mesos' project(':leader-mesos') -include 'ama-cli' -project(':ama-cli') - include 'leader-yarn' project(':leader-yarn') From dac5aa270d7d3541f28c30957e3faa320fa8af03 Mon Sep 17 00:00:00 2001 From: "guy.peleg" Date: Thu, 27 Jun 2019 12:25:50 +1000 Subject: [PATCH 5/8] adding push and build,tag commands --- ama-cli/Dockerfile | 2 + ama-cli/example.log.1 | 142 ++++++++++++++++++ .../ama/cli/container/ContainerHandler.kt | 25 ++- .../amaterasu/ama/cli/main/AmaCliMain.kt | 17 ++- 4 files changed, 174 insertions(+), 12 deletions(-) create mode 100644 ama-cli/Dockerfile create mode 100644 ama-cli/example.log.1 diff --git a/ama-cli/Dockerfile b/ama-cli/Dockerfile new file mode 100644 index 00000000..684d02b7 --- /dev/null +++ b/ama-cli/Dockerfile @@ -0,0 +1,2 @@ +FROM busybox + diff --git a/ama-cli/example.log.1 b/ama-cli/example.log.1 new file mode 100644 index 00000000..29a1bcc4 --- /dev/null +++ b/ama-cli/example.log.1 @@ -0,0 +1,142 @@ +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xc7][0xd1]y[0xe1][0x9b][0xe7][0x99]~[0x3]i[0x8e][H[0xb3]_![0xa3]qo[0xd1][0xf1][0xe6]|[0x82][0xe3][0xb8]4[0xe3]1[0xa4][0xe8][0xff][0x83][0xb6][0x85][0xb1][0xeb][0xda][0xf3][0xf1]r[0xa4][0xff][0xe4][0xbc][0xd4]/[0xf9][0xe3]zH[0xbd][0xe1][0xff][0x9c]|[0xbf][0xac][0x17][0xd5][0xf8][0x1d][0xdb]d[0xfd]([0xfe]6u[0xec][0xb7]>%v[0xdd]:[0xb6][0xf8][0x4][0x99][0xd7]D_[0x91][0x92]^[0xda]5~^[0xf4][0x91][0xfe][0x93][0xe3];[0x8c][0xbf][0xdf].[0xf5][0xca][0xf9]x|[0x8c][0xa7][0x13][0xfd]D[0x8a]~"E[0x1f][0x91]b[0xef][0x85]7[0x9f][0xff][0xa3]x>i[0xf][0x91][0xa2][0xb7][0xc4][0x87]x[0xfe][0xf8]|[0xad][0x8f]Po[0xdf]7[0xe2][0xd3]E[0xf1]ud[0xf9]Qg[0xfe]O[0x8e]%[0x9f][0xc8]x[0x1c][0xff][0xdb][0x9b][0xde][0x93][0xe3][0xf8][0xba]X[0x8e][0xc5]o$^[0xcb]y)Od[0xb4][0xdd][0xae][0xf6][0xc8]<"[0xc7][0xa2][0x9f][0xa4][0x8b][0xe7][0x8f][0xaf][0xaf][0xfe][0xfa][0x93]57[0xc9]q|[0x91]R[0x8f]\[0x8f][0x9f][0x97]u[0xa1]r<:N[0xec][0x90]ci[0x7][0x91][0xd2]N"[0xe3][0xe9]D[0xff]/[0xdc]>[0xf4]V[0xe9]o9[0x16]{EJ[0xfb]I=q=[0xa4]~3=[0xfc]^[0xce][0xc7][0xed]0[0xfd][0x96][0x90][0x1][0xa4][0xbf][0xef][0x97][0x19][0xbd][0xff]t^[0xcf][0xf7]*[0xab][0xaa][0xab][0xaa][0xbb]<[0xff][0xa9]tUT[0xf1][0xfe]Oz[0xc8][0xc1]6[0x14][.[0xb6]av9[0xa3])[0xf3][0xcf]c[0xc9]Oo[0x9a]OiS[0x9e]bB<[0x85]e[0xa0]kJ[0x99][0xb6][0xbd][0xa6]2[0xdf][0x89][0x1f]4:[0xa7][0xaf][0x97]R[0xd5][0x97][0xd1][0xf6]K[0xa2][0xce]A[0xd2]J[0x89]Z6X[0xb4][0xf9][0xb8]Y[0x94][0xba][0xba][0x6][0xdf]8N_[0x1c]LUM[0x89][0x95]s[0xa8]z[0xfc][0xc7]k[0xde]JO[0x8a]T[0xc5][0xe2]T[0xce]6[0xe9][0xeb][0xa7][0xc1][0xe5][0xe9]%[0x9d][0xfb]b[0x10][0xf8][0xe8]`[0x9b][0xcd][0xe5][0x1f]S[0x97][0xfc].{[0xf2]s[0xc6]y[0x13]z[0xcd][0x9f][0xea]T[0xfb][0xb4][0xc8]P[0xdd][0xe6][0x9e][0xe9][0xc3][0x19][0xb0]>[0xb1]T[0xa6]v[0xf9]%[0xf1][0xb4]=z[0xd2][0xfe]v[0xed]7[0x1a][0x6][0x99]U[0x3][0xd3][0xf3][0xfb]J[0xb5][0xc5]m[0x8f][0xb7]W~[0xe2][0xad][0x91]I[0xaf]L[0xaa][0x92][0x84]R[\r]\O[\r][0xb4]'d[0xa8]E[0x7]D[0xcb][0xc4][0xa3]@&Gt[0xaa][0xe3]N[0xb2]3T4b&[0x93]v_[\r]][0xac]Ha[[0xf7][0xdd][0xe3][0xbb][0xce]TI[0xfa]W[0xc6][0xc7][0xc3][0xbe][0xba][0xa3][0xfa]wm[0xf3][0xc4][:[0x99][0x9e][0x1d][0xfc]s[0xda]`[0x9e][0x9f][0x7]02[0xc][0xc8][0x98][0x1a][0x98][0x95]a[0x12]1d[0xc0]g[0xb4]t[0xc4][0xa3]dG[0xe2][0xc4][0x84][0xd3][0xab][0x1][0x98][0x17]R?[0x1b][0xa4][0xa5][0xf][0xd3][0xde][0x2][0x9f][0xac][0xf5]l[0xea][0xbd]"[0xb1]T[0xfb]}[0xe2]Hb[0xbd][0x9c][0xea]q[0x9d][0x99]5b[0xc7][0xe3][0xc3][0x84][0xa3][0xc1]@[0x8f][0xc8]h[0xf]'=[0xfa]38[0x9a];[0xfe][0xe6]R[0x92][0xab][0xe8][0xbe][0xac][0xa4][0x6][0xe4][0xd8][0xbf]5[0xe][0xa5](|h[0x8c][0xf8][0xe4][0xc7][0xd7]`[0xb6]&[0xf1]Z[0x7][0xff][0xa7][0x95]d[0xea][0x8d][0xa6][0xdd][0xe7][0x9b][0x3]7[0xea][0x6][0xc7][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> ",[0xd9]R[0xfb]4'[0xa4][0xd8][0x8f][0x92][e[0xf][0xe6]Q[0x96][0xa9][0x11][0x91][0x84]v[0x19][0x8a]R[0xc9][0xaf][0x9f]R=[0x8b]%;2[0x12][0xaf][0xf0][0xcf][0x11][0x3]77gr[0x9d][0x15]m[0xf7][0xcc]X[0x94]lt[0xcd]d<[0xea]2[0xe7][0x1c]d[0xf5][0x99][0xfc]Zg[0x80]|>[0xd5]m?[0xc0]w[0xe5][0x92]i[0x85]L~[0xd6]0[0xeb][0x96][0xa8]ZP[0x92]P[0xfa][0xe4]R&5[0xf][0x82]r3[0xdf][0x6][0x9][0xf5]Z[0x12][0xb5]w[0xfc]U[0xae][0x84]g[0xd7][0xc1][0xd1][0xe][0x1d][0xc5][0x97][0x1e][0xf9][0x89]M[0x99][0x9c][0xf][0x98][0xf3][0xd6] [0xd1]<[0xd5][0xa3][0x98])S[0x9b]r_[0xc9][0xfc][0xd8][0x1d][0xa8]h[0xf7]q[0x99][0xa5]>[0xc9])3[0xdf][0xf7][0x87][0xe6],[0xa7]'[0xa3]k[0xfe][0xc7][0xcd][0xba][0x8f][0xef][0xdc]x[0xe8][0xa5][0xec][0xcf]l[0xf2][0xb1][0x1b][0xfd][0x3]Pn[0xe6]f[0x93][0x8f][0xd3][0x88][0xef][0x97]?[0xe]x-r)[0xd3][0xbd][0xf9]IN[0xc9][0x8][0xaf][0x6]xL[0xef][0xdf][0xc2][0xa9][0xf6][0xf2]}[0xe3][0xa7][0xf][0x96][0xa6][0xf8][0x9e][0xce][0xc7]iN:4}-[0xc3]3b[0xc2][0xa9][0x7]S[0xd4][0xe9][0xcb][0x8][0x1a][0xa8][0x9e][0x1e][0x1c]w[0x19][0xf][0xbd][0xf5]Z_[0xfd][0x8d]k[0x92][0x81][0xea][0x83]T[0xb7][0xec][0xc7][0xc5]g[0x93][0xbf][0xbb][0x90][0xf9][0xa8]4P[0xe5][0xe][0xac]Gd6[0xe5]H[0x15][0xa3][0xe3][0xdd][0xe6][0x3]-[0x1e][0xa8]^[0xe8][0xcb][0x8c]vh[0xb5]~r[0xd1] 1[0xdb][0x7]r&[0xcf][0xfc][0xfd][0x84][0xc1][0xb4]"K<[0xe5][0xe0]yJ[0xfd]q[[0x8b]%[0x9e]Ru%[0xb9][0xdf][0xf3]6[0xc8]_[0xff][0x90][0xbf][0x2][0x92][0xcc]_[0x0]J[0xe6][0xf7][0xff]c[0xff][0xc7]Y[0xe1][0xe2][0xef][0xbf][0xa5][0x83][0xdb][0xe7][0xff][0xa8]P<#[0xab][0xf3][0xc9][0xd8]wyvak[0xc5][0xd6][0xe][0xe4]xx[0xec]r[0xa9]2[0xbd][0xad]][0xeb][0x94]E[0xff][0xfe][0x12]u$[0xff][0xa7][0xbc]Zw[0xf2][0xfe]O:[0x90][0xfb]?W[0xf]U[0xea][0xe1][0xce]7sb[0xf7][0xec][0x85][0xfb][0xdf][0xff][0x89][0xa7][0x19]m[0x8d][0xde][0xe3][0x89]g[0xd1]b[0xd7][0xce][0x1d][0xa9][0xd4][0x9e]N[0xe7][0x13][0xc5]vA[0xf4]>[0xce][0xcd][0xff]io[0x97][0xaa]s[[0xda][0xdb][0x8b]![0x1f]G[0xbd]v[0xc8][0xfb]Ooo[0x97][[0x9c][0x9b]p,[0xfd]t[0x1f][0xe4]$[0xc8]{ k /[0x8f][0xb4][0xb7][0xd7]B[0x8e]?[0xa3][0xbd]][0xfe][0xb2]|[0xdb][0x9c][0xf6][0xf6][0xc5][0x90][0xd7][0xe2][0xfa]R[0xc8][0xb5][0x90]M[0x90][0xfe][[0xdb][0xdb][0x83][0x90]kp[0xbc][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "r[0xe1][0x8c][0xf6]v[0xb1]o[0xec][0xd4][0xf6][0xf6]6[0xc8][0xc7][0xce]lo_[0x7]Y[0x9][0xb9]^[0xea][0xaf]io[0xdf][0x0][0xf9][0xda][[0xed][0xed][0x1b]![0xe7]#[0xdf]&[0xd1][0xa3][0xba][0xbd]}3[0xe4][0x5][0xa8]o[0xb][0xa4][0xb][0xe7][0xb7][0x8a][0xfe]s[0xdb][0xdb][0xb7]C[0x9e][0x88][0xe3][0x1d][0x90][0x1f]6[0xb5][0xb7][0xef][0x84][0xdc][0xf6]N{[0xbb][0xdc]K[0xbb]s^{[0xfb]n[0xc8]"\[0x97]v[0xda]Z[0x85]vEc[0xfd][0xf3]Y[0xd8][0xf]9[0x16][0x5][0xd9] [0xb7][0xa0][0x9c]b[0xc8][0xff]|[0x4][0xfb]![0x9b][0xa6][0xc3]~[0xc8][0x92][0x10][0xec][0x87]|[\r][0xe7]'A[0xde][0x89][0xfc]5[0x90]S[0xa7][0xc0]~[0xc8][0x13][0xeb]`?[0xe4]\([0xba][0x18][0xf2]1[0x9c]_*[0xe5][0x9f][0x5][0xfb]%[0xdd]d[0xd8][0xf][0xd9][0x86]rVA[0xde][0x83]rZ!OA[0xf9]m[0x90]g[0xa1][0xfe]u[0x90][0xaf][0xcc][0x84][0xfd][0x90][0xd7][0xe2][0xfa][0x6][0xc8]K[0x83][0xb0]_[0xf2]An[0x92]t[0x93]`?[0xe4][0xf5][0x95][0xb0][0x1f][0xf2]<[0xa4][0xdf]*[0xfa][0xe1][0xfa]v[0xc8]w[0x1a]a?[0xe4]b[0xe4][0xdf][0x9]y[0xcd]m[0xb0][0x1f]r>[0x8e]wC6L[0x83][0xfd][0x90]9[0xb]a[0xbf]E[0xa9][0x87][0xd0][0x8e][0xb9][0x90][0xdb]N[0x85][0xfd][0x90][0x97][0x7]`?[0xe4][0xfd]^[0xd8][0xf]iC[0xfa][0x12][0xc8][0xbf][0x9c][0x4][0xfb]![0xdf]C;N[0x82]\[0xda][0x0][0xfb]![0xfd]g[0xc3]~[0xc8]w[0xd0][0x1e]u[0x90][0x16][0xf8][0xd1]b[0xc8]sP[0xfe]R[0xc8][0xc5]o[0xc3]~[0xc9][0xff]?[0xd8][0xf][0xf9][0x88][0x1f][0xf6]C[0xae][0xa9][0x85][0xfd][0x90][0xdb][0xe1][0x7]m[0x90]s[0x17][0xc0]~)[0x7]r=[0xe4]f[0xa4][0xdf] [0xfa]An[0x14]} 7A[0x8e]B}[0x9b]!7[0xe0]x[0x8b][0xe8][0x83][0xf6][0xde][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "y1[0xca][0xd9][0xe][0xb9][0x16][0xed][0xb1][0x3][0xf2][0xda]f[0xd8]/z|[0x6][0xf6]K~[0xe8][0xb1][[0xf2][0xc1][0xce]=[0x90][0x93]q,7^[0x8b][0x91].[0x17][0xb2][0x8]~o[0x83][0xb4][0xa3][0xbc]b[0xc8]r[0xf4][0x93][0x1d]r6[0xfc][0xb3]D[0xe4]i[0xb0][0x1f]r9[0xfa]s[0x12]d[\r][0xea][0xaf][0x81][0xbc][0xc3][0x7][0xfb]!+q\[0x7]y[0x81][0xf8]?[0xe4][0xdd](g)d[0x10][0xf9][0x9b] 7[0x9c][0xc][0xfb]![0x1f]^[0x1][0xfb]!mH[0xdf][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "y[0xf][0xfc][0xa6][\r][0xb2][0xc]~[0xbd][0xe][0xf2][0xa3][0xf]a?[0xe4][0x1e][0xc8][\r][0x90]kq~#[0xe4]6[0xa4][0xdb][0x4][0xf9][0x6][0xce]o[0x86]<[0x1e]vl[0x81][0xbc][0xe][0xfd][0xb3][0x15]r+[0xf4][0xdb][0xe][0xb9][0x1b][0xf5][0xec][0x80]|[0x8][0xed][0xbf][0x13]r<[0xda]y[0x17][0xe4][0xf4][0xe5][0xb0][0x1f][0xf2]~[0xf8][0xd9][0x1e][0xc8]l[0xb1]?[0x1b][0xfe]y![0xec][0x87],[0xc3]8[0xb7]A[0xbe][0x89][0xf6]*[0x86]|D[0xfa][0x1f]r-[0xea]+[0x81][0x9c][0x9][0xbb]u[0xc8][0xeb]0.'A^[0x8a]rj [0xdf]C[0xbd][0xb5][0x90][0xd9][0xb3]`?[0xe4]"[0xf8][0xc5]b[0xc8][0x1c][0xe4]_[\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xb9][0x10][0xf9][0x9b] [0x9f]B[0xbf][0x6]!g[0xe3]x[0x15]d[\r]d[0xab][0x94][0x8b][0xfe]l[0x83],[0xde][\r][0xfb]!'[0xc3][0xaf][0xd7]CN[0x10][0xfb]![0xc7]An[0x84]|[0x12][0xe3]g[0x13][0xe4]t[0x8c][0xcf][0xcd][0x90][0xe7][0xdd][0x1][0xfb]!?[0xfa][0x0][0xf6]C[0xfe][0x5]qc;[0xe4][0x1b][0xd0]o[0x87][0xd8][0x85][0xf4];!_A[0xfb][0xed][0x82][0xdc][0x85]q[0xb1][0x1b]r[0xf][0xda]q[0xf]d[0x3][0xd2][0xc9][0xa3][0x9a][0xc9]h[0xbf]\[0xc8][0xad]([0xc7][0x6][0x19][0x81]=[0xc5][0x90][0xcb][0xea]a?[0xe4][0x83]8_[0x2][0xb9][0x7][0xed][0xad]C[0xde][0x8d][0xe3]I[0x90][0x9b][0x91][0xaf][0x6]r,[0xca][0xad][0x85][0x1c][0x89][0xf2][0xea] [0xb3]1N[0x16]C[0xde][0x81]q[0xbd][0x14]r1[0x8e][0x9b] w[0xc3][0xce] [0xe4]S[0xf0][0x87]U[0x90]y[0xf0][0x93]V[0xc8][0x8d]h[0xb7]6[0xa9][0x7][0xed][0xbe][0xe][0xf2][0x1c][0x94][0xbf][0x1e][0xf2],[0xc8][\r][0x90][0xa7]An[0x84]|[0x5][0xe3]~[0x13][0xe4]:[0xd8][0xb5][0x19][0xf2]^[0xf8][0xfb][0x16][0xc8]{N[0x81][0xfd][0x90]W[0xa2][0xbf][0xb7]C[0x8e]G[0xfa][0x1d][0x92][0xe][0xed][0xb1][0x13]r%[0xfc]a[0x97]H[0xa4][0xdb][\r]9[0x6][0xfd][0xb8][0x7][0xb2][\r][0xe5][0xc9]c[0xaa]7~[0x1][0xfb]![0xff][0xb9][0x17][0xf6]C~[0x88]t[0xc5][0x90]#[0x91][0xcf][0xe][0xb9][0xc][0xf5][0x95]@[0xbe][0x89]~[0xd1]!_E[0xbc][0x98][0x4][0xb9][0x15][0xe9]k$?[0xda][0xa1][0x16][0xb2]M[0xe2]?d[0xc4][\r][0xfb]![0xc7][0xa1][0x9c][0xa5][0x90]w"][0x13]d[0x1e][0xf4][0x9]B[0xbe][0x83][0xb8][0xb8][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xf2]u[0xb4]o+[0xe4])[0x88][0x1b]m[0x90][0x85][0xa8]g[0x9d]<`@[0xff][0xac][0x87][0xbc][0x3][0xed][0xb5]A[0xea][0x83]][0x1b]![0x1b]P[0xff]&[0xc8]G$[0xfe][0x89]^[0x98][0xb7][0xb6]@.~[0x17][0xf6]C^[0x8e]v[0xde][0xe]y[0xb3][0x1][0xfb]!'[0xa1][0xde][0x9d][0x90][0xeb]a[0xef].H[0x1f][0xfc]f7[0xe4]|[0xe8][0xb5][0x7]r/[0xda]O[0x1e][0xd1][0xbd][0x8a]~[0xc8][0x85],[0x10][0xfb]![0xdf][0xc0][0x4]W,[0xf]8pl[0x87]<[0x1e][0xfd]R[0x2]y'[0xfc]W[0x87][0xbc][0x11][0xfa]O[0x82]|[0x1e]q[0xb0][0x6]r/[0xfa][0xb9][0x16]r[0xc7][0xfb][0xb0][0x1f][0xf2][0xc3][0xd9][0xb0][0x1f][0xb2][0x4][0xe5]/[0x85]|[0x2][0xe7][0x9b] [0x97]#_[0x10][0xf2]6[0xe9][0xc8][0x9][0xef][0xc1]~[0xc8]S[0xd0][0xce]m[0x90]w [0xdd]:)[0xf]v[0xad][0x87][0xdc][\r][0xb9][0x1][0xf2]J[0xd4][0xbf][0x11][0xf2],[0x19][0xff][0x90]k[0x90]n[0xb3][0xe8][0x3]?[0xdd][0x2][0x19]D[0xba][0xad][0x90]O[0xa3][0xbd][0xb6]K>[0xc4][0xb3][0x1d][0x90]o[0xa1][0x9e][0x9d][0x90][0xab][0x10][0x87]vA[0x16][0xa1][0xfe][0xdd][0x90][0xb3][0x91][0xf][0xa4].[0xf1][0x1f][0x13][0xff]N[0xc4][0x87]\[0xc8][0xc5]2[0xfe]![0xcb]p[0xbd][0x18][0xb2][0x4][0xd2][0xe][0x99][0xfb][0x4][0xec][0x87][0x1c][0x8b]c[0x1d][0xd2].[0xf1][0x1f]r>[0xf2][0xd5]@[0xbe][0x85]v[0xad][0x85][0xac][0x83][0xdd]u[0x90][0xef][0xed][0x81][0xfd]R[0xe][0xfc]z)[0xe4][0xcb]([0xb7][0x9][0xf2]I[0xf4]C[0x10]r.[0xf2][0xaf][0x82][0x8c][0xa0]=[[0xa5]<[0xc8]6)[0x7][0xfd][0xb8][0xe][0xf2]i[0xe4]_/[0xd7][0x91]n[0x3][0xe4][0x16][0xf4][0xfb]F[0xc8][0xe7]a[0xc7]&9[0xf][0xd9][0xc]Y[0xf][0xda]"[0xf5][0x9d][0x3][0xfb]![0xaf]E[0xbe][0xed][0x90][0xe7]a[0xbc][0xef][0x80][0xbc][0x18][0xc7];![0x1f]B[0xff][0xee][0x82]|[0x5][0xf1]j7[0xe4][0x1a][0xe8][0xb9][0x7]r[0xef][0xe7]`[0xff]0[0x8c]7[0xa4][0xcb][0x85]<[0xb][0xd2][0x6]y[0xf][0xae][0x17]C[0x96][0xc1][0x9f][0xec][0x90]k[0x90][0xae][0x4]r[0x1b][0xce][0xeb][0x90]7[0xa3]}'A[0xea]H_[0x3]y"d-[0xe4]F[0xb4]G[0x1d][0xe4]&[0xcc]?[0x8b]!G[0xe2][0xfc]R[0xc8][0x1c][0xb4]O[0x13]d.[0x8e][0x83][0x90][0x16][0xc8]U[0x90]w [0x1e][0xb7]B[0xbe][0xf7]_[0xd8][0xf][0xb9][0x1b]r[0x1d][0xe4][0xe5]h[0xb7][0xf5][0x90]/[0xc1]O7@[0xbe][0x82][0xf3][0x1b]![\r][0xb9]I[0xf4][0x80][0xdc][0xc]i[0x83][0xdf]m[0x91][0xf4]h[0xdf][0xad]R[0xbf][0xf8]?[0xe4]#[0xb8][0xbe][0x3][0xf2][0xc3][0xcf][0xc2]~[0xc8]][0x90][0xbb] +[0x9f][0x81][0xfd][0xa2]/[0xc6][0xcf][0x1e][0xc8]7Q[0x8f]<[0x96]^[0xc][0x99][0xb]9[0x16][0xfe]d[0x83]<[0x5]q[0xac][0x18][0xb2][0x18][0xf6][0xda]!G[0xa2][0xbd]K WJ[0xfc][0x83]|[0x1a][0xfe]:[0x9]2[0x7][0xe5][0xd6]@[0x9e][0x83][0xfa]j![0x9f][0x84]>u[0x90][0xa7][0xe1]x1d.[0xfa]a[0xa9][0x94][0x87][0xe3]&[0xc8]l[0xd4][0x1b][0x84][0xbc][0x11][0xec][0x87][0x9c][0x88][0xf3][0xad][0x90][0xc7][0x8b][0xfd][0x90]u([0x9d][0xd4][0x83][0xeb][0xeb][0xa5]^[0x9c][0xdf][0x0]Y[0x89][0xfe][0xdb][0x8]9[0x1][0xed][0xba][0x9][0xf2]R[0x8c][0x83][0xcd][0x90][0x1f]b[0xfc]l[0x81]|[0xf]r+[0xe4]:[0xf8][0xcf]v[0xa9][0x17]r[0x7][0xe4][0xbd]X[0x87][0xec][0x84][0xdc][0xbc][0x1d][0xf6]C[0xd6]l[0x83][0xfd][0x90][0xcf]?[0x7][0xfb]![0x97][0xa3]=[0xe4]%[0x86][0xe9][0x90][0xb9][0x90][0xf7]l[0x85][0xfd]"[0x11][0xf][0x8b]!O[0x81][0xb4]C^[0xff]4[0xec][0x87][0xbc][0xe6][0xe7][0xb0]_[0x1e]l[0xfe][0xc][0xf6]C[0xbe][0xfa]$[0xec][0x87][0xdc][0x6]Y[0xb][0xb9][0x6][0xb2][0xe][0xf2][0xca][0x9f][0xc2]~[0xc8]J[0xc8][0xa5][0x90][0xe7][0xfc][0x4][0xf6]C.[0xc5]8[\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "B[0x8e]z[0x14][0xf6]C[0xbe][0xf5]C[0xd8][0xf][0xb9][0xea][0xfb][0xb0][0x1f]r7[0x16][0xd4][0xeb][0xa4][0xdc]o[0xc0]~9[0xf][0xb9][0x1][0xf2][0xd7]w[0xc3]~[0xc8][0xd6][0xbb]`?[0xe4]b[0xc8][0xcd]R[0xe][0xe4][0x16])[0xf7]N[0xd8][0xf][0xf9][0xe1][0xd7]`?[0xe4]J[0xc8][0x1d][0x90][0xf5][0x98][0x1f]wBZ wAn[0xb9][0x1d][0xf6]C[0x16]b=[0xb8][0x7][0xf2][0x91][0xf5][0xb0][0xbf][0x0][0xf1][0xe8][0x16][0xd8][0xf][0xf9][0xd4][\r][0xb0][0x1f]2[0xb8][0xe][0xf6]C[0xbe][0xf1]e[0xd8][0xf][0xa9]#[0xae][0x97]@[0xae][0xfb][0x12][0xec][0x87][0xcc][0x86][0xbf]M[0x82][0x1c][0x9][0xbf][0xae][0x81]|[0x4]~_[0xb]y[0xbc][0x8c][0xc8]-[0xf0][0xa7][0xc5][0x90]7_[0xe][0xfb]![0xcb][0xd1]oM[0x90][0xdb][0xe1][0x1f]A[0xc8][0xa7][a?[0xe4][0xe3][0x88]k[0xad][0x90]+/[0x81][0xfd][0x90][0xf3][0xe1]W[0xeb] [0x9f][0xbd][0x8][0xf6]CnE[0xbc][0xda][0x0][0xf9][0x16]>0l[0x94]z[0xe0][0xdf][0x9b]DO[0x89][0xff][0x90]'b[0xee][0x86][0xbc][0x16][0xeb][0xb5]=[0x90][0xb]![0xe5][0xa1][0xfa][0x5](/[0x17]r+>/[0xd8] [0xc7]A[0x16]C[0xe6].[0x83][0xfd][0x90][0xc7]c=S[0x2]i[0x87][0xd4]![0x9f]^[\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xfb]![0xb7]@[0xd6]@[0xde][0xb3][0x4][0xf6]CN[0x84][0xac][0x93][0x87][0xf4][0x90][0x8b]![0xaf]?[0xf][0xf6]C>[0x84][0xf6]h[0x82][0xbc][0x3]q*[0x8]9[0x1][0xf1]d[0x15][0xa4]e1[0xec][0x87]|[0x5][0xe3][0xa8][\r][0xf2][0xd7][0x90][0xeb] 7B[0xae][0x87][0xbc]{[0x11][0x9f][0x9b][0x1f][0xea][0xf4][0xe7][0xfd][0x9f][0xb2][0x15][0x9e][0xd5][0xe1]H[0xc8]c4[0xf7]\G[0xf2][0xf7][0xaa][0x9c][0x95][0xbc][0xff][0x93][0x1e]4KV[0xf6][0x90][0x9c][0xa1][0xb9][0xc3][0xf2][0xf6][0xfd][0xf8]!![0x84][0x10]B[0x8]![0x84][0x10]B[0xe])[0xfa][0xfc][0xfe]O[0xd9]J[0xc3][0xd7][0xe2][0x9][0x97][0x85]{[0xaf][0xa3][0xe7][0xfb]?B[0xb9]y[0xff][0xa7][0xbc]B[0xaf]vVW[0xd8][0xf5][0xf2][0xca][0xca][0xca]*[0xde][0xff]I[0x7][0x1f]N[0xcb][0xb4][0x6]$[0x93][0xf4][0xe7][0xfe][0xef][0x12]obu[0xf4]8[0xfe][0x9d][0xfa][0xc1][0xbe][0xff]YY[0xc9][0xef][0xa6][0x87][0x82][0xfd][0xbf][0xfa])[0xef][0xc1][0xc9][0xfb]{[0xf2][0x1e][0x9c]|[0x17]S[0xde][0x83][0x93][0x4][0x1b]T[0xf4][0x9b][0xc5][0xf2][0x1e][0x9c]|[0x17]S[0xde][0x83][0x93]W%[0xe4]=8yUa[0x8b][0x8a]~[0xd3]X[0xde][0x83][0x93][0xef]b[0xca]{p[0xf2]]Ly[0xf]N[0x1e]Y[0xee]T[0x7][0xfb][0xf6]1![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]28[0xa8]o[0xf1][0xfa][0x1a][0x1c]+[0x2][0x11][0x9f][0xd7][0xef]p[0x7][0x9a][0x83]^[0x9f]g^[0xec][0xc8]p7y[0xc2][0xa5][0xcb]W6;|[0x81][0xc0][0x8a][0x96]`[0xd8][0xe1]m([0x8d][0x4]J[0x97]!MY[0xc4][0xa8]_[0xe2]-[0xf3]y[0xfc][0xbd][0xd7][0xa1];u[0xdd]UYi[0xd7][0xa3]t[0x95]:[0xae][0xdb][0x9d][0x15]Uzy[0x85][0xee]r[0xba][0xaa][0xec]zyeyy[0xb5][0xb2][0xeb][0x3]o[0xbe]R-[0xe1][0x88][0x11]Rz[0xbf][0xeb][0xea]j\[\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "TK[0x1f][0xad][0x99]V[0x80]d[0x88][0xe4][0xc6]L[0xca][0xe0]Ol[0xe8][0x9b]$:[0xfe][0x11][0x1][0xca][0x9d][0x92][0xae][0xbc][0xa2][0xb2][0xaa][0x8a][0xe3]?}[0x14][0xda]3[0xad][0x1][0xc9][0xc][0xfd][0x99][0xff][0xcb]V[0x1a][0xbe][0x16]O[0xb8][0xcc][0x88][0xf4]\G/[0xe3][0xbf][0xa2][0xdc]Y[0xd5]1[0xfe]][0xba][0x8c][0xec];9[0xfe][0xd3][0x81]C[0xd5]z[0x8c][0x6]O[0xc8][0xbe][0xd0][0xe3][0xe][0x84][0x1a][0xec][0xb3][0x3]!{[0x9d]'[0x14][0xf6][0x86]#[0x1e][0xa4][0xd6][0x8]7-0[0x82][0x8b][0xa4][0x9f][0xcf][0x8c][0x4]BF[0xa3][0xe7]b[0xa5][0xd6]8[0xce][0xe]#[0x89][0xa3][0xb1]euY[0xd0][0xe3][0xf3]4:[0x1a]<+[0x1d]^[0xbf][0xbb][0xa5][0xde]@[0xa2]R[0xa3][0xd9][0x88]xBF[0xb8][0xc5][0x81][0xbd]R[0xb7][0xcf][0xeb][0x8][0x87][0xdc][0x8e]f[0x3]>[0x15]s[0xb4]@[0xa8][0xd1]a[0x4][0xc5][0xbf][0x1c][0xfb]%vHbw[0xc0][0x1f]AZO[0xc8]13[0xe0]^[0xe1][0x9][0xcd]iF[0xb5][0xb3][0xc5][0xe7]VD.Q[0xea][0xa2]t[0xd5]>#[0xbe]Wk[0xf8][0x1b]|[0x9e][0x10][0xaa][0xf])[0x15][0x1c][0xd8][0xea][0xcd][0x84][0xd3][0x9a][0x8d][0x19]>[0xef][0x2][0xec]f[0xde]dV[0xcf][0xea]Y=cM:L[0xce][0xf4]d[0xf8][0x9]$[0xb1][0xf5][0x9f]l[0x1d]i[0xfc]X1[0xf9]#[0xd1][0xf][0x81]+<[0xab][0xc3][0x91][0x90][0xc7]h[0xee][0xa9][0x8e][0x9e][0xd7]Ns[0xff][0xfb]?U[0xae][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x9d][0xeb][0xbf]t01[0xb1][0x8]1[0xce][0xb4]Pc8[0xd3][0xca][0x12]B[0x8]![0x84][0x10]B[0x8]![0xa4]O$}[0xff]'[0xdc]R[0x1f]Y[0x1d][0xf4][0x84][0xa3]/[0x0]%TG[0x8f][0xf7][0x9c]z[0xe7][0xfb]?[0xd5]z[0x95]K[0x9e][0xff]WW[0xf3][0xfd][0x9f][0xf4][0xa0][0xa9][0xac]L[0xab]@[0x12][0xa7][0x15][0xdb][0xaf][0xde][0xfa][0xe8][0xfe]L[0xeb]A[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x87][0x1a][0xf5]-^_[0x83]cE [0xe2][0xf3][0xfa][0x1d][0xee]@s[0xd0][0xeb][0xf3][0xcc][0x8b][0x1d][0x19][0xee]&O[0xb8]t[0xf9][0xca]f[0x87]l[0xb1]4[0xe1]@K[0xc8][0xed])[0x8d][0x4]J[0xdd]>#[0x1c][0xf6][0x84][0xcb]"F}[0x99][0xcf][0xe3][0xef][0xbe][0xe][0xdd][0xa9][0xeb][0xae][0xca]J[0xbb][0x1e][0xa5][0xab][0xd4]q[0xdd][0xee][0xac][0xa8][0xd2][0xcb]+t[0x97][0xd3]Ue[0xd7][0xcb][0xab][0xaa]+[0x9d][0xca][0xae][0xa7][0xa3][0x1]Z[0xc2][0x11]#[0xa4][0xf4]~[0xd7][0xd5][0xd5][0xb8][0x14][0xa8][0x96]F[0xd6]gZ[0x1][0x92][0x19][0x92][0x1e][0xff][0xe6][0xa8]/]va[0xa9][0xdf]h6[0xc3]@4 H[0x14]X[0xe2]=x[0x1c]H~[0xfc]W[0x97]WVp[0xfc][0xa7][0x8f][0xd6]L+@2D*[0xc7]w[0xab][0x80]$[0xc6][0xb5][0xb3][0xba][0x2][0xe3][0xdf]U][0xc1][0xf1][0x9f]N6eZ[0x1][0x92][0x19][0x92]_[0xff][0xb7][0xd4]GV[0x7][0xa3][0xcb][0xfe][0xee]&[0xfc].$3[0xfe][0xf5]*[0x17][0xc6]eUU%[0xc7][0xfa]h[0xcd][0xb4][0x2]$C$?[0xff][0x7][0xfc][0x18]1[0xfe]H[0xf4]s[0xff]J[0xc3][0xd7][0x82]X`Dz[0xaa][0xa3][0xb7][0xf1]_[0xae]W[0x98][0xe3][0x1f][0x11][0xa0][0xdc])[0xe9][0xca][0xab][0xaa][0xca][0xab]8[0xfe][0xd3][0x81]C[0xd5]z[0x8c][0x6]O[0xc8][0xbe][0xd0][0xe3][0xe][0x84][0x1a][0xec][0xb3][0x3]!{[0x9d]'[0x14][0xf6][0x86]#[0x1e][0xa4][0xd6][0x8]7-0[0x82][0x8b][0xa4][0x97][0xcf][0x8c][0x4]BF[0xa3][0xe7]S[0x92]K[0xc3]6\-T[0xb3][0xd4][0x19][0xea]l5[0xc7][0xdc][0x9b][0xa9][0x96][0xa8]i[0xd8];U[0x9d])I[0xb2][0x13]N[0x98])[0xd3][0x89][0xea][0xd3][0xfc][0x1f][0xf4][0x84]:V[0x0])[0x9f][0xff][0xa3][0xeb][0xff]J[0x97][0x93][0xf7][0xff][0xd2][0xc9][0xba]L+@2C[0xd2][0xe3]?[0x18][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "D[0x2][0xe6][0xd0]_[0xe1]Y[0x1d][0x8e][0x84]> "[0x90][0xcc][0x90][0xfc][0xfc]o[0xb8]W[0xe0]c`i[0xd0][0x8]E[0xef][0x1][0xf4]^G[0xcf][0xe3][0xdf]i[0xee][0xef][0xff][0xf9][0xbf][0xb2][0xa2][0xdc][0xc5][0xf1][0x9f][0xe]n[0x9f][0xff][0xa3]B[0xf9][0x90]n[0xe9]|[0xd2][0x16][0x15][0xf2][0xa1][0xa0][0x15][;P[0x9d][0xd2]d[0xa9][0xe8][0x7]{[0xad]S[0x16][0xb9]f[0x8f][0xed]w>[0x9f][0x8][Q[0xbe][0x3][0xf2][0xb9]X=[0x84][0x10]B[0x8]![0x84][0x10]B[0x8]I-)[0xfa][0xfe]G[0x8f]7[0x82][0xfb][0xf0][0xfe]wu%[0x9f][0xff][0xa4][0x11][0xad])[0xd3][0x1a][0x90][0xcc][0x90][0xf4][0xf8][0xf7][0xfa]#[0x9e][0x90][0xdf][0xf0][\r][0xe8][0xfb][0xdf][0xd5]z[0x5][0xef][0xff][0xa6][0x11]-7[0xd3][0x1a][0x90][0xcc][0x90][0x9a][0xf9][0xbf][0xe7]:[0x92]y[0xfe][0xe3][0xd2][0xcd][0xf7]?[0x9d].[0x9d][0xe3]?[0x1d][0xc8][0xf3][0x9f]<[0x15]}[0xa6][0xd3]A[0xec][0xf9][0x8f]|)[0xb4]U[0xed]{[0xfe][0x13]OS[0xa2][0xe]|[0xfe]#[0xd7]Jc[0xfb][0xc9]>[0xff][0xd9][0x86][0xf2]/[0x82][0xdc][0xf4][0xef][0xf6][0xf6][0xff]B[0xce][0x97][0xcf][0x81][0x8]![0x84][0x10]B[0x8]![0x84][0x90]T[0x92][0xd2][0xfb][0xbf][0x1d]O[0x81][0xf6][0xaf]#[0xd1][0xfb]?[0x1d][0xf7]+[0xf4]r[0x17][0x9f][0xff][0xa4][0x85][0x89][0x81]P[0xa3][0xc3][0x8]JW;[0x8c]f[0x3]}k[0x84][d[0xcf][0xe1][0xf6]y[0x1d][0xcd][0x6]z|Z[0xb3]1c[0xfe][0x9c]i[0xa1][0xc6][0xb0]+[0x99][0xc4][0x13]f[0xc0][0x9b][0xc][0xbf]7[0xe0]/K,[0x9b][0xcf][0xbb][0x0][0xbb][0xf3]"U[0xc9]%[0x9f] g&8[0xab][0xfb][0x94]k[0x82]sz[0xdf][0xf2][0x5][0x8d]P[0xd8][0xd3]`[0xda][0xe9][0x9c][0x95]d[0x11]n[0xc][0x91][0x88]gF[0xc0][0x1f][0xc1][0xb1]'4[0xa7][0xd9]h[0xf4]$[0xaf][0x88][0xe1][0x8e][0xa0]m[0xcf][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "t[0x94][0x93][0x8a]"[0xca]{nFw<[0xa1][0xa3]#K[0xad][0xe1]o[0xf0]A[0xf4]1_L[0x87][0xd8]Q[0xb8]7[0x1b]z([0xc8]m[0xf8]|[0xf5][0x86]{[0xc5][0x4]g[0xcf]n[0xba][0xaf][0x88][0x99][0x1][0xf7][0x8a]X[0xf3][0xcf]F[0xd8][0x9b][0xd4][0xb7]l[0xf3]"s[0xfb][0xaa][0xb2][0x19]|;[0x15]7[0xc1]Y[0xd3]_[0xeb][0xfb][0xac][0xcb]t[0xd1][0xc5][0xd4]bF[0xac][0xa8]L[0x87]&B[0x8]![0x84][0x10]BH[0x8a]I[0xf5][0xfb][0xbf][0x7][0xab]#[0x89][0xfb]?[0xf1][0xf7][0x9d].[0xfe][0xfe]CZX[0xe3]8;[0x8c][0xcf][0xdd][0x8e][0xc6][0x96][0xd5]eA[0x8f][0xcf][0xd3][0xe8]h[0xf0][0xac]tx[0xfd][0xee][0x96]z#[0x12][0x8][0x95][0xee][0xf7][0x19][0xb2]T>C[0x86]C[0xee][0xe8][0xad][0x84][0x98]C[0xf4][0xed]Ss[0xd9][0x8a][0xc8]E[0xe9][0xaa][0xba][0xeb]g][0xd4][0x1d][0x1c][0xd8][0xba][0xbb][0xdc]jA[0x85][0x99][0xee]gB[0x8]![0x84][0x10]B[0x8]![0x9f]l[0xfa][0xf9][0xfb][0xdf]K[0xbc][0x9][0xd4][0xd1][0xe3][0xfd][0x1f][0xa7]~[0xe0][0xfb]?[0xe5][0x95][0x15][0xfc][0xfe]w[0x9a][0xb0][0xec][0xff][0xd5]/B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10][0x92]YZ[0xb1][0x9d]P<[0xf6][0xd6]L[0xeb]A[0x8]![0x84][0x10]B[0xc8]'[0x81]6l[0xef][0xdd][0xf4][0xdb][0xe3]3[0xad][0x7][0x19][0x1c][0xd4][0xb7]x}[\r][0x8e][0x15][0x81][0x88][0xcf][0xeb]w[0xb8][0x3][0xcd]A[0xaf][0xcf]3/vd[0xb8][0x9b]<[0xe1][0xd2][0xe5]+[0x9b][0x1d][0xb2][0xc5][0xd3][0xf8][0x8c]p[0xb8]t[0xd9][0x85][0xa5]~[0xa3][0xd9]S[0x1a][0x9][0x94][0x86][0x3]-![0xb7][0xa7],b[0xd4][0x97][0xad][0xf0][0xac][0xe]GB[0x1e][0xa3][0xb9][0xcc][0xe7][0xf1][0xef][0xab]Cw[0xea][0xba][0xab][0xb2][0xd2][0xae]G[0xe9]*u\[0xb7];+[0xaa][0xf4][0xf2][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xbd][0xda]Y]a[0xd7]!+\[0xca][0xae][0xa7][0xa3][0x1]Z[0xc2][0x11]#[0xa4][0xf4]~[0xd7][0xd5][0xd5][0xb8][0x14][0xa8][0x96]>[0xb4]%[0x99][0xd6][0x80]d[0x86][0xa4][0xc7]t[0xb8][0xcb][0xc0]7#[0x81]',#[0x89]w[0xff][0x11][0xbf]?I[0x8c][0x97][0xd3]Ue[0xd7][0xcb]][0xe5]UN[0x8e][0xff][0xf4][0xd1][0x9a]i[0x5]H[0x86]Hz[0xfc]{[0xfd][0x11]O[0xc8]o[0xf8][0xe]2[0xff]/[0xf1][0x1e][0xbc][0x8e][0x1e][0xc7][0xbf]3[0xba][0xbf][0xdf][0xfc]_[0xee][0xaa][0xaa][0xe6][0xf8]O[0xf]#TV[0xa6]U [0x84][0x10]B[0x8]![0xa4][0xbf][0xac][0xc3]6[0xf1][0xd6][0xb1]u[0x99][0xd6]#[0xd3]l[0xc0][0xf6]%[0xc7][0xb7][0x9e][0xc9][0xb4][0x1e][0x84][0x10]B[0x8]![0x84]d[0x14]M[0xa9][0xda]e[0x93][0x1e][0xed]-[0xd9]Vle[0xde][0xed][0xcf][0xa6]A[0xa3][0x8f][0x5][0xf2][0xfe][0x90]u[0xe1][0xfb][0xa7]dZ[0xf][0xf2][0xf1]`#6[0xed][0x89][0x9f][0xd9]2[0xad][0x7]![0x84][0x10]BH[0x9c][0xed][0xd8][0xa6]o[0xc9]9#[0xd3]z[0x90]([0xbb][0xb0]}p[0xdc][0xb5]k2[0xad][0x7]![0x84][0x10]B[0x8]![0x84][0x10]B[0x12]g'[0xb6]w[0xd6][0xf9][0xbe][0x91]i=[0x8]I[0x5][0x9b][0xb0]}[0xb0][0xf7][0xe2]/dZ[0x8f][0xc1][0xce]nlu[0xdb][0xf].[0xd3]z[0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]BH[0xa2][0xec][0xc0][0xb6]u[0xcf][0x82][0xf7]3[0xad]G_Y[0x8f][0xed][0xd2][0x97]~[0xe9][0xca][0xb4][0x1e]$3l[0xc6]6[0xeb]_o[0x18][ gCfX[0x1d]B[0x8]![0x84][0x10]B[0xc8][0xc7][0x80]VlW[0xfd]y[0xdb][0xb9][0x99][0xd6][0x83][0x10]B[0x8]![0x84][0x10]B[0x8]9[0x94][0xd9][0x83][0xed][0x83][0xa7][0x8f][0xad][0xc8][0xb4][0x1e][0x84][0x90][0xc1]K}[0x8b][0xd7][0xd7][0xe0]X[0x11][0x88][0xf8][0xbc]~[0x87];[0xd0][0x1c][0xf4][0xfa]<[0xf3]bG[0x86][0xbb][0xc9][0x13].][0xbe][0xb2][0xd9]![<[0x8d][0xcf][0x8][0x87]K[0x97]]X[0xea]7[0x9a]=[0xa5][0x91]@i8[0xd0][0x12]r{[0xca]"F}[0xd9][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xcf][0xea]p$[0xe4]1[0x9a][0xf7][0xaf]Cw[0xea][0xba][0xab][0xb2][0xd2][0xae]G[0xe9]"[0x9d][0xe6][0xbe][0xb3][0xa2]J/[0xaf][0xd0][0xab][0x9d][0xd5][0x15]v[0xbd]Bw[0xba][0x9c][0xca][0xae][0xa7][0xa3][0x1]Z[0xc2][0x11]#[0xa4][0xf4]~[0xd7][0xd5][0xd5][0xb8][0x14][0xa8][0x96][0xe]&[0x6]B[0x8d]eFP[0xba][0xba][0xcc]h6"[0x9e][0x90][0x11]n[0x91][0xbd]2[0xb7][0xcf][[0xd6]lx[0xfd]e[0xd3][0x9a][0x8d][0x19][0xf3][0xe7]L[0xb]5[0x86]][0xc9]$.[0x9b][0x1]o2[0xfc][0xde][0x80][0xbf][0xba][0xc7]l[0xee][0x80]?[0x82][0x9c][0x9e][0x10]2[0xc4][0xf6]j[\r][0x83][0xcf][0x13][0xea][0xb9][0xba]}[0xf9]f[0x6][0xdc]+<[0xa1]9[0xcd]F[0xa3]g6[0xdc][0xb7][0xa6][0x8f][0xd5][0x95][0xb9][\r][0x9f][0xaf][0xde]p[0xaf][0x98][0xdb][0xd7][0x2][0xa6][0xcb]`2[0xf5][0x98][0x11]+*[0xd3][0xdd]K[0x8]![0x84][0x10]B[0x8]![0x84][0x98]$}[0xff][0xc7][0xeb][0xc7][0xe7]a[0xbf][0xe1][0xeb][0xf1][0xfe]O[0x99][0xcf][0xe3][0xdf]WG[0xcf][0xf7][0xcc][@][0xee][0xff]8[0xf5]J[0xde]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "2000[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xff]I#[0xd9]GfZ[0x3][0x92][0x19][0x92][0x1e][0xff]A[0xc3][0xbd][0xc2]h[0xf4][0x94][0x6][0x8d]P$,[0xa3]~[0x89][0xb7][0xb7]:z[0x1c][0xff]N[0xbd][0xf3][0xfd]_[0x97][0xd3]Ue[0xd7][0xcb]+][0x95][0x15][0x1c][0xff]i[0xc1][0xa2][0xb2]2[0xad][0x2]![0x84][0x10]B[0x8]![0xfd][0xa5][0x15][0xdb][0xc4][[0xc7][0xd6]eZ[0xf]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x90]O:m[0xd8]>8[0xee][0xda]5[0x99][0xd6][0x83][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x90][0xbe]P[0xdf][0xe2][0xf5]58V[0x4]">[0xaf][0xdf][0xe1][0xe]4[0x7][0xbd]>[0xcf][0xbc][0xd8][0x91][0xe1]n[0xf2][0x84]K[0x97][0xaf]lv[0xc8][0x16]K[0xe3][0xf5]G[0xf3][0x8f][0xf6][0xf6]k[0xb4][0xa8]^/[0xc4][0xa4][0xcd][0xa2][0xd4][0xab]oo[0xaf][0x85][0xdc][0xb9][0xab][0xbd][0xfd][0xab][0x96][0xe8][0xf9]_C[0xce][0xd9][0xdb][0xde][0x9e][0x9f][0xa5][0xd4][0xf3][0xef]#V[0xf4][0xfc]Wbr;[0xe4][0x5][0x8f][0xda]G[0x8]![0x84][0x10]B[0x8]![0x84][0x1c][0xaa][0xa4][0xf2][0xfe]O[0xd9]J[0xc3][0xd7][0xe2][0x9][0x97][0x19][0x91][0xfd][0xeb][0xe8][0xe5][0xfe]O[0x85][0xab][0xa2]j[0xff][0xfb]?[0x15][0xba][0xb3][0xba][0x9a][0xf7][0xd2][0x81]C[0xd5]z[0x8c][0x6]O[0xc8][0xbe][0xd0][0xe3][0xe][0x84][0x1a][0xec][0xb3][0x3]!{[0x9d]'[0x14][0xf6][0x86]#[0x1e][0xa4][0xd6][0x8]7-0[0x82][0x8b][0xa4]_[0xcf][0x8c][0x4]BF[0xa3][0xe7]B[0x15]t[0x9c][0x1d]F[\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "Gc[0xcb][0xea][0xb2][0xa0][0xc7][0xe7]it4xV[0xc2]/[0xdc]-[0xf5][0x6][0xd2][0x94][0x1a][0xcd][0x6]\[0xc4][0x8][0xb7]8[0xb0]W[0xea][0xf6]y[0x1d][0xe1][0x90][0xdb][0xd1]l[0xc0]yb>[0x14][0x8]5:[0x8c][0xa0][0xb8][0x97]c[0xbf][0xc4][0xe]Il&[0x9c][0xd6]l[0xcc][0xf0]y[0x17]`[0xb7]lE[0x84]U[0xb2]JV9[0xf8][0xaa][0xbc]X]4[0xb0]U[0xba][0x3][0xfe][0x8][0xd2]zB[0x8e][0x19][0xf1][0xbd]Z[0xc3][0xdf][0xe0][0xf3][0x84]>[0xe1][0xb5]_[0xa4][0xd6][0xa4][0xab][0xf6][0x99][0x1][0xf7][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "OhN3B[0xff]l[0xac][\r]2][0xf9]'[0xb9][0xd7]Y;kg[0xed][0xac][0x9d][0xb5][0xb3]v[0xd6][0xce][0xda]Y[0xfb][0xa1]Q[0xfb]'[0xe3][0xd3]"[0xab]d[0x95][0xbc][0xd9][0xc0][0xda]Y{[0xc2][0xb5][0xa7][0xe1][0xfe][0xd2][0xcf][0xc2]-AO([0xb2]:[0xe8][0x9][0xf7][0xf4][0xca][0xef]~$[0xff][0xfe]o[0xa5]^[0xa1][0xf3][0xf9]O:[0x90][0xf7][0xb3]T[0x97]wvc[0xef][0xff][0xae]S[0xfb][0xbf][0xff]k[0x89]][0xce]Q[0x7][0xbe][0xff]+[0xd7][0xc6][0xc4][0xf6][0x93]}[0xff]W[0xca][0x9f][0x6]9[0xb2][0x9d][0xef][0xe1][0x12]B[0x8]![0x84][0x10]B[0x8]![0x3]A[0xd2][0xf7][0xdc][0x1]8b[0xf8]#[0xe6][0xed][0x9f]%[0xde]2[0x9f][0xc7][0xdf][[0x1d]=[0xdf][0xff]1o[0x1][0x99][0xf7][0xca]+t[0x97][0xd3]U%[0xf7][0xaa][0x9d][0xe5][0xbc][0xff][0x93]>Z3[0xad][0x0][0xc9][0x10][0xfd][0x1d][0xff][0x89][0xd4][0xd1][0xe3][0xf8]w[0xea][0x1d][0xf7];[0x8d][0x1c]r[0xfc][0xa7][0x5]MeeZ[0x5]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B>[0xe9][0xb4]b[0xbb][0xea][0xcf][0xdb][0xce][0xcd][0xb4][0x1e][0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84]|[0x92][0xa9]o[0xf1][0xfa][0x1a][0x1c]+[0x2][0x11][0x9f][0xd7][0xef]p[0x7][0x9a][0x83]^[0x9f]g^[0xec][0xc8]p7y[0xc2][0xa5][0xcb]W6;d[0x8b][0xa5][0x9][0x7]ZBnOi$P[0xea][0xf6][0x19][0xe1][0xb0]'\[0x16]1[0xea][0xcb]V[0x1a][0xbe][0x16][0xec][0x1a][0x91][0x83][0xd5][0xa1];u[0xdd]UYi[0xd7][0xa3]t[0x95][0xae][0xca][0xaa]*[0xbb][0xb3][0xa2]J[0xaf][0xd2][0xcb][0xcb]]:[0xd2][0x95]W;[0xf5]Je[0xd7][0xd3][0xd1][0x0]-[0xe1][0x88][0x11]Rz[0xbf][0xeb][0xea]j\[\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "TK[0x7][0xe]U[0xeb]1[0x1a][0xe4][0x8f][0x18]^[0xbf]'[0xe4][0x98][0x19]p[0xaf][0xf0][0x84][0xe6]4#[0xd3]lx[0xd5][0xa4][0xbe]e[0x9b][0x17]),[0x8b][0xba][0xde][0x92][0xe6]@C[0x8b][0xcf][0xf3][0xab],U[0x9d]`Q3[0xe2]{[0xb5][0x86][0xbf][0xc1][0x7][0xd1][0xc7]|[0x13][0xc]w[0xc4][0x1b][0xf0][0xc7][0x8e][0xc2][0x13][0x9c][0xd3][0xfb]Z[0x90][0xdb][0xf0][0xf9][0xea][\r][0xf7][0x8a][0x9][0xce].V[0xfd]1WM[0xec][0xb1][0xd0]f[0x94][0xe3][0x98][0xd6]l[0xcc][0x98]?gZ[0xa8]1[0xdc]s'tI[0x7][0xd3][0xe9][0x12]L[0xcd]0:[0x83][0xd6][0xf5][0xc3][0xba][0xdf][0xe5]p[0xa9]4h[0x96]J[0x9f]([0xcf][0xcb][0xf4][0x87][0xb5][0x1] [0xe9][0xcf][0xff]h[0xd5][0x15]h[0xea]R[0xb8]R[0xc4][0xfc][0xec][0xbf][0xc4][[0xe6][0xf3][0xf8]{[0xaa][0xa3][0x97][0xcf][0xff]:[0xae][0x9b][0x9f][0xff][0xcb]+t[0x97][0xd3]U[0x85][0xcf][0xff]U[0x95][0xe5]:?[0xff][0xa7][0x8f][0xd6]L+@2D[0xd2][0xe3][0xdf][0xbc][0xeb]W[0xba][0xec][0xc2]R[0xbf][0xd1]l[0xde][0x6][0x8c][0xde][0x10][0xec][0xe9].`/[0xe3][0xbf][0xb2][0xaa][0xc2][0xb5][0xff][0xfd][0xbf][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "][0xaf][0xe6][0xfd][0xbf][0xb4][0x90][0xf4][0xfd][0xbf][0xb]U[0xd0]qv[0x18])[0x1c][0x8d]-[0xab][0xcb][0x82][0x1e][0x9f][0xa7][0xd1][0xd1][0xe0]Y[0xe9][0xf0][0xfa][0xdd]-[0xf5][0x6][0xd2][0x94][0xee]7[0xe3][0x96][0xca][0x8c][0x1b][0xe][0xb9][0xa3][0xb][0x8a][0x98][0xf]%[0xb3][0xf2]([[0x11][0xc9]@[0x95][0x17][0xab][0x8b][0x6][0xb6][0xca][0xee][0x17]![0xa8][0xfd]"[0xb5]&][0xb5]w[0xb9][0xdb][0x9a]q[0xd3]Y;kg[0xed][0x9f][0x9c][0xda]9[0x9d][0x1c][0xea]=[0xfc]I[0xae]=[0xd3][0xab][0xbb][0xde]I[0xcd][0xf3][0xff]%[0xde][0x9e][0xea][0xe8]q[0xfd][0xef][0x8c][0xee]w[0xfd][0xfc][0xcf][0xf5][0x9a][0xc8][0xc2][0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0xc8] [0xa1][0x15][0xdb][0x83][0x97][0x9d][0xfd][0xb9]L[0xeb]A[0x8]![0xc9][0xd2][0x86]m[0xe9][0xf][0xde][0x9d][0x94]i=[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]Bzc[0x1d][0xb6][0xa3][0x8a][0xbf][0xb7]:[0xd3]z[0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]2[0x18][0xa9]o[0xf1][0xfa][0x1a][0x1c]+[0x2][0x11][0x9f][0xd7][0xef]p[0x7][0x9a][0x83]^[0x9f]g^[0xec][0xc8]p7y[0xc2][0xa5][0xcb]W6;d[0x8b][0xa5][0x9][0xb7][0xd4]GV[0x7]=[0xe1][0xb2][0x88]Q_[0xe6][0xf3][0xf8][0x13][0xa8]Cw[0xea][0xba][0xab][0xb2][0xd2][0xae]G[0xe9]*u\[0xb7];+[0xaa][0xf4][0xf2][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xbd]Z[0xaf]r[0xd9][0xf5][0xf2][0xca][0xf2][0xca]Je[0xd7][0x7][0xdc]z[0xd0][0x12][0x8e][0x18]![0xa5][0xf7][0xbb][0xae][0xae][0xc6][0xa5]@[0xb5]4[0xd2][0x96]i[0x5]HfHz[0xfc][0xbb][0x3]~[0x8c][0x18][0xc4][0xc][0x0][0x89][0xd5][0xd1][0xf3][0xf8]w[0x9a][0xfb]2[0xfe][0x11][0x1][0xca][0x9d][0x92][0xae][0xbc][0xc2]U[0xae]s[0xfc][0xa7][0x83][0xdb][0xe7][0xff][0xa8]P[0x83][0xd4]:[0x9f][0xb4]E[0x85][0x4][0x85]Vl[0xed]@uJc[0x89][0xed]w[0xce]#[0xfb]Gt[0xda]O[0x86]o[0xc6][0xca]'[0x84][0x10]B[0x8]![0x84][0x10]B[0xc8][0xc0][0xd0][0xbf][0xfb][0xbf]+[\r]_[0xb]v[0x8d]H[0x8f]u[0xf4]r[0xff][0xd7][0xa9][0xbb]\[0x1d][0xf7]\[0xba][0xdc][0xff][0xa9][0xaa][0xd4]y[0xff]'-8T[0xad][0xc7]h[0xf0][0x84][0xec][0xb]=[0xee]@[0xa8][0xc1]>;[0x10][0xb2][0xd7]yBao8[0xe2][0xf1]Gj[0x8d]p[0xd3][0x2]#[0xb8]H[0xba][0xf9][0xcc]H d4z[0xa6][0xa9][0x9a]@[0xa8][0xb1][0xcc][0x8][0x8a]w[0x94][0x19][0xcd]F[0xc4][0x13]2[0xc2]-[0xb2]W[0xe6][0xf6]y[0xcb][0xdc][0x1][0xc4][0xf0][0xfa]=[0xa1][0xb2][0x19][0xf1][0xbd]Z[0xc3][0xdf][0xe0][0xc3][0x9][0xb7][0xe1][0xf3][0xd5][0x1b][0xee][0x15][0xf3]f[0xcc][0xed]k[0x11][0xd3][0xc5]][0xe7]4C[0x8f][0x19][0xb1][0xc2][0xae][0xed][0xbf]>)[0xd4]f[0x9e]Jea[0xb][0x6]ka[0x99][0xf6]Z[0x92]*[0x92][0x8e][0xff]^?[0x1c][0xc7]o[0xf8]J[0xfd]F[0xb3][0xa7]4[0x12]([\r][0x7]ZBn[0x8f]L[0x7]K[0xbc][0x7] [0x98][0xc4][0xf3]?[0x97][0xd3]U[0x85][0xf8]_]Q[0xe9]b[0xfc]O[0x1f][0xad][0x99]V[0x80]d[0x88][0xfe]=[0xff]K[0xec][0x5][0x80][0xe4][0xc7]e[0xa5]^[0xce][0xf1][0x9f]F[0xf8][0xfc][0xff][0x13]J[0xbf]>[0xff]%XG2[0xcf][0xff][0xa3][0x9f][0xff]0[0xfd]Wp[0xfc][0xa7][0x3]y[0xfe][0x1f][0x9e]/\+[0xff][0xf4][0xf2][0xfc][0x88]:[0xf8][0xf3][0xbd][0xd3]~2[0x8c][0xfa][0x88][0xcf][0xff][0x9]![0x84][0x10]B[0x8]![0x84][0x90][0x81]$[0xe9][0xfb]?A[0xc3][0xbd][0xc2]h[0xf4][0x94][0x6][0x8d]P$[0xc1][0x97][0x0]z[0xbd][0xff][][0xde][0xe5][0xfb][0x1f][0xae][0xf2][0x8a]j[0xde][0xff]I[0x7]I?[0xff][0xd7][0x94][0x16][0xfd]?[0xd3][0x9a][0x93]T[0xd0][0xbf][0xf7]VxV[0x87]#![0x8f][0xd1][0xdc]c[0x1d][0x89][0xde][0xff][0xdd][0xf7][0xfd][0xcf][0xaa][0xca]j>[0xff]I[0xb]S[0xd0][0xe7]e[0x8d][0xde]HSK}YC[0xc0][0xbd][0xc2][0x13]Zn[0xac]4[0xca][0x10][0xb]<[0xf8][0xa7][0xb9][0xd9][0xf0]7tz[0xff]c[0xa1]'[0xdc][0xe2][0x8b][0xf0]-[0x10]B[0x8]![0x84][0x10]B[0x8]![0xe4][0xe3]E[0xf2][0xf7]C[0x81]H [0x89][0x97][0xff]T_[0xde][0xff]+[0xaf][0xae][0xe2][0xf7][0xbf][0xd2][0x82][0xbc][0xff]W[0xc][0x99][0xdb][0xf9]d[0xec][0xfd][0xbf][0xad]j[0xff][0xf7][0xff][0x86][0xc5].[0x9f][0xa4][0xe]|[0xff]O[0xae][0x9d][0x1d][0xdb]O[0xf6][0xd6][0xf0][0xf9][0xbf]lo/[0x85]\[0xbd][0xad][0xbd][0xbd][0x1][0xf2][0xf7]/[0xb4][0xb7][0xdf][0x0]y[0xdf][0xd3][0xed][0xed][0xcf]A[0xfe][0xe8][0xbd][0xf6]v[0xb][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "}[0xf5][0xdf][0xed][0xed]S ?[0xfb][0xd3][0xf6][0xf6][0xb9]ZT[0xaf]/A[0xb6]>[0xc9][0xf7][0x7][0x9]![0x84][0x10]B[0x8]![0x84][0x90][0x9e][0xe8][0xfb][0xfd][0x9f][0x4][0xfc]]%[0xf7][0xfb][0xef][0xce][0xea][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xf9][0xfe]gU[0x85][0x93][0xf7][0xd2][0xc8][0xd6]L+@2C[\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xde][0xff][0xed][0xf5]%[0xc0]$[0xde][0xff][0x8b][0xfd][0xfe][0x83][0xab][0xa2][0x82][0xbf][0xff][0x92][0x16][0xca][0x2][0xa1]FG[0xf4]G[0xa1][0x1c][0x1d]?[\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "%{[0xe][0xb7][0xcf][0xeb]h6[0xd0][0xe3][0xd3][0x9a][0x8d][0x19]>[0xef][0x2][0xec][0xce][0x8b]L[0xea]1y[0xc7]oH9f[0x9a][0xaf][0x12][0x9a][0xef][0xc][0xce][0x16][0x8f][0xea][0xf9][0x7][0xe2][0x8]![0x84][0x10]B[0x8]![0x84][0x10]2[0xa0]$[0xff][0xfb][0x9f]>#[0x1c].]v[0xe1]A~[0xff][0xb7][0xbb]:[0x92][0xff][0xcf][0xe5][0xac][0xe2][0xf7]?[0xd3][0x82][0xbc][0xff]W[0xa8][0xa2][0xbf][0xe9][0xd7]A[0xec][0xfd][0xbf]Mj[0xff][0xf7][0xff]rb[0x97][0x8f]U[0x7][0xbe][0xff]'[0xd7][0xce][0x8f][0xed]'[0xfb][0xfe][0xdf][0x17][0xde][0x8f][0xbe][0xff]W[0xf0]~[0xf4][0xfd][0xbf][0xaf][0xfd][0xb7][0xbd][0xfd][0xe][0xc8][0xe5][0x1f][0xb5][0xb7][0xff]*V[0xff]H[0x14]z[0xf4][0xf9][0x9e][0x1f]![0x84][0x10]B[0x8]![0x84][0x10][0xd2][0x17]R[0xf9][0xfe]Owo[0x4][0xf6][0xe1][0xef]?9[0x9d][0xfc][0xfb][0xf][0xe9][0xa4])[0xd3][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x90][0xcc][0xd0][0x8f][0xf7][0x13][0xfb][0xf1]?[0x95][0xdc][0xef][0xff]E[0xdf][0xff][0xad][0xac][0xae][0xe2][0xef][0xa6][0x85][0x89][0x89][0xbd][0xff]7[0xce][0xb4]Pc[0xd8][0x95]L[0xe2][0x9]3[0xe0]M[0x86][0xdf][0x1b][0xf0]'[0xf9][0x8e]au[0x82][0xef][0x18]v[0xfd];[0x95]=k[0xd7][0xed][0xbb][0x89]}~[0xa5][0xb1][0xb0],:$[0x96]4[0x7][0x1a]Z|[0x9e][0x9a]>[0xaa]=[0xa1][0xf3][0x9f]![0xed]S[0x1][0xfc][0xfb][0x9c][0x84][0x10]B[0x8]![0x84][0x10]Bz[0xa3][0x9f][0xff][0xbb][0xd7]{[0xbf]B[0xf2][0xf7]][0x95]z[0x15][0xef][0xff][0xa4][0x91][0xd2]L+@2C[0x1f][0xfe][0xfe]K[0xd0][0x13][0xea][0xf8][0xb]0K[0xbc][0x9][0xfc][0xc]D2[0xbf][0xff][0x10][0xfb][0xfb]/[0xce]r[0xfe][0xfe]C[0x1a]i[0xcd][0xb4][0x2]$C[0xf4]s[0xfc][0xf7][0xfe][0xc7][0xdf]T[0xef][0xe3][0xbf][0xb2][0xca][0xd9][0xe5][0xfd][0xff][0xaa][0xea]J[0xbe][0xff][0x9f][0x16][0x92][0xfe][0xfb]oS[0xfb][0xf5]'[0xa3]>[0xbe][0xb9]3[0xdd]Q[0x3]D[0xc7]"[0x1f][0x0][0x92][0xff][0xfd]'[0x97][0xcb]Y[0xc9][0xf1][0x9f]F[0xae][0xcd][0xb4][0x2]$3[0xa4][0xf2][0xfb]K[0xbc][0x7][0xaf][0xa3][0xc7][0xf1][0xef][0x8c][0xee]w[0x19][0xff][0x95].[0xfe][0xfe]Sz[0xc8]QY[0x99]V[0x81][0x10]B[0x8]![0x7]g=[0xb6]Q[0xde][0x1f]_[0x94]i=[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x90][0x8f]#[0xeb][0xb0]]s[0xd3]m[0x1f]fZ[0xf]B[0x8]![0x84][0x10]Bz[0xa2][\r][0xdb]/.9[0xe6][0xf3][0x99][0xd6][0x83][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x83][0x8f][\r][0xd8]N([0x1e]{k[0xa6][0xf5][0xc8]4[0xad][0xd8][0xae][0xfe][0xe8]?[0xd5][0x99][0xd6][0x83][0x10]B[0x8]![0x84][0x1c][0xda]l[0xc4][0xf6][0xde]M[0xbf]=>[0xd3]z[0x90][0xc1]A}[0x8b][0xd7][0xd7][0xe0]X[0x11][0x88][0xf8][0xbc]~[0x87];[0xd0][0x1c][0xf4][0xfa]<[0xf3]bG[0x86][0xbb][0xc9][0x13].][0xbe][0xb2][0xd9]![,M0[0x14][0x88][0x4][0xca]"F[0xfd][0x12]o[0x99][0xcf][0xe3]O[0xa4][0xe][0xdd][0xa9][0xeb][0xae][0xca]J[0xbb][0x1e][0xa5][0xab][0xd4]q[0xdd][0xee][0xac][0xa8][0xd2][0xcb]+t[0x97][0xd3]Ue[0xd7][0xcb]+[0xf5]J[0xa7][0xb2][0xeb][0x3]m[0xbc][0xd0][0x12][0x8e][0x18]![0xa5][0xf7][0xbb][0xae][0xae][0xc6][0xa5]@[0xb5][0xf4][0xd1][0x9a]i[0x5]H[0x86][0xe8][0xfb][0xf8]/[i[0xf8]Z<[0xe1]2#[0xd2][[0x1d]=[0x8f][0xff][0x8a][0xea]JW[0x85]9[0xfe][0x11][0x1][0xca]]z[0xa5][0x8c]Wu5[0xc7]:p[0xa8]Z[0x8f][0xd1][0xe0][0x9][0xd9][0x17]z[0xdc][0x81]P[0x83]}v d[0xaf][0xf3][0x84][0xc2][0xde]p[0xc4][0xe3][0x8f][0xd4][0x1a][0xe1][0xa6][0x5]Fp[0x91][0xf4][0xf4][0x99][0x91]@[0xc8]h[0xf4][0xfc]6[0xcf][0xcc][0xf7][0xcb][0xf1]y[0x96]bK[0x9e][0xc5][0xa6][0xf2]Tt/W[0x8e][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "![0xb1][0xd9][0xf2]![0x87][0x14]+[0xfb][0xe8]r[0x8b][0xae]M[0xd6]FO[0x1f]^[0x94]c[0xb3][0x8c][0xb1][0xe8]Yw[0xe7]Xl[0xd9][0xb][0x8f][0xb4][\r][0xc1]A[0xce][0xa4][0xd9][0x8b][0xd7]^i[0xb9];[0xa7] /;w[0x98]-oLv[0xee]P[..[0xe6]w[0xbd]8[0xdc][0xbc]X`^,[0xec]z[0xd1]f^[0xb4][0x9a][0x17]Gt[0xbd]x[0x98]y[0xb1][0xc8][0xbc]8[0x12][0x17][0xf][0xef]|[0xb1][0xd8][0xbc]8[0xca]v[0xc4][0xc6][0x9c]10[0xea]HU6?[0x10]jt[0x18]Aq}[0x87][0xd1]lD> "{B[0xea][0xb8][0xf9][0x18]=[0x8e]U[0x1e][0xa0][0x19][0x99][0xbd]~[0xc3]a[0x84][0x1a][0xa3][0xd7][0x1c]H[g[0xee]MQ%%[0x9][0xa5];a[0x91][0xca]Gc[0xfb]#[0xd3][0xdc][0x11]o@f[0xd9][0xc2]FOdZ[0xa7]3#KN[0x98][0xbf][0xdc]Xi8|[0x86][0xbf][0xd1]qf$[0xe4][0xf5]7NQ#;e[0x9a][0xd0][0xe0][0xf1]y[0x1a]a[0x2][0xac]J[0xa0][0xce][0x9]3c[0xc9][0xa7][0xa8]a[0xf5]F[0xd8][0xe3]mFY[0xaa][0x0][0xd5]N[0xef]8*[0xea][0xb8][0xb0][0xaf][0xf0]\[0x94][0xdd]l[0xf8][0x1b][0xc2]*[0x1f]ig[0xc4][0xf]F[0xc4]O[0xef]K[0x99][0x7][0xd5]B[0xab][0x83][0x1][0xaf]?[0xa2][0x86]#[0xed][0xac]}[0x87][0x87][0xed][0xbb][0xb4]/[0xbd][0xb6][0x12]vg#[0xe1]"[0x95]Ur[0xc2]9*o[0xe5][0xbe]k[0xc3]PQ[0xd0][0xf0]KK[0xc]E[0xef][0x94][0xa2]w[0xee]0[0x1d]sRQ[0x87]cF]27O[0xe5][0xae][0xcd]*V[0xe2][0x89][0xd3][0x87][0xe6]Z[0xc4][0x1]-[0xb][0xb]mYp[0x86][0xec][0xc5]k[0xcf][0xc2]q[0x9e][0xda][0x98]3D[0xfa]RMJ[0xaa][0xff]'t(![0x9e][0x0][0x1d][0x17][0xa9][0xe1][0xb]g[0x9d]q[0xf6][0x9c][0x85][0xb3]f.[0x99][0xb6][0xf0][0xd4]3q6[0xae][0xdd]_[0x87]*[\r][0x87][0xcf][0x94][0xcb]x[0xb1]M[0x88][0x8e][0x15]Q4[0xbe][0x99][0xca][0x8a][0xcc][0x86][0x1c][0x11];[0x96]qd[0x19]c[0xb3][\r][0x83][0xb2][0xb9][0xe5]9[0xb6][0xa1][0xa2]t[0xad][0x9c][0xc9][0xeb]rf[0xb4]9hr[0xcb][0xb]l[0x5]cr[0x8b][0xb2][0x8b],[0xba]E[0x1f].[0xb6][0x16][0x8e]9[0xd2]f[0xc5]%[0xdb][0xfe][0x97]j[0xcd][0x86][0x18]1[0xbe][0xca][0xa6][0xc6][0x9c][0x10]=Ytt[0xd1]QE[0x87][0x15][0x8d][0xd0][0xb3]1:r[0x87][0x14][0xe5][0xe6][0xe6][0x14]e[0xe7][0xe6][0x96][0xc]5/[0xe7][0xea]Y[0xba][0xb6][0xf8][0xf2][0xec]X{[0x15][0xc1][0x98][0xc3][0xd4][0x8][0xc3]t[0xb5][0xb3][0x2]3[0x2][0xfe][0x8][0x1a][0x7][0x3]A8r~l[0xb6][0x8]y[0x96][0xf9]<[0xee][0x88]c[0xde][0xec][0x16][0xbf][0x99][0xd2]9%[0xe9]16*^[0x18][0xfc][0xd4]h[0xf6] [0xf9]i[0x10]ST[0xb6][0x1f]B[0xe5][0x99]~[0xdc] IQ[0xb1][0xcd][0x9c][0xcf]f[0x6][0xdc]+<[0xa1]9[0xa6][0xcb][0x8e]t[0x87]<[0xa8][0xa2]C[0xbf][0xe8][0xd9]l[0xa9]Ee[0x1b][0xd1]\[0xa3]J[0xce]=p,[0xa1]3m[0xe1][0xa6]@[0x8b][0xaf][0xa1][0xe][0xc7][0x91][0xb3][0xc3][0x92][0xaf][0xbb][0xb4][0xe7]t[0xf4][0xf3]n[0xab]4[0x80]6if[0xe7][0xf8]h[0xc6][0xc5][0xec]h[0xbf][0xef][0xd7][0xe7]Y][0xe4][0x10]S[0xc6]#jv[0xcc]k[0xf7][0xf][0x9e]s[0x8b]lG[0x8c][0xc9].[0xd6][0xf4],t[0xff]p[0x9c][0xce][0xab][0xb5][0xcc][0xcd][0xb5][0x15]co[0xb4][0xb9]7[0x6]{Gbo[0x8c]m[0xac]\E[0xaa][0xa3][0xe4]Ly[0xae]m[0x9c][0x99][0xf][0xa9][0x16][0x8e][0x88][0x17][0x88][0xe1][0x81][0x10]8[0xc4][0x96][0xb3][0xb0][0x1a][0xbe][0xf4]i[0xb3][0xab][0xb3][0x8a][0x8e][0x81]/[0x88]'[0xe4][0x89]'[0xe4][0xc3][0x13][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "LO[0x80]"Ef[0xcd][0xfa]0=7[0xee][0xb][0x18]K[0x12][0x92][0xad][0x9d][0x8e]mRv[0xa7][0xe3][0x11][0xfb][0x1d][0x8f][0xb6][0x15][0x8d][0xc9][0xb3][0x8f]/[0x2]\o[0xae]\[0xd0][0xd0])1[0xe2][0xaa][0xe1][0xf3][0xd5][0x1b][0xee][0x15][0xea][0xe4]n[0xca][0xc7][0x84][0xed]q[0xc4][0xc2][0xac]c[0xba]8[0xbe][0xe9][0xdc][0xb]=[0xe1][0x16]_dF,[0xf7][0x14][0x95][0x17][0xcd]R[0x1b][0x8]GTat[0xa1][0xa7][0x11][0x13]|h[0xb5][0xca][0xf1][0x5][0x1a][0x1b]1h[0x8b][0xcc][0x6][0xf][0xfb][0x96]U.w[0xcc]7OMQGDu-[0xc3][0xe2][0xaf][0xac][0xce]gD[0x96][0x5]B[0xcd]g[0xad][0xe]z[0xcc][0xf6][0x8b]&2[0xdb][0xef][0xc0][0x9c][0x7][0x8e][0xc2][0xd1][0x9d][0xce][0x9c][0xe9][0x9][0xad][0xf4][0x84]f[0xad][0xf2][0xb8][[0xb0][0xa4]@[0xc8]=[0xb8]u[0xcb][0x8d]U[0xa1][0xb0]c.[0xda][0xdf][0xb3]:[0xd6][0x8a][0xcd][\r][0x92]k6z'[0x10]Z[\r][0x5][0x1b]<[0xcb][0xc]1[0xb5][0x8b][0x13](WO[\r]63[0x9a][0xa9]s[0xc7][0xa0][0x80]e^[0xf4][0xbb][0x15][0x86]u>[0xaf]r[0xdc][0xe6][0x15]5[0xb2][0xe1] [\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "t[0xc][0xf9]W[0xf3][0xcd]!TI[0x97][0x99]G[0x6][0xfd]P[0xc8]c s[0xa3][0xc1][0xdd][0xc][0xec]Cc[0xc3]z[0x88]9[0x15][0xcd]=:[0xba].)/[0x82][0xcc]+[0xca][0xc9][0xd5]0[0x2][0xb3][0xf5]Q[0xe3]-[0x12][0x87]-[0xb6]#bc[0x1b]A~[0xae][0xcd]6[0xda]L[0x9a][0x9b]k1Gy62[0x8f][0x88]e>[0xf2][0xe0][0x99][0xb][0xcd] px|[0xa6]X82>[0xf1][0xcd][0xec]<[0xf6][0xc7]D[0xaf].^[xwN[0xa1]y6[0xd7][0x96]3[0xde]\[0x94]-[0xb4]cf[0x89]N[0x1b][0xd9]zA[0xa7][0x14][0xc3]m[0x85][0xe3]e[0xd9]eC[0x8a][0x11][0x7]MQd[0xa6]8[0xcc]f[0xdb][0x98]s[0x14]Zh\o[0xd3][0xeb][0xbe]q[0xdd][0xc9]wf[0xe3][0x13]I[0xc7][0xf4]j[0x9b]y[0xfa][0x8c]y[0xb3][0x16].[0x99]=g[0xfe][0xac]%[0xa7]M[0Kf![0xe9][0xb5][0xae][0xa7][0xf]>[0xb0][0xcd][0x85][0xcd][0x9c][0xfd][0x16]6[0xb1][0xa3]p[0xe7][0xa3]n[0xe2]FA|I3[0x1f][0x83][0x7][0x15][;[0xad]w[0xcc]SE[0xf1]J["^[0x9f]CN[0xc1][0xa7][0xc2]][0x12][0x1d]V[0xd2]5[\r][0x8a][0xee]ai4<[0xbc][0xdf][0xe1][0xbe][0xe5][0x96][0xea]a[0xe6]*[0x8a]}[0x94]3[0xed][0x89][0x9e]V[0xd6][0xe8]L[0xd8][0xd1][0xa8][0xf1]` [0xfb][0x12][0x86][0xd4][0xd0]X[0xd1]*{Y([0xd0][0xdc][0xe1][0xde][0xbf][0xc9]2W.SF[0xc5][0xe6][0xa5][0xd8][0xec]d[0x8b][0xce]aj[0xcc][0xd1]XA[0xc0][0x9d][0xcb][0x8f][0xc0][0x94]r[0x98][0xe9][0x5]Z[0xcc][0x17]d[0xbe][0xca][0x1d][0xb2]1'G[0xd6]A[0xf1]8dV[0xdd]wG[0xc8][0xf3][0xfa][0xbd]h9[0xef][0x1a]3j[0xc5][0xc2]i[0xa7]`[0xc]7[0x8b][0x9f][0x9d][0xb5][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x9f]a[0xc2]8[0x1d][0xbf],[0xd1]kJ[0x87]]W[0x9b]-[0xd8]*[0xae]%[0xc3]7[0xb6][\r][0xcf][0x9b][0x92]w<[0x94]+[0x8b]*W[0xd6][0xa1][0x9c][0xec][0x95]![Y[0x87]rE#[0xba]h7/[0x92][0xe7][0xcc];[0xa6][0xc7][0xcc][0xb2][0xee](*[0x90][0xe5][0x8d][0xcf][0xbb][0x0][0xfb][0xf3][0xcc]O[0xcf]\4p[0xd1][0xc0]E[0xc3]'j[0xd1][0xc0][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8]3[0xc0][0xd1][0xe7][0xd5]B3[0xfa][0x1c];5[0xa1][0xe8]3[0xe4][0xa0]QgH4[0xea]L[0xd6][0x8e]:0[0xf0][0x1c]~[0x90][0xc0]3[\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "{G[0xec][0x17][0x82][0xc6][0x98]!H[0x2][0xcf][0x91]r[0x6][0x81]g[0xac][0x99][0xef][0x88][0x1][0x9]<[0x9d][0x3][0x8d][0xb5]K[0xa0][0xb1]![0xd0][0x14][0x99][0x81]f[0x84]>"^[0xe7]a[0xb6][0x91][0x1b]s[0xc6][0xa1][0x9d][0x8e]f[0xa0][0x81][0x93]3>[0xc]P|[0xd8][0x17][0xc1];[0x1e]+g[0x9b][0xa1][0xe2][0xe4][0xe2][0x3][0xde][0x11][0x8a]=[0x87][0xcb][0xb5][0xec][0xff] [0xd9][0x16]}[0xb4][0x8b][0x91]d[0xbe]\W[0x8b][0x19]r([\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xc8]U[0xd3][0xfb][0xea][0xb8][0x13][0xdc][0x1d][0x13]C?[0xe7][0x15][0xf3][0xe9]mN[0xc0][0x9a]g[0x95][0xc4][0x9e]lo[0xc4][0xd3][0xac]*zp[0xd1][0xe6]@[0x83][0xc7][0x17]-[0x10]e[0x5][0x3][0xfe][0xb0]g[0xe][0xf2][0xc][0xca][0xc7]wo0[0x90]2[0x90]2[0x90][0xe][0x8e]@Z[0xb4]/[0x8][0xcd][0xe8][0x1a]R[0xdf]HYH[0x9d][0xdf][0xe7][0x90]z[0xa0]z[0xc][0xae]=[0x5][0xd7]?[0x99]oW[0xa9][0xb7][0xba][0xe1]|D[0xa7][0x17][0xce][0xc7]F[0x83][0xe8][0xd8][0xc1][0xf3][0xc2][0xf9]~[0x17]G[0x99][0x17][0xf]7/[0x1e][0x81][0x8b][0xc5][0x9d]/[0x1e]i^[0x1c]m[0x1b][0x13]][0x8a]o[0xa3][0xf][0xa2][0xb7][0xd1][0x87][0x99]5[0x99]/J[0x89][0x1a]s:[0x8e][0x8a]:.[0x1c][0xa2][0xaf][0xae]o[0x1f]b[0x8e][0xfe]+'[0x98][0xcb][0x9a]}K[0x96][0xac][0xe8][0xfb][0x8c][0xe6][0x18][0xec][0xfc][0xb2]z[0xf4]u[0xb0][0xd8][0xf0]3_V[0xcf][0xee]rf[0xb4]9[0x1a][0xb5][0xf2][0x2][N[0xec][0xc5][0xc1]\}[0xa8]X7l[0xcc][0x91][0xe6][0x9b][0xed][0xf9][0xfb]_[0x8a][0xbe][0xac]^[0xb0]1g[0xb8][0xf8][0xde]Af2[0xb5][0xdf]{[0xe0][0xc9][0x8e][0x9b]D[0xde][0x11]O[0xed][[0xe2][0xb3][0x99]+[0xc6][0xb][0xe][0xbc][0xf1]7[0xe4] +[0xc6]N[0xdf][0xc]8[0xc8][0xca]qh|[0xe5]8~[0xfa][0x11][0xf1][0xa0]W$o[0x88]f[0xc7][0xc3][0xdf][0x10][0xcc]c[0xb2]J[0xb4][0xa2][0xb]$[0x98][0xe5][0x9b][0xeb]Fy[0x95]t[0x8c][0xb9]'[0xeb][0xc5][0xb1][0xe6][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xf2]([0xb3][0xed]sl[0xe3][0xe4][0xc]V[0x90]G[0x9b]+HIUl[0xb3]w.[0x1][0xf2][0x98]hgv][[0xe6][0xd8][0x86].[0xac][0xb2][0xe5][0xc6][0xbe]T[0x90][0xd5][0xf1][0xa5][0x82]|Y[[0x16]@[0xb1][0xe1][0xe6][0xda][0xb2][0xd0][0xbc]l[0xd5][0xf3][0xf4]a[0x9][0xdf][0xb][0x1c][0x11]7)7[0xf6]z[0xe9]P,6[0xf][0xc3]b[0xf3]ps[0xb1]9R[0x1f][0x19][0xbf]d~[0xa5][0xe7]X4[0xf1][0x84]T-6;[\r][0xff]O[0x1d]d[0xdd][0xf9]1^[0x89][0xaa][0x1e][0xd7][0xa2][0xfb][0xc7]:[0xae]L[0xfb][0xb1]2-[0x8c][0x18][0x8d][0x9d][0x8d][0x1c]j[0xba][0xd4][0x9c][0x6].Y[0xf][0xb1]%+[0xa3];[0xa3];[0xa3];[0xa3];[0xa3][0xfb][0xa1][0x18][0xdd][0xf])[0xfa][0xf3][0xfb]/[0x89][0xd6][0xd1][0xe3][0xef]?8[0xa3][0xfb][0xb1][0xdf][0xa9]vVW[0xd8][0xb1]S[0xee][0xaa][0xe4][0xef]?[0xa4][0x85]a[0xe6][0x80]"[0x84][0x10]B[0x8]![0xe4]c[0xcd]:l[0x13]o[0x1d][[0x97]i=[0x8]![0x84][0x10]B[0x8]![0x99]g[0xb][0xb6][0xda]e[0x93][0x1e][0xed]-[0xdd]zle[0xde][0xed][0xcf][0xe][0xb8]B[0x1f][0x13][0xda][0xb0]Y[0x17][0xbe]J[0xa6][0xf5] [0x84][0x10]B[0x8]![0x84]|[0xfc][0x91][0xbf]O[0xf7][0xc1]q[0xd7][0xae][0xc9][0xb4][0x1e][0x84][0x10]B[0x8]![0x84][0x10]B[0x8]I[0x9c][\r][0xd8][0xde]Y[0xe7][0xfb]F[0xa6][0xf5] [0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84]|r[0xd9][0x84][0xed][0xc3]_[0xbe][0xf8][0xdf]L[0xeb]A[0xc8]`[0xa0][0x15][0xdb]U[0xde]vn[0xa6][0xf5] [0x84][0x10]B[0x8]![0x84][0x10]B[0xe]e6c[0xfb][0xe0][0xe9]c+2[0xad][0x7]!d[0xf0]R[0xdf][0xe2][0xf5]58V[0x4]">[0xaf][0xdf][0xe1][0xe]4[0x7][0xbd]>[0xcf][0xbc][0xd8][0x91][0xe1]n[0xf2][0x84]K[0x97][0xaf]lv[0xc8][0x16]K[0x13]4[0xdc]+[0x8c]FOi[0xd0][0x8]E[0xc2]e[0x11][0xa3][0xbe][0xcc][0xe7][0xf1][0xf7]\[0x87][0xee][0xd4]uWe[0xa5]][0x8f][0xd2]U[0xea][0xb8]nwVT[0xe9][0xe5][0x15][0xba][0xcb][0xe9][0xaa][0xb2][0xeb][0xe5]UN[0xa7][0xae][0xec]z:[0x1a][0xa0]%[0x1c]1BJ[0xef]w]][0x8d]K[0x81]jid][0xa6][0x15] [0x99]![0xe9][0xf1][0x1f]n[0x9]zB[0x91][0xd5]AOt[0xf0][0xaf][0xf0][0xac][0xe]GB[0x1e][0xa3][0xb9][0x87]:z[0x1e][0xff]Ns?6[0xfe][0xab][0x9d][0xd5][0x15][0x18][0xff].[0xbd][0xa2][0x9a][0xe3]?[0x1d][0xd4][0x4]B[0x8d]eFP[0xba][0xba][0xcc]h6"[0x9e][0x90][0x11]n[0x91][0xbd]2[0xb7][0xcf][[0xe6][0xe][0xf8]#[0x86][0xd7][0xef][0x9][0x95][0xcd][0x88][0xef][0xd5][0x1a][0xfe][0x6][0x1f]N[0xb8][\r][0x9f][0xaf][0x1e]s[0xc1][0xdc][0xbe][0x16]0][0xb8][0xd0][0x98][0xd6]HV&(+[0xf2]\b[0x19][0x13][0xf]M[0xc3][0x81][0xb4][0xd4][0x92][0xab][0xe6][0xf0][0xb][0xb5][0xea]ceD[0xcf]@[0xc6][0xa4]/[0xce][0x1f]wUt[0xc5][0xfb]v[0xa1][0x18][0xaa]N-({[0xf2][0xb4]e[0xb3][0x84][0xe5][0xb1]R[0xd1][0xb5]K[0xf8][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x5]>7[0x9f][0x5][0x8][0x10] @[0x80][0x0][0x1][0x2][0x4][0x8][0x10] @[0xc0][0x9f]7ln[0xff]Ye[0xfd]}[0x94][0xfd]7s$[0xec][0xbf][0xbb][0x84][0xbf]~n[0x2][0x4]<[0xf]l[0xde][0xff]o[0x15]}JmII6q-[0xef][0xff][0xb9]L1[[0x8a][0xf8][0xff][0x96]r[0xb9]#[0xd1][0xff]w[0x1][0xf2]W[0x17]TQ[0xa9]E:thZ*93-[0xd2][0xa6][0x96][0xad][0xd9][0xe]5[0x9c][0xb][0xc5][0xbe][0xb9]T&[0x1f][0x90][0xc5]][0xc7][0xb4][0x94][0x11][0xfd][0xbf][0xfb][0xab][0xf9]`[0xe3][0xa9]+eC][0xb1]mj{[0xd2][0xc6][0x8c][0xa4][0x8f][0xb4][0x1e]3T[0xff][0xfa][0xd9][0xe9]x[0xef][0xb8][0x94]h[[0xa4][0xe4][0xb2][0xd6]+[0xa7][0xeb][0xcd]3/[0xa9][0xe4][0xbe][0xec][0x8f]Mu[0xaa][0xd3][0xff][0xf1]w[0xbe][0xfa]W[0xbb][0xaf][0xf6][0x82][0x5][0x9d][0xe1][0xfa][0xf][0xcf]O[0xc8]+e[0xe8]h[0xa6][0xc1][0xd9][0xaf][0xb2].e[0xff][0xee][0x5]P6Tt}[0xa0][0xc][0xbf]x4[0xed]NF[0xfe][0xcb][0xdf][0xff][0xea][0xa7]]5[0x80][0xbf][0xd3][0xd1][0xa8][0x97][0xad][0x91][0xed]Vug[\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> ""R[0xfa][0xab][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xc]`[0x8a][0x1][0x2][0xe1][0xd2][0xf1][0xcf]vN[0x87][0xbb][0xdf][0xe3][0xa9][0x85][0xf1]l[0xe5][0xbf][0xc2]'[0x9e][0xe4][0xed]La$[0x91][0xb1][0xf3]n[0x99]H[0xc8]D[0xb1]l[0xaa]2Y[0xe1]4[0xfd][0xfb][0xe7][0xa3]ihQH[0xe4]+[0xe]6[0xaa][0xbc][0x80][0xa6]rUj[0xcf][0xf4][0x9]{[0x91]4[0xe5]v[0xad]U[0xff][0xdf][0xde][0xcb][0x19]y[0xff][0xe6][0xf9][0x9]y[0xc5]0[0x86][0xe6]C[0x9e][0x94][0x88]Y[0xc1][0xcb][0x9c][0x15][0x88][0x99][0xa3][0x90][0x11]!#BF[0x84][0x8c][0x8][0x19][0x11]2"d[0xe4][0xb9]e[0xe4][0xbf][0xbd] [0x19][0xf9][0xb7][0xcf]O[0x88][0xcf][0x89][0x97].[0xb5][0xbb][0x93][0x90][0xff][0xf5][0x82]$[0xe4]%[0xac][0xb8][0xde]!F[0xb6][0xd6][0xaa][0x8]Y[0x11][0xb2]"d[0xe5][0x91][0xb2][0xf2][0xbf][0xff]R[0xd8][0xc7][0x85]}\[0xd8][0xc7][0xce][0xf6]q1[0xb2][0x88][0x91][0xe5][0xe5][0x8d],[0xcf][0xed][0xcd][0xf1]p[0xb0][0xa9][0xe3]h[0x6][0xc]L#KQ[0x9f][0xa8][0x2]+[0xfc][0xff][0xb2][0x85]B[0xce][0xf3][0xff][0xcb][0x97][0x8e][0xe0]y6W[0xca][0x89][0xf8][0x9f];[0x1][0xf9]7{[0xe4]7[0xa4][0xa1][\r][0xa9][0x1][0x8a][0x9f]8&qn()[0xb3][0xbe]G[0xba][0xe6][0xb5]s[0xa7]X[0x94][0x9c][0x99]SCU[0xb0]o[0x91][0xfd]r[0xf7][0xec][0x80][0xc0]Oj[0x11][0xd3][0xa0][0xc4][0xb4][0xc8][0xd8][0xb4](b[0xc1][0x8e]ii[0x83])[0xf4])[0xa2][0xbb][0x18][0x89]2[0xb2]([0x1d]S[0xc3][0xb1]%B[0xba][0x94]2[0xf4][0xcd]V[0xaf]^[0xa9][0x91]kM[0xa7]D[0xd5]l7[0x13][0x94]~[0xa7]97[0x88][0xc8][0xb9][0xd1]lrgZ_[0xc8]5[0xa0]RTU[0xc3][0xa2][0x15][0x9d]h[0x6]<[0x18][0xbb][0x84]Xt[0xa4]X*[0xc8].[0x94];[0x99]Y[0xda][0xe8][0xc6]![0xe6][0x1d]([0x3][0xfb]F[0x9b]H[0x88][0xa6][0x87]5[0xe9][0x9e]y[0xb4][0xd8].^V*[0xd4][0xf3][0x93]9[0xe5][0xd5][0x8][0xd5][0x98]7[0xc4]![0xf9][0x80]>PPJN[0xca] [0xaa]}L[0x93][0xe2]oS[0x7][0xdf][0x92][0x19][0xe4][0x1e]+3b[0x98][0xe][0x99][0xda]4[0x84][0x9a][0xde][0xf][0xe9][0xc4][0x1]R[0x9][0xba][0xd3][0xe9][0x9a]b[0xc]i[0xa8]f~[0x19][0xd0][0x1e][0x9f]8[0x12]s[0x80]j[0x8c]([0xac]&[0xc4][0xbc][0xe]'#[0x8a][0x3][0x19]1/[0x83][0x1b][0xc7][0x99][0xbc][0x91][0xe5][0xbb][0xbb];[0xc9]U[0x90][0x12][0xea]J[0xaf][0x86]r[0x3][0xda][0xb5][0xd9][0xad][0xa5]][0xb2]1[0xd7][0x95][0xa1]S[0xdb][0x86][0xd6][0xfa][0xfd]T[0xb3][0xa0][0x8d][0x7]3[0xa2]L[0x80][0xac][0xa1]2[0x0]bu[0xe5][0xe]9[0xc8][0xb8][0xc4][0xb8][0xf]d[0xdc]Y[0x1a][0xaa][0x84]Cbs[0xf6]#[0x9a]0[0x9b][0x82]V[0xf3]h[0x84][0xba][0x87][0x13]@[0xbb])[0x6]I[0x95][0xbb][0xa4][0xde]M[0x91]w[0xe5]n[0xbd]{[0x88]H>[0xd6]{[0x17][0xad][0xab][0x1e][0xf9]X[0xee]t[0xca][0xcd]^[0xbd][0xd6]%[0xad][0xe][0xa9][0xb4][0x9a][0xd5]z[0xaf][0xde]j[0xc2][0xaf]3Rn~"[0xef][0xeb][0xcd][0xea]![0xa1][0xd0]fP[0xe][0xbd][0x9f]XX[0x3] S[0xc3][0xf6][0xa4]*c[0xae]'K[0x1e][0x9]()[0xf8][0xdb][0x9e][0xd0][0xa1]v[0xad][\r][0xa1]j[0xc6]h[\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xa3][0x14][0x19][0x99][0xb7][0xd4]2PP&[0xd4][0x1a]k6[0xf2][0xd5][0x6][0x2]UD[0xa3]kc[0xcd]a[0x2]e/[0xd6][0xb][0xb][0x92][0x9f][0xbb][0x87]>-H[0x9a]J[0x15][0xd9][0x1e]*[0xba][0xd2][0xf7][0xc7][0x82][0xfb][0xb1][0xbe][0xcd]2V[0xf9][0x17][0x82][0xf3][0xff][0xf9]b[0x1][0xf5]!w$[0xfc]?w[0x2]'[0xdf][0x1][0xb3][0xc9][0xad][0xab][0xed]NSY)[0x93]"[0xd4][0x18][0x9a][0xa8]XOSW[0xbd][0xb3][0xf4][0xeb][0xd4]wo[0xf7]N&[0x96][0xf9][0x99][0xe][0x9d] e![0xf5]v[0x8f][0x90][0x13][0xd4]q0[0xc][0x18][0xe]1[0x94]1=MuQ[0x92][0xda]n[0xe2].[0x97]'[0x96][0x12][0xd2][0x9a][0x13][0xa6][0xb8][0xdd][0x84]Chxs[0xcc][0x92];[0xd4]v[0xba]3[0x98][0xca][0xdd]_[0x80][0x16][0xd7]Q[0x93]C[0xb6][0x14]a[0x9e][0xc5][0xa7])[0xc7][0x9a][0xd2][0x14][0x91][0xe3][0x90]p[0xaa]>h[0xf4]nU[0xd6][0x13][0xd9]'[0x15][0xaa]#[0xf3][0x9c]o[0x9f][0xbb][0xfd][0x9f][0x1b][0xdc][0xfe][0xaf][0x19][0xa8]6[0xb1]a[0x81]u8[0x8a][0xd9]2[0xe7]a[0xbf]J[0xaf][0x95][0xa9][0xee]l[0xa2][0x13]V[0xf5][0xff]\[0xb1]8[0xdf][0xff]s[0xf0]U[0xcc][0xff]v[0x2][0xb][0x1d][0xb8][0x1e][0x16][0x5][0x94][0x0].[0x11][0x97][0x8a][0x1][0x83][0xa9][0xe5][0xf6][0xfa][0x89][0xfb],[0xa2]74[0xbb][0xaf][0xa3]?[0x90]z[0x9a][0xba]Vt[0x98]'[0xc5]u[0xd9][0xf1][0xac][0x9][0x9f]~[0xf][0xe5][0x85][0x10].f~g[0xe5]%`W[\r][0xfa][0xed]s7[0xd6]/[0x10][0xdc][0xfe][0xf][0xfa][0x9e]v[0x9d][0x19][0xf6]{[0xff]+,[0xae][0xaf][0xb5][0xd1]6[0xe6][0x2]+[0xfb].[0xd2][0xff][0xb3][0xa5]bF[0xc4][0xff][0xd9][0x9],[0xf4][0xde]!+[0xf3]b0[0xb5][0xd8][0x1c][0xd9][0xed][0xfd][0xd0]b[0xe][0x8d][0xeb][0xdb][0xed]N[0xed][0xac][0xd6][0xe9][0xd4][0xaa][0xfd]v[0xa7][0xf5]}[0xad][0xd2][0xeb]WZ[0xd5]Z[0xbf][0xdb][0xfb][0xd4][0xa8][0xf9]=>[0xda][0xd3]96[0xd1][0xcf][0x9f][0x5][0xdc][0xfe][0xef][0x1a][0xb6]=[0xef][0xf7]`[0xa5][0xfd]'S[0xf2][0xfa]1[[0xcc][0xa1][0xfd][0xa7]X[0x10][0xe7]?w[0x2][0xdb][0x9e][0xff][0x9f]3IZ:[0xf3][0xd7]5[0x3][0xe6][0x8][0xb5]{[0x7]V[0xe5][0x8a][0xce][0xf5][0x8d][0x1d][0xc9][0x2][0x99]\T[0x91][0xb5][0x84][0xf7]va9[0xc1][0xf6][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "j[0xe3][0x89]3C[0xab]0[0x10][0xd4]1M[0xa7][0xaa]Y[0x90][0xd7][0xb4]4j[0xc7]/'[0x16][0x11][0xf9]v[0xc][0xf4]7[0x9f]M[0x82][0x99]J[0xa3]U)7[0x96]d[0xa4][0xf3][0x15]j+[0xce][0x8d][0x9f][0xf7][0x95][0xa7][0xf][0xab][0xf5][0xce][0xab]%8[0xdc]~xa[0x86]&H[0xf2][0xd4][0xb6]d[0x98]V)[0xba]\[0xa1][0xba][0xae]X[0xbc][0xb3][0xca][0x5])'ee][0x1b][0xd0]{:\[0x82][0xd3][0xb5]L[0x7][0xed][0xca]R[0xc0]R?[0xfc];[0xc8][0xb3][0x92]`[0xa6][0xb2][0xc3][0xb9]Od7kR[0xf9]S[0x9b][0x96][0xa7][0x8e]Y[0x7]9[0xb1][0x9c]u[0xb9][0x0][0x99][0xfe]j[0xaa][0xe8][0xda][0xb5]F[0xd5]KV[0x1][0x9c]5&2[0xf1]D^",a[0x2][0xc5]*0[0x2][0xae][0xfe][0xbf][0x1d]n[0xdd][0xe8][0x13][0x82][0x95][0xf3][0xbf][0xd2]Qd[0xfe][0x97][0xcb][0x8a][0xf8][0xaf][0xbb][0x81]m[0xeb][0xff][0xf]C[0xdb]S[0xba][0xb3]Ke2[0x9][0x8f][0x2]c[0xf7]7Q[0xbd][0x4][0x11]=#K[0x12]t[0xf0][0xa1][\r][0xa3][0x88][0xe6][0x8][0xb3][0xcd]N[0xc0][0xed][0xff][0xb8][0xd7]bO[0x94][0xe1][0xd3]L[0x1][0x97][0xf7][0xff][0xa3]l6S[0x8][0xce][0xff][0xe7][0x8f][0xa0][0xff][0xe7][0xf3][0xd9][0xbc][0xe8][0xff][0xbb][0x80]m[0xf7][0xff][0xca][0x8d]b[0x8c]h[0x3]&Qa[0x83][0x11]$[0xd4][0xe1][0x11]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "1e60[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "Q[0xdd][0xb5][0x9f]7~k[0xea]i[0xaa][0xa4][0xbe][0xce][0xe7][0x86][0xd7]G[0xe9][0xeb][0xec]q&]([0x16][0x6][0xe9]Aa[0x98]K[0xf]^[0xf][0xf3][0xc3][0xa2][0xaa]f^[0xbf][0xce][0xa6]8r[0xbe]t$n![0x88]1[0x85][0x9b]l[0xb8][0xbd]x[0x9a][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "&[0x8e]C[0xf6][0x9a][0xc][0xe8][0xb5]iQ[0x9c][0x87]E[0xf5][0xcc][0xf6][0xe2][0xc8][0xa6]x)[0xa0][0xf3]<[0xa3][0x17]Q[0xae][0x1][0xc3]S[0x17][0xcb][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x9][0x97]*?Q[0xf5][0x17]C[0xd9]>][0x9d][0xe3][0xca]J[0xaa][0xe8][0x89][0x8c][0xfc][0xe7][0xdf][0xb5][0x91]a[0xe2][0xe6][0xe6]$[0x86][0x2][0xcf][0x8b]#[0xc8][0xb9],5[0xf7][0x83]X3[0xb5][0xeb]'[0x92][0xb0]9Q[0xfb]][0xa5]qU[0xad]U[0xfb][0x95]V[0xf3]C[0xad][0xd3][0x83]o[0xbd]V[0xbf]~[0xde]luj[0xd5]uv7[0xba][0x17][0xad][0x8f]PN[0xb9][0xd1]:[0xf7][0x93]G[0x1a]a.[0xfd]E[0xfd][0xfc][0xa2][0x1][0xff][0xd1][0xec][0xd2]D[0x1d][0x8a][0x94][0xb8]T[0xa7][0x88]3[0x9b][0xc0]gI[0xc9][0x1d][0x95][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x83][0xd2][0x9b][0x5]C[0x10][0xb0]c[0xe8]L-[0xfa][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "-8MS[0xa5][0x11][0xfb][0xc3]"N[0xee][0x8b][0xe7][0xa1][0xbe][0xce]*[0xa5][0xdc]q[0xe1][0xf5][0x1b][0x8e]2[0x1][0x7][0xb4][0xf8][0x2][0xb5]'r\[0xc5][0xe6][0xa4]8H[0x1a][0xd7]8>[0x1b][0xe7][0x1b][0xd3]7s[0xf3][0x1f][0x8c]7[0xeb]0[0x19][0xa3][0xc][0xd5]T[\r]VK[0xd1][0xf9][0x14]U[0xae]}[0xec]l3[0xe][0xd6]VF[0xb0][0xf7]F[0x86]S[0xcb][0x2] [0xce][0x9b][0x8f][0xa0][0x8e][0xb7][0x1a]:[0xcb][0xb8][\r][0x83][0xa5][0xba][0x9d][0x88]2R[0xd3][0xc8][0x87]4J[0x9e]C[0xef][0x9d][0xb4][0xfb]0[0x15]mS&[0xfd][0x16][0xd5][0x15]G[0xbb][0xa5][0xe9][0xa1]bQ'=1m[0xe6][0xeb]u[0x9a][0xca][0xe5][0x8e]R[0xb][0x1c]c[0x89][0x8][0xcc]#[0x80][0xe4]b[0x1]'[0xfa]t[0xc][0x89][0x8f][0xe0][0xbb]K[\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xe4]M[0xe3][0x8c][0xde]I[0x7][0xa9][0xa2]o[0xe2]sQC[0x8d][0xcd][0x83][0xcf][0xc3]9[0x16][0xe5][0xe8][0xda][0xd4]q[0xba][0x1c]#[0xa3][0x80][0x4]'[0xa7][0xc4][0x86]I[0x84][0x82]2}[0x9a]2[0xbe][0xfe][0xd5][0xaf]Ts[0x98]"[0xae][0xa0][0x5]M[0x17]#[0x9f][0xb1][0x88][0xe7]D)$t[0x8c]!aAd[0xfc][\r][0x4][0xd0][0xdd]N}R[0x81][0xf1]'{[0x16]uC[0xc5][0xd9][0xb2]n[0x8e][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x9f]% oB-G[0x8b][0x9a]!w!G[0x85][0xcc]r9[0xca][0x96][0x2]9*[0x1e]%[0xc9][0x11][0xa6]J[0x92][0xa3][0xf9]\[0x81][0x1c][0xcd][0xe7][0x9][0xcb][0x11][0xe6][0x90]>l[0x9d][0xf7][0x11]~[0x6]UP\[0xc1][0xc2]b[0xc0][0xc2]|"[0x7][0x8b][0xc9][0x1c][0xcc]'0[0xb0][0x98][0xc4][0xc0][0xbc][0xd0][0x3][0xeb][0xe8][0x81]G.[0xfa]v-`[0x85][0xcc][0xaa][0xb1]&[0x1f][0xd2][0x11][0xc7][0x89]cM[0x8c][0xec][0xc5][0xe7][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x8d]5[0xb][0xa2][0x17][0xce][0xf1][0xf3][0xd1][0x11]n |[0xb5]s[0xee][0xe5]W([0xf8]\[0x12][0xbf]r[0xf1],[0xc9]=_[0xbb][0xb3][0xa6]y[0xb2][0x9e][0xb6][0xdc][0xa4][0xb4]k[0xb6]eW[\r][0xcc][0xb9][0xe3][0xa0][0xd3]e[0x81])0[0xe3]5[0xd2][0xd7][0xa6]u[0xa7]X>9[0x9][0x8c][0x8d][0xe9][0xa2]aL[0xb1]\_[0xe8][0xa0][0xe1][0x1c]/[0xb2]#~V,[0x14][0x88][0xab]n[0xad][0xd3][0xbf]h][0xd6][0x2][0xeb][0x95][0x1b][0xba]W[0xe6][[0xbf][0xe9][0x1c]+[0x18]>[0xa5],.7[0xa4][0x91][0xe6][0xdc]L[0x7][0x92][0xca][0xfa]l[0xfa][0xb3]r[0xab][0xc8][0xe1][0xef]y)+e[0xd2][0xd6]0][0x94][0x95][0xc2]qF[0xc9][0xaa][0xa5][0xcc]q.[0xaf][0xa8][0xf0]_[0xb9]>.RE9.[0xe][0x94][0xd7][0xd9]A[0xa6][0xa0]f[0xb][0xd7][0xca]Q&[0x9c]?[0x1d][0xe4]O[0xf3]i[0xa0][0x4][0xa4][0xfe][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x8b][0x96][0xdd][0xa2]yrV[0xda][0xd0][0xb4](W[0x1f]0[0x4]@[0xfd][0xea][0xe3][0x89].[0xe1][0xab][0xdd][0x8b][0xe4][0xf1][0xf1]r[0x91],[0xe4]B[0x3]A>[0x9b]$,Y[0xe2]\#[0x1b]/[0x80][0x91]Ls[0xb3][0x8d][0xac][0x90][0xc0][0xa7][0x96]@[0xdc]G[0x0]e([0x87][0x8e]7[0x8e][0xd5]g[0x14][0xc5]|i[0xb9]([0x1e][0x85][0x96]-q[0xfa].H[0x95]$[0x88][0x8b][0x1a]/.OX[0xe]s?[0xab])[0xc9][0xd6].*|[0x86][0x19][0xcd][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "=[0x94][0xb]1?[0x86][0xc3]A[0xa2]$[0xde]/[0xb0]8.K[0x98][0xf5][0xa5]'[0xe0][0xfc][0x89][0xec][0x19][0xb1]VY[0xc1][0xce]5GZj[0x9][0xee][0xd4]*[0xb5]f[0xaf]^[0xef][0xf5];[0xad]V[0xaf][0xdf].[0xf7].[0xe2][0xbd][0xaf][0x98][0x93][0xc1]Z[0xb6][0xde][0xba]JA[0x16][0xa6][0xb8]p[0xbb][0xd0]l[0xf4]W[0x88]-[0xda][0xdd])[0xa9][0xb2]"C[0x16][0xf2]`w*[0x9c]%[0x96][0xa2][0xe8][0xfa]:[0xce]-*6[0xe3][0x9c][0x81]n[0xed]\[0xeb]Xi[0x1e][0x8e][0xec][0xb1][0xfb]{[0xeb][0x16][0x14]Z`<[\r]q+6\C[0xbe]f[0xa1][0x8d][0xc7]$[0xd7][0xb2][0x18]q[0xe2][0xc6][0xe8]3[0xb]~[0xbd][0xc3][0xf3][0xb4]6[0xae][0xfd][0x1d][0x8a]kf[0xf3][0xc7]N[0x16]'`3_[0x90]s[0xf9][0x84][0x8d][0x8d];M[\r]y[0x1b]fK[0xaf]3[0x9][0x9]o([0x1e][0x91][0xf2]S[0x1e][0x17]3kv[0x6]N}[0x83][0xde]R[0xfd][0xc3][0xd0][0xdf]k [0x9e][0xec][0xa2][0x8d][0x9a][0xaa][0xf0]x[0xaa][0xe8][0xfa]l~O%[0x1]Wx[0x9b][0xcf]Pn[0xb5][0x11][0x1e][0xc6]'([0x84][0xa6][0xc5][0xe]d[0xe2]fA[0xe0][0x99][0x10]t-4[0x87][0xc0][0xe3][0xb2]~[0xa7][0xcc][0xec][0x96][0xd1]3'[0xf1][0x1b]t[0xb2][0x8f][0x95]?[0x98]([0x6][0xf5]=H[0xd9]/[0xb6]=[0xd2][0x1d][0x9a][0x93][0xb9][0x1d]t[0xff]M[[0x19]~[0x81]z[0xda]mx[0x10][0x9f][0xc0]s[0xf6]4[0xe6][0xc6]&{:[0xc0]Gs[0xba]1vc!n[0xbf]d[0xc9][0xce][0xc6] W[0xca][0xe4][0x86][0xa5][0xe3]7[0xa1]&\[0xb1][0xc9][0x91][0x8c][0xec][0xb5][0x92]9[0x82]9T[0xe6][0x8d][0xbb][0xe1][0xd6][0xb3]([0xf5][0xf7]^[0xda]\[0x8f][0xbf]r[0xdf][0xb9].[0x98][0xbe]cWlY[0xb1][0xdb])[0xbf][0xa0][0xfa][0xcd][0x97][0x5][0xaa][0xc5]+[0xa7]P[0xca][\r]3[0xaf][0xb3]@[0xb4][0xad][0x89]&[0xda][0xb0][0x89][0xe6]Q[0xa0][0xf2][0x16][0xe2][0xfa][0x8b][0xe7][0xc5]|A[0xee]`-z[0x97][0xe0][0xe8]<[0x96]P[0xcb][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xa1][0x10]B[0xb1][0x81]PDPx[0xd3]}!]B[0xba][0xb6].][0xe1][0x1a][0xb][0xc1][0xfa][0xf9][0xb][0x96]o4[0xd9][0x6]S[0xe3][0xdc][0xcd]b[0x9c][0xcd]N[0xe4][0xc8][0x82][0x12]1[0x19][0xbe][0x15][0xcd]_[0xd6][0xae][0xb1][0x88][0xe7][0x6][0x9e][0x8a][0xf7]&[0xe4][0xbc][0x88][0xaf]f[0x9e][0xc1][0xcd][0xec][0x99][0x15]t[0x9c][0x96]4c[0xa8]OU[0xda][0xd0][0x6][0x96]2w[0x8e]2[0xe2]4[0x9a][0x88][0xc0]1[0xbb][0xca]-[0xad]?[0x1e][\r][0xb3][0xc2]r2[0xbe]Wn[0x15][0xfc][0xbd]n[0xfe]K:[0x1e]P[0xab]rc[0x9a]6[0xc6]P4'3[0xc4][0xc0][0xfc].[0x1e][0x91][0xdf][0xbe]1[0xef]*[0xae];y[0x82]O[0xf0][0xf2][0xec][0xa6][0xe5]Pu[0xcd][0x92]?[0xd2]A[0x97]Z[0xb7][0xd4][0xea][0x99][0xa6][0xfe]Q3T[0xf3][0xee]La[0xb2][0xc5][0x8c]EkbQX0[0xf][0x9][0xe5]N2L[0x7][0x3]c[0xb1][0x83][0xfc][0xac]*[0xc6]z[0x95][0x80][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> ";}xbP[0xb5][0x8f][0xf6][0xb7][0xfe]d[0xf5][0xd1][0xd6]([0xe][0x3][0xfa][0xc3]g[0xbb][0xaf][0x19][0xe][0xb5]&[0x16][0x85][0xbf][0xc][0x8b]d;[0xd3][0xe1][0x17]x[0xdc][0xe7]'C[0xfa][0xdc]{2[0xee][0xf8][0xeb]@3d#[0xdc][0xaf][0x12][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "1&c[0x86][0xbc][0xf]][0x95]:[0xfd]k[0xd3]J[0xc4][0xbe][0xb4][0xde][0xae][0xe1][0xcc][0x96][0xb0][0xfe]]n[0xeb][0xf7]s[0xd6],[0xcb][0xb4][0xec][0x95]ym[0xaa]X[0xc3][0x9b][0xf][0x9a][0xad][\r]t[0xfa][0xb0]b[0xed][0x89][0xae]9[0xd0]P[0x92]Jaz[0xa2][0xdb]R[0xc8]2[0xe6]c[0xca]H[0xb9][0xf5][0x11][0xa1][0x8e]L[0xc0][0x92]O[0xc4][0xc2][0x9b][0xc]8[0xc5]5(k[0xf][0x89]2{[0x9f][0x8f][0xe1][0x92][0x1f]2^[0x1f]K@G[0x88][0xc]t[0xb8]Z[0x1b][0x83][\r]z<[0x1e]Mr[0x9b][0xf8][0xa6]vw_F[0xf2][0xf6]p@5[0xf0]0[0x17]a>Y[0xf4][0x9a]Z[0xd4][0x18]BY<[0x9f][0xaa])[0xba]9[0x92][0xf5][0xcf][0xea][0xa1][0x10]+[0xaf][0xca][0xed]6<-[0xe3][0xc1][0x12][0xb6]/[0xcf][0xb7][0x8b]@[0x81]*[0xc][0x17][0xba][0xa6][0x83]B[0x98][0x98][0xba]6[0x9c][0x85][\r][0xdb]c[0xea][0xdc][0x98]*[0xb9]E/[0xa8][0xc5]M[0x16]~[0x9a][0xc4]pz[0x8a]5[0x2][0x8a][0x8]5[0xb0][0xbf][0xa8][0xd1]Qh1[0xcf][0xa5][0xf2][0x85][0x86][0x92][0xaf]8[0xfd][0x9][0x13][0x6]Cz[0xc7]N[0x99][0x1]W{[0x8a][0xfd][0xe5][0x1]eu[0xa0][0xac][0x15]YNd[0xb7][0xa2][`[0xc][0x1f]PS[0xe4][0xda][0x1d][0x9d][0x9b]n[0x1b][0x85][0xde][0xc4][0xf3][0xed]c[0xab][0xf3][0xbe][0xde]+[0xd8][0xd9][0xc1]0i[0x9b][0xb2]p[0xb1][0xc4]n[0xad][0xdc][0xa9]\[0xf4][0xbb][0x95]V[0xbb][0x16][0xe6]*[0xc3][0xe4][0xd5][0xac][0x19][0x8a][0xe4][0xf1]Qsn[0xaa]t[0x82][0xfb][0x86][0xc6]p~[0xaf]6[0x1a][0x8a]CHL[0x92][0xc4][0xf0][0x19][0x92]5[0xf2][0xa2][0xe8][0xfa][0xfb][0xc1][0xf8]M[0xc2][0xc0][0xde]l[0xb6][0x14][0x8e]G[0xef][0xb][0x16][0xc5]Cg[0xb]#kD[0xd4][0xde]{[0x6][0x8][0x8a][0x81]O[0x14][0xcb][0xdf][0x13][0xc5][0xa2][0xeb][0xf6]9L[0xa7]-%[0xf0][0x1e][0x9]X[0xc6][0x98]<[0xbf][0x8][0x97][0xdc][0xd5]m[0x82][0x18]}[0xb8][0xec][0xb7][0xcb][0x9d][0xf2]e[0xad]W[0xeb][0x4][0xe7][0x1][0x13][0x93][0x83]h[0x9e]C[0xea][0xb8]<[0xe9]4[0x1e][0xbf][0xd4][0xd0][0xf5][0x85][0xc][0xa6][0xf6]l`[0xde][0x93]t[0x9a]{F[0xd9][0xe4][0xd7][0xbf][0x9f][0x9a][0xce][0xb7][0xee]_x[0xce][0xfc]:&&[0xcc][0xe9][0xe7][0xdf][0xc0]+@`8i7[0x1a];ywUoT[0xe1]![0xc3][0x9b]F"[0x8][0xd4][0xab][0xf][0xf5][0xea][0xbb]Q{[0xd4][0xfe][0x98]&[0x92][n[0x0][0x89][0xcd]2;[0x94][0xfa]}[0xa7][0xc6][0xdc],[0xfa][0xb5]f[0xf9]]#[0xf1][0xc8][0xe4]:([0x92][0x9b][0xa7][0xdc][0xed]b[0xdb][0xa0];I[0xad][0xf9]![0xe1][0xb0][0xe8][0x82][0x88][0x97][0xeb][0xcd]~[0xa5][0x81]y[0x9b][0xd0][0xaa]~[0xa6][0x87]J[0xd8][0x83]5[0xcd]C[0xc7][0x87][0xe5]=wK[0xaa][0xb7]C[0xc7][0xa6]C[0x13][0xf4][0xec]U[0xb7][0xd6][0xef][0xb6]*[0xef]k[0xbd]~[0xaf]Snv[0xdb][0xad]No[0xbd]F[0xee][0xd6]:[0x1f]j[0x9d][0xfe]e[0xab][0x9a]ttu![0xc7][0xc5]e[0xed][0xb2]_[0xae]V;[0xb5]n[0xc0]It[0xe8]S[0xe9]`:J[0xcc]w[0xd1][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x9d]{[0xf6]'y[0xc9]2[0x13][0xae]B1[0x93])&[0x8b]"[0x9e][0xc4][0x5]bz[0xe5]N[0xd2][0xc1][0xea]'U[0xdb]/N[0x11][0xc7][0xca]O[0x8f][0xda]N[0xf3][0xfc][0x1][0xe3]4[0xeb]y?[0xe3]q:[0xf0][0xbc][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "%[0xc2]U[0x10][0x8e][0x12][0xf6]N$[0xe3]g>[0xa0][0xc7][0xca][0xd1][0xd7][0xa8]~?Sg`[0x81]z[0xb5]Y[0xa8][0x1b]I[0xa5][0xb7]_4G[0xb2][0xa6][0x86][0xd4][0xd6][0xa7]#-f [0x8f][0x1f][0x8b][0x1f]8[0xfe][0xa6]7[0xbe]/fsc[0x2]_[0xec]\[0xb1][0x84]_~[0xf7][0xe6]R[0xb9]oSk[0xdc][0xd5][0xfe]@Os[0xc5][0xcc][0xf8]A[0xa3]t[0xc8][0xff][0xc8][0xa2]Pa[\r]-r[0xba]9[0xea][0xbb][0xf7][0xe][0xcc]3[0xf][0xbd][0x93]X[0x85]![0x81]XD[0xc4]J[0x90]E[0x87]0M[0xe9][0xfb]3[0xb4]$[0xa3][0xb][0xb3][0xfe][0xe3][0x1f][0xce]Zwj'=~l[0x9f]3p[0xc4]Q[0xb1][0xca][0xd4][0xf1][0xf3][0x88][0xb2][0x1e]G[0xf8][0xad][0xb1][0x18]Pv[0xa1]3[0xaf][0x85][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x5] b[0xef]q[0xe0][0x11][0xc1]Y[0xe7]-[\r]w[0x3]?[0xe2][0xac]=[0x85][0x99],[0xce][0xc4][0xbd]@B[0x98]![0x1a]7[0x88][0x5]*[0xda]nd[0xa2][0x10][0xeb][0xf9][0x8c][0xf7]m[0xb6]X[0xca][0x1c]g[0x8a][0xc5][0xfc][0xd1][0xeb][0xec]k[0xa8]*[0x1c][0xab][0xb][0x8c])[0xee]"$[0x4][0xd0][0x8d]c[0x17][0xb5][0xa1]\[0xec][0x18]uuY[0xae][0xe9]D[0x8d][0xa3][0xc5]{[0xec]%[0xc3][0xe0]`u[0xec][0x2][0xd7][0x96]9[0xc6]C[0xb1]n[0xea]B[0xb6][0x84][0xe7]RT[0xce][0xb4][0xd3]T[0xe1]8s[0x94][0xc9][0x84][0x9a][0xa6]^[0xab][0xda][0xf2][0xd1][0x94]V[0xe5][0xb4][0xdc]S[\r][0x8c][0xeb]8[0xb3]|@[0xfa][0xb6][0xa2][0xc3][0x4]j[0xa5]<[0x87]r@[0xd7]}@jO[0xe7][0x96][0xa1][0xb3][0xce]lm[0xa5][0xf0][0x87][0xb2][0x9e][0xf3][0xdd][0xc5]D[0xa1][0xc9][0x96][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xb9]\[0xa1]t[0xf4][0x0][0x9c]^_[0x8c][0xe8][0xaf][0xd2]Qf[0xb5][0xfe]Zl[0xb5]_}[0xfc][0xed][0x3]r[0xf5]n([0x8c][0xa7]m[0x8b][0xe2][0xfe][0xd3]C[0xda][0xd0][0xb5]@[0xa2][0xee][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xfa][0xf2][0x3][0x4]+[0x84][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x96]6[0x84]+[0xf0][0xa0]s?D[0xe2]9[0xae][0x84][0x91][0xec]B[0x83]e[0x80]5[0xbc][0x99][0x85];},zX[0x4][0xf8][0x3][0xff][0xca][0x9][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xac]J[0xbb]CK[0x9b]8[0xbe][0xd9][0x98]9[0xc1],[0x9b][0x1b][0xf1][0x83]3[0xc1][0xa1][0xa0]5'C[0xee]\[0x85][0x1f]x[0x8b][0x14][0xb0][0xd5][0x0]@[0x9b][0x1e][0xa4]|h[0xe0][0x9f][0x97][0x16][0xf4]'r~2zvr[0xee][0xdc][0xe4][0x96][0xe]][0x9b][0xe6]H[0xa7][0xd2]h[0x8a][0x87][0x9e][0xdd][0xbf][0xd9]c)#[0x1f]g[0x95][0x82][0x9a][0xcd][0x16][0xb][0x99][0xc]=[0xce][0x14][0xae]s[0xb9]A&[0xaf][0x1c][0xbd]V[0xe9] _,[0xd2]c[0xaa][0xbc][0xce][0xe4][0x87]j[0xc1][0xcd][0x93][0xc6]<1[0xc7][0xaa][0x19]rv[0x8c][0xda]4dT12tt[0xe8]&[0xee][0xe5][0x8d][0xf6][0xfc]1[0xea][0xa7]f~6[0x97][0xc9]&s[0x9f][0x8d][0xb3]>[[0x1e][0x14]Y"[0x1f][0x13]M$[0x84])[0xf6]Pm~![0xe4]D([0xc7][0xf3]J[0xc4][0xcf][0xf5][0x18][0xfe][0x93][0xcb]O[0xe4][0xf8][0xfd]K;z[0xff]hQY?[0xd0][0xdf][0x93][0xeb][0xe7]H[0x80][0xbf][0x97][0x17][0xdc]/>[0xa0][0xd7][0xe3][0x83]y[0xc5][0x4][0xf2][0xda].[0x1f][0x93][0x2][0xb5]==+[0x8b]K[0x86][0xda]g[0xf][0xce][0xf6][0x92][0xf9][0xf8][0xcb]P[0xdd][0xca]D[0x9b][0xb][0xe1][0xb3]ce[0xfd][0xba][0xb0]l[0xac][0xf]i[0xeb][0xec][0xeb][0xe4][0x81]}[0x89][0xba][0x9e][0xcf][0x16][0x1e][0xd9][0x13][0xf5]5fy[0xa4][0x10][0xd2][0xaf][0x8f][0xf3][0xb9][0xd7][0xf8][0xe7][0xf8][0xeb][0x8c][0x10][0xc5][0xed][0x87][0x93]zry[0x8c][0x84][0x91]z[0x81]![0xa4][0xb6]<[0xee]l=[0xd2][0xce]S[0xb3]([0x1a]a[0xe7]EE[0xd7]yF[0xe6],[0x9][0xc6][0xf9][0xd4],[0x89][0x6][0xe1]|i[0x1]8[0xb7][0xcb][0x95][0x98]x[0x99]O/[0xf3]KD~[0xa3][0x18][0x99]/B[0x9b],[0x8b]i[0xf9][0xe4][0x1a][0x99][0xad][0xe9][0x85][0xc6][0xb1]\[0x9f]i[0xab]L[0x86]c[0xc5][0xc6];Z[0xdc]cJ[0xfe][0xf5][0x3][0xec] [0x8b][0x8f][0xdd]m[0xc0]/tv[0x9a]*[[0x8e][0x86][0xae][0xb2]A[0xa4][0xff]J[0xe8][0xf0][0x8d]tU[0x9f]k[0xf8][0x85]{[0x1f][0xe1][0xa1][0xc2]1pFE[0xa6]D[0xde]y[0xa7]t[0xe8][0xa8]Sd[0xd6][0x15]uo[0xf0]OD[0xcd][0xa7]#QW[0x90]([0x82][0x98][0x13]G[0xa1]D[0xf2]b[0xe6][0xc5][0xcb][0x12][0x19]#[0x96]R|"G[0x1b]![0xca][0xba]P[0xe3][0x9e])C[0xea]<[0xba]a[0xf1]hW[0xda]=[0xda][0xf5][0xb6]i[0xa2]C3ul[0x2][0xb2]L<[0x7][\r][0xaa][0xa2][0xe1]:H%[0x1a][0x9e]7[0xfc][0xb9]n[0xe][0x14][0xdd]?[0xdf][0xba]I[0xcb][0xbb]~[0xd3][0xa0][0x2]A[0x8b][0x91][0xfd][0xdb][0xbc][0x94][0x93][0x8e][0xe][0x89]5[0x1d][0xcc][0xd2]Y[0xe9]X[0xca][0xa7]'[0xd9][0xe3][0xc2][0x1][0xf9]aD[0xc7]?[\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "n[0xc4]r[0xe3]{[0xf5][0xb][0xde]A[0xb6][0x9][0x17][0xb2][0xd2]k[0xd1][0xb8][0xb1][0x8d][0xeb][0x1e][0xf6][0xdc][0x8a][0x92][0xe1][0x7][0x1c]DC[0xc7]64[0xf7][0x8b][0xf9][0xbe][0xfa][0xde][0x16][0xd2][0xbb][0xe5]F}[0xb4][0xa6][0xfe]3k<[0xfe]c1[0xbe][0x84][0xb8][0x8c][0xf5][0x97][0x0][0xee][0xfd][0xaf][0x18][0x18][0x83]96 O[0x99]q[0xaf][0xef][0xef]%l~#[0xec][0xaa][0xfb][0x9f][0xb3][0xd9]\p[0xff]s&K2[0xd9][0xa3]L[0xa1] [0xee][0xdd][0x5],^[0xe0][0xea][0x89]B[0xd8][0xf7][0xc3][0xd7][0x84][0xc1]9[0xb][0xa6][0x91][0xc2][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xe1][0xb9]k"[0xe0]1[0xe0][0xf6][0xff][0xb1]f[0xf][0x9f][0xee][0x2][0xf8][0xe5][0xfd]?[*[0xc2]w[0xde][0xff][0xb][0x85][0x2][0xf6][0xff]\[0xae][0x90][0x11][0xfd][0x17][0xb0][0xed][0xfb][0x9f][0xbd][0xdb][0x1c][0xbb][0x8e]i[0xa1][0xf3]F[0xf8]\[0x87][0x1f]4:[0xee][0x94]PR[0x94][0xe8][0xc0][0xab][0xb4][0xcd][0x87]&[0x1e]M[0xc7][\r][0xeb][0xa5][0xf8][0xe7]L[0xb9]a1<[0xc7]#[0xde][0xa1][0x87][0xb0][0x1d][0x10]q[0xa4][0xa3][0xb7]6z[0x9b]l[0xd1][0x17][0xf0]j![0xea][0x9]<[0xd3][0xd4][0xe8]6[0xdc]bl[0x94][0xf8]|o[0xcb][0x86]j[0x99][0x9a]z"k[0xea][0xa3]18D[0xf3][[0xc5][0xde][0x4]S[0x10][0xa5][0x82][0xb8][0xc1][0xa6]H[0x17][0xd0]b[0x94](R[0xdf]N[0x9]6nl[0xb2][0x1d]N[0xcd][0xb6][0xa7]t[0xab][0xb8][0xce]-[0xd3][0xbc][0x9d]m[0x13]#[0x6][0x7]s[0x1d]-7[0xc0]Z[0xe9]v7[0xc9][0x8d]!'[0xc8][0x98]:[0x96]6[0xdc][0xa4][0xb5]\<~[0xb4][0xa4]M0[0x99]*[0x5]D3[0x9d]n[0xce]C[0xee][0xc6]O[0xce]t[0xf3]nc[0xf6]y[0xc8][0xae][0x1][0xd9][0xf6]H[0xb]a[0xdb][0x8e]8[0x98][0x16][0x6][0x5]4[0xa8]m74[0xc3][0xd9][0xbc][0xff]W[[0x97][0xdb][0xa4][0xaf]J[0x87][0xba][0xc2][0xf][0xde]YT[0x9d][0x1a][0xaa]b[0xc]7a[0xb][0xb][0x8d]Fnp[0x17][0x6][0x6][0x91][\r][0x10][0x9d][0xe1][0x1][0x17][0xed][0xf].i[0x1b][0xf3][0xf7][0xbc][0xdb]>[0xb7]p[0x87]bc[0xb9]s[0x9d][0xb0][0xf5][0xcd]1l[0x85][0xe7][0xcc][0xf1][0x96][0x80].'5c[0xa4][0x19][0x9b]t[0xf5]m5[0xd0][0xc6][0x8][0xa6][0xda][0x90]ni[0x8][0xaa]Wke[0xd2][0xd6][0x15][0xe7][0xda][0xb4][0xc6][0xdb][0xc2]9[0x84][0xfc]W[0xb6]2[0xd0]t[0xcd][0x99]m[0xa7][[0xd7][0x8d][0x1b]ji[0xe]t[0xbe]-[0xe8][0xd9][0xba][0xc1][0xa6]aX[0xcf]-v[0xa1][0xef]s[0x97]5[0xe2][0x9e][0x9a][0xdf][0x14][0xcb][0xe6][0xb4][0xbc]3a|[0xeb]Re[0xbc][0x5]\[0x18][0x16]j[0xb]h[0xa0];[0x93][0xda]6[0xea][0x86][0x88]t[0xc5][0x18]M[0xf1]\[0xa7][0x8e]w[0xae][0x90][0xb1]6[0xe2]JZ[0xd1][0xd4]M[0x91]o[0xac]t[0x2]$[0xe4]zj[0xb8]q~[0xf8][0x9c]e[0xdb][0xf8]oA[0x80]U[0xe8]e[0xdb][0x1c][0xf3]x[0x10][0xd8][0xcd]9[0xd5][0xf0][0x98]T7>[0xbb]je[0x13]d[[0xd1]#[\r]s[0x4][0xfd]s[0xb4]y[0xdd][0xd8]I[0xba]M[0xf2][0xbb][0xe7]/[0xed][0xad]O[0x80].[0xdd][0x10][0x16][0x97][0xae][0xbc]m<[0xd8]pt[0x9b]O[0xb9][0x9b][0xd3]1h[0xf0]-H[0x95]{[0xed][0xd0]V[0x98][0xd8]V[0xd0][0xf2]o[0x90][0xf][0xd8][0x8b][0x94][\r][0x5][0xb4]M-[0x1c]D[0xb7]3D[0x85][0x90]mG,`[0x8c][0xdf]D[0xc][0xdc]q[0x8d]T[0xe9][0xed]{m[0x13][0xdd][0xd2]6[0xf1]`[0xa0][0x86][0x81][0x9][0x98][0xd7][0xc4][0xd4]FF[0xe]q[0x11][0x85][0xb3][0x6][0xb6] [0xdb]\h[0xd7]*e+[0xba][0xb2]m[0x99][0x3]4[0xd7][0x90][0xc1]t[0xb4][0x9][0xbf][0xbb][0xd0]7[0xb6]8[0x17][0xe9]N,[0xac][0xf1]%[0xd4]x[0x93][0x99]x[0xef][0xc6][0xa2][0x8a][0xba][0x95][0xae][0x16]E[0xb5]1[0x8f]{[0xb3][0x89][0x9][0x83][0xfe][0xe4]f[0xb6][0xe5][0xa9][0xe6]U[0x9d][0x9c][0xe1]d[0x18]Y[0xab][0xd3][0xf1]&[0x95][0xde]2e[0x1f][0xe6][0x7][0xfb][0x8d][0x9b][0xf0]#[0x1d]0[0xcb][0x16],'[0xec]-[0xcd][0xfd]w[0xd9][0xd8]$7([0xe4][0x9b]M[0xf2]w[0x1b][0xbd][0x95][0xd9][0xbd]k[0x5][0x16][0xed][0x99]'[0x9e][0xff][0xe3][0xda][0x86][0xce][0xb7][0xe5][0x1]h[0x13][0x1e][0xca]q[0xcd]>[0x82][[0xca]q[0xc5][0x9c][0xc8]1[0xf6][0xd7][0x7]8[0x1a]r[0xb3]n[0xc7][0xbf][0x82][0x81]c[0xe0][0x9b]R[0xe9][0x1b]g[0xac][0xa7]a^[0x87][0xde][0x9c]oo[0x1c]g[0xf2]F[0x96][0xef][0xee][0xee][0xa4][0xbb]<[0x6]k[0x92][0xb3][0xc7][0xc7][0xc7][0xf2]=&:[0x91]c[0xb3]<[0x80][0x4][0xd3][0xf4]7[0xc8][0x2][0x9b]8:w[0xf2][0x9]![0xbb]([0xf1]4[0xf5]}[0xf5]}?[0xdb][0x1d][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "+[0xcd][0x3]Uq{z[0xfa][0xb3][0xfa]%[0xed]b[0xce]J[0xaf][0xe7][0x1f][0xf3]h[0xa3][0xa8][0xc3][0xab][0xef][0xfd]3[0xde]Sg2u[0xc8][0xd4][0xd2][0x13][0xbc]g[0x87][0xde][0xfd][0x4]k[0x9d][0xf6][0xfe]`[0xdb][0xb1][0xf1][0x98][0xe6]o8m[0xd4]1[0x1a][0xe6][0xdc][0x9d][0xaa][0x9][0xa1][0xa2][0xba][0x9d]J[0xb7]|V[0xab]7[0xeb]k%ggM[0xe6][0x2]f&$l[0xac][0xc6]$[0xa9][0xdc][0xd0][0xe1][0x17]h[0x91][0xd6]d[0xce][0xa7]!B}[0xeb][0xf2][0x12][0xc8]_[0x1d][0x18][0xb5][0xda][0xea]7[[0xbd][0xfe]y[0xad][0xd7]o[0x94]Y[0xcc][0xbf][0xf][0xb5]N[0xb7][0xde]j[0xae][0x19]l[0xb2]Sk7[0xca][0x95]Z[0xff]c[0xa7][0xde][0xc3][0xf0][0xa4]kg[0xab]\A1[0x1f][0x92][0xd2][0x9f][0xc8][0xb1][0xd5]t+[0xaf][0x19][0xdb][0xa9][0xfb][0xfb]Z[0xad][0xdd][0xaf]\[0xd4]*[0xef]k[0xd5]~[0xeb]jIl[0xca][0xc7][0xd0][0x1e][0xa1][0xf2][0xa4][0xac][0xaa]K[0xc9][0xee][0xf6]Z[0x9d]Z[0xbf][0xd5]l|z[0x1c]'XE[0xb0][0x1a][0xfd]:[0xd4][0xbf]Z[0x7][0x1c][0x8d]O[0x89]$F[0xa9]9[0xb9]2@![0xac]#Z[0x97][0xe5][0xf7][0x8f]`[0xb7]+%[0x8d]V[0xa5][0xdc][0xe8]WZ[0xed][0x80][0xb0][0xdc][0x6][0xed][0x9c]H[0xf3][0xc9]9]^[0x89]D[0xb1][0xcd]$[0x92][0xf3][0x98]z[0x97][0x9b][0xdd][0x8f][0xd8][0xd9]k[0xe7],[0x10]o"?[0x12][0xf2][0xb5][[0xdd][0xfa][0x83][0xf2][0xad]j[0xb2]hz_[0xc2][0xfc]&[0x9d]o[0xb8]_[0xa8][0xef][0x93][0xe7][0xff]3[0x9e][0xa0][0xb7][0xf1][0xd3][0xf8][0x0][0xac][0xf0][0xff][0xc9]fr[0x85][0x88][0xff]O>[0x9b])[0x89][0xfd][0xff]][0xc0][0xb6][0xf7][0xff]+\[0x92]bg[0x15]w[0x9a][0xae][0xe][0x15]K[0xf5]&p[0xdc]8[0x11](&w[0xb][0xdf][0xc5][0xf4][0xdd]o[0xe2]/$[0x8f]&[0x2][0xfa][0x97][0xbc][0x1d]i[0xd7]K[0xde]N[0x8c][0xd1][0x92][0xb7][0x9f]'t[0xf9][0xeb]eoqb[0xb9][0xe4][0xb5][0xea][0xa8]K[0xde]:[0xfa][0xb2][0xb7][0xd7][0xce]2[0xcc][0xf7][0xba]=[0xe]i[0xb1]em[0xfe][0xb][0xd5]i[0x2][0xd6][0x7]W[0xff][0xdb][0x3][0xe7][0xe9][0xdc][0xbf]V[0xfa][0xe6][0xf2]G[0x81][0xfe]/d[0xd0][0xff]+s$[0xfc]?w[0x2][0xdb][0xd6][0xff],[0xd4]pw[0xb0]NT[0xe2][0xf][0x97]mv[0x91][0xdc][0xe2]BU[0xa8][0xa2][0x9d][0x1][0x1e][0xb6][0xc5][0xc8][0xd0][0xa1][0x88]m[/#[0x93])d[0x8e][0x8a][0xc5][0xc4][0xfe][0x9f]a[0xfe][0x9f][0x85][0xa3]b[0xa9]P[0x84][0xf][0x9c][0xff][0x15][0xb2][0xb9][0xaf]Hq[0xeb][0x94][0xc4][0xc0][0x9f]y[0xff][0xf7][0xf9][0xcf][0x82]g> "[0xfe][0xef][0x2]|[0xfe][0xf3][0xc3][0xf6][0x91][0x98][0x1c]x[0x13][0x87][0xf4][0xc5][0xd9][0xac][0x8c]U[0xeb][0xbf]|[0x96][0x8f][0xff][0x99][0xfc]Q[0x8e][0x9f][0xff][0xc8][0x9][0xff][0xef][0x9d][0xc0][0x9e][0x86][0xd7][0xe]8d[0xe9]e[0x6]~[0x90][0x5][0x1e][0xe3][0x7]%#[0x9c][0xf1][0xf3][0xd4][0xd0][0x1c][0x9]e[0xc5]{[0x8a][0xda]D[0xd2]L)[0x9c][0xd2][0x95]0[0x9][0xa5]MB[0x1b][0xb5][0xe5][0xd4]~?Ut{o[0x8f][0xd9][0xac]I[0x8c][0xe8][0x91]?[0xee][0xed][0xc1][0xe4][0xe0][0x9f]0[0xd4][0x4]]M[0x8][0x8b]U[0xf7]N[0xb1][0xb5]!K[0x89]o[0xf6][0xf] [0x1d][0xce]2dy[0xa4][0xdd]R[0x83]}[0xbf]Ut[0xc][0x9d][0xc4]v![0xaa]>[0xd5][0xe4][0x94][0xa4]R[0xa9][0xb3]N[0xeb][0xd2][0xbb][0xe0][0xca][0xdf][0xb4]@S[0x1c])[0x13][0xc7]$[0xef][0xfc]g[0x1f]0t[0x2]%e9xTk[0xf6]:[0x9f][0xda][0xad]z[0xb3]G~[0xc0]Z[0x1e][0x92][0xf4]g[0xc5]:$[0xb6]9[0xa6][0xf0]Eb?[0xd2][0x17]?B1[0x92]ci[0xe3]:[0xde][0xff][0x2]$[0xee][0xf9]T[0xa9]ajB?[0xfe][0xc8][0xcb][0xc0]0[0xfb][0xfb])N^[0xea][0x80]?[0xf5]n[0xe1][0xda]O[0x85][0x8]M[0x1d][0x92]T@[0xa3][0x9f]6[0xb8][0x99]k[0x9f]]v[0x84][0xc9][0x90]J[0xfc][0xc][0xd1][0xc9][0x1e]_[0xf0]\?[0xed][0xf1]&[0xbc][0xbb][0xe1]-[0x18][0x90]&[0xb9][0xd7][0x13][0xf8][0xac][0xf1]j#[0xcb][0x8e][0x97]8[0xcc][0xd0][0xfd][0xc5]v?$,_*[0x14][0xf6][0xe4]@[0xc2][0xed][0xd2][0x6][0x88][0x95][0xbd] }[0x6]j{f[0xd7][0xc1]M[0xdd]}[0x9b]N[0xd0]#[0xd5][0xb4][0x90]][0xff][0xd4]H[0x1d][0xf0][0xf2]bp[0xa8]T[0xa7][0xe][0x12][0xc4]j[0xf0][0xd3]sw[0xa7][0x9f][0x1d][0xac][0x11][0xb1]w[0xe3]2V[0xe9][0xff],[0xe8]|[0xbe][0xfe][0x83])@[0x1e][0xf4][0xa9]P[0xca][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xfd][0xbf][0xb]p[0x99]m[0x99][0xa6][0x83]~c[0xd4]:e[0x17][0xa3][0x81]:sTs[0xea][0x1c][0x92][0xce][0xde][0x9e][0x9b]D[0x99][0xb0][0xab][0xac],[0xc9]}s[0x1a][0x1a]0[0xdc][0x4][0x15][0xd3][0xb0]M[0x9d][0x96]y[0xba][0xf8]l[0x92][0x1b][0xf4]z177K5[0xd8][0xeb][0xbd][0xbd][0xaf][0x89][0xe7][0xb8][0x4]j[0x8e][0xef]y[0x82][0xae]![0xb0][0xba][0xd4][0xa9][0xf5][0x8f]m[0x16]?[0x88][0xb8]w[0x9][0x1a]*[0xb][0xb4]C[0xdc]kR[0xa4][0xa5][0x5]#[0x95]|[0x9][0xcb][0xb]8[0xfd][0xa6]8!?|[0xe3][0xfc]H[0xf6][0xbf]9{[0xf3]M[0xe3][0x80][0xa4][0xc9]7[0xe3]o[0x8c][0x85]zw[0x16][0x89][0xee][0x98]:[0xba][0xb8][0xa3]ZJ[0xaa]v[0x87][\r][0x81][0xa7][0xf4]^[0x19]Ot[0x96]o[0x11][0xb1]t[0xa9][0xdc]c*v+[0x14][0xf4][0x95][0xf7][0xef][0xa0][0xfe][0xef])[0x9d][0x10]X[0xf][0x93][0x81]2[0xfc]2[0x9d][0xb0][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xc7][0xe6]|[0xc7][0xde][0xe3]0s[0x9a][0x8d]A[0xbe]^[0x8b]'d[0x8b]k[0xaf][0x9][0xf9][0xc6]![0xdf][0xc]y;=[0xb7][0x0][0xb][0xd8][0x8]|[0xfd][0xff][0xb2][0xd6][0xb9]RI[0xac][0xff]v[0x1][[0xb][0xdd][0xb8][0xa4][0x8c]U[0xe3][0xa9]p[0xe4][0xf1][0xff]([0x97][0x85]t[0xb9]bA[0x9c][0xff][0xdd][\r]L[0x98][0xab]1]s[0xfd][0xb7][0x17][0xbb][0xbe][0xdb][0xdb][0xc3][0x85]Y[0xb0]\[0xd8][0xd7]`9[0xa8][0xe9]0[0x9a]Yo[0xa2][0xab]:[0x9][0x16]k[0xe9][0xb7][0x4][0xf]\[0x1c][0x90][0x85][0xb7]l[\r]dQg[\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x3][0xe4][0x15][0xac][0x11][0xf0][0xee][0xfa]Y[0x8][0xf9][0xc1][0xde]O[0x9]kG[0x86][0x7][0xd7]ZU[0xbc]h[0xb6][0xd3]?[0xab]7j[0xcc][0xcf][0x8][0x17][0x14][0xa1][0xf5][0x3]Ke[0x11][0xbc][0xad][0xc0][0xbd]C[0xeb][\r]q[0x97] l[0x9d][0xc8][0xdf]z+/[0xc]([0x5][0x9].[0xa7][0xec]j5[0xfc]u[0xe2]&~[0xb][0xa9][0xc7][0xc1][0xd3][0xd6]5[[0x8e]`[0xd6][0xd0][0x15][0xc9][0xd1]4^^[0x96][0x16][0xdb][0x8f]-[0xfb][0x16])[0xf1][0xd6][0xb6][0xce][0x8d]fK[0xc1][0xeb][0xd3][0x80][0xe8]=[0xbe]xC$[0xfe]*[0x11]JW[0xac][0x91][0xff];@[0xe7]b[0xb][0xd7]IRT[0xb5][0xac][0xeb][0xfb][0xde][0xb3][0x83]0[0xc2][0xd0]Rr[0x1e][0xe5][0x2][0x81]A[0xca][0x8][0xc2]9|[0xd1][0x95]d 5xwj[0xb8][0xfd][0xa3][0xac][0xf3][0xca][0x89][0xc9]v [0xdd][0xe1]=d=z[0xef][0xec]sW[0x6]V[0x2]_N[0x1e][0xf8][0x14]L,[0xed][0x16][0x8a][0xf7][0x9a]j!aP[0xbe][[0x16][0x17]E[0xd7]`[0x90]"[0xbf][\r]I[0xca]o[0xd9][0xca][0x94][0xfc][0xd6]7[0xc][0xcc]5ix9K[0x16][0xd7][0xb3][0xd1][0xdc][0xa9][0x90]U[0x1][0x8b][0x9][0xda][0x92]Q[0xfe][0xd3][0xde][0x93][0xf5][0xff][0xed][0x5][0xdb]L.c[0x85][0xfe][0x87][0xb5]^[0x9e][0xad][0xff]`[0x5][0x98]+[0xa1][0xfd]/W,[0x15][0x8f][0x84][0xfe][0xdf][0x5]:[0xd4][0x9e][0xc0][0x12][0x92][0xe2]U[0x93][0xcb]3b[0x88]o[0x89][0x87]v[0x8][0x17][0xe7][0xfa][0x9c][0xac][0x93]7[0x94][0x89][0x95][\r]5[[0x9d][0x8b]wp)[0xb8][0x9a][0x4]H[0x6][0x12]*[0xb0]&[0xc5]E[0xda]r[0x14][0x9f][0x95]{[0xcb][0x96][0xbe][0x87][0xb5][0x14][0x9d][0xf1][0xf2][0xc7]j[0xed][0x9e][0xe][0xcf][0x94]!^[0xb5][0x14][0xb6][0xa7][0xda][0xfa]5,[0xc6][0xdc][0x5]y[0xe4]ud[0xe0]uG[0xbf]ho[0xdc][0xc7][0xa1][0x8f][0xbb]l{[0x1a][0xed][0x90][0x8d][0x87][0x1a][0x92][0x1d][0xd5][0xb4][0xa9][0xd4][0x81]?`[0xea][0xac]Px8W[0xba]4[0xa2][0xdc]>[0xb0][0x1f]-[0xeb][0xcd][0x1b]F[0x3][0x8b][0xb0]~[0x10]R[0xb1][0x81][0xa5][0xf3][0xc2][0x84]q[0xf3][0x94]tg6p[0x16]1Q[0xe3]v?[0xc5][0xd5];[0xbb]i[0xfd][0x80]|[0xf7][0x86][0xa4][0xa6][0x86]v[0xff]F[0x96]e[0x18]gdkj[0xf0][0xa0][0xee][0x92][\r][0x1f][0xa9]X[0xc4][0x1d]:[0x2]]k[0xcd][0x12][0x91]wj[0xe7][0xf5].(V^@6w$e[0xe0]_[0xf6]M[0x11]zhj/[0x82][0xd4]m0^-[0x1b][0xc7]ke[0x2]cy[0xea][0xdd]U[0xbd]QM[0xa1]![0xe2][0xcd][0x1b]f}[0xe]M6[0x98]a[0x12]g$|[0xc0]p[0x9b]O[0xc2][0x1b][0xc3][0xf6]S[0xe7][0xa6]C^q6\[0x83][0xf2]w[0xa9]&[0x8a][0xcd][0x8b][0xe2][0x96][0xd7][0xa0]B([0xe]P.[0x9][0x95][0xe2][0x86][0xe5][0xc0][0x17]S`[0xc4]~4[0x87]+[0xc3][0x90][0x7]j[0x1e][0x96][0xea]}[0xee]o[0xbe] [0x19][0x7][0x87][0xa1][0xb2]\l[0xf3][0xf5][0xfe][0xc1][0xfd][0xf9][0xe3]wP[0x89][[0xf3][0x8b]7[0xd4][0xba]hYu[0xda][0x8b][0xe][0xa5][0x8e]2[\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xb5][0xc9]\[0xe]o[0x8a][0xe7][0xfe]:t[0x5][0xb0][0xbe]8{[0xc0][0xd3]<[0x8e]n[0xf0][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x86]1H[0x80][0xdd][0xbb][0x8]h[0x9f]g?L[0xbd][0x9a][0x17][0x1][0xf9][0x95]/[0xd9][0xa9][0xc3]@[0xca][0xf]$[\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xd5][0xdc][0x8f][0x1d][0xff][0xa3][0xac]\B[0xb6]G$[0xb6];[0xce][0x0][0xaa][0x1a][0xf6][0x10][0xd7][0x1a]-[0xc9]!6z[0xb5];[0x9d][0xaf][0xc1] |[0x99][0xd1]>[0xc7][0xc0]i[0xb]]t[0xc4][0xf5][0x8][0xcc]W$[0xe5]N[0xd1][0x9c][0xba][0x8b][0x8d][0xb7][0xc9][0x92]F>[0xe4][0xe5][0xae][0xaa]gT[0x98][0x80][0xb][0xc9][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "i~[\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x94][0x9c]n[0xff][0xc0][0x9f][0x2]Iw[0xa0][0xf6]:TQ[0xf1]F^s[0xea][0xec][0xc3][0xc0][0x9f][0x89][0xbc][0x6][0x89]4[0xe8][0xd0]Y[0x92][0xe2]R[0xb9][0xef][0xe1][0xc5][0xbe]<%:[0xe0]b[0xb2][0xc5]Tm[0xe0]?[0xe0][0xa0][0xf3][0x9]c[0x1b]![0xb1];[0xbc]![0x89][0x3][0xc9]|[0x3]$&[0xe3][0x9b]#U[0xbf][0x4]x[0xc6][0x7][0x95]h[0xd3]T}}[0xb8][0x1f][0xa8][0xc6][0xd8]4=[0xdd][0xfe]@-[0xed]z[0xb6][0xcf][0xbc][0x96][0x17][0x9a][0xd8][0x95][0xfa]+K[0xdf][0x9f][0xef][0x7][0xa1][0x84][0x8c][0xef][0xf1][0xa2][0x1f]U[0x16]np[0xe7]%M[0xe1])[0x8d]y[0xce]/[0x93][0x9e][0xef][0xe][0xe6][0xbb]P[0xa4]1[0x17][0x7]`[0xd4][0xdd]u[0xc3]f[0xf1][0xf]8A[0xb1]-[0x13][0x11][0xbe]8[0xba][0x92][0x1a]aNo[0xb9]#[0xe7]b[0xef][0x83]>[0x91]4[0xc0][0xfb][0xfb][0x8c]&[0xf4]"KS[0xdd][0xc6]4[0x8d]&[0xae];[0xf0]~x[0x9e]5<[0x93]9[0xf0][0xb7][0xf5][0xec][0xe9][0x4]j[0x19]J[0xed][0xed][0xbb]q[0xda][0x9e]g[0xef]j[0xc3][0xdb]![0xd6]*c[0xc5][0xfc]?[0x9f]-[0xe5][0xfc][0xf9][0xe6][0xa8][0x4][0xf3][0xff]|^[0xd8]v[0x3]k[0xcd][0xff][0x91][0xef]sS[0xff]{j[0x98]cH[0xac][0x19]0[0x8d][0xb7]F[0xb0][0xba][0xb5]A[0xb6][0xcb][0xd6][0xa8][0xcd][0xbe][0xad]N[0xca][0xf5][0xf1][0xea][0x84]X[0xf4];S[0x9d]=[0xd0]O![0xaa][0xe8]7vs`[0xf3]n<[0xdc]'[0xf1][0xa9]&[0xbd][0xd7][0x1c]n[0xf9]B[0x1a][0xf7][0x9][0xd0][0x8c]f[0x96][0xb2]e)3[0xdf]0[0x4]Z[0x90][0xc5][0x16]9%^E[0xf6]S<[0xe6]5[0x9f]tk[0xd7]d[0xdf][0xbe]1[0xa7][0xba][0xda][0xc6])[0xd0][0x15][0x86]L[0xd8]G\[0x7][0xdc]T[0xe3][0xb7]*<[0x5][0xd4]8#M[0xa7]o[0xa8]>I[0xc1]<[0x81][0xb5]R[0xdd]p[0xcc]}[0x98][0x9c]b[0xcf]l[0xd4][0xcb]H[0x87][0xaf][0xf6]qV[0xc2][0x12][0xa9][0xec][0xf9][0xe9][0x1c]:($[0x84]![0x8c][0x0][0xf3][0xa3]#[0xc0]~[0x90]W[0x2][0xc2][0xc][0xa7][0xcc][0xc6]YNZ[0xaa][0xd2][0xa9][0x95]{[0xb5][0x14]Z[0xf4][0xdc]Q[0xd0]oww[0x92][0x12][0xe4]v[0x95][0x9d]7[0x97][0x86][0xf4][0xb][0xd3][0xaf]hZ[\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xe3][0x1e]&[0xc4][0x86][0xde][0xcf][0xfa]*[0x1c][0xfe][0xcc]Yq[0x96][0x17][0xb][0xfc][0x8][0xea][0xc4][0xda]{[0xc1][0xe1][0x82][0xd9][0xdd]B[0xd5][0xc4][0xe9][0x99][0xe6][0xce][0xed][0xc3]f[0x9d]p[0x92][0xb0][0xa5]l[0xce][0xdb]"[0x94]&x[0xca]H[0x8f]q[0xa1][0x88][0xd4]dI[0x83][0xcc][0xd5][0x2][0xa9]^[0x98][0xc7][0xc4][0xb3][0xe9]0[0xc4]z)[0x98][0x14]c[0xc9]sE[0xc7][0xca]_D[0x94][0xf]@v[0xf0][0xb1]dk[0xa0][0xe4]$D[0x91][0xd4][0xa9][0xfd][0xd5]U[0xbd]S[0xab][0xf6][0xcb][0x9d][0xf3][0xae][0xb7]&[\r][0xde][0xbb][0xc4]Yo[0x2][0xd1]CN[0xec][0xb1][0xa6][0x9d]([0x6][0xae][0x8e][0xcc][0x1]s.[0xf6]l[0x93]0[\r]`[0x82];[0x87][0x18][0xca]/[0x84][0xa5][0xfa][0x96][0xc]f[0x84]k[0x89]k]aAO[0xf6]SnhItS[0x1e][0x98] ?h_H[0x1d]xY|[0xd6][0x86][0xb2][0xe2]=[0xc7],'[0xbb][0xa1][0x9e]/[0xd1]X[0xa2] [0x9f]oE[0x8d][0xc9][0xe6][0xbf][0x83][0xf5]![0xac]Z[0x83]L![0xdb]oL[0xb6][0xd0][[0xc8][0xc8][0xb6][0xb6]=[0x9e][0x6](B[0xac][0x8c][0xc3][0xc1][0x97][0x96][0x90]bQ[0x16][0xdd][0xea][0x7][0xb7]C[0x1e][0xb2]nv[0xd8]+[0x9f][0x1f][0xb6][0xaf][0xba][0x17][0x87][0x9d][0xab][0xe6]a[0xa5][0xd5]h[0xd4]*[0xbd][0x1f][0x3][0xec][0x81]- [0x6]7v~W$[0xd1]F[0xa0][0xcc]5[0xc]a^V[0xf0][0xd0][0xf6][0x82]E[0xb2][0x8d]x[0xac][0x87]2b>9L[0xb9][0xef][0xa7][0xca][0x97][0xe5]>[0x8]A[0xbf][0xdd]iU[0xaf]*[0xb0][0xce]G[0xc9]{[0xee][0x11]O[0x80][0x0][0x1][0x2][0x4] [0xfc][0xf1][0xf2]v[0xf2][0x0]8[0x10][0x0][\r][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "0[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "HTTP/1.1 200 OK[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "Api-Version: 1.39[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "Content-Type: application/json[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "Date: Thu, 27 Jun 2019 02:10:47 GMT[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "Docker-Experimental: true[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "Ostype: linux[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "Server: Docker/18.09.2 (linux)[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "Transfer-Encoding: chunked[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.headers - http-outgoing-0 << HTTP/1.1 200 OK +DEBUG dockerjava-jaxrs-async-0 org.apache.http.headers - http-outgoing-0 << Api-Version: 1.39 +DEBUG dockerjava-jaxrs-async-0 org.apache.http.headers - http-outgoing-0 << Content-Type: application/json +DEBUG dockerjava-jaxrs-async-0 org.apache.http.headers - http-outgoing-0 << Date: Thu, 27 Jun 2019 02:10:47 GMT +DEBUG dockerjava-jaxrs-async-0 org.apache.http.headers - http-outgoing-0 << Docker-Experimental: true +DEBUG dockerjava-jaxrs-async-0 org.apache.http.headers - http-outgoing-0 << Ostype: linux +DEBUG dockerjava-jaxrs-async-0 org.apache.http.headers - http-outgoing-0 << Server: Docker/18.09.2 (linux) +DEBUG dockerjava-jaxrs-async-0 org.apache.http.headers - http-outgoing-0 << Transfer-Encoding: chunked +DEBUG dockerjava-jaxrs-async-0 org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "37[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "{"stream":"Step 1/1 : FROM busybox"}[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "{"stream":"\n"}[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "82[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "{"stream":" ---\u003e 59788edf1f3e\n"}[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "{"aux":{"ID":"sha256:59788edf1f3e78cd0ebe6ce1446e9d10788225db3dedcfd1a59f764bad2b2690"}}[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 com.github.dockerjava.jaxrs.JerseyDockerCmdExecFactory - 1 * Client response received on thread dockerjava-jaxrs-async-0 +1 < 200 +1 < Api-Version: 1.39 +1 < Content-Length: -1 +1 < Content-Type: application/json +1 < Date: Thu, 27 Jun 2019 02:10:47 GMT +1 < Docker-Experimental: true +1 < Ostype: linux +1 < Server: Docker/18.09.2 (linux) +1 < Transfer-Encoding: chunked +{"stream":"Step 1/1 : FROM busybox"} +{"stream":"\n"} + + +DEBUG dockerjava-jaxrs-async-0 com.github.dockerjava.core.command.BuildImageResultCallback - BuildResponseItem[stream=Step 1/1 : FROM busybox,status=,progressDetail=,progress=,id=,from=,time=,errorDetail=,error=,aux=] +DEBUG dockerjava-jaxrs-async-0 com.github.dockerjava.core.command.BuildImageResultCallback - BuildResponseItem[stream= +,status=,progressDetail=,progress=,id=,from=,time=,errorDetail=,error=,aux=] +DEBUG dockerjava-jaxrs-async-0 com.github.dockerjava.core.command.BuildImageResultCallback - BuildResponseItem[stream= ---> 59788edf1f3e +,status=,progressDetail=,progress=,id=,from=,time=,errorDetail=,error=,aux=] +DEBUG dockerjava-jaxrs-async-0 com.github.dockerjava.core.command.BuildImageResultCallback - BuildResponseItem[stream=,status=,progressDetail=,progress=,id=,from=,time=,errorDetail=,error=,aux=ResponseItem.AuxDetail[size=,tag=,digest=]] +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "30[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "{"stream":"Successfully built 59788edf1f3e\n"}[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "0[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "[\r][\n]" +DEBUG dockerjava-jaxrs-async-0 com.github.dockerjava.core.command.BuildImageResultCallback - BuildResponseItem[stream=Successfully built 59788edf1f3e +,status=,progressDetail=,progress=,id=,from=,time=,errorDetail=,error=,aux=] +DEBUG dockerjava-jaxrs-async-0 com.github.dockerjava.jaxrs.JerseyDockerCmdExecFactory$1 - Connection [id: 0][route: {}->unix://localhost:80] can be kept alive indefinitely +DEBUG dockerjava-jaxrs-async-0 org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-0: set socket timeout to 0 +DEBUG dockerjava-jaxrs-async-0 com.github.dockerjava.jaxrs.JerseyDockerCmdExecFactory$1 - Connection released: [id: 0][route: {}->unix://localhost:80][total kept alive: 1; route allocated: 1 of 10; total allocated: 1 of 100] +DEBUG main com.github.dockerjava.core.command.AbstrDockerCmd - Cmd: 59788edf1f3e,127.0.0.1:5000/ama_cli_created_me,ama_cli_created_me,,com.github.dockerjava.jaxrs.TagImageCmdExec@57d7f8ca +DEBUG main com.github.dockerjava.jaxrs.JerseyDockerCmdExecFactory - 2 * Sending client request on thread main +2 > POST unix://localhost:80/images/59788edf1f3e/tag?repo=127.0.0.1%3A5000%2Fama_cli_created_me&tag=ama_cli_created_me + +DEBUG main org.apache.http.client.protocol.RequestAddCookies - CookieSpec selected: default +DEBUG main org.apache.http.client.protocol.RequestAuthCache - Auth cache not set in the context +DEBUG main com.github.dockerjava.jaxrs.JerseyDockerCmdExecFactory$1 - Connection request: [route: {}->unix://localhost:80][total kept alive: 1; route allocated: 1 of 10; total allocated: 1 of 100] diff --git a/ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/container/ContainerHandler.kt b/ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/container/ContainerHandler.kt index 692de1b0..a84b46b3 100644 --- a/ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/container/ContainerHandler.kt +++ b/ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/container/ContainerHandler.kt @@ -5,30 +5,41 @@ import com.github.dockerjava.api.model.BuildResponseItem import com.github.dockerjava.core.DefaultDockerClientConfig import com.github.dockerjava.core.DockerClientBuilder import com.github.dockerjava.core.command.BuildImageResultCallback +import com.github.dockerjava.core.command.PushImageResultCallback import com.github.dockerjava.jaxrs.JerseyDockerCmdExecFactory import org.slf4j.LoggerFactory import java.io.File -class ContainerHandler(val action : String) { +class ContainerHandler(val action : String, val imageName : String = "") { val logger = LoggerFactory.getLogger(ContainerHandler::class.java) private val dockerHost = System.getenv("DOCKER_HOST") ?: "unix:///var/run/docker.sock" private val dockerRegistry = System.getenv("DOCKER_REGISTRY") ?: "127.0.0.1:5000" - private val actionHandlers = mapOf("BUILD" to ::buildDockerImage) + private val actionHandlers = mapOf("BUILD" to ::buildDockerImage, + "PUSH" to ::pushDockerImageToRegistry) init { logger.info("Got $action for docker as action") val dockerExec = buildDockerServerExecutor() val dockerClient = getDockerClient(defaultContainerHandler(), dockerExec) - val reuslt = actionHandlers[action]?.invoke(dockerClient) + actionHandlers[action]?.invoke(dockerClient) - println(reuslt) } - private fun buildDockerImage(dockerClient: DockerClient): String? { + + private fun pushDockerImageToRegistry(dockerClient: DockerClient){ + dockerClient.pushImageCmd("$dockerRegistry/$imageName").exec(PushImageResultCallback()).awaitCompletion() + } + + private fun tagDockerImage(dockerClient: DockerClient, imageId : String) { + dockerClient.tagImageCmd(imageId,"$dockerRegistry/$imageName", imageName).exec() + } + + private fun buildDockerImage(dockerClient: DockerClient) { val baseDir = File("./") - return dockerClient.buildImageCmd(baseDir).exec(BuildImageCallback()).awaitImageId() + val imageId = dockerClient.buildImageCmd(baseDir).exec(BuildImageCallback()).awaitImageId() + tagDockerImage(dockerClient,imageId) } private fun buildDockerServerExecutor() : JerseyDockerCmdExecFactory { @@ -64,4 +75,6 @@ class ContainerHandler(val action : String) { + + } \ No newline at end of file diff --git a/ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/main/AmaCliMain.kt b/ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/main/AmaCliMain.kt index 46e29e48..b4ed9ddb 100644 --- a/ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/main/AmaCliMain.kt +++ b/ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/main/AmaCliMain.kt @@ -1,9 +1,11 @@ package org.apache.amaterasu.ama.cli.main import com.xenomachina.argparser.ArgParser +import com.xenomachina.argparser.default import com.xenomachina.argparser.mainBody import org.apache.amaterasu.ama.cli.container.ContainerHandler import org.apache.amaterasu.ama.cli.container.dockerFile +import java.lang.System.exit fun main( args : Array ): Unit = mainBody("ama-cli") { @@ -12,8 +14,11 @@ fun main( args : Array ): Unit = mainBody("ama-cli") { } val parsedArgs = ArgParser(args).parseInto(::AmaCLIArgs) - - actionToContainer[parsedArgs.agentAction]?.invoke(parsedArgs) + when(parsedArgs.agentAction){ + "CREATE" -> createContainerImage(parsedArgs) + "BUILD", "PUSH" -> handleDockerCommands(parsedArgs) + else -> exit(1) + } @@ -27,12 +32,10 @@ private fun createContainerImage(parsedArgs: AmaCLIArgs) { }.createImageFile() } -private fun buildDockerImage(parsedArgs: AmaCLIArgs){ - ContainerHandler(parsedArgs.agentAction) +private fun handleDockerCommands(parsedArgs: AmaCLIArgs){ + ContainerHandler(parsedArgs.agentAction, parsedArgs.imageName) } -private val actionToContainer = mapOf("CREATE" to ::createContainerImage, - "BUILD" to ::buildDockerImage) private fun shouldPrintUsage(args: Array) = args.size < AmaCLIArgs.REQUIRED_ARGS @@ -51,5 +54,7 @@ class AmaCLIArgs(parser: ArgParser) { val entrypoint by parser.storing("entrypoint to the container") val agentAction by parser.storing("action to preform [CREATE,BUILD,TAG,PUSH,RUN,COLLECT]") + + val imageName by parser.storing("when building a docker image given a specific name to tag").default("AMA_CLI_PRODUCT") } From fe81f2a5ed8089a778e529a2544da4a87b26dc6e Mon Sep 17 00:00:00 2001 From: "guy.peleg" Date: Thu, 27 Jun 2019 12:26:11 +1000 Subject: [PATCH 6/8] adding push and build,tag commands --- ama-cli/Dockerfile | 2 - ama-cli/example.log.1 | 142 ------------------------------------------ 2 files changed, 144 deletions(-) delete mode 100644 ama-cli/Dockerfile delete mode 100644 ama-cli/example.log.1 diff --git a/ama-cli/Dockerfile b/ama-cli/Dockerfile deleted file mode 100644 index 684d02b7..00000000 --- a/ama-cli/Dockerfile +++ /dev/null @@ -1,2 +0,0 @@ -FROM busybox - diff --git a/ama-cli/example.log.1 b/ama-cli/example.log.1 deleted file mode 100644 index 29a1bcc4..00000000 --- a/ama-cli/example.log.1 +++ /dev/null @@ -1,142 +0,0 @@ -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xc7][0xd1]y[0xe1][0x9b][0xe7][0x99]~[0x3]i[0x8e][H[0xb3]_![0xa3]qo[0xd1][0xf1][0xe6]|[0x82][0xe3][0xb8]4[0xe3]1[0xa4][0xe8][0xff][0x83][0xb6][0x85][0xb1][0xeb][0xda][0xf3][0xf1]r[0xa4][0xff][0xe4][0xbc][0xd4]/[0xf9][0xe3]zH[0xbd][0xe1][0xff][0x9c]|[0xbf][0xac][0x17][0xd5][0xf8][0x1d][0xdb]d[0xfd]([0xfe]6u[0xec][0xb7]>%v[0xdd]:[0xb6][0xf8][0x4][0x99][0xd7]D_[0x91][0x92]^[0xda]5~^[0xf4][0x91][0xfe][0x93][0xe3];[0x8c][0xbf][0xdf].[0xf5][0xca][0xf9]x|[0x8c][0xa7][0x13][0xfd]D[0x8a]~"E[0x1f][0x91]b[0xef][0x85]7[0x9f][0xff][0xa3]x>i[0xf][0x91][0xa2][0xb7][0xc4][0x87]x[0xfe][0xf8]|[0xad][0x8f]Po[0xdf]7[0xe2][0xd3]E[0xf1]ud[0xf9]Qg[0xfe]O[0x8e]%[0x9f][0xc8]x[0x1c][0xff][0xdb][0x9b][0xde][0x93][0xe3][0xf8][0xba]X[0x8e][0xc5]o$^[0xcb]y)Od[0xb4][0xdd][0xae][0xf6][0xc8]<"[0xc7][0xa2][0x9f][0xa4][0x8b][0xe7][0x8f][0xaf][0xaf][0xfe][0xfa][0x93]57[0xc9]q|[0x91]R[0x8f]\[0x8f][0x9f][0x97]u[0xa1]r<:N[0xec][0x90]ci[0x7][0x91][0xd2]N"[0xe3][0xe9]D[0xff]/[0xdc]>[0xf4]V[0xe9]o9[0x16]{EJ[0xfb]I=q=[0xa4]~3=[0xfc]^[0xce][0xc7][0xed]0[0xfd][0x96][0x90][0x1][0xa4][0xbf][0xef][0x97][0x19][0xbd][0xff]t^[0xcf][0xf7]*[0xab][0xaa][0xab][0xaa][0xbb]<[0xff][0xa9]tUT[0xf1][0xfe]Oz[0xc8][0xc1]6[0x14][.[0xb6]av9[0xa3])[0xf3][0xcf]c[0xc9]Oo[0x9a]OiS[0x9e]bB<[0x85]e[0xa0]kJ[0x99][0xb6][0xbd][0xa6]2[0xdf][0x89][0x1f]4:[0xa7][0xaf][0x97]R[0xd5][0x97][0xd1][0xf6]K[0xa2][0xce]A[0xd2]J[0x89]Z6X[0xb4][0xf9][0xb8]Y[0x94][0xba][0xba][0x6][0xdf]8N_[0x1c]LUM[0x89][0x95]s[0xa8]z[0xfc][0xc7]k[0xde]JO[0x8a]T[0xc5][0xe2]T[0xce]6[0xe9][0xeb][0xa7][0xc1][0xe5][0xe9]%[0x9d][0xfb]b[0x10][0xf8][0xe8]`[0x9b][0xcd][0xe5][0x1f]S[0x97][0xfc].{[0xf2]s[0xc6]y[0x13]z[0xcd][0x9f][0xea]T[0xfb][0xb4][0xc8]P[0xdd][0xe6][0x9e][0xe9][0xc3][0x19][0xb0]>[0xb1]T[0xa6]v[0xf9]%[0xf1][0xb4]=z[0xd2][0xfe]v[0xed]7[0x1a][0x6][0x99]U[0x3][0xd3][0xf3][0xfb]J[0xb5][0xc5]m[0x8f][0xb7]W~[0xe2][0xad][0x91]I[0xaf]L[0xaa][0x92][0x84]R[\r]\O[\r][0xb4]'d[0xa8]E[0x7]D[0xcb][0xc4][0xa3]@&Gt[0xaa][0xe3]N[0xb2]3T4b&[0x93]v_[\r]][0xac]Ha[[0xf7][0xdd][0xe3][0xbb][0xce]TI[0xfa]W[0xc6][0xc7][0xc3][0xbe][0xba][0xa3][0xfa]wm[0xf3][0xc4][:[0x99][0x9e][0x1d][0xfc]s[0xda]`[0x9e][0x9f][0x7]02[0xc][0xc8][0x98][0x1a][0x98][0x95]a[0x12]1d[0xc0]g[0xb4]t[0xc4][0xa3]dG[0xe2][0xc4][0x84][0xd3][0xab][0x1][0x98][0x17]R?[0x1b][0xa4][0xa5][0xf][0xd3][0xde][0x2][0x9f][0xac][0xf5]l[0xea][0xbd]"[0xb1]T[0xfb]}[0xe2]Hb[0xbd][0x9c][0xea]q[0x9d][0x99]5b[0xc7][0xe3][0xc3][0x84][0xa3][0xc1]@[0x8f][0xc8]h[0xf]'=[0xfa]38[0x9a];[0xfe][0xe6]R[0x92][0xab][0xe8][0xbe][0xac][0xa4][0x6][0xe4][0xd8][0xbf]5[0xe][0xa5](|h[0x8c][0xf8][0xe4][0xc7][0xd7]`[0xb6]&[0xf1]Z[0x7][0xff][0xa7][0x95]d[0xea][0x8d][0xa6][0xdd][0xe7][0x9b][0x3]7[0xea][0x6][0xc7][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> ",[0xd9]R[0xfb]4'[0xa4][0xd8][0x8f][0x92][e[0xf][0xe6]Q[0x96][0xa9][0x11][0x91][0x84]v[0x19][0x8a]R[0xc9][0xaf][0x9f]R=[0x8b]%;2[0x12][0xaf][0xf0][0xcf][0x11][0x3]77gr[0x9d][0x15]m[0xf7][0xcc]X[0x94]lt[0xcd]d<[0xea]2[0xe7][0x1c]d[0xf5][0x99][0xfc]Zg[0x80]|>[0xd5]m?[0xc0]w[0xe5][0x92]i[0x85]L~[0xd6]0[0xeb][0x96][0xa8]ZP[0x92]P[0xfa][0xe4]R&5[0xf][0x82]r3[0xdf][0x6][0x9][0xf5]Z[0x12][0xb5]w[0xfc]U[0xae][0x84]g[0xd7][0xc1][0xd1][0xe][0x1d][0xc5][0x97][0x1e][0xf9][0x89]M[0x99][0x9c][0xf][0x98][0xf3][0xd6] [0xd1]<[0xd5][0xa3][0x98])S[0x9b]r_[0xc9][0xfc][0xd8][0x1d][0xa8]h[0xf7]q[0x99][0xa5]>[0xc9])3[0xdf][0xf7][0x87][0xe6],[0xa7]'[0xa3]k[0xfe][0xc7][0xcd][0xba][0x8f][0xef][0xdc]x[0xe8][0xa5][0xec][0xcf]l[0xf2][0xb1][0x1b][0xfd][0x3]Pn[0xe6]f[0x93][0x8f][0xd3][0x88][0xef][0x97]?[0xe]x-r)[0xd3][0xbd][0xf9]IN[0xc9][0x8][0xaf][0x6]xL[0xef][0xdf][0xc2][0xa9][0xf6][0xf2]}[0xe3][0xa7][0xf][0x96][0xa6][0xf8][0x9e][0xce][0xc7]iN:4}-[0xc3]3b[0xc2][0xa9][0x7]S[0xd4][0xe9][0xcb][0x8][0x1a][0xa8][0x9e][0x1e][0x1c]w[0x19][0xf][0xbd][0xf5]Z_[0xfd][0x8d]k[0x92][0x81][0xea][0x83]T[0xb7][0xec][0xc7][0xc5]g[0x93][0xbf][0xbb][0x90][0xf9][0xa8]4P[0xe5][0xe][0xac]Gd6[0xe5]H[0x15][0xa3][0xe3][0xdd][0xe6][0x3]-[0x1e][0xa8]^[0xe8][0xcb][0x8c]vh[0xb5]~r[0xd1] 1[0xdb][0x7]r&[0xcf][0xfc][0xfd][0x84][0xc1][0xb4]"K<[0xe5][0xe0]yJ[0xfd]q[[0x8b]%[0x9e]Ru%[0xb9][0xdf][0xf3]6[0xc8]_[0xff][0x90][0xbf][0x2][0x92][0xcc]_[0x0]J[0xe6][0xf7][0xff]c[0xff][0xc7]Y[0xe1][0xe2][0xef][0xbf][0xa5][0x83][0xdb][0xe7][0xff][0xa8]P<#[0xab][0xf3][0xc9][0xd8]wyvak[0xc5][0xd6][0xe][0xe4]xx[0xec]r[0xa9]2[0xbd][0xad]][0xeb][0x94]E[0xff][0xfe][0x12]u$[0xff][0xa7][0xbc]Zw[0xf2][0xfe]O:[0x90][0xfb]?W[0xf]U[0xea][0xe1][0xce]7sb[0xf7][0xec][0x85][0xfb][0xdf][0xff][0x89][0xa7][0x19]m[0x8d][0xde][0xe3][0x89]g[0xd1]b[0xd7][0xce][0x1d][0xa9][0xd4][0x9e]N[0xe7][0x13][0xc5]vA[0xf4]>[0xce][0xcd][0xff]io[0x97][0xaa]s[[0xda][0xdb][0x8b]![0x1f]G[0xbd]v[0xc8][0xfb]Ooo[0x97][[0x9c][0x9b]p,[0xfd]t[0x1f][0xe4]$[0xc8]{ k /[0x8f][0xb4][0xb7][0xd7]B[0x8e]?[0xa3][0xbd]][0xfe][0xb2]|[0xdb][0x9c][0xf6][0xf6][0xc5][0x90][0xd7][0xe2][0xfa]R[0xc8][0xb5][0x90]M[0x90][0xfe][[0xdb][0xdb][0x83][0x90]kp[0xbc][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "r[0xe1][0x8c][0xf6]v[0xb1]o[0xec][0xd4][0xf6][0xf6]6[0xc8][0xc7][0xce]lo_[0x7]Y[0x9][0xb9]^[0xea][0xaf]io[0xdf][0x0][0xf9][0xda][[0xed][0xed][0x1b]![0xe7]#[0xdf]&[0xd1][0xa3][0xba][0xbd]}3[0xe4][0x5][0xa8]o[0xb][0xa4][0xb][0xe7][0xb7][0x8a][0xfe]s[0xdb][0xdb][0xb7]C[0x9e][0x88][0xe3][0x1d][0x90][0x1f]6[0xb5][0xb7][0xef][0x84][0xdc][0xf6]N{[0xbb][0xdc]K[0xbb]s^{[0xfb]n[0xc8]"\[0x97]v[0xda]Z[0x85]vEc[0xfd][0xf3]Y[0xd8][0xf]9[0x16][0x5][0xd9] [0xb7][0xa0][0x9c]b[0xc8][0xff]|[0x4][0xfb]![0x9b][0xa6][0xc3]~[0xc8][0x92][0x10][0xec][0x87]|[\r][0xe7]'A[0xde][0x89][0xfc]5[0x90]S[0xa7][0xc0]~[0xc8][0x13][0xeb]`?[0xe4]\([0xba][0x18][0xf2]1[0x9c]_*[0xe5][0x9f][0x5][0xfb]%[0xdd]d[0xd8][0xf][0xd9][0x86]rVA[0xde][0x83]rZ!OA[0xf9]m[0x90]g[0xa1][0xfe]u[0x90][0xaf][0xcc][0x84][0xfd][0x90][0xd7][0xe2][0xfa][0x6][0xc8]K[0x83][0xb0]_[0xf2]An[0x92]t[0x93]`?[0xe4][0xf5][0x95][0xb0][0x1f][0xf2]<[0xa4][0xdf]*[0xfa][0xe1][0xfa]v[0xc8]w[0x1a]a?[0xe4]b[0xe4][0xdf][0x9]y[0xcd]m[0xb0][0x1f]r>[0x8e]wC6L[0x83][0xfd][0x90]9[0xb]a[0xbf]E[0xa9][0x87][0xd0][0x8e][0xb9][0x90][0xdb]N[0x85][0xfd][0x90][0x97][0x7]`?[0xe4][0xfd]^[0xd8][0xf]iC[0xfa][0x12][0xc8][0xbf][0x9c][0x4][0xfb]![0xdf]C;N[0x82]\[0xda][0x0][0xfb]![0xfd]g[0xc3]~[0xc8]w[0xd0][0x1e]u[0x90][0x16][0xf8][0xd1]b[0xc8]sP[0xfe]R[0xc8][0xc5]o[0xc3]~[0xc9][0xff]?[0xd8][0xf][0xf9][0x88][0x1f][0xf6]C[0xae][0xa9][0x85][0xfd][0x90][0xdb][0xe1][0x7]m[0x90]s[0x17][0xc0]~)[0x7]r=[0xe4]f[0xa4][0xdf] [0xfa]An[0x14]} 7A[0x8e]B}[0x9b]!7[0xe0]x[0x8b][0xe8][0x83][0xf6][0xde][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "y1[0xca][0xd9][0xe][0xb9][0x16][0xed][0xb1][0x3][0xf2][0xda]f[0xd8]/z|[0x6][0xf6]K~[0xe8][0xb1][[0xf2][0xc1][0xce]=[0x90][0x93]q,7^[0x8b][0x91].[0x17][0xb2][0x8]~o[0x83][0xb4][0xa3][0xbc]b[0xc8]r[0xf4][0x93][0x1d]r6[0xfc][0xb3]D[0xe4]i[0xb0][0x1f]r9[0xfa]s[0x12]d[\r][0xea][0xaf][0x81][0xbc][0xc3][0x7][0xfb]!+q\[0x7]y[0x81][0xf8]?[0xe4][0xdd](g)d[0x10][0xf9][0x9b] 7[0x9c][0xc][0xfb]![0x1f]^[0x1][0xfb]!mH[0xdf][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "y[0xf][0xfc][0xa6][\r][0xb2][0xc]~[0xbd][0xe][0xf2][0xa3][0xf]a?[0xe4][0x1e][0xc8][\r][0x90]kq~#[0xe4]6[0xa4][0xdb][0x4][0xf9][0x6][0xce]o[0x86]<[0x1e]vl[0x81][0xbc][0xe][0xfd][0xb3][0x15]r+[0xf4][0xdb][0xe][0xb9][0x1b][0xf5][0xec][0x80]|[0x8][0xed][0xbf][0x13]r<[0xda]y[0x17][0xe4][0xf4][0xe5][0xb0][0x1f][0xf2]~[0xf8][0xd9][0x1e][0xc8]l[0xb1]?[0x1b][0xfe]y![0xec][0x87],[0xc3]8[0xb7]A[0xbe][0x89][0xf6]*[0x86]|D[0xfa][0x1f]r-[0xea]+[0x81][0x9c][0x9][0xbb]u[0xc8][0xeb]0.'A^[0x8a]rj [0xdf]C[0xbd][0xb5][0x90][0xd9][0xb3]`?[0xe4]"[0xf8][0xc5]b[0xc8][0x1c][0xe4]_[\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xb9][0x10][0xf9][0x9b] [0x9f]B[0xbf][0x6]!g[0xe3]x[0x15]d[\r]d[0xab][0x94][0x8b][0xfe]l[0x83],[0xde][\r][0xfb]!'[0xc3][0xaf][0xd7]CN[0x10][0xfb]![0xc7]An[0x84]|[0x12][0xe3]g[0x13][0xe4]t[0x8c][0xcf][0xcd][0x90][0xe7][0xdd][0x1][0xfb]!?[0xfa][0x0][0xf6]C[0xfe][0x5]qc;[0xe4][0x1b][0xd0]o[0x87][0xd8][0x85][0xf4];!_A[0xfb][0xed][0x82][0xdc][0x85]q[0xb1][0x1b]r[0xf][0xda]q[0xf]d[0x3][0xd2][0xc9][0xa3][0x9a][0xc9]h[0xbf]\[0xc8][0xad]([0xc7][0x6][0x19][0x81]=[0xc5][0x90][0xcb][0xea]a?[0xe4][0x83]8_[0x2][0xb9][0x7][0xed][0xad]C[0xde][0x8d][0xe3]I[0x90][0x9b][0x91][0xaf][0x6]r,[0xca][0xad][0x85][0x1c][0x89][0xf2][0xea] [0xb3]1N[0x16]C[0xde][0x81]q[0xbd][0x14]r1[0x8e][0x9b] w[0xc3][0xce] [0xe4]S[0xf0][0x87]U[0x90]y[0xf0][0x93]V[0xc8][0x8d]h[0xb7]6[0xa9][0x7][0xed][0xbe][0xe][0xf2][0x1c][0x94][0xbf][0x1e][0xf2],[0xc8][\r][0x90][0xa7]An[0x84]|[0x5][0xe3]~[0x13][0xe4]:[0xd8][0xb5][0x19][0xf2]^[0xf8][0xfb][0x16][0xc8]{N[0x81][0xfd][0x90]W[0xa2][0xbf][0xb7]C[0x8e]G[0xfa][0x1d][0x92][0xe][0xed][0xb1][0x13]r%[0xfc]a[0x97]H[0xa4][0xdb][\r]9[0x6][0xfd][0xb8][0x7][0xb2][\r][0xe5][0xc9]c[0xaa]7~[0x1][0xfb]![0xff][0xb9][0x17][0xf6]C~[0x88]t[0xc5][0x90]#[0x91][0xcf][0xe][0xb9][0xc][0xf5][0x95]@[0xbe][0x89]~[0xd1]!_E[0xbc][0x98][0x4][0xb9][0x15][0xe9]k$?[0xda][0xa1][0x16][0xb2]M[0xe2]?d[0xc4][\r][0xfb]![0xc7][0xa1][0x9c][0xa5][0x90]w"][0x13]d[0x1e][0xf4][0x9]B[0xbe][0x83][0xb8][0xb8][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xf2]u[0xb4]o+[0xe4])[0x88][0x1b]m[0x90][0x85][0xa8]g[0x9d]<`@[0xff][0xac][0x87][0xbc][0x3][0xed][0xb5]A[0xea][0x83]][0x1b]![0x1b]P[0xff]&[0xc8]G$[0xfe][0x89]^[0x98][0xb7][0xb6]@.~[0x17][0xf6]C^[0x8e]v[0xde][0xe]y[0xb3][0x1][0xfb]!'[0xa1][0xde][0x9d][0x90][0xeb]a[0xef].H[0x1f][0xfc]f7[0xe4]|[0xe8][0xb5][0x7]r/[0xda]O[0x1e][0xd1][0xbd][0x8a]~[0xc8][0x85],[0x10][0xfb]![0xdf][0xc0][0x4]W,[0xf]8pl[0x87]<[0x1e][0xfd]R[0x2]y'[0xfc]W[0x87][0xbc][0x11][0xfa]O[0x82]|[0x1e]q[0xb0][0x6]r/[0xfa][0xb9][0x16]r[0xc7][0xfb][0xb0][0x1f][0xf2][0xc3][0xd9][0xb0][0x1f][0xb2][0x4][0xe5]/[0x85]|[0x2][0xe7][0x9b] [0x97]#_[0x10][0xf2]6[0xe9][0xc8][0x9][0xef][0xc1]~[0xc8]S[0xd0][0xce]m[0x90]w [0xdd]:)[0xf]v[0xad][0x87][0xdc][\r][0xb9][0x1][0xf2]J[0xd4][0xbf][0x11][0xf2],[0x19][0xff][0x90]k[0x90]n[0xb3][0xe8][0x3]?[0xdd][0x2][0x19]D[0xba][0xad][0x90]O[0xa3][0xbd][0xb6]K>[0xc4][0xb3][0x1d][0x90]o[0xa1][0x9e][0x9d][0x90][0xab][0x10][0x87]vA[0x16][0xa1][0xfe][0xdd][0x90][0xb3][0x91][0xf][0xa4].[0xf1][0x1f][0x13][0xff]N[0xc4][0x87]\[0xc8][0xc5]2[0xfe]![0xcb]p[0xbd][0x18][0xb2][0x4][0xd2][0xe][0x99][0xfb][0x4][0xec][0x87][0x1c][0x8b]c[0x1d][0xd2].[0xf1][0x1f]r>[0xf2][0xd5]@[0xbe][0x85]v[0xad][0x85][0xac][0x83][0xdd]u[0x90][0xef][0xed][0x81][0xfd]R[0xe][0xfc]z)[0xe4][0xcb]([0xb7][0x9][0xf2]I[0xf4]C[0x10]r.[0xf2][0xaf][0x82][0x8c][0xa0]=[[0xa5]<[0xc8]6)[0x7][0xfd][0xb8][0xe][0xf2]i[0xe4]_/[0xd7][0x91]n[0x3][0xe4][0x16][0xf4][0xfb]F[0xc8][0xe7]a[0xc7]&9[0xf][0xd9][0xc]Y[0xf][0xda]"[0xf5][0x9d][0x3][0xfb]![0xaf]E[0xbe][0xed][0x90][0xe7]a[0xbc][0xef][0x80][0xbc][0x18][0xc7];![0x1f]B[0xff][0xee][0x82]|[0x5][0xf1]j7[0xe4][0x1a][0xe8][0xb9][0x7]r[0xef][0xe7]`[0xff]0[0x8c]7[0xa4][0xcb][0x85]<[0xb][0xd2][0x6]y[0xf][0xae][0x17]C[0x96][0xc1][0x9f][0xec][0x90]k[0x90][0xae][0x4]r[0x1b][0xce][0xeb][0x90]7[0xa3]}'A[0xea]H_[0x3]y"d-[0xe4]F[0xb4]G[0x1d][0xe4]&[0xcc]?[0x8b]!G[0xe2][0xfc]R[0xc8][0x1c][0xb4]O[0x13]d.[0x8e][0x83][0x90][0x16][0xc8]U[0x90]w [0x1e][0xb7]B[0xbe][0xf7]_[0xd8][0xf][0xb9][0x1b]r[0x1d][0xe4][0xe5]h[0xb7][0xf5][0x90]/[0xc1]O7@[0xbe][0x82][0xf3][0x1b]![\r][0xb9]I[0xf4][0x80][0xdc][0xc]i[0x83][0xdf]m[0x91][0xf4]h[0xdf][0xad]R[0xbf][0xf8]?[0xe4]#[0xb8][0xbe][0x3][0xf2][0xc3][0xcf][0xc2]~[0xc8]][0x90][0xbb] +[0x9f][0x81][0xfd][0xa2]/[0xc6][0xcf][0x1e][0xc8]7Q[0x8f]<[0x96]^[0xc][0x99][0xb]9[0x16][0xfe]d[0x83]<[0x5]q[0xac][0x18][0xb2][0x18][0xf6][0xda]!G[0xa2][0xbd]K WJ[0xfc][0x83]|[0x1a][0xfe]:[0x9]2[0x7][0xe5][0xd6]@[0x9e][0x83][0xfa]j![0x9f][0x84]>u[0x90][0xa7][0xe1]x1d.[0xfa]a[0xa9][0x94][0x87][0xe3]&[0xc8]l[0xd4][0x1b][0x84][0xbc][0x11][0xec][0x87][0x9c][0x88][0xf3][0xad][0x90][0xc7][0x8b][0xfd][0x90]u([0x9d][0xd4][0x83][0xeb][0xeb][0xa5]^[0x9c][0xdf][0x0]Y[0x89][0xfe][0xdb][0x8]9[0x1][0xed][0xba][0x9][0xf2]R[0x8c][0x83][0xcd][0x90][0x1f]b[0xfc]l[0x81]|[0xf]r+[0xe4]:[0xf8][0xcf]v[0xa9][0x17]r[0x7][0xe4][0xbd]X[0x87][0xec][0x84][0xdc][0xbc][0x1d][0xf6]C[0xd6]l[0x83][0xfd][0x90][0xcf]?[0x7][0xfb]![0x97][0xa3]=[0xe4]%[0x86][0xe9][0x90][0xb9][0x90][0xf7]l[0x85][0xfd]"[0x11][0xf][0x8b]!O[0x81][0xb4]C^[0xff]4[0xec][0x87][0xbc][0xe6][0xe7][0xb0]_[0x1e]l[0xfe][0xc][0xf6]C[0xbe][0xfa]$[0xec][0x87][0xdc][0x6]Y[0xb][0xb9][0x6][0xb2][0xe][0xf2][0xca][0x9f][0xc2]~[0xc8]J[0xc8][0xa5][0x90][0xe7][0xfc][0x4][0xf6]C.[0xc5]8[\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "B[0x8e]z[0x14][0xf6]C[0xbe][0xf5]C[0xd8][0xf][0xb9][0xea][0xfb][0xb0][0x1f]r7[0x16][0xd4][0xeb][0xa4][0xdc]o[0xc0]~9[0xf][0xb9][0x1][0xf2][0xd7]w[0xc3]~[0xc8][0xd6][0xbb]`?[0xe4]b[0xc8][0xcd]R[0xe][0xe4][0x16])[0xf7]N[0xd8][0xf][0xf9][0xe1][0xd7]`?[0xe4]J[0xc8][0x1d][0x90][0xf5][0x98][0x1f]wBZ wAn[0xb9][0x1d][0xf6]C[0x16]b=[0xb8][0x7][0xf2][0x91][0xf5][0xb0][0xbf][0x0][0xf1][0xe8][0x16][0xd8][0xf][0xf9][0xd4][\r][0xb0][0x1f]2[0xb8][0xe][0xf6]C[0xbe][0xf1]e[0xd8][0xf][0xa9]#[0xae][0x97]@[0xae][0xfb][0x12][0xec][0x87][0xcc][0x86][0xbf]M[0x82][0x1c][0x9][0xbf][0xae][0x81]|[0x4]~_[0xb]y[0xbc][0x8c][0xc8]-[0xf0][0xa7][0xc5][0x90]7_[0xe][0xfb]![0xcb][0xd1]oM[0x90][0xdb][0xe1][0x1f]A[0xc8][0xa7][a?[0xe4][0xe3][0x88]k[0xad][0x90]+/[0x81][0xfd][0x90][0xf3][0xe1]W[0xeb] [0x9f][0xbd][0x8][0xf6]CnE[0xbc][0xda][0x0][0xf9][0x16]>0l[0x94]z[0xe0][0xdf][0x9b]DO[0x89][0xff][0x90]'b[0xee][0x86][0xbc][0x16][0xeb][0xb5]=[0x90][0xb]![0xe5][0xa1][0xfa][0x5](/[0x17]r+>/[0xd8] [0xc7]A[0x16]C[0xe6].[0x83][0xfd][0x90][0xc7]c=S[0x2]i[0x87][0xd4]![0x9f]^[\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xfb]![0xb7]@[0xd6]@[0xde][0xb3][0x4][0xf6]CN[0x84][0xac][0x93][0x87][0xf4][0x90][0x8b]![0xaf]?[0xf][0xf6]C>[0x84][0xf6]h[0x82][0xbc][0x3]q*[0x8]9[0x1][0xf1]d[0x15][0xa4]e1[0xec][0x87]|[0x5][0xe3][0xa8][\r][0xf2][0xd7][0x90][0xeb] 7B[0xae][0x87][0xbc]{[0x11][0x9f][0x9b][0x1f][0xea][0xf4][0xe7][0xfd][0x9f][0xb2][0x15][0x9e][0xd5][0xe1]H[0xc8]c4[0xf7]\G[0xf2][0xf7][0xaa][0x9c][0x95][0xbc][0xff][0x93][0x1e]4KV[0xf6][0x90][0x9c][0xa1][0xb9][0xc3][0xf2][0xf6][0xfd][0xf8]!![0x84][0x10]B[0x8]![0x84][0x10]B[0xe])[0xfa][0xfc][0xfe]O[0xd9]J[0xc3][0xd7][0xe2][0x9][0x97][0x85]{[0xaf][0xa3][0xe7][0xfb]?B[0xb9]y[0xff][0xa7][0xbc]B[0xaf]vVW[0xd8][0xf5][0xf2][0xca][0xca][0xca]*[0xde][0xff]I[0x7][0x1f]N[0xcb][0xb4][0x6]$[0x93][0xf4][0xe7][0xfe][0xef][0x12]obu[0xf4]8[0xfe][0x9d][0xfa][0xc1][0xbe][0xff]YY[0xc9][0xef][0xa6][0x87][0x82][0xfd][0xbf][0xfa])[0xef][0xc1][0xc9][0xfb]{[0xf2][0x1e][0x9c]|[0x17]S[0xde][0x83][0x93][0x4][0x1b]T[0xf4][0x9b][0xc5][0xf2][0x1e][0x9c]|[0x17]S[0xde][0x83][0x93]W%[0xe4]=8yUa[0x8b][0x8a]~[0xd3]X[0xde][0x83][0x93][0xef]b[0xca]{p[0xf2]]Ly[0xf]N[0x1e]Y[0xee]T[0x7][0xfb][0xf6]1![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]28[0xa8]o[0xf1][0xfa][0x1a][0x1c]+[0x2][0x11][0x9f][0xd7][0xef]p[0x7][0x9a][0x83]^[0x9f]g^[0xec][0xc8]p7y[0xc2][0xa5][0xcb]W6;|[0x81][0xc0][0x8a][0x96]`[0xd8][0xe1]m([0x8d][0x4]J[0x97]!MY[0xc4][0xa8]_[0xe2]-[0xf3]y[0xfc][0xbd][0xd7][0xa1];u[0xdd]UYi[0xd7][0xa3]t[0x95]:[0xae][0xdb][0x9d][0x15]Uzy[0x85][0xee]r[0xba][0xaa][0xec]zyeyy[0xb5][0xb2][0xeb][0x3]o[0xbe]R-[0xe1][0x88][0x11]Rz[0xbf][0xeb][0xea]j\[\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "TK[0x1f][0xad][0x99]V[0x80]d[0x88][0xe4][0xc6]L[0xca][0xe0]Ol[0xe8][0x9b]$:[0xfe][0x11][0x1][0xca][0x9d][0x92][0xae][0xbc][0xa2][0xb2][0xaa][0x8a][0xe3]?}[0x14][0xda]3[0xad][0x1][0xc9][0xc][0xfd][0x99][0xff][0xcb]V[0x1a][0xbe][0x16]O[0xb8][0xcc][0x88][0xf4]\G/[0xe3][0xbf][0xa2][0xdc]Y[0xd5]1[0xfe]][0xba][0x8c][0xec];9[0xfe][0xd3][0x81]C[0xd5]z[0x8c][0x6]O[0xc8][0xbe][0xd0][0xe3][0xe][0x84][0x1a][0xec][0xb3][0x3]!{[0x9d]'[0x14][0xf6][0x86]#[0x1e][0xa4][0xd6][0x8]7-0[0x82][0x8b][0xa4][0x9f][0xcf][0x8c][0x4]BF[0xa3][0xe7]b[0xa5][0xd6]8[0xce][0xe]#[0x89][0xa3][0xb1]euY[0xd0][0xe3][0xf3]4:[0x1a]<+[0x1d]^[0xbf][0xbb][0xa5][0xde]@[0xa2]R[0xa3][0xd9][0x88]xBF[0xb8][0xc5][0x81][0xbd]R[0xb7][0xcf][0xeb][0x8][0x87][0xdc][0x8e]f[0x3]>[0x15]s[0xb4]@[0xa8][0xd1]a[0x4][0xc5][0xbf][0x1c][0xfb]%vHbw[0xc0][0x1f]AZO[0xc8]13[0xe0]^[0xe1][0x9][0xcd]iF[0xb5][0xb3][0xc5][0xe7]VD.Q[0xea][0xa2]t[0xd5]>#[0xbe]Wk[0xf8][0x1b]|[0x9e][0x10][0xaa][0xf])[0x15][0x1c][0xd8][0xea][0xcd][0x84][0xd3][0x9a][0x8d][0x19]>[0xef][0x2][0xec]f[0xde]dV[0xcf][0xea]Y=cM:L[0xce][0xf4]d[0xf8][0x9]$[0xb1][0xf5][0x9f]l[0x1d]i[0xfc]X1[0xf9]#[0xd1][0xf][0x81]+<[0xab][0xc3][0x91][0x90][0xc7]h[0xee][0xa9][0x8e][0x9e][0xd7]Ns[0xff][0xfb]?U[0xae][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x9d][0xeb][0xbf]t01[0xb1][0x8]1[0xce][0xb4]Pc8[0xd3][0xca][0x12]B[0x8]![0x84][0x10]B[0x8]![0xa4]O$}[0xff]'[0xdc]R[0x1f]Y[0x1d][0xf4][0x84][0xa3]/[0x0]%TG[0x8f][0xf7][0x9c]z[0xe7][0xfb]?[0xd5]z[0x95]K[0x9e][0xff]WW[0xf3][0xfd][0x9f][0xf4][0xa0][0xa9][0xac]L[0xab]@[0x12][0xa7][0x15][0xdb][0xaf][0xde][0xfa][0xe8][0xfe]L[0xeb]A[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x87][0x1a][0xf5]-^_[0x83]cE [0xe2][0xf3][0xfa][0x1d][0xee]@s[0xd0][0xeb][0xf3][0xcc][0x8b][0x1d][0x19][0xee]&O[0xb8]t[0xf9][0xca]f[0x87]l[0xb1]4[0xe1]@K[0xc8][0xed])[0x8d][0x4]J[0xdd]>#[0x1c][0xf6][0x84][0xcb]"F}[0x99][0xcf][0xe3][0xef][0xbe][0xe][0xdd][0xa9][0xeb][0xae][0xca]J[0xbb][0x1e][0xa5][0xab][0xd4]q[0xdd][0xee][0xac][0xa8][0xd2][0xcb]+t[0x97][0xd3]Ue[0xd7][0xcb][0xab][0xaa]+[0x9d][0xca][0xae][0xa7][0xa3][0x1]Z[0xc2][0x11]#[0xa4][0xf4]~[0xd7][0xd5][0xd5][0xb8][0x14][0xa8][0x96]F[0xd6]gZ[0x1][0x92][0x19][0x92][0x1e][0xff][0xe6][0xa8]/]va[0xa9][0xdf]h6[0xc3]@4 H[0x14]X[0xe2]=x[0x1c]H~[0xfc]W[0x97]WVp[0xfc][0xa7][0x8f][0xd6]L+@2D*[0xc7]w[0xab][0x80]$[0xc6][0xb5][0xb3][0xba][0x2][0xe3][0xdf]U][0xc1][0xf1][0x9f]N6eZ[0x1][0x92][0x19][0x92]_[0xff][0xb7][0xd4]GV[0x7][0xa3][0xcb][0xfe][0xee]&[0xfc].$3[0xfe][0xf5]*[0x17][0xc6]eUU%[0xc7][0xfa]h[0xcd][0xb4][0x2]$C$?[0xff][0x7][0xfc][0x18]1[0xfe]H[0xf4]s[0xff]J[0xc3][0xd7][0x82]X`Dz[0xaa][0xa3][0xb7][0xf1]_[0xae]W[0x98][0xe3][0x1f][0x11][0xa0][0xdc])[0xe9][0xca][0xab][0xaa][0xca][0xab]8[0xfe][0xd3][0x81]C[0xd5]z[0x8c][0x6]O[0xc8][0xbe][0xd0][0xe3][0xe][0x84][0x1a][0xec][0xb3][0x3]!{[0x9d]'[0x14][0xf6][0x86]#[0x1e][0xa4][0xd6][0x8]7-0[0x82][0x8b][0xa4][0x97][0xcf][0x8c][0x4]BF[0xa3][0xe7]S[0x92]K[0xc3]6\-T[0xb3][0xd4][0x19][0xea]l5[0xc7][0xdc][0x9b][0xa9][0x96][0xa8]i[0xd8];U[0x9d])I[0xb2][0x13]N[0x98])[0xd3][0x89][0xea][0xd3][0xfc][0x1f][0xf4][0x84]:V[0x0])[0x9f][0xff][0xa3][0xeb][0xff]J[0x97][0x93][0xf7][0xff][0xd2][0xc9][0xba]L+@2C[0xd2][0xe3]?[0x18][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "D[0x2][0xe6][0xd0]_[0xe1]Y[0x1d][0x8e][0x84]> "[0x90][0xcc][0x90][0xfc][0xfc]o[0xb8]W[0xe0]c`i[0xd0][0x8]E[0xef][0x1][0xf4]^G[0xcf][0xe3][0xdf]i[0xee][0xef][0xff][0xf9][0xbf][0xb2][0xa2][0xdc][0xc5][0xf1][0x9f][0xe]n[0x9f][0xff][0xa3]B[0xf9][0x90]n[0xe9]|[0xd2][0x16][0x15][0xf2][0xa1][0xa0][0x15][;P[0x9d][0xd2]d[0xa9][0xe8][0x7]{[0xad]S[0x16][0xb9]f[0x8f][0xed]w>[0x9f][0x8][Q[0xbe][0x3][0xf2][0xb9]X=[0x84][0x10]B[0x8]![0x84][0x10]B[0x8]I-)[0xfa][0xfe]G[0x8f]7[0x82][0xfb][0xf0][0xfe]wu%[0x9f][0xff][0xa4][0x11][0xad])[0xd3][0x1a][0x90][0xcc][0x90][0xf4][0xf8][0xf7][0xfa]#[0x9e][0x90][0xdf][0xf0][\r][0xe8][0xfb][0xdf][0xd5]z[0x5][0xef][0xff][0xa6][0x11]-7[0xd3][0x1a][0x90][0xcc][0x90][0x9a][0xf9][0xbf][0xe7]:[0x92]y[0xfe][0xe3][0xd2][0xcd][0xf7]?[0x9d].[0x9d][0xe3]?[0x1d][0xc8][0xf3][0x9f]<[0x15]}[0xa6][0xd3]A[0xec][0xf9][0x8f]|)[0xb4]U[0xed]{[0xfe][0x13]OS[0xa2][0xe]|[0xfe]#[0xd7]Jc[0xfb][0xc9]>[0xff][0xd9][0x86][0xf2]/[0x82][0xdc][0xf4][0xef][0xf6][0xf6][0xff]B[0xce][0x97][0xcf][0x81][0x8]![0x84][0x10]B[0x8]![0x84][0x90]T[0x92][0xd2][0xfb][0xbf][0x1d]O[0x81][0xf6][0xaf]#[0xd1][0xfb]?[0x1d][0xf7]+[0xf4]r[0x17][0x9f][0xff][0xa4][0x85][0x89][0x81]P[0xa3][0xc3][0x8]JW;[0x8c]f[0x3]}k[0x84][d[0xcf][0xe1][0xf6]y[0x1d][0xcd][0x6]z|Z[0xb3]1c[0xfe][0x9c]i[0xa1][0xc6][0xb0]+[0x99][0xc4][0x13]f[0xc0][0x9b][0xc][0xbf]7[0xe0]/K,[0x9b][0xcf][0xbb][0x0][0xbb][0xf3]"U[0xc9]%[0x9f] g&8[0xab][0xfb][0x94]k[0x82]sz[0xdf][0xf2][0x5][0x8d]P[0xd8][0xd3]`[0xda][0xe9][0x9c][0x95]d[0x11]n[0xc][0x91][0x88]gF[0xc0][0x1f][0xc1][0xb1]'4[0xa7][0xd9]h[0xf4]$[0xaf][0x88][0xe1][0x8e][0xa0]m[0xcf][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "t[0x94][0x93][0x8a]"[0xca]{nFw<[0xa1][0xa3]#K[0xad][0xe1]o[0xf0]A[0xf4]1_L[0x87][0xd8]Q[0xb8]7[0x1b]z([0xc8]m[0xf8]|[0xf5][0x86]{[0xc5][0x4]g[0xcf]n[0xba][0xaf][0x88][0x99][0x1][0xf7][0x8a]X[0xf3][0xcf]F[0xd8][0x9b][0xd4][0xb7]l[0xf3]"s[0xfb][0xaa][0xb2][0x19]|;[0x15]7[0xc1]Y[0xd3]_[0xeb][0xfb][0xac][0xcb]t[0xd1][0xc5][0xd4]bF[0xac][0xa8]L[0x87]&B[0x8]![0x84][0x10]BH[0x8a]I[0xf5][0xfb][0xbf][0x7][0xab]#[0x89][0xfb]?[0xf1][0xf7][0x9d].[0xfe][0xfe]CZX[0xe3]8;[0x8c][0xcf][0xdd][0x8e][0xc6][0x96][0xd5]eA[0x8f][0xcf][0xd3][0xe8]h[0xf0][0xac]tx[0xfd][0xee][0x96]z#[0x12][0x8][0x95][0xee][0xf7][0x19][0xb2]T>C[0x86]C[0xee][0xe8][0xad][0x84][0x98]C[0xf4][0xed]Ss[0xd9][0x8a][0xc8]E[0xe9][0xaa][0xba][0xeb]g][0xd4][0x1d][0x1c][0xd8][0xba][0xbb][0xdc]jA[0x85][0x99][0xee]gB[0x8]![0x84][0x10]B[0x8]![0x9f]l[0xfa][0xf9][0xfb][0xdf]K[0xbc][0x9][0xd4][0xd1][0xe3][0xfd][0x1f][0xa7]~[0xe0][0xfb]?[0xe5][0x95][0x15][0xfc][0xfe]w[0x9a][0xb0][0xec][0xff][0xd5]/B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10][0x92]YZ[0xb1][0x9d]P<[0xf6][0xd6]L[0xeb]A[0x8]![0x84][0x10]B[0xc8]'[0x81]6l[0xef][0xdd][0xf4][0xdb][0xe3]3[0xad][0x7][0x19][0x1c][0xd4][0xb7]x}[\r][0x8e][0x15][0x81][0x88][0xcf][0xeb]w[0xb8][0x3][0xcd]A[0xaf][0xcf]3/vd[0xb8][0x9b]<[0xe1][0xd2][0xe5]+[0x9b][0x1d][0xb2][0xc5][0xd3][0xf8][0x8c]p[0xb8]t[0xd9][0x85][0xa5]~[0xa3][0xd9]S[0x1a][0x9][0x94][0x86][0x3]-![0xb7][0xa7],b[0xd4][0x97][0xad][0xf0][0xac][0xe]GB[0x1e][0xa3][0xb9][0xcc][0xe7][0xf1][0xef][0xab]Cw[0xea][0xba][0xab][0xb2][0xd2][0xae]G[0xe9]*u\[0xb7];+[0xaa][0xf4][0xf2][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xbd][0xda]Y]a[0xd7]!+\[0xca][0xae][0xa7][0xa3][0x1]Z[0xc2][0x11]#[0xa4][0xf4]~[0xd7][0xd5][0xd5][0xb8][0x14][0xa8][0x96]>[0xb4]%[0x99][0xd6][0x80]d[0x86][0xa4][0xc7]t[0xb8][0xcb][0xc0]7#[0x81]',#[0x89]w[0xff][0x11][0xbf]?I[0x8c][0x97][0xd3]Ue[0xd7][0xcb]][0xe5]UN[0x8e][0xff][0xf4][0xd1][0x9a]i[0x5]H[0x86]Hz[0xfc]{[0xfd][0x11]O[0xc8]o[0xf8][0xe]2[0xff]/[0xf1][0x1e][0xbc][0x8e][0x1e][0xc7][0xbf]3[0xba][0xbf][0xdf][0xfc]_[0xee][0xaa][0xaa][0xe6][0xf8]O[0xf]#TV[0xa6]U [0x84][0x10]B[0x8]![0xa4][0xbf][0xac][0xc3]6[0xf1][0xd6][0xb1]u[0x99][0xd6]#[0xd3]l[0xc0][0xf6]%[0xc7][0xb7][0x9e][0xc9][0xb4][0x1e][0x84][0x10]B[0x8]![0x84]d[0x14]M[0xa9][0xda]e[0x93][0x1e][0xed]-[0xd9]Vle[0xde][0xed][0xcf][0xa6]A[0xa3][0x8f][0x5][0xf2][0xfe][0x90]u[0xe1][0xfb][0xa7]dZ[0xf][0xf2][0xf1]`#6[0xed][0x89][0x9f][0xd9]2[0xad][0x7]![0x84][0x10]BH[0x9c][0xed][0xd8][0xa6]o[0xc9]9#[0xd3]z[0x90]([0xbb][0xb0]}p[0xdc][0xb5]k2[0xad][0x7]![0x84][0x10]B[0x8]![0x84][0x10]B[0x12]g'[0xb6]w[0xd6][0xf9][0xbe][0x91]i=[0x8]I[0x5][0x9b][0xb0]}[0xb0][0xf7][0xe2]/dZ[0x8f][0xc1][0xce]nlu[0xdb][0xf].[0xd3]z[0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]BH[0xa2][0xec][0xc0][0xb6]u[0xcf][0x82][0xf7]3[0xad]G_Y[0x8f][0xed][0xd2][0x97]~[0xe9][0xca][0xb4][0x1e]$3l[0xc6]6[0xeb]_o[0x18][ gCfX[0x1d]B[0x8]![0x84][0x10]B[0xc8][0xc7][0x80]VlW[0xfd]y[0xdb][0xb9][0x99][0xd6][0x83][0x10]B[0x8]![0x84][0x10]B[0x8]9[0x94][0xd9][0x83][0xed][0x83][0xa7][0x8f][0xad][0xc8][0xb4][0x1e][0x84][0x90][0xc1]K}[0x8b][0xd7][0xd7][0xe0]X[0x11][0x88][0xf8][0xbc]~[0x87];[0xd0][0x1c][0xf4][0xfa]<[0xf3]bG[0x86][0xbb][0xc9][0x13].][0xbe][0xb2][0xd9]![<[0x8d][0xcf][0x8][0x87]K[0x97]]X[0xea]7[0x9a]=[0xa5][0x91]@i8[0xd0][0x12]r{[0xca]"F}[0xd9][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xcf][0xea]p$[0xe4]1[0x9a][0xf7][0xaf]Cw[0xea][0xba][0xab][0xb2][0xd2][0xae]G[0xe9]"[0x9d][0xe6][0xbe][0xb3][0xa2]J/[0xaf][0xd0][0xab][0x9d][0xd5][0x15]v[0xbd]Bw[0xba][0x9c][0xca][0xae][0xa7][0xa3][0x1]Z[0xc2][0x11]#[0xa4][0xf4]~[0xd7][0xd5][0xd5][0xb8][0x14][0xa8][0x96][0xe]&[0x6]B[0x8d]eFP[0xba][0xba][0xcc]h6"[0x9e][0x90][0x11]n[0x91][0xbd]2[0xb7][0xcf][[0xd6]lx[0xfd]e[0xd3][0x9a][0x8d][0x19][0xf3][0xe7]L[0xb]5[0x86]][0xc9]$.[0x9b][0x1]o2[0xfc][0xde][0x80][0xbf][0xba][0xc7]l[0xee][0x80]?[0x82][0x9c][0x9e][0x10]2[0xc4][0xf6]j[\r][0x83][0xcf][0x13][0xea][0xb9][0xba]}[0xf9]f[0x6][0xdc]+<[0xa1]9[0xcd]F[0xa3]g6[0xdc][0xb7][0xa6][0x8f][0xd5][0x95][0xb9][\r][0x9f][0xaf][0xde]p[0xaf][0x98][0xdb][0xd7][0x2][0xa6][0xcb]`2[0xf5][0x98][0x11]+*[0xd3][0xdd]K[0x8]![0x84][0x10]B[0x8]![0x84][0x98]$}[0xff][0xc7][0xeb][0xc7][0xe7]a[0xbf][0xe1][0xeb][0xf1][0xfe]O[0x99][0xcf][0xe3][0xdf]WG[0xcf][0xf7][0xcc][@][0xee][0xff]8[0xf5]J[0xde]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "2000[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xff]I#[0xd9]GfZ[0x3][0x92][0x19][0x92][0x1e][0xff]A[0xc3][0xbd][0xc2]h[0xf4][0x94][0x6][0x8d]P$,[0xa3]~[0x89][0xb7][0xb7]:z[0x1c][0xff]N[0xbd][0xf3][0xfd]_[0x97][0xd3]Ue[0xd7][0xcb]+][0x95][0x15][0x1c][0xff]i[0xc1][0xa2][0xb2]2[0xad][0x2]![0x84][0x10]B[0x8]![0xfd][0xa5][0x15][0xdb][0xc4][[0xc7][0xd6]eZ[0xf]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x90]O:m[0xd8]>8[0xee][0xda]5[0x99][0xd6][0x83][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x90][0xbe]P[0xdf][0xe2][0xf5]58V[0x4]">[0xaf][0xdf][0xe1][0xe]4[0x7][0xbd]>[0xcf][0xbc][0xd8][0x91][0xe1]n[0xf2][0x84]K[0x97][0xaf]lv[0xc8][0x16]K[0xe3][0xf5]G[0xf3][0x8f][0xf6][0xf6]k[0xb4][0xa8]^/[0xc4][0xa4][0xcd][0xa2][0xd4][0xab]oo[0xaf][0x85][0xdc][0xb9][0xab][0xbd][0xfd][0xab][0x96][0xe8][0xf9]_C[0xce][0xd9][0xdb][0xde][0x9e][0x9f][0xa5][0xd4][0xf3][0xef]#V[0xf4][0xfc]Wbr;[0xe4][0x5][0x8f][0xda]G[0x8]![0x84][0x10]B[0x8]![0x84][0x1c][0xaa][0xa4][0xf2][0xfe]O[0xd9]J[0xc3][0xd7][0xe2][0x9][0x97][0x19][0x91][0xfd][0xeb][0xe8][0xe5][0xfe]O[0x85][0xab][0xa2]j[0xff][0xfb]?[0x15][0xba][0xb3][0xba][0x9a][0xf7][0xd2][0x81]C[0xd5]z[0x8c][0x6]O[0xc8][0xbe][0xd0][0xe3][0xe][0x84][0x1a][0xec][0xb3][0x3]!{[0x9d]'[0x14][0xf6][0x86]#[0x1e][0xa4][0xd6][0x8]7-0[0x82][0x8b][0xa4]_[0xcf][0x8c][0x4]BF[0xa3][0xe7]B[0x15]t[0x9c][0x1d]F[\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "Gc[0xcb][0xea][0xb2][0xa0][0xc7][0xe7]it4xV[0xc2]/[0xdc]-[0xf5][0x6][0xd2][0x94][0x1a][0xcd][0x6]\[0xc4][0x8][0xb7]8[0xb0]W[0xea][0xf6]y[0x1d][0xe1][0x90][0xdb][0xd1]l[0xc0]yb>[0x14][0x8]5:[0x8c][0xa0][0xb8][0x97]c[0xbf][0xc4][0xe]Il&[0x9c][0xd6]l[0xcc][0xf0]y[0x17]`[0xb7]lE[0x84]U[0xb2]JV9[0xf8][0xaa][0xbc]X]4[0xb0]U[0xba][0x3][0xfe][0x8][0xd2]zB[0x8e][0x19][0xf1][0xbd]Z[0xc3][0xdf][0xe0][0xf3][0x84]>[0xe1][0xb5]_[0xa4][0xd6][0xa4][0xab][0xf6][0x99][0x1][0xf7][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "OhN3B[0xff]l[0xac][\r]2][0xf9]'[0xb9][0xd7]Y;kg[0xed][0xac][0x9d][0xb5][0xb3]v[0xd6][0xce][0xda]Y[0xfb][0xa1]Q[0xfb]'[0xe3][0xd3]"[0xab]d[0x95][0xbc][0xd9][0xc0][0xda]Y{[0xc2][0xb5][0xa7][0xe1][0xfe][0xd2][0xcf][0xc2]-AO([0xb2]:[0xe8][0x9][0xf7][0xf4][0xca][0xef]~$[0xff][0xfe]o[0xa5]^[0xa1][0xf3][0xf9]O:[0x90][0xf7][0xb3]T[0x97]wvc[0xef][0xff][0xae]S[0xfb][0xbf][0xff]k[0x89]][0xce]Q[0x7][0xbe][0xff]+[0xd7][0xc6][0xc4][0xf6][0x93]}[0xff]W[0xca][0x9f][0x6]9[0xb2][0x9d][0xef][0xe1][0x12]B[0x8]![0x84][0x10]B[0x8]![0x3]A[0xd2][0xf7][0xdc][0x1]8b[0xf8]#[0xe6][0xed][0x9f]%[0xde]2[0x9f][0xc7][0xdf][[0x1d]=[0xdf][0xff]1o[0x1][0x99][0xf7][0xca]+t[0x97][0xd3]U%[0xf7][0xaa][0x9d][0xe5][0xbc][0xff][0x93]>Z3[0xad][0x0][0xc9][0x10][0xfd][0x1d][0xff][0x89][0xd4][0xd1][0xe3][0xf8]w[0xea][0x1d][0xf7];[0x8d][0x1c]r[0xfc][0xa7][0x5]MeeZ[0x5]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B>[0xe9][0xb4]b[0xbb][0xea][0xcf][0xdb][0xce][0xcd][0xb4][0x1e][0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84]|[0x92][0xa9]o[0xf1][0xfa][0x1a][0x1c]+[0x2][0x11][0x9f][0xd7][0xef]p[0x7][0x9a][0x83]^[0x9f]g^[0xec][0xc8]p7y[0xc2][0xa5][0xcb]W6;d[0x8b][0xa5][0x9][0x7]ZBnOi$P[0xea][0xf6][0x19][0xe1][0xb0]'\[0x16]1[0xea][0xcb]V[0x1a][0xbe][0x16][0xec][0x1a][0x91][0x83][0xd5][0xa1];u[0xdd]UYi[0xd7][0xa3]t[0x95][0xae][0xca][0xaa]*[0xbb][0xb3][0xa2]J[0xaf][0xd2][0xcb][0xcb]]:[0xd2][0x95]W;[0xf5]Je[0xd7][0xd3][0xd1][0x0]-[0xe1][0x88][0x11]Rz[0xbf][0xeb][0xea]j\[\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "TK[0x7][0xe]U[0xeb]1[0x1a][0xe4][0x8f][0x18]^[0xbf]'[0xe4][0x98][0x19]p[0xaf][0xf0][0x84][0xe6]4#[0xd3]lx[0xd5][0xa4][0xbe]e[0x9b][0x17]),[0x8b][0xba][0xde][0x92][0xe6]@C[0x8b][0xcf][0xf3][0xab],U[0x9d]`Q3[0xe2]{[0xb5][0x86][0xbf][0xc1][0x7][0xd1][0xc7]|[0x13][0xc]w[0xc4][0x1b][0xf0][0xc7][0x8e][0xc2][0x13][0x9c][0xd3][0xfb]Z[0x90][0xdb][0xf0][0xf9][0xea][\r][0xf7][0x8a][0x9][0xce].V[0xfd]1WM[0xec][0xb1][0xd0]f[0x94][0xe3][0x98][0xd6]l[0xcc][0x98]?gZ[0xa8]1[0xdc]s'tI[0x7][0xd3][0xe9][0x12]L[0xcd]0:[0x83][0xd6][0xf5][0xc3][0xba][0xdf][0xe5]p[0xa9]4h[0x96]J[0x9f]([0xcf][0xcb][0xf4][0x87][0xb5][0x1] [0xe9][0xcf][0xff]h[0xd5][0x15]h[0xea]R[0xb8]R[0xc4][0xfc][0xec][0xbf][0xc4][[0xe6][0xf3][0xf8]{[0xaa][0xa3][0x97][0xcf][0xff]:[0xae][0x9b][0x9f][0xff][0xcb]+t[0x97][0xd3]U[0x85][0xcf][0xff]U[0x95][0xe5]:?[0xff][0xa7][0x8f][0xd6]L+@2D[0xd2][0xe3][0xdf][0xbc][0xeb]W[0xba][0xec][0xc2]R[0xbf][0xd1]l[0xde][0x6][0x8c][0xde][0x10][0xec][0xe9].`/[0xe3][0xbf][0xb2][0xaa][0xc2][0xb5][0xff][0xfd][0xbf][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "][0xaf][0xe6][0xfd][0xbf][0xb4][0x90][0xf4][0xfd][0xbf][0xb]U[0xd0]qv[0x18])[0x1c][0x8d]-[0xab][0xcb][0x82][0x1e][0x9f][0xa7][0xd1][0xd1][0xe0]Y[0xe9][0xf0][0xfa][0xdd]-[0xf5][0x6][0xd2][0x94][0xee]7[0xe3][0x96][0xca][0x8c][0x1b][0xe][0xb9][0xa3][0xb][0x8a][0x98][0xf]%[0xb3][0xf2]([[0x11][0xc9]@[0x95][0x17][0xab][0x8b][0x6][0xb6][0xca][0xee][0x17]![0xa8][0xfd]"[0xb5]&][0xb5]w[0xb9][0xdb][0x9a]q[0xd3]Y;kg[0xed][0x9f][0x9c][0xda]9[0x9d][0x1c][0xea]=[0xfc]I[0xae]=[0xd3][0xab][0xbb][0xde]I[0xcd][0xf3][0xff]%[0xde][0x9e][0xea][0xe8]q[0xfd][0xef][0x8c][0xee]w[0xfd][0xfc][0xcf][0xf5][0x9a][0xc8][0xc2][0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0xc8] [0xa1][0x15][0xdb][0x83][0x97][0x9d][0xfd][0xb9]L[0xeb]A[0x8]![0xc9][0xd2][0x86]m[0xe9][0xf][0xde][0x9d][0x94]i=[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]Bzc[0x1d][0xb6][0xa3][0x8a][0xbf][0xb7]:[0xd3]z[0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]2[0x18][0xa9]o[0xf1][0xfa][0x1a][0x1c]+[0x2][0x11][0x9f][0xd7][0xef]p[0x7][0x9a][0x83]^[0x9f]g^[0xec][0xc8]p7y[0xc2][0xa5][0xcb]W6;d[0x8b][0xa5][0x9][0xb7][0xd4]GV[0x7]=[0xe1][0xb2][0x88]Q_[0xe6][0xf3][0xf8][0x13][0xa8]Cw[0xea][0xba][0xab][0xb2][0xd2][0xae]G[0xe9]*u\[0xb7];+[0xaa][0xf4][0xf2][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xbd]Z[0xaf]r[0xd9][0xf5][0xf2][0xca][0xf2][0xca]Je[0xd7][0x7][0xdc]z[0xd0][0x12][0x8e][0x18]![0xa5][0xf7][0xbb][0xae][0xae][0xc6][0xa5]@[0xb5]4[0xd2][0x96]i[0x5]HfHz[0xfc][0xbb][0x3]~[0x8c][0x18][0xc4][0xc][0x0][0x89][0xd5][0xd1][0xf3][0xf8]w[0x9a][0xfb]2[0xfe][0x11][0x1][0xca][0x9d][0x92][0xae][0xbc][0xc2]U[0xae]s[0xfc][0xa7][0x83][0xdb][0xe7][0xff][0xa8]P[0x83][0xd4]:[0x9f][0xb4]E[0x85][0x4][0x85]Vl[0xed]@uJc[0x89][0xed]w[0xce]#[0xfb]Gt[0xda]O[0x86]o[0xc6][0xca]'[0x84][0x10]B[0x8]![0x84][0x10]B[0xc8][0xc0][0xd0][0xbf][0xfb][0xbf]+[\r]_[0xb]v[0x8d]H[0x8f]u[0xf4]r[0xff][0xd7][0xa9][0xbb]\[0x1d][0xf7]\[0xba][0xdc][0xff][0xa9][0xaa][0xd4]y[0xff]'-8T[0xad][0xc7]h[0xf0][0x84][0xec][0xb]=[0xee]@[0xa8][0xc1]>;[0x10][0xb2][0xd7]yBao8[0xe2][0xf1]Gj[0x8d]p[0xd3][0x2]#[0xb8]H[0xba][0xf9][0xcc]H d4z[0xa6][0xa9][0x9a]@[0xa8][0xb1][0xcc][0x8][0x8a]w[0x94][0x19][0xcd]F[0xc4][0x13]2[0xc2]-[0xb2]W[0xe6][0xf6]y[0xcb][0xdc][0x1][0xc4][0xf0][0xfa]=[0xa1][0xb2][0x19][0xf1][0xbd]Z[0xc3][0xdf][0xe0][0xc3][0x9][0xb7][0xe1][0xf3][0xd5][0x1b][0xee][0x15][0xf3]f[0xcc][0xed]k[0x11][0xd3][0xc5]][0xe7]4C[0x8f][0x19][0xb1][0xc2][0xae][0xed][0xbf]>)[0xd4]f[0x9e]Jea[0xb][0x6]ka[0x99][0xf6]Z[0x92]*[0x92][0x8e][0xff]^?[0x1c][0xc7]o[0xf8]J[0xfd]F[0xb3][0xa7]4[0x12]([\r][0x7]ZBn[0x8f]L[0x7]K[0xbc][0x7] [0x98][0xc4][0xf3]?[0x97][0xd3]U[0x85][0xf8]_]Q[0xe9]b[0xfc]O[0x1f][0xad][0x99]V[0x80]d[0x88][0xfe]=[0xff]K[0xec][0x5][0x80][0xe4][0xc7]e[0xa5]^[0xce][0xf1][0x9f]F[0xf8][0xfc][0xff][0x13]J[0xbf]>[0xff]%XG2[0xcf][0xff][0xa3][0x9f][0xff]0[0xfd]Wp[0xfc][0xa7][0x3]y[0xfe][0x1f][0x9e]/\+[0xff][0xf4][0xf2][0xfc][0x88]:[0xf8][0xf3][0xbd][0xd3]~2[0x8c][0xfa][0x88][0xcf][0xff][0x9]![0x84][0x10]B[0x8]![0x84][0x90][0x81]$[0xe9][0xfb]?A[0xc3][0xbd][0xc2]h[0xf4][0x94][0x6][0x8d]P$[0xc1][0x97][0x0]z[0xbd][0xff][][0xde][0xe5][0xfb][0x1f][0xae][0xf2][0x8a]j[0xde][0xff]I[0x7]I?[0xff][0xd7][0x94][0x16][0xfd]?[0xd3][0x9a][0x93]T[0xd0][0xbf][0xf7]VxV[0x87]#![0x8f][0xd1][0xdc]c[0x1d][0x89][0xde][0xff][0xdd][0xf7][0xfd][0xcf][0xaa][0xca]j>[0xff]I[0xb]S[0xd0][0xe7]e[0x8d][0xde]HSK}YC[0xc0][0xbd][0xc2][0x13]Zn[0xac]4[0xca][0x10][0xb]<[0xf8][0xa7][0xb9][0xd9][0xf0]7tz[0xff]c[0xa1]'[0xdc][0xe2][0x8b][0xf0]-[0x10]B[0x8]![0x84][0x10]B[0x8]![0xe4][0xe3]E[0xf2][0xf7]C[0x81]H [0x89][0x97][0xff]T_[0xde][0xff]+[0xaf][0xae][0xe2][0xf7][0xbf][0xd2][0x82][0xbc][0xff]W[0xc][0x99][0xdb][0xf9]d[0xec][0xfd][0xbf][0xad]j[0xff][0xf7][0xff][0x86][0xc5].[0x9f][0xa4][0xe]|[0xff]O[0xae][0x9d][0x1d][0xdb]O[0xf6][0xd6][0xf0][0xf9][0xbf]lo/[0x85]\[0xbd][0xad][0xbd][0xbd][0x1][0xf2][0xf7]/[0xb4][0xb7][0xdf][0x0]y[0xdf][0xd3][0xed][0xed][0xcf]A[0xfe][0xe8][0xbd][0xf6]v[0xb][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "}[0xf5][0xdf][0xed][0xed]S ?[0xfb][0xd3][0xf6][0xf6][0xb9]ZT[0xaf]/A[0xb6]>[0xc9][0xf7][0x7][0x9]![0x84][0x10]B[0x8]![0x84][0x90][0x9e][0xe8][0xfb][0xfd][0x9f][0x4][0xfc]]%[0xf7][0xfb][0xef][0xce][0xea][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xf9][0xfe]gU[0x85][0x93][0xf7][0xd2][0xc8][0xd6]L+@2C[\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xde][0xff][0xed][0xf5]%[0xc0]$[0xde][0xff][0x8b][0xfd][0xfe][0x83][0xab][0xa2][0x82][0xbf][0xff][0x92][0x16][0xca][0x2][0xa1]FG[0xf4]G[0xa1][0x1c][0x1d]?[\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "%{[0xe][0xb7][0xcf][0xeb]h6[0xd0][0xe3][0xd3][0x9a][0x8d][0x19]>[0xef][0x2][0xec][0xce][0x8b]L[0xea]1y[0xc7]oH9f[0x9a][0xaf][0x12][0x9a][0xef][0xc][0xce][0x16][0x8f][0xea][0xf9][0x7][0xe2][0x8]![0x84][0x10]B[0x8]![0x84][0x10]2[0xa0]$[0xff][0xfb][0x9f]>#[0x1c].]v[0xe1]A~[0xff][0xb7][0xbb]:[0x92][0xff][0xcf][0xe5][0xac][0xe2][0xf7]?[0xd3][0x82][0xbc][0xff]W[0xa8][0xa2][0xbf][0xe9][0xd7]A[0xec][0xfd][0xbf]Mj[0xff][0xf7][0xff]rb[0x97][0x8f]U[0x7][0xbe][0xff]'[0xd7][0xce][0x8f][0xed]'[0xfb][0xfe][0xdf][0x17][0xde][0x8f][0xbe][0xff]W[0xf0]~[0xf4][0xfd][0xbf][0xaf][0xfd][0xb7][0xbd][0xfd][0xe][0xc8][0xe5][0x1f][0xb5][0xb7][0xff]*V[0xff]H[0x14]z[0xf4][0xf9][0x9e][0x1f]![0x84][0x10]B[0x8]![0x84][0x10][0xd2][0x17]R[0xf9][0xfe]Owo[0x4][0xf6][0xe1][0xef]?9[0x9d][0xfc][0xfb][0xf][0xe9][0xa4])[0xd3][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x90][0xcc][0xd0][0x8f][0xf7][0x13][0xfb][0xf1]?[0x95][0xdc][0xef][0xff]E[0xdf][0xff][0xad][0xac][0xae][0xe2][0xef][0xa6][0x85][0x89][0x89][0xbd][0xff]7[0xce][0xb4]Pc[0xd8][0x95]L[0xe2][0x9]3[0xe0]M[0x86][0xdf][0x1b][0xf0]'[0xf9][0x8e]au[0x82][0xef][0x18]v[0xfd];[0x95]=k[0xd7][0xed][0xbb][0x89]}~[0xa5][0xb1][0xb0],:$[0x96]4[0x7][0x1a]Z|[0x9e][0x9a]>[0xaa]=[0xa1][0xf3][0x9f]![0xed]S[0x1][0xfc][0xfb][0x9c][0x84][0x10]B[0x8]![0x84][0x10]Bz[0xa3][0x9f][0xff][0xbb][0xd7]{[0xbf]B[0xf2][0xf7]][0x95]z[0x15][0xef][0xff][0xa4][0x91][0xd2]L+@2C[0x1f][0xfe][0xfe]K[0xd0][0x13][0xea][0xf8][0xb]0K[0xbc][0x9][0xfc][0xc]D2[0xbf][0xff][0x10][0xfb][0xfb]/[0xce]r[0xfe][0xfe]C[0x1a]i[0xcd][0xb4][0x2]$C[0xf4]s[0xfc][0xf7][0xfe][0xc7][0xdf]T[0xef][0xe3][0xbf][0xb2][0xca][0xd9][0xe5][0xfd][0xff][0xaa][0xea]J[0xbe][0xff][0x9f][0x16][0x92][0xfe][0xfb]oS[0xfb][0xf5]'[0xa3]>[0xbe][0xb9]3[0xdd]Q[0x3]D[0xc7]"[0x1f][0x0][0x92][0xff][0xfd]'[0x97][0xcb]Y[0xc9][0xf1][0x9f]F[0xae][0xcd][0xb4][0x2]$3[0xa4][0xf2][0xfb]K[0xbc][0x7][0xaf][0xa3][0xc7][0xf1][0xef][0x8c][0xee]w[0x19][0xff][0x95].[0xfe][0xfe]Sz[0xc8]QY[0x99]V[0x81][0x10]B[0x8]![0x7]g=[0xb6]Q[0xde][0x1f]_[0x94]i=[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x90][0x8f]#[0xeb][0xb0]]s[0xd3]m[0x1f]fZ[0xf]B[0x8]![0x84][0x10]Bz[0xa2][\r][0xdb]/.9[0xe6][0xf3][0x99][0xd6][0x83][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x83][0x8f][\r][0xd8]N([0x1e]{k[0xa6][0xf5][0xc8]4[0xad][0xd8][0xae][0xfe][0xe8]?[0xd5][0x99][0xd6][0x83][0x10]B[0x8]![0x84][0x1c][0xda]l[0xc4][0xf6][0xde]M[0xbf]=>[0xd3]z[0x90][0xc1]A}[0x8b][0xd7][0xd7][0xe0]X[0x11][0x88][0xf8][0xbc]~[0x87];[0xd0][0x1c][0xf4][0xfa]<[0xf3]bG[0x86][0xbb][0xc9][0x13].][0xbe][0xb2][0xd9]![,M0[0x14][0x88][0x4][0xca]"F[0xfd][0x12]o[0x99][0xcf][0xe3]O[0xa4][0xe][0xdd][0xa9][0xeb][0xae][0xca]J[0xbb][0x1e][0xa5][0xab][0xd4]q[0xdd][0xee][0xac][0xa8][0xd2][0xcb]+t[0x97][0xd3]Ue[0xd7][0xcb]+[0xf5]J[0xa7][0xb2][0xeb][0x3]m[0xbc][0xd0][0x12][0x8e][0x18]![0xa5][0xf7][0xbb][0xae][0xae][0xc6][0xa5]@[0xb5][0xf4][0xd1][0x9a]i[0x5]H[0x86][0xe8][0xfb][0xf8]/[i[0xf8]Z<[0xe1]2#[0xd2][[0x1d]=[0x8f][0xff][0x8a][0xea]JW[0x85]9[0xfe][0x11][0x1][0xca]]z[0xa5][0x8c]Wu5[0xc7]:p[0xa8]Z[0x8f][0xd1][0xe0][0x9][0xd9][0x17]z[0xdc][0x81]P[0x83]}v d[0xaf][0xf3][0x84][0xc2][0xde]p[0xc4][0xe3][0x8f][0xd4][0x1a][0xe1][0xa6][0x5]Fp[0x91][0xf4][0xf4][0x99][0x91]@[0xc8]h[0xf4][0xfc]6[0xcf][0xcc][0xf7][0xcb][0xf1]y[0x96]bK[0x9e][0xc5][0xa6][0xf2]Tt/W[0x8e][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "![0xb1][0xd9][0xf2]![0x87][0x14]+[0xfb][0xe8]r[0x8b][0xae]M[0xd6]FO[0x1f]^[0x94]c[0xb3][0x8c][0xb1][0xe8]Yw[0xe7]Xl[0xd9][0xb][0x8f][0xb4][\r][0xc1]A[0xce][0xa4][0xd9][0x8b][0xd7]^i[0xb9];[0xa7] /;w[0x98]-oLv[0xee]P[..[0xe6]w[0xbd]8[0xdc][0xbc]X`^,[0xec]z[0xd1]f^[0xb4][0x9a][0x17]Gt[0xbd]x[0x98]y[0xb1][0xc8][0xbc]8[0x12][0x17][0xf][0xef]|[0xb1][0xd8][0xbc]8[0xca]v[0xc4][0xc6][0x9c]10[0xea]HU6?[0x10]jt[0x18]Aq}[0x87][0xd1]lD> "{B[0xea][0xb8][0xf9][0x18]=[0x8e]U[0x1e][0xa0][0x19][0x99][0xbd]~[0xc3]a[0x84][0x1a][0xa3][0xd7][0x1c]H[g[0xee]MQ%%[0x9][0xa5];a[0x91][0xca]Gc[0xfb]#[0xd3][0xdc][0x11]o@f[0xd9][0xc2]FOdZ[0xa7]3#KN[0x98][0xbf][0xdc]Xi8|[0x86][0xbf][0xd1]qf$[0xe4][0xf5]7NQ#;e[0x9a][0xd0][0xe0][0xf1]y[0x1a]a[0x2][0xac]J[0xa0][0xce][0x9]3c[0xc9][0xa7][0xa8]a[0xf5]F[0xd8][0xe3]mFY[0xaa][0x0][0xd5]N[0xef]8*[0xea][0xb8][0xb0][0xaf][0xf0]\[0x94][0xdd]l[0xf8][0x1b][0xc2]*[0x1f]ig[0xc4][0xf]F[0xc4]O[0xef]K[0x99][0x7][0xd5]B[0xab][0x83][0x1][0xaf]?[0xa2][0x86]#[0xed][0xac]}[0x87][0x87][0xed][0xbb][0xb4]/[0xbd][0xb6][0x12]vg#[0xe1]"[0x95]Ur[0xc2]9*o[0xe5][0xbe]k[0xc3]PQ[0xd0][0xf0]KK[0xc]E[0xef][0x94][0xa2]w[0xee]0[0x1d]sRQ[0x87]cF]27O[0xe5][0xae][0xcd]*V[0xe2][0x89][0xd3][0x87][0xe6]Z[0xc4][0x1]-[0xb][0xb]mYp[0x86][0xec][0xc5]k[0xcf][0xc2]q[0x9e][0xda][0x98]3D[0xfa]RMJ[0xaa][0xff]'t(![0x9e][0x0][0x1d][0x17][0xa9][0xe1][0xb]g[0x9d]q[0xf6][0x9c][0x85][0xb3]f.[0x99][0xb6][0xf0][0xd4]3q6[0xae][0xdd]_[0x87]*[\r][0x87][0xcf][0x94][0xcb]x[0xb1]M[0x88][0x8e][0x15]Q4[0xbe][0x99][0xca][0x8a][0xcc][0x86][0x1c][0x11];[0x96]qd[0x19]c[0xb3][\r][0x83][0xb2][0xb9][0xe5]9[0xb6][0xa1][0xa2]t[0xad][0x9c][0xc9][0xeb]rf[0xb4]9hr[0xcb][0xb]l[0x5]cr[0x8b][0xb2][0x8b],[0xba]E[0x1f].[0xb6][0x16][0x8e]9[0xd2]f[0xc5]%[0xdb][0xfe][0x97]j[0xcd][0x86][0x18]1[0xbe][0xca][0xa6][0xc6][0x9c][0x10]=Ytt[0xd1]QE[0x87][0x15][0x8d][0xd0][0xb3]1:r[0x87][0x14][0xe5][0xe6][0xe6][0x14]e[0xe7][0xe6][0x96][0xc]5/[0xe7][0xea]Y[0xba][0xb6][0xf8][0xf2][0xec]X{[0x15][0xc1][0x98][0xc3][0xd4][0x8][0xc3]t[0xb5][0xb3][0x2]3[0x2][0xfe][0x8][0x1a][0x7][0x3]A8r~l[0xb6][0x8]y[0x96][0xf9]<[0xee][0x88]c[0xde][0xec][0x16][0xbf][0x99][0xd2]9%[0xe9]16*^[0x18][0xfc][0xd4]h[0xf6] [0xf9]i[0x10]ST[0xb6][0x1f]B[0xe5][0x99]~[0xdc] IQ[0xb1][0xcd][0x9c][0xcf]f[0x6][0xdc]+<[0xa1]9[0xa6][0xcb][0x8e]t[0x87]<[0xa8][0xa2]C[0xbf][0xe8][0xd9]l[0xa9]Ee[0x1b][0xd1]\[0xa3]J[0xce]=p,[0xa1]3m[0xe1][0xa6]@[0x8b][0xaf][0xa1][0xe][0xc7][0x91][0xb3][0xc3][0x92][0xaf][0xbb][0xb4][0xe7]t[0xf4][0xf3]n[0xab]4[0x80]6if[0xe7][0xf8]h[0xc6][0xc5][0xec]h[0xbf][0xef][0xd7][0xe7]Y][0xe4][0x10]S[0xc6]#jv[0xcc]k[0xf7][0xf][0x9e]s[0x8b]lG[0x8c][0xc9].[0xd6][0xf4],t[0xff]p[0x9c][0xce][0xab][0xb5][0xcc][0xcd][0xb5][0x15]co[0xb4][0xb9]7[0x6]{Gbo[0x8c]m[0xac]\E[0xaa][0xa3][0xe4]Ly[0xae]m[0x9c][0x99][0xf][0xa9][0x16][0x8e][0x88][0x17][0x88][0xe1][0x81][0x10]8[0xc4][0x96][0xb3][0xb0][0x1a][0xbe][0xf4]i[0xb3][0xab][0xb3][0x8a][0x8e][0x81]/[0x88]'[0xe4][0x89]'[0xe4][0xc3][0x13][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "LO[0x80]"Ef[0xcd][0xfa]0=7[0xee][0xb][0x18]K[0x12][0x92][0xad][0x9d][0x8e]mRv[0xa7][0xe3][0x11][0xfb][0x1d][0x8f][0xb6][0x15][0x8d][0xc9][0xb3][0x8f]/[0x2]\o[0xae]\[0xd0][0xd0])1[0xe2][0xaa][0xe1][0xf3][0xd5][0x1b][0xee][0x15][0xea][0xe4]n[0xca][0xc7][0x84][0xed]q[0xc4][0xc2][0xac]c[0xba]8[0xbe][0xe9][0xdc][0xb]=[0xe1][0x16]_dF,[0xf7][0x14][0x95][0x17][0xcd]R[0x1b][0x8]GTat[0xa1][0xa7][0x11][0x13]|h[0xb5][0xca][0xf1][0x5][0x1a][0x1b]1h[0x8b][0xcc][0x6][0xf][0xfb][0x96]U.w[0xcc]7OMQGDu-[0xc3][0xe2][0xaf][0xac][0xce]gD[0x96][0x5]B[0xcd]g[0xad][0xe]z[0xcc][0xf6][0x8b]&2[0xdb][0xef][0xc0][0x9c][0x7][0x8e][0xc2][0xd1][0x9d][0xce][0x9c][0xe9][0x9][0xad][0xf4][0x84]f[0xad][0xf2][0xb8][[0xb0][0xa4]@[0xc8]=[0xb8]u[0xcb][0x8d]U[0xa1][0xb0]c.[0xda][0xdf][0xb3]:[0xd6][0x8a][0xcd][\r][0x92]k6z'[0x10]Z[\r][0x5][0x1b]<[0xcb][0xc]1[0xb5][0x8b][0x13](WO[\r]63[0x9a][0xa9]s[0xc7][0xa0][0x80]e^[0xf4][0xbb][0x15][0x86]u>[0xaf]r[0xdc][0xe6][0x15]5[0xb2][0xe1] [\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "t[0xc][0xf9]W[0xf3][0xcd]!TI[0x97][0x99]G[0x6][0xfd]P[0xc8]c s[0xa3][0xc1][0xdd][0xc][0xec]Cc[0xc3]z[0x88]9[0x15][0xcd]=:[0xba].)/[0x82][0xcc]+[0xca][0xc9][0xd5]0[0x2][0xb3][0xf5]Q[0xe3]-[0x12][0x87]-[0xb6]#bc[0x1b]A~[0xae][0xcd]6[0xda]L[0x9a][0x9b]k1Gy62[0x8f][0x88]e>[0xf2][0xe0][0x99][0xb][0xcd] px|[0xa6]X82>[0xf1][0xcd][0xec]<[0xf6][0xc7]D[0xaf].^[xwN[0xa1]y6[0xd7][0x96]3[0xde]\[0x94]-[0xb4]cf[0x89]N[0x1b][0xd9]zA[0xa7][0x14][0xc3]m[0x85][0xe3]e[0xd9]eC[0x8a][0x11][0x7]MQd[0xa6]8[0xcc]f[0xdb][0x98]s[0x14]Zh\o[0xd3][0xeb][0xbe]q[0xdd][0xc9]wf[0xe3][0x13]I[0xc7][0xf4]j[0x9b]y[0xfa][0x8c]y[0xb3][0x16].[0x99]=g[0xfe][0xac]%[0xa7]M[0Kf![0xe9][0xb5][0xae][0xa7][0xf]>[0xb0][0xcd][0x85][0xcd][0x9c][0xfd][0x16]6[0xb1][0xa3]p[0xe7][0xa3]n[0xe2]FA|I3[0x1f][0x83][0x7][0x15][;[0xad]w[0xcc]SE[0xf1]J["^[0x9f]CN[0xc1][0xa7][0xc2]][0x12][0x1d]V[0xd2]5[\r][0x8a][0xee]ai4<[0xbc][0xdf][0xe1][0xbe][0xe5][0x96][0xea]a[0xe6]*[0x8a]}[0x94]3[0xed][0x89][0x9e]V[0xd6][0xe8]L[0xd8][0xd1][0xa8][0xf1]` [0xfb][0x12][0x86][0xd4][0xd0]X[0xd1]*{Y([0xd0][0xdc][0xe1][0xde][0xbf][0xc9]2W.SF[0xc5][0xe6][0xa5][0xd8][0xec]d[0x8b][0xce]aj[0xcc][0xd1]XA[0xc0][0x9d][0xcb][0x8f][0xc0][0x94]r[0x98][0xe9][0x5]Z[0xcc][0x17]d[0xbe][0xca][0x1d][0xb2]1'G[0xd6]A[0xf1]8dV[0xdd]wG[0xc8][0xf3][0xfa][0xbd]h9[0xef][0x1a]3j[0xc5][0xc2]i[0xa7]`[0xc]7[0x8b][0x9f][0x9d][0xb5][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x9f]a[0xc2]8[0x1d][0xbf],[0xd1]kJ[0x87]]W[0x9b]-[0xd8]*[0xae]%[0xc3]7[0xb6][\r][0xcf][0x9b][0x92]w<[0x94]+[0x8b]*W[0xd6][0xa1][0x9c][0xec][0x95]![Y[0x87]rE#[0xba]h7/[0x92][0xe7][0xcc];[0xa6][0xc7][0xcc][0xb2][0xee](*[0x90][0xe5][0x8d][0xcf][0xbb][0x0][0xfb][0xf3][0xcc]O[0xcf]\4p[0xd1][0xc0]E[0xc3]'j[0xd1][0xc0][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8][0xc3][0xe8]3[0xc0][0xd1][0xe7][0xd5]B3[0xfa][0x1c];5[0xa1][0xe8]3[0xe4][0xa0]QgH4[0xea]L[0xd6][0x8e]:0[0xf0][0x1c]~[0x90][0xc0]3[\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "{G[0xec][0x17][0x82][0xc6][0x98]!H[0x2][0xcf][0x91]r[0x6][0x81]g[0xac][0x99][0xef][0x88][0x1][0x9]<[0x9d][0x3][0x8d][0xb5]K[0xa0][0xb1]![0xd0][0x14][0x99][0x81]f[0x84]>"^[0xe7]a[0xb6][0x91][0x1b]s[0xc6][0xa1][0x9d][0x8e]f[0xa0][0x81][0x93]3>[0xc]P|[0xd8][0x17][0xc1];[0x1e]+g[0x9b][0xa1][0xe2][0xe4][0xe2][0x3][0xde][0x11][0x8a]=[0x87][0xcb][0xb5][0xec][0xff] [0xd9][0x16]}[0xb4][0x8b][0x91]d[0xbe]\W[0x8b][0x19]r([\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xc8]U[0xd3][0xfb][0xea][0xb8][0x13][0xdc][0x1d][0x13]C?[0xe7][0x15][0xf3][0xe9]mN[0xc0][0x9a]g[0x95][0xc4][0x9e]lo[0xc4][0xd3][0xac]*zp[0xd1][0xe6]@[0x83][0xc7][0x17]-[0x10]e[0x5][0x3][0xfe][0xb0]g[0xe][0xf2][0xc][0xca][0xc7]wo0[0x90]2[0x90]2[0x90][0xe][0x8e]@Z[0xb4]/[0x8][0xcd][0xe8][0x1a]R[0xdf]HYH[0x9d][0xdf][0xe7][0x90]z[0xa0]z[0xc][0xae]=[0x5][0xd7]?[0x99]oW[0xa9][0xb7][0xba][0xe1]|D[0xa7][0x17][0xce][0xc7]F[0x83][0xe8][0xd8][0xc1][0xf3][0xc2][0xf9]~[0x17]G[0x99][0x17][0xf]7/[0x1e][0x81][0x8b][0xc5][0x9d]/[0x1e]i^[0x1c]m[0x1b][0x13]][0x8a]o[0xa3][0xf][0xa2][0xb7][0xd1][0x87][0x99]5[0x99]/J[0x89][0x1a]s:[0x8e][0x8a]:.[0x1c][0xa2][0xaf][0xae]o[0x1f]b[0x8e][0xfe]+'[0x98][0xcb][0x9a]}K[0x96][0xac][0xe8][0xfb][0x8c][0xe6][0x18][0xec][0xfc][0xb2]z[0xf4]u[0xb0][0xd8][0xf0]3_V[0xcf][0xee]rf[0xb4]9[0x1a][0xb5][0xf2][0x2][N[0xec][0xc5][0xc1]\}[0xa8]X7l[0xcc][0x91][0xe6][0x9b][0xed][0xf9][0xfb]_[0x8a][0xbe][0xac]^[0xb0]1g[0xb8][0xf8][0xde]Af2[0xb5][0xdf]{[0xe0][0xc9][0x8e][0x9b]D[0xde][0x11]O[0xed][[0xe2][0xb3][0x99]+[0xc6][0xb][0xe][0xbc][0xf1]7[0xe4] +[0xc6]N[0xdf][0xc]8[0xc8][0xca]qh|[0xe5]8~[0xfa][0x11][0xf1][0xa0]W$o[0x88]f[0xc7][0xc3][0xdf][0x10][0xcc]c[0xb2]J[0xb4][0xa2][0xb]$[0x98][0xe5][0x9b][0xeb]Fy[0x95]t[0x8c][0xb9]'[0xeb][0xc5][0xb1][0xe6][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xf2]([0xb3][0xed]sl[0xe3][0xe4][0xc]V[0x90]G[0x9b]+HIUl[0xb3]w.[0x1][0xf2][0x98]hgv][[0xe6][0xd8][0x86].[0xac][0xb2][0xe5][0xc6][0xbe]T[0x90][0xd5][0xf1][0xa5][0x82]|Y[[0x16]@[0xb1][0xe1][0xe6][0xda][0xb2][0xd0][0xbc]l[0xd5][0xf3][0xf4]a[0x9][0xdf][0xb][0x1c][0x11]7)7[0xf6]z[0xe9]P,6[0xf][0xc3]b[0xf3]ps[0xb1]9R[0x1f][0x19][0xbf]d~[0xa5][0xe7]X4[0xf1][0x84]T-6;[\r][0xff]O[0x1d]d[0xdd][0xf9]1^[0x89][0xaa][0x1e][0xd7][0xa2][0xfb][0xc7]:[0xae]L[0xfb][0xb1]2-[0x8c][0x18][0x8d][0x9d][0x8d][0x1c]j[0xba][0xd4][0x9c][0x6].Y[0xf][0xb1]%+[0xa3];[0xa3];[0xa3];[0xa3];[0xa3][0xfb][0xa1][0x18][0xdd][0xf])[0xfa][0xf3][0xfb]/[0x89][0xd6][0xd1][0xe3][0xef]?8[0xa3][0xfb][0xb1][0xdf][0xa9]vVW[0xd8][0xb1]S[0xee][0xaa][0xe4][0xef]?[0xa4][0x85]a[0xe6][0x80]"[0x84][0x10]B[0x8]![0xe4]c[0xcd]:l[0x13]o[0x1d][[0x97]i=[0x8]![0x84][0x10]B[0x8]![0x99]g[0xb][0xb6][0xda]e[0x93][0x1e][0xed]-[0xdd]zle[0xde][0xed][0xcf][0xe][0xb8]B[0x1f][0x13][0xda][0xb0]Y[0x17][0xbe]J[0xa6][0xf5] [0x84][0x10]B[0x8]![0x84]|[0xfc][0x91][0xbf]O[0xf7][0xc1]q[0xd7][0xae][0xc9][0xb4][0x1e][0x84][0x10]B[0x8]![0x84][0x10]B[0x8]I[0x9c][\r][0xd8][0xde]Y[0xe7][0xfb]F[0xa6][0xf5] [0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84][0x10]B[0x8]![0x84]|r[0xd9][0x84][0xed][0xc3]_[0xbe][0xf8][0xdf]L[0xeb]A[0xc8]`[0xa0][0x15][0xdb]U[0xde]vn[0xa6][0xf5] [0x84][0x10]B[0x8]![0x84][0x10]B[0xe]e6c[0xfb][0xe0][0xe9]c+2[0xad][0x7]!d[0xf0]R[0xdf][0xe2][0xf5]58V[0x4]">[0xaf][0xdf][0xe1][0xe]4[0x7][0xbd]>[0xcf][0xbc][0xd8][0x91][0xe1]n[0xf2][0x84]K[0x97][0xaf]lv[0xc8][0x16]K[0x13]4[0xdc]+[0x8c]FOi[0xd0][0x8]E[0xc2]e[0x11][0xa3][0xbe][0xcc][0xe7][0xf1][0xf7]\[0x87][0xee][0xd4]uWe[0xa5]][0x8f][0xd2]U[0xea][0xb8]nwVT[0xe9][0xe5][0x15][0xba][0xcb][0xe9][0xaa][0xb2][0xeb][0xe5]UN[0xa7][0xae][0xec]z:[0x1a][0xa0]%[0x1c]1BJ[0xef]w]][0x8d]K[0x81]jid][0xa6][0x15] [0x99]![0xe9][0xf1][0x1f]n[0x9]zB[0x91][0xd5]AOt[0xf0][0xaf][0xf0][0xac][0xe]GB[0x1e][0xa3][0xb9][0x87]:z[0x1e][0xff]Ns?6[0xfe][0xab][0x9d][0xd5][0x15][0x18][0xff].[0xbd][0xa2][0x9a][0xe3]?[0x1d][0xd4][0x4]B[0x8d]eFP[0xba][0xba][0xcc]h6"[0x9e][0x90][0x11]n[0x91][0xbd]2[0xb7][0xcf][[0xe6][0xe][0xf8]#[0x86][0xd7][0xef][0x9][0x95][0xcd][0x88][0xef][0xd5][0x1a][0xfe][0x6][0x1f]N[0xb8][\r][0x9f][0xaf][0x1e]s[0xc1][0xdc][0xbe][0x16]0][0xb8][0xd0][0x98][0xd6]HV&(+[0xf2]\b[0x19][0x13][0xf]M[0xc3][0x81][0xb4][0xd4][0x92][0xab][0xe6][0xf0][0xb][0xb5][0xea]ceD[0xcf]@[0xc6][0xa4]/[0xce][0x1f]wUt[0xc5][0xfb]v[0xa1][0x18][0xaa]N-({[0xf2][0xb4]e[0xb3][0x84][0xe5][0xb1]R[0xd1][0xb5]K[0xf8][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x5]>7[0x9f][0x5][0x8][0x10] @[0x80][0x0][0x1][0x2][0x4][0x8][0x10] @[0xc0][0x9f]7ln[0xff]Ye[0xfd]}[0x94][0xfd]7s$[0xec][0xbf][0xbb][0x84][0xbf]~n[0x2][0x4]<[0xf]l[0xde][0xff]o[0x15]}JmII6q-[0xef][0xff][0xb9]L1[[0x8a][0xf8][0xff][0x96]r[0xb9]#[0xd1][0xff]w[0x1][0xf2]W[0x17]TQ[0xa9]E:thZ*93-[0xd2][0xa6][0x96][0xad][0xd9][0xe]5[0x9c][0xb][0xc5][0xbe][0xb9]T&[0x1f][0x90][0xc5]][0xc7][0xb4][0x94][0x11][0xfd][0xbf][0xfb][0xab][0xf9]`[0xe3][0xa9]+eC][0xb1]mj{[0xd2][0xc6][0x8c][0xa4][0x8f][0xb4][0x1e]3T[0xff][0xfa][0xd9][0xe9]x[0xef][0xb8][0x94]h[[0xa4][0xe4][0xb2][0xd6]+[0xa7][0xeb][0xcd]3/[0xa9][0xe4][0xbe][0xec][0x8f]Mu[0xaa][0xd3][0xff][0xf1]w[0xbe][0xfa]W[0xbb][0xaf][0xf6][0x82][0x5][0x9d][0xe1][0xfa][0xf][0xcf]O[0xc8]+e[0xe8]h[0xa6][0xc1][0xd9][0xaf][0xb2].e[0xff][0xee][0x5]P6Tt}[0xa0][0xc][0xbf]x4[0xed]NF[0xfe][0xcb][0xdf][0xff][0xea][0xa7]]5[0x80][0xbf][0xd3][0xd1][0xa8][0x97][0xad][0x91][0xed]Vug[\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> ""R[0xfa][0xab][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xc]`[0x8a][0x1][0x2][0xe1][0xd2][0xf1][0xcf]vN[0x87][0xbb][0xdf][0xe3][0xa9][0x85][0xf1]l[0xe5][0xbf][0xc2]'[0x9e][0xe4][0xed]La$[0x91][0xb1][0xf3]n[0x99]H[0xc8]D[0xb1]l[0xaa]2Y[0xe1]4[0xfd][0xfb][0xe7][0xa3]ihQH[0xe4]+[0xe]6[0xaa][0xbc][0x80][0xa6]rUj[0xcf][0xf4][0x9]{[0x91]4[0xe5]v[0xad]U[0xff][0xdf][0xde][0xcb][0x19]y[0xff][0xe6][0xf9][0x9]y[0xc5]0[0x86][0xe6]C[0x9e][0x94][0x88]Y[0xc1][0xcb][0x9c][0x15][0x88][0x99][0xa3][0x90][0x11]!#BF[0x84][0x8c][0x8][0x19][0x11]2"d[0xe4][0xb9]e[0xe4][0xbf][0xbd] [0x19][0xf9][0xb7][0xcf]O[0x88][0xcf][0x89][0x97].[0xb5][0xbb][0x93][0x90][0xff][0xf5][0x82]$[0xe4]%[0xac][0xb8][0xde]!F[0xb6][0xd6][0xaa][0x8]Y[0x11][0xb2]"d[0xe5][0x91][0xb2][0xf2][0xbf][0xff]R[0xd8][0xc7][0x85]}\[0xd8][0xc7][0xce][0xf6]q1[0xb2][0x88][0x91][0xe5][0xe5][0x8d],[0xcf][0xed][0xcd][0xf1]p[0xb0][0xa9][0xe3]h[0x6][0xc]L#KQ[0x9f][0xa8][0x2]+[0xfc][0xff][0xb2][0x85]B[0xce][0xf3][0xff][0xcb][0x97][0x8e][0xe0]y6W[0xca][0x89][0xf8][0x9f];[0x1][0xf9]7{[0xe4]7[0xa4][0xa1][\r][0xa9][0x1][0x8a][0x9f]8&qn()[0xb3][0xbe]G[0xba][0xe6][0xb5]s[0xa7]X[0x94][0x9c][0x99]SCU[0xb0]o[0x91][0xfd]r[0xf7][0xec][0x80][0xc0]Oj[0x11][0xd3][0xa0][0xc4][0xb4][0xc8][0xd8][0xb4](b[0xc1][0x8e]ii[0x83])[0xf4])[0xa2][0xbb][0x18][0x89]2[0xb2]([0x1d]S[0xc3][0xb1]%B[0xba][0x94]2[0xf4][0xcd]V[0xaf]^[0xa9][0x91]kM[0xa7]D[0xd5]l7[0x13][0x94]~[0xa7]97[0x88][0xc8][0xb9][0xd1]lrgZ_[0xc8]5[0xa0]RTU[0xc3][0xa2][0x15][0x9d]h[0x6]<[0x18][0xbb][0x84]Xt[0xa4]X*[0xc8].[0x94];[0x99]Y[0xda][0xe8][0xc6]![0xe6][0x1d]([0x3][0xfb]F[0x9b]H[0x88][0xa6][0x87]5[0xe9][0x9e]y[0xb4][0xd8].^V*[0xd4][0xf3][0x93]9[0xe5][0xd5][0x8][0xd5][0x98]7[0xc4]![0xf9][0x80]>PPJN[0xca] [0xaa]}L[0x93][0xe2]oS[0x7][0xdf][0x92][0x19][0xe4][0x1e]+3b[0x98][0xe][0x99][0xda]4[0x84][0x9a][0xde][0xf][0xe9][0xc4][0x1]R[0x9][0xba][0xd3][0xe9][0x9a]b[0xc]i[0xa8]f~[0x19][0xd0][0x1e][0x9f]8[0x12]s[0x80]j[0x8c]([0xac]&[0xc4][0xbc][0xe]'#[0x8a][0x3][0x19]1/[0x83][0x1b][0xc7][0x99][0xbc][0x91][0xe5][0xbb][0xbb];[0xc9]U[0x90][0x12][0xea]J[0xaf][0x86]r[0x3][0xda][0xb5][0xd9][0xad][0xa5]][0xb2]1[0xd7][0x95][0xa1]S[0xdb][0x86][0xd6][0xfa][0xfd]T[0xb3][0xa0][0x8d][0x7]3[0xa2]L[0x80][0xac][0xa1]2[0x0]bu[0xe5][0xe]9[0xc8][0xb8][0xc4][0xb8][0xf]d[0xdc]Y[0x1a][0xaa][0x84]Cbs[0xf6]#[0x9a]0[0x9b][0x82]V[0xf3]h[0x84][0xba][0x87][0x13]@[0xbb])[0x6]I[0x95][0xbb][0xa4][0xde]M[0x91]w[0xe5]n[0xbd]{[0x88]H>[0xd6]{[0x17][0xad][0xab][0x1e][0xf9]X[0xee]t[0xca][0xcd]^[0xbd][0xd6]%[0xad][0xe][0xa9][0xb4][0x9a][0xd5]z[0xaf][0xde]j[0xc2][0xaf]3Rn~"[0xef][0xeb][0xcd][0xea]![0xa1][0xd0]fP[0xe][0xbd][0x9f]XX[0x3] S[0xc3][0xf6][0xa4]*c[0xae]'K[0x1e][0x9]()[0xf8][0xdb][0x9e][0xd0][0xa1]v[0xad][\r][0xa1]j[0xc6]h[\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xa3][0x14][0x19][0x99][0xb7][0xd4]2PP&[0xd4][0x1a]k6[0xf2][0xd5][0x6][0x2]UD[0xa3]kc[0xcd]a[0x2]e/[0xd6][0xb][0xb][0x92][0x9f][0xbb][0x87]>-H[0x9a]J[0x15][0xd9][0x1e]*[0xba][0xd2][0xf7][0xc7][0x82][0xfb][0xb1][0xbe][0xcd]2V[0xf9][0x17][0x82][0xf3][0xff][0xf9]b[0x1][0xf5]!w$[0xfc]?w[0x2]'[0xdf][0x1][0xb3][0xc9][0xad][0xab][0xed]NSY)[0x93]"[0xd4][0x18][0x9a][0xa8]XOSW[0xbd][0xb3][0xf4][0xeb][0xd4]wo[0xf7]N&[0x96][0xf9][0x99][0xe][0x9d] e![0xf5]v[0x8f][0x90][0x13][0xd4]q0[0xc][0x18][0xe]1[0x94]1=MuQ[0x92][0xda]n[0xe2].[0x97]'[0x96][0x12][0xd2][0x9a][0x13][0xa6][0xb8][0xdd][0x84]Chxs[0xcc][0x92];[0xd4]v[0xba]3[0x98][0xca][0xdd]_[0x80][0x16][0xd7]Q[0x93]C[0xb6][0x14]a[0x9e][0xc5][0xa7])[0xc7][0x9a][0xd2][0x14][0x91][0xe3][0x90]p[0xaa]>h[0xf4]nU[0xd6][0x13][0xd9]'[0x15][0xaa]#[0xf3][0x9c]o[0x9f][0xbb][0xfd][0x9f][0x1b][0xdc][0xfe][0xaf][0x19][0xa8]6[0xb1]a[0x81]u8[0x8a][0xd9]2[0xe7]a[0xbf]J[0xaf][0x95][0xa9][0xee]l[0xa2][0x13]V[0xf5][0xff]\[0xb1]8[0xdf][0xff]s[0xf0]U[0xcc][0xff]v[0x2][0xb][0x1d][0xb8][0x1e][0x16][0x5][0x94][0x0].[0x11][0x97][0x8a][0x1][0x83][0xa9][0xe5][0xf6][0xfa][0x89][0xfb],[0xa2]74[0xbb][0xaf][0xa3]?[0x90]z[0x9a][0xba]Vt[0x98]'[0xc5]u[0xd9][0xf1][0xac][0x9][0x9f]~[0xf][0xe5][0x85][0x10].f~g[0xe5]%`W[\r][0xfa][0xed]s7[0xd6]/[0x10][0xdc][0xfe][0xf][0xfa][0x9e]v[0x9d][0x19][0xf6]{[0xff]+,[0xae][0xaf][0xb5][0xd1]6[0xe6][0x2]+[0xfb].[0xd2][0xff][0xb3][0xa5]bF[0xc4][0xff][0xd9][0x9],[0xf4][0xde]!+[0xf3]b0[0xb5][0xd8][0x1c][0xd9][0xed][0xfd][0xd0]b[0xe][0x8d][0xeb][0xdb][0xed]N[0xed][0xac][0xd6][0xe9][0xd4][0xaa][0xfd]v[0xa7][0xf5]}[0xad][0xd2][0xeb]WZ[0xd5]Z[0xbf][0xdb][0xfb][0xd4][0xa8][0xf9]=>[0xda][0xd3]96[0xd1][0xcf][0x9f][0x5][0xdc][0xfe][0xef][0x1a][0xb6]=[0xef][0xf7]`[0xa5][0xfd]'S[0xf2][0xfa]1[[0xcc][0xa1][0xfd][0xa7]X[0x10][0xe7]?w[0x2][0xdb][0x9e][0xff][0x9f]3IZ:[0xf3][0xd7]5[0x3][0xe6][0x8][0xb5]{[0x7]V[0xe5][0x8a][0xce][0xf5][0x8d][0x1d][0xc9][0x2][0x99]\T[0x91][0xb5][0x84][0xf7]va9[0xc1][0xf6][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "j[0xe3][0x89]3C[0xab]0[0x10][0xd4]1M[0xa7][0xaa]Y[0x90][0xd7][0xb4]4j[0xc7]/'[0x16][0x11][0xf9]v[0xc][0xf4]7[0x9f]M[0x82][0x99]J[0xa3]U)7[0x96]d[0xa4][0xf3][0x15]j+[0xce][0x8d][0x9f][0xf7][0x95][0xa7][0xf][0xab][0xf5][0xce][0xab]%8[0xdc]~xa[0x86]&H[0xf2][0xd4][0xb6]d[0x98]V)[0xba]\[0xa1][0xba][0xae]X[0xbc][0xb3][0xca][0x5])'ee][0x1b][0xd0]{:\[0x82][0xd3][0xb5]L[0x7][0xed][0xca]R[0xc0]R?[0xfc];[0xc8][0xb3][0x92]`[0xa6][0xb2][0xc3][0xb9]Od7kR[0xf9]S[0x9b][0x96][0xa7][0x8e]Y[0x7]9[0xb1][0x9c]u[0xb9][0x0][0x99][0xfe]j[0xaa][0xe8][0xda][0xb5]F[0xd5]KV[0x1][0x9c]5&2[0xf1]D^",a[0x2][0xc5]*0[0x2][0xae][0xfe][0xbf][0x1d]n[0xdd][0xe8][0x13][0x82][0x95][0xf3][0xbf][0xd2]Qd[0xfe][0x97][0xcb][0x8a][0xf8][0xaf][0xbb][0x81]m[0xeb][0xff][0xf]C[0xdb]S[0xba][0xb3]Ke2[0x9][0x8f][0x2]c[0xf7]7Q[0xbd][0x4][0x11]=#K[0x12]t[0xf0][0xa1][\r][0xa3][0x88][0xe6][0x8][0xb3][0xcd]N[0xc0][0xed][0xff][0xb8][0xd7]bO[0x94][0xe1][0xd3]L[0x1][0x97][0xf7][0xff][0xa3]l6S[0x8][0xce][0xff][0xe7][0x8f][0xa0][0xff][0xe7][0xf3][0xd9][0xbc][0xe8][0xff][0xbb][0x80]m[0xf7][0xff][0xca][0x8d]b[0x8c]h[0x3]&Qa[0x83][0x11]$[0xd4][0xe1][0x11]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "1e60[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "Q[0xdd][0xb5][0x9f]7~k[0xea]i[0xaa][0xa4][0xbe][0xce][0xe7][0x86][0xd7]G[0xe9][0xeb][0xec]q&]([0x16][0x6][0xe9]Aa[0x98]K[0xf]^[0xf][0xf3][0xc3][0xa2][0xaa]f^[0xbf][0xce][0xa6]8r[0xbe]t$n![0x88]1[0x85][0x9b]l[0xb8][0xbd]x[0x9a][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "&[0x8e]C[0xf6][0x9a][0xc][0xe8][0xb5]iQ[0x9c][0x87]E[0xf5][0xcc][0xf6][0xe2][0xc8][0xa6]x)[0xa0][0xf3]<[0xa3][0x17]Q[0xae][0x1][0xc3]S[0x17][0xcb][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x9][0x97]*?Q[0xf5][0x17]C[0xd9]>][0x9d][0xe3][0xca]J[0xaa][0xe8][0x89][0x8c][0xfc][0xe7][0xdf][0xb5][0x91]a[0xe2][0xe6][0xe6]$[0x86][0x2][0xcf][0x8b]#[0xc8][0xb9],5[0xf7][0x83]X3[0xb5][0xeb]'[0x92][0xb0]9Q[0xfb]][0xa5]qU[0xad]U[0xfb][0x95]V[0xf3]C[0xad][0xd3][0x83]o[0xbd]V[0xbf]~[0xde]luj[0xd5]uv7[0xba][0x17][0xad][0x8f]PN[0xb9][0xd1]:[0xf7][0x93]G[0x1a]a.[0xfd]E[0xfd][0xfc][0xa2][0x1][0xff][0xd1][0xec][0xd2]D[0x1d][0x8a][0x94][0xb8]T[0xa7][0x88]3[0x9b][0xc0]gI[0xc9][0x1d][0x95][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x83][0xd2][0x9b][0x5]C[0x10][0xb0]c[0xe8]L-[0xfa][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "-8MS[0xa5][0x11][0xfb][0xc3]"N[0xee][0x8b][0xe7][0xa1][0xbe][0xce]*[0xa5][0xdc]q[0xe1][0xf5][0x1b][0x8e]2[0x1][0x7][0xb4][0xf8][0x2][0xb5]'r\[0xc5][0xe6][0xa4]8H[0x1a][0xd7]8>[0x1b][0xe7][0x1b][0xd3]7s[0xf3][0x1f][0x8c]7[0xeb]0[0x19][0xa3][0xc][0xd5]T[\r]VK[0xd1][0xf9][0x14]U[0xae]}[0xec]l3[0xe][0xd6]VF[0xb0][0xf7]F[0x86]S[0xcb][0x2] [0xce][0x9b][0x8f][0xa0][0x8e][0xb7][0x1a]:[0xcb][0xb8][\r][0x83][0xa5][0xba][0x9d][0x88]2R[0xd3][0xc8][0x87]4J[0x9e]C[0xef][0x9d][0xb4][0xfb]0[0x15]mS&[0xfd][0x16][0xd5][0x15]G[0xbb][0xa5][0xe9][0xa1]bQ'=1m[0xe6][0xeb]u[0x9a][0xca][0xe5][0x8e]R[0xb][0x1c]c[0x89][0x8][0xcc]#[0x80][0xe4]b[0x1]'[0xfa]t[0xc][0x89][0x8f][0xe0][0xbb]K[\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xe4]M[0xe3][0x8c][0xde]I[0x7][0xa9][0xa2]o[0xe2]sQC[0x8d][0xcd][0x83][0xcf][0xc3]9[0x16][0xe5][0xe8][0xda][0xd4]q[0xba][0x1c]#[0xa3][0x80][0x4]'[0xa7][0xc4][0x86]I[0x84][0x82]2}[0x9a]2[0xbe][0xfe][0xd5][0xaf]Ts[0x98]"[0xae][0xa0][0x5]M[0x17]#[0x9f][0xb1][0x88][0xe7]D)$t[0x8c]!aAd[0xfc][\r][0x4][0xd0][0xdd]N}R[0x81][0xf1]'{[0x16]uC[0xc5][0xd9][0xb2]n[0x8e][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x9f]% oB-G[0x8b][0x9a]!w!G[0x85][0xcc]r9[0xca][0x96][0x2]9*[0x1e]%[0xc9][0x11][0xa6]J[0x92][0xa3][0xf9]\[0x81][0x1c][0xcd][0xe7][0x9][0xcb][0x11][0xe6][0x90]>l[0x9d][0xf7][0x11]~[0x6]UP\[0xc1][0xc2]b[0xc0][0xc2]|"[0x7][0x8b][0xc9][0x1c][0xcc]'0[0xb0][0x98][0xc4][0xc0][0xbc][0xd0][0x3][0xeb][0xe8][0x81]G.[0xfa]v-`[0x85][0xcc][0xaa][0xb1]&[0x1f][0xd2][0x11][0xc7][0x89]cM[0x8c][0xec][0xc5][0xe7][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x8d]5[0xb][0xa2][0x17][0xce][0xf1][0xf3][0xd1][0x11]n |[0xb5]s[0xee][0xe5]W([0xf8]\[0x12][0xbf]r[0xf1],[0xc9]=_[0xbb][0xb3][0xa6]y[0xb2][0x9e][0xb6][0xdc][0xa4][0xb4]k[0xb6]eW[\r][0xcc][0xb9][0xe3][0xa0][0xd3]e[0x81])0[0xe3]5[0xd2][0xd7][0xa6]u[0xa7]X>9[0x9][0x8c][0x8d][0xe9][0xa2]aL[0xb1]\_[0xe8][0xa0][0xe1][0x1c]/[0xb2]#~V,[0x14][0x88][0xab]n[0xad][0xd3][0xbf]h][0xd6][0x2][0xeb][0x95][0x1b][0xba]W[0xe6][[0xbf][0xe9][0x1c]+[0x18]>[0xa5],.7[0xa4][0x91][0xe6][0xdc]L[0x7][0x92][0xca][0xfa]l[0xfa][0xb3]r[0xab][0xc8][0xe1][0xef]y)+e[0xd2][0xd6]0][0x94][0x95][0xc2]qF[0xc9][0xaa][0xa5][0xcc]q.[0xaf][0xa8][0xf0]_[0xb9]>.RE9.[0xe][0x94][0xd7][0xd9]A[0xa6][0xa0]f[0xb][0xd7][0xca]Q&[0x9c]?[0x1d][0xe4]O[0xf3]i[0xa0][0x4][0xa4][0xfe][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x8b][0x96][0xdd][0xa2]yrV[0xda][0xd0][0xb4](W[0x1f]0[0x4]@[0xfd][0xea][0xe3][0x89].[0xe1][0xab][0xdd][0x8b][0xe4][0xf1][0xf1]r[0x91],[0xe4]B[0x3]A>[0x9b]$,Y[0xe2]\#[0x1b]/[0x80][0x91]Ls[0xb3][0x8d][0xac][0x90][0xc0][0xa7][0x96]@[0xdc]G[0x0]e([0x87][0x8e]7[0x8e][0xd5]g[0x14][0xc5]|i[0xb9]([0x1e][0x85][0x96]-q[0xfa].H[0x95]$[0x88][0x8b][0x1a]/.OX[0xe]s?[0xab])[0xc9][0xd6].*|[0x86][0x19][0xcd][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "=[0x94][0xb]1?[0x86][0xc3]A[0xa2]$[0xde]/[0xb0]8.K[0x98][0xf5][0xa5]'[0xe0][0xfc][0x89][0xec][0x19][0xb1]VY[0xc1][0xce]5GZj[0x9][0xee][0xd4]*[0xb5]f[0xaf]^[0xef][0xf5];[0xad]V[0xaf][0xdf].[0xf7].[0xe2][0xbd][0xaf][0x98][0x93][0xc1]Z[0xb6][0xde][0xba]JA[0x16][0xa6][0xb8]p[0xbb][0xd0]l[0xf4]W[0x88]-[0xda][0xdd])[0xa9][0xb2]"C[0x16][0xf2]`w*[0x9c]%[0x96][0xa2][0xe8][0xfa]:[0xce]-*6[0xe3][0x9c][0x81]n[0xed]\[0xeb]Xi[0x1e][0x8e][0xec][0xb1][0xfb]{[0xeb][0x16][0x14]Z`<[\r]q+6\C[0xbe]f[0xa1][0x8d][0xc7]$[0xd7][0xb2][0x18]q[0xe2][0xc6][0xe8]3[0xb]~[0xbd][0xc3][0xf3][0xb4]6[0xae][0xfd][0x1d][0x8a]kf[0xf3][0xc7]N[0x16]'`3_[0x90]s[0xf9][0x84][0x8d][0x8d];M[\r]y[0x1b]fK[0xaf]3[0x9][0x9]o([0x1e][0x91][0xf2]S[0x1e][0x17]3kv[0x6]N}[0x83][0xde]R[0xfd][0xc3][0xd0][0xdf]k [0x9e][0xec][0xa2][0x8d][0x9a][0xaa][0xf0]x[0xaa][0xe8][0xfa]l~O%[0x1]Wx[0x9b][0xcf]Pn[0xb5][0x11][0x1e][0xc6]'([0x84][0xa6][0xc5][0xe]d[0xe2]fA[0xe0][0x99][0x10]t-4[0x87][0xc0][0xe3][0xb2]~[0xa7][0xcc][0xec][0x96][0xd1]3'[0xf1][0x1b]t[0xb2][0x8f][0x95]?[0x98]([0x6][0xf5]=H[0xd9]/[0xb6]=[0xd2][0x1d][0x9a][0x93][0xb9][0x1d]t[0xff]M[[0x19]~[0x81]z[0xda]mx[0x10][0x9f][0xc0]s[0xf6]4[0xe6][0xc6]&{:[0xc0]Gs[0xba]1vc!n[0xbf]d[0xc9][0xce][0xc6] W[0xca][0xe4][0x86][0xa5][0xe3]7[0xa1]&\[0xb1][0xc9][0x91][0x8c][0xec][0xb5][0x92]9[0x82]9T[0xe6][0x8d][0xbb][0xe1][0xd6][0xb3]([0xf5][0xf7]^[0xda]\[0x8f][0xbf]r[0xdf][0xb9].[0x98][0xbe]cWlY[0xb1][0xdb])[0xbf][0xa0][0xfa][0xcd][0x97][0x5][0xaa][0xc5]+[0xa7]P[0xca][\r]3[0xaf][0xb3]@[0xb4][0xad][0x89]&[0xda][0xb0][0x89][0xe6]Q[0xa0][0xf2][0x16][0xe2][0xfa][0x8b][0xe7][0xc5]|A[0xee]`-z[0x97][0xe0][0xe8]<[0x96]P[0xcb][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xa1][0x10]B[0xb1][0x81]PDPx[0xd3]}!]B[0xba][0xb6].][0xe1][0x1a][0xb][0xc1][0xfa][0xf9][0xb][0x96]o4[0xd9][0x6]S[0xe3][0xdc][0xcd]b[0x9c][0xcd]N[0xe4][0xc8][0x82][0x12]1[0x19][0xbe][0x15][0xcd]_[0xd6][0xae][0xb1][0x88][0xe7][0x6][0x9e][0x8a][0xf7]&[0xe4][0xbc][0x88][0xaf]f[0x9e][0xc1][0xcd][0xec][0x99][0x15]t[0x9c][0x96]4c[0xa8]OU[0xda][0xd0][0x6][0x96]2w[0x8e]2[0xe2]4[0x9a][0x88][0xc0]1[0xbb][0xca]-[0xad]?[0x1e][\r][0xb3][0xc2]r2[0xbe]Wn[0x15][0xfc][0xbd]n[0xfe]K:[0x1e]P[0xab]rc[0x9a]6[0xc6]P4'3[0xc4][0xc0][0xfc].[0x1e][0x91][0xdf][0xbe]1[0xef]*[0xae];y[0x82]O[0xf0][0xf2][0xec][0xa6][0xe5]Pu[0xcd][0x92]?[0xd2]A[0x97]Z[0xb7][0xd4][0xea][0x99][0xa6][0xfe]Q3T[0xf3][0xee]La[0xb2][0xc5][0x8c]EkbQX0[0xf][0x9][0xe5]N2L[0x7][0x3]c[0xb1][0x83][0xfc][0xac]*[0xc6]z[0x95][0x80][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> ";}xbP[0xb5][0x8f][0xf6][0xb7][0xfe]d[0xf5][0xd1][0xd6]([0xe][0x3][0xfa][0xc3]g[0xbb][0xaf][0x19][0xe][0xb5]&[0x16][0x85][0xbf][0xc][0x8b]d;[0xd3][0xe1][0x17]x[0xdc][0xe7]'C[0xfa][0xdc]{2[0xee][0xf8][0xeb]@3d#[0xdc][0xaf][0x12][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "1&c[0x86][0xbc][0xf]][0x95]:[0xfd]k[0xd3]J[0xc4][0xbe][0xb4][0xde][0xae][0xe1][0xcc][0x96][0xb0][0xfe]]n[0xeb][0xf7]s[0xd6],[0xcb][0xb4][0xec][0x95]ym[0xaa]X[0xc3][0x9b][0xf][0x9a][0xad][\r]t[0xfa][0xb0]b[0xed][0x89][0xae]9[0xd0]P[0x92]Jaz[0xa2][0xdb]R[0xc8]2[0xe6]c[0xca]H[0xb9][0xf5][0x11][0xa1][0x8e]L[0xc0][0x92]O[0xc4][0xc2][0x9b][0xc]8[0xc5]5(k[0xf][0x89]2{[0x9f][0x8f][0xe1][0x92][0x1f]2^[0x1f]K@G[0x88][0xc]t[0xb8]Z[0x1b][0x83][\r]z<[0x1e]Mr[0x9b][0xf8][0xa6]vw_F[0xf2][0xf6]p@5[0xf0]0[0x17]a>Y[0xf4][0x9a]Z[0xd4][0x18]BY<[0x9f][0xaa])[0xba]9[0x92][0xf5][0xcf][0xea][0xa1][0x10]+[0xaf][0xca][0xed]6<-[0xe3][0xc1][0x12][0xb6]/[0xcf][0xb7][0x8b]@[0x81]*[0xc][0x17][0xba][0xa6][0x83]B[0x98][0x98][0xba]6[0x9c][0x85][\r][0xdb]c[0xea][0xdc][0x98]*[0xb9]E/[0xa8][0xc5]M[0x16]~[0x9a][0xc4]pz[0x8a]5[0x2][0x8a][0x8]5[0xb0][0xbf][0xa8][0xd1]Qh1[0xcf][0xa5][0xf2][0x85][0x86][0x92][0xaf]8[0xfd][0x9][0x13][0x6]Cz[0xc7]N[0x99][0x1]W{[0x8a][0xfd][0xe5][0x1]eu[0xa0][0xac][0x15]YNd[0xb7][0xa2][`[0xc][0x1f]PS[0xe4][0xda][0x1d][0x9d][0x9b]n[0x1b][0x85][0xde][0xc4][0xf3][0xed]c[0xab][0xf3][0xbe][0xde]+[0xd8][0xd9][0xc1]0i[0x9b][0xb2]p[0xb1][0xc4]n[0xad][0xdc][0xa9]\[0xf4][0xbb][0x95]V[0xbb][0x16][0xe6]*[0xc3][0xe4][0xd5][0xac][0x19][0x8a][0xe4][0xf1]Qsn[0xaa]t[0x82][0xfb][0x86][0xc6]p~[0xaf]6[0x1a][0x8a]CHL[0x92][0xc4][0xf0][0x19][0x92]5[0xf2][0xa2][0xe8][0xfa][0xfb][0xc1][0xf8]M[0xc2][0xc0][0xde]l[0xb6][0x14][0x8e]G[0xef][0xb][0x16][0xc5]Cg[0xb]#kD[0xd4][0xde]{[0x6][0x8][0x8a][0x81]O[0x14][0xcb][0xdf][0x13][0xc5][0xa2][0xeb][0xf6]9L[0xa7]-%[0xf0][0x1e][0x9]X[0xc6][0x98]<[0xbf][0x8][0x97][0xdc][0xd5]m[0x82][0x18]}[0xb8][0xec][0xb7][0xcb][0x9d][0xf2]e[0xad]W[0xeb][0x4][0xe7][0x1][0x13][0x93][0x83]h[0x9e]C[0xea][0xb8]<[0xe9]4[0x1e][0xbf][0xd4][0xd0][0xf5][0x85][0xc][0xa6][0xf6]l`[0xde][0x93]t[0x9a]{F[0xd9][0xe4][0xd7][0xbf][0x9f][0x9a][0xce][0xb7][0xee]_x[0xce][0xfc]:&&[0xcc][0xe9][0xe7][0xdf][0xc0]+@`8i7[0x1a];ywUoT[0xe1]![0xc3][0x9b]F"[0x8][0xd4][0xab][0xf][0xf5][0xea][0xbb]Q{[0xd4][0xfe][0x98]&[0x92][n[0x0][0x89][0xcd]2;[0x94][0xfa]}[0xa7][0xc6][0xdc],[0xfa][0xb5]f[0xf9]]#[0xf1][0xc8][0xe4]:([0x92][0x9b][0xa7][0xdc][0xed]b[0xdb][0xa0];I[0xad][0xf9]![0xe1][0xb0][0xe8][0x82][0x88][0x97][0xeb][0xcd]~[0xa5][0x81]y[0x9b][0xd0][0xaa]~[0xa6][0x87]J[0xd8][0x83]5[0xcd]C[0xc7][0x87][0xe5]=wK[0xaa][0xb7]C[0xc7][0xa6]C[0x13][0xf4][0xec]U[0xb7][0xd6][0xef][0xb6]*[0xef]k[0xbd]~[0xaf]Snv[0xdb][0xad]No[0xbd]F[0xee][0xd6]:[0x1f]j[0x9d][0xfe]e[0xab][0x9a]ttu![0xc7][0xc5]e[0xed][0xb2]_[0xae]V;[0xb5]n[0xc0]It[0xe8]S[0xe9]`:J[0xcc]w[0xd1][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x9d]{[0xf6]'y[0xc9]2[0x13][0xae]B1[0x93])&[0x8b]"[0x9e][0xc4][0x5]bz[0xe5]N[0xd2][0xc1][0xea]'U[0xdb]/N[0x11][0xc7][0xca]O[0x8f][0xda]N[0xf3][0xfc][0x1][0xe3]4[0xeb]y?[0xe3]q:[0xf0][0xbc][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "%[0xc2]U[0x10][0x8e][0x12][0xf6]N$[0xe3]g>[0xa0][0xc7][0xca][0xd1][0xd7][0xa8]~?Sg`[0x81]z[0xb5]Y[0xa8][0x1b]I[0xa5][0xb7]_4G[0xb2][0xa6][0x86][0xd4][0xd6][0xa7]#-f [0x8f][0x1f][0x8b][0x1f]8[0xfe][0xa6]7[0xbe]/fsc[0x2]_[0xec]\[0xb1][0x84]_~[0xf7][0xe6]R[0xb9]oSk[0xdc][0xd5][0xfe]@Os[0xc5][0xcc][0xf8]A[0xa3]t[0xc8][0xff][0xc8][0xa2]Pa[\r]-r[0xba]9[0xea][0xbb][0xf7][0xe][0xcc]3[0xf][0xbd][0x93]X[0x85]![0x81]XD[0xc4]J[0x90]E[0x87]0M[0xe9][0xfb]3[0xb4]$[0xa3][0xb][0xb3][0xfe][0xe3][0x1f][0xce]Zwj'=~l[0x9f]3p[0xc4]Q[0xb1][0xca][0xd4][0xf1][0xf3][0x88][0xb2][0x1e]G[0xf8][0xad][0xb1][0x18]Pv[0xa1]3[0xaf][0x85][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x5] b[0xef]q[0xe0][0x11][0xc1]Y[0xe7]-[\r]w[0x3]?[0xe2][0xac]=[0x85][0x99],[0xce][0xc4][0xbd]@B[0x98]![0x1a]7[0x88][0x5]*[0xda]nd[0xa2][0x10][0xeb][0xf9][0x8c][0xf7]m[0xb6]X[0xca][0x1c]g[0x8a][0xc5][0xfc][0xd1][0xeb][0xec]k[0xa8]*[0x1c][0xab][0xb][0x8c])[0xee]"$[0x4][0xd0][0x8d]c[0x17][0xb5][0xa1]\[0xec][0x18]uuY[0xae][0xe9]D[0x8d][0xa3][0xc5]{[0xec]%[0xc3][0xe0]`u[0xec][0x2][0xd7][0x96]9[0xc6]C[0xb1]n[0xea]B[0xb6][0x84][0xe7]RT[0xce][0xb4][0xd3]T[0xe1]8s[0x94][0xc9][0x84][0x9a][0xa6]^[0xab][0xda][0xf2][0xd1][0x94]V[0xe5][0xb4][0xdc]S[\r][0x8c][0xeb]8[0xb3]|@[0xfa][0xb6][0xa2][0xc3][0x4]j[0xa5]<[0x87]r@[0xd7]}@jO[0xe7][0x96][0xa1][0xb3][0xce]lm[0xa5][0xf0][0x87][0xb2][0x9e][0xf3][0xdd][0xc5]D[0xa1][0xc9][0x96][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xb9]\[0xa1]t[0xf4][0x0][0x9c]^_[0x8c][0xe8][0xaf][0xd2]Qf[0xb5][0xfe]Zl[0xb5]_}[0xfc][0xed][0x3]r[0xf5]n([0x8c][0xa7]m[0x8b][0xe2][0xfe][0xd3]C[0xda][0xd0][0xb5]@[0xa2][0xee][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xfa][0xf2][0x3][0x4]+[0x84][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x96]6[0x84]+[0xf0][0xa0]s?D[0xe2]9[0xae][0x84][0x91][0xec]B[0x83]e[0x80]5[0xbc][0x99][0x85];},zX[0x4][0xf8][0x3][0xff][0xca][0x9][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xac]J[0xbb]CK[0x9b]8[0xbe][0xd9][0x98]9[0xc1],[0x9b][0x1b][0xf1][0x83]3[0xc1][0xa1][0xa0]5'C[0xee]\[0x85][0x1f]x[0x8b][0x14][0xb0][0xd5][0x0]@[0x9b][0x1e][0xa4]|h[0xe0][0x9f][0x97][0x16][0xf4]'r~2zvr[0xee][0xdc][0xe4][0x96][0xe]][0x9b][0xe6]H[0xa7][0xd2]h[0x8a][0x87][0x9e][0xdd][0xbf][0xd9]c)#[0x1f]g[0x95][0x82][0x9a][0xcd][0x16][0xb][0x99][0xc]=[0xce][0x14][0xae]s[0xb9]A&[0xaf][0x1c][0xbd]V[0xe9] _,[0xd2]c[0xaa][0xbc][0xce][0xe4][0x87]j[0xc1][0xcd][0x93][0xc6]<1[0xc7][0xaa][0x19]rv[0x8c][0xda]4dT12tt[0xe8]&[0xee][0xe5][0x8d][0xf6][0xfc]1[0xea][0xa7]f~6[0x97][0xc9]&s[0x9f][0x8d][0xb3]>[[0x1e][0x14]Y"[0x1f][0x13]M$[0x84])[0xf6]Pm~![0xe4]D([0xc7][0xf3]J[0xc4][0xcf][0xf5][0x18][0xfe][0x93][0xcb]O[0xe4][0xf8][0xfd]K;z[0xff]hQY?[0xd0][0xdf][0x93][0xeb][0xe7]H[0x80][0xbf][0x97][0x17][0xdc]/>[0xa0][0xd7][0xe3][0x83]y[0xc5][0x4][0xf2][0xda].[0x1f][0x93][0x2][0xb5]==+[0x8b]K[0x86][0xda]g[0xf][0xce][0xf6][0x92][0xf9][0xf8][0xcb]P[0xdd][0xca]D[0x9b][0xb][0xe1][0xb3]ce[0xfd][0xba][0xb0]l[0xac][0xf]i[0xeb][0xec][0xeb][0xe4][0x81]}[0x89][0xba][0x9e][0xcf][0x16][0x1e][0xd9][0x13][0xf5]5fy[0xa4][0x10][0xd2][0xaf][0x8f][0xf3][0xb9][0xd7][0xf8][0xe7][0xf8][0xeb][0x8c][0x10][0xc5][0xed][0x87][0x93]zry[0x8c][0x84][0x91]z[0x81]![0xa4][0xb6]<[0xee]l=[0xd2][0xce]S[0xb3]([0x1a]a[0xe7]EE[0xd7]yF[0xe6],[0x9][0xc6][0xf9][0xd4],[0x89][0x6][0xe1]|i[0x1]8[0xb7][0xcb][0x95][0x98]x[0x99]O/[0xf3]KD~[0xa3][0x18][0x99]/B[0x9b],[0x8b]i[0xf9][0xe4][0x1a][0x99][0xad][0xe9][0x85][0xc6][0xb1]\[0x9f]i[0xab]L[0x86]c[0xc5][0xc6];Z[0xdc]cJ[0xfe][0xf5][0x3][0xec] [0x8b][0x8f][0xdd]m[0xc0]/tv[0x9a]*[[0x8e][0x86][0xae][0xb2]A[0xa4][0xff]J[0xe8][0xf0][0x8d]tU[0x9f]k[0xf8][0x85]{[0x1f][0xe1][0xa1][0xc2]1pFE[0xa6]D[0xde]y[0xa7]t[0xe8][0xa8]Sd[0xd6][0x15]uo[0xf0]OD[0xcd][0xa7]#QW[0x90]([0x82][0x98][0x13]G[0xa1]D[0xf2]b[0xe6][0xc5][0xcb][0x12][0x19]#[0x96]R|"G[0x1b]![0xca][0xba]P[0xe3][0x9e])C[0xea]<[0xba]a[0xf1]hW[0xda]=[0xda][0xf5][0xb6]i[0xa2]C3ul[0x2][0xb2]L<[0x7][\r][0xaa][0xa2][0xe1]:H%[0x1a][0x9e]7[0xfc][0xb9]n[0xe][0x14][0xdd]?[0xdf][0xba]I[0xcb][0xbb]~[0xd3][0xa0][0x2]A[0x8b][0x91][0xfd][0xdb][0xbc][0x94][0x93][0x8e][0xe][0x89]5[0x1d][0xcc][0xd2]Y[0xe9]X[0xca][0xa7]'[0xd9][0xe3][0xc2][0x1][0xf9]aD[0xc7]?[\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "n[0xc4]r[0xe3]{[0xf5][0xb][0xde]A[0xb6][0x9][0x17][0xb2][0xd2]k[0xd1][0xb8][0xb1][0x8d][0xeb][0x1e][0xf6][0xdc][0x8a][0x92][0xe1][0x7][0x1c]DC[0xc7]64[0xf7][0x8b][0xf9][0xbe][0xfa][0xde][0x16][0xd2][0xbb][0xe5]F}[0xb4][0xa6][0xfe]3k<[0xfe]c1[0xbe][0x84][0xb8][0x8c][0xf5][0x97][0x0][0xee][0xfd][0xaf][0x18][0x18][0x83]96 O[0x99]q[0xaf][0xef][0xef]%l~#[0xec][0xaa][0xfb][0x9f][0xb3][0xd9]\p[0xff]s&K2[0xd9][0xa3]L[0xa1] [0xee][0xdd][0x5],^[0xe0][0xea][0x89]B[0xd8][0xf7][0xc3][0xd7][0x84][0xc1]9[0xb][0xa6][0x91][0xc2][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xe1][0xb9]k"[0xe0]1[0xe0][0xf6][0xff][0xb1]f[0xf][0x9f][0xee][0x2][0xf8][0xe5][0xfd]?[*[0xc2]w[0xde][0xff][0xb][0x85][0x2][0xf6][0xff]\[0xae][0x90][0x11][0xfd][0x17][0xb0][0xed][0xfb][0x9f][0xbd][0xdb][0x1c][0xbb][0x8e]i[0xa1][0xf3]F[0xf8]\[0x87][0x1f]4:[0xee][0x94]PR[0x94][0xe8][0xc0][0xab][0xb4][0xcd][0x87]&[0x1e]M[0xc7][\r][0xeb][0xa5][0xf8][0xe7]L[0xb9]a1<[0xc7]#[0xde][0xa1][0x87][0xb0][0x1d][0x10]q[0xa4][0xa3][0xb7]6z[0x9b]l[0xd1][0x17][0xf0]j![0xea][0x9]<[0xd3][0xd4][0xe8]6[0xdc]bl[0x94][0xf8]|o[0xcb][0x86]j[0x99][0x9a]z"k[0xea][0xa3]18D[0xf3][[0xc5][0xde][0x4]S[0x10][0xa5][0x82][0xb8][0xc1][0xa6]H[0x17][0xd0]b[0x94](R[0xdf]N[0x9]6nl[0xb2][0x1d]N[0xcd][0xb6][0xa7]t[0xab][0xb8][0xce]-[0xd3][0xbc][0x9d]m[0x13]#[0x6][0x7]s[0x1d]-7[0xc0]Z[0xe9]v7[0xc9][0x8d]!'[0xc8][0x98]:[0x96]6[0xdc][0xa4][0xb5]\<~[0xb4][0xa4]M0[0x99]*[0x5]D3[0x9d]n[0xce]C[0xee][0xc6]O[0xce]t[0xf3]nc[0xf6]y[0xc8][0xae][0x1][0xd9][0xf6]H[0xb]a[0xdb][0x8e]8[0x98][0x16][0x6][0x5]4[0xa8]m74[0xc3][0xd9][0xbc][0xff]W[[0x97][0xdb][0xa4][0xaf]J[0x87][0xba][0xc2][0xf][0xde]YT[0x9d][0x1a][0xaa]b[0xc]7a[0xb][0xb][0x8d]Fnp[0x17][0x6][0x6][0x91][\r][0x10][0x9d][0xe1][0x1][0x17][0xed][0xf].i[0x1b][0xf3][0xf7][0xbc][0xdb]>[0xb7]p[0x87]bc[0xb9]s[0x9d][0xb0][0xf5][0xcd]1l[0x85][0xe7][0xcc][0xf1][0x96][0x80].'5c[0xa4][0x19][0x9b]t[0xf5]m5[0xd0][0xc6][0x8][0xa6][0xda][0x90]ni[0x8][0xaa]Wke[0xd2][0xd6][0x15][0xe7][0xda][0xb4][0xc6][0xdb][0xc2]9[0x84][0xfc]W[0xb6]2[0xd0]t[0xcd][0x99]m[0xa7][[0xd7][0x8d][0x1b]ji[0xe]t[0xbe]-[0xe8][0xd9][0xba][0xc1][0xa6]aX[0xcf]-v[0xa1][0xef]s[0x97]5[0xe2][0x9e][0x9a][0xdf][0x14][0xcb][0xe6][0xb4][0xbc]3a|[0xeb]Re[0xbc][0x5]\[0x18][0x16]j[0xb]h[0xa0];[0x93][0xda]6[0xea][0x86][0x88]t[0xc5][0x18]M[0xf1]\[0xa7][0x8e]w[0xae][0x90][0xb1]6[0xe2]JZ[0xd1][0xd4]M[0x91]o[0xac]t[0x2]$[0xe4]zj[0xb8]q~[0xf8][0x9c]e[0xdb][0xf8]oA[0x80]U[0xe8]e[0xdb][0x1c][0xf3]x[0x10][0xd8][0xcd]9[0xd5][0xf0][0x98]T7>[0xbb]je[0x13]d[[0xd1]#[\r]s[0x4][0xfd]s[0xb4]y[0xdd][0xd8]I[0xba]M[0xf2][0xbb][0xe7]/[0xed][0xad]O[0x80].[0xdd][0x10][0x16][0x97][0xae][0xbc]m<[0xd8]pt[0x9b]O[0xb9][0x9b][0xd3]1h[0xf0]-H[0x95]{[0xed][0xd0]V[0x98][0xd8]V[0xd0][0xf2]o[0x90][0xf][0xd8][0x8b][0x94][\r][0x5][0xb4]M-[0x1c]D[0xb7]3D[0x85][0x90]mG,`[0x8c][0xdf]D[0xc][0xdc]q[0x8d]T[0xe9][0xed]{m[0x13][0xdd][0xd2]6[0xf1]`[0xa0][0x86][0x81][0x9][0x98][0xd7][0xc4][0xd4]FF[0xe]q[0x11][0x85][0xb3][0x6][0xb6] [0xdb]\h[0xd7]*e+[0xba][0xb2]m[0x99][0x3]4[0xd7][0x90][0xc1]t[0xb4][0x9][0xbf][0xbb][0xd0]7[0xb6]8[0x17][0xe9]N,[0xac][0xf1]%[0xd4]x[0x93][0x99]x[0xef][0xc6][0xa2][0x8a][0xba][0x95][0xae][0x16]E[0xb5]1[0x8f]{[0xb3][0x89][0x9][0x83][0xfe][0xe4]f[0xb6][0xe5][0xa9][0xe6]U[0x9d][0x9c][0xe1]d[0x18]Y[0xab][0xd3][0xf1]&[0x95][0xde]2e[0x1f][0xe6][0x7][0xfb][0x8d][0x9b][0xf0]#[0x1d]0[0xcb][0x16],'[0xec]-[0xcd][0xfd]w[0xd9][0xd8]$7([0xe4][0x9b]M[0xf2]w[0x1b][0xbd][0x95][0xd9][0xbd]k[0x5][0x16][0xed][0x99]'[0x9e][0xff][0xe3][0xda][0x86][0xce][0xb7][0xe5][0x1]h[0x13][0x1e][0xca]q[0xcd]>[0x82][[0xca]q[0xc5][0x9c][0xc8]1[0xf6][0xd7][0x7]8[0x1a]r[0xb3]n[0xc7][0xbf][0x82][0x81]c[0xe0][0x9b]R[0xe9][0x1b]g[0xac][0xa7]a^[0x87][0xde][0x9c]oo[0x1c]g[0xf2]F[0x96][0xef][0xee][0xee][0xa4][0xbb]<[0x6]k[0x92][0xb3][0xc7][0xc7][0xc7][0xf2]=&:[0x91]c[0xb3]<[0x80][0x4][0xd3][0xf4]7[0xc8][0x2][0x9b]8:w[0xf2][0x9]![0xbb]([0xf1]4[0xf5]}[0xf5]}?[0xdb][0x1d][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "+[0xcd][0x3]Uq{z[0xfa][0xb3][0xfa]%[0xed]b[0xce]J[0xaf][0xe7][0x1f][0xf3]h[0xa3][0xa8][0xc3][0xab][0xef][0xfd]3[0xde]Sg2u[0xc8][0xd4][0xd2][0x13][0xbc]g[0x87][0xde][0xfd][0x4]k[0x9d][0xf6][0xfe]`[0xdb][0xb1][0xf1][0x98][0xe6]o8m[0xd4]1[0x1a][0xe6][0xdc][0x9d][0xaa][0x9][0xa1][0xa2][0xba][0x9d]J[0xb7]|V[0xab]7[0xeb]k%ggM[0xe6][0x2]f&$l[0xac][0xc6]$[0xa9][0xdc][0xd0][0xe1][0x17]h[0x91][0xd6]d[0xce][0xa7]!B}[0xeb][0xf2][0x12][0xc8]_[0x1d][0x18][0xb5][0xda][0xea]7[[0xbd][0xfe]y[0xad][0xd7]o[0x94]Y[0xcc][0xbf][0xf][0xb5]N[0xb7][0xde]j[0xae][0x19]l[0xb2]Sk7[0xca][0x95]Z[0xff]c[0xa7][0xde][0xc3][0xf0][0xa4]kg[0xab]\A1[0x1f][0x92][0xd2][0x9f][0xc8][0xb1][0xd5]t+[0xaf][0x19][0xdb][0xa9][0xfb][0xfb]Z[0xad][0xdd][0xaf]\[0xd4]*[0xef]k[0xd5]~[0xeb]jIl[0xca][0xc7][0xd0][0x1e][0xa1][0xf2][0xa4][0xac][0xaa]K[0xc9][0xee][0xf6]Z[0x9d]Z[0xbf][0xd5]l|z[0x1c]'XE[0xb0][0x1a][0xfd]:[0xd4][0xbf]Z[0x7][0x1c][0x8d]O[0x89]$F[0xa9]9[0xb9]2@![0xac]#Z[0x97][0xe5][0xf7][0x8f]`[0xb7]+%[0x8d]V[0xa5][0xdc][0xe8]WZ[0xed][0x80][0xb0][0xdc][0x6][0xed][0x9c]H[0xf3][0xc9]9]^[0x89]D[0xb1][0xcd]$[0x92][0xf3][0x98]z[0x97][0x9b][0xdd][0x8f][0xd8][0xd9]k[0xe7],[0x10]o"?[0x12][0xf2][0xb5][[0xdd][0xfa][0x83][0xf2][0xad]j[0xb2]hz_[0xc2][0xfc]&[0x9d]o[0xb8]_[0xa8][0xef][0x93][0xe7][0xff]3[0x9e][0xa0][0xb7][0xf1][0xd3][0xf8][0x0][0xac][0xf0][0xff][0xc9]fr[0x85][0x88][0xff]O>[0x9b])[0x89][0xfd][0xff]][0xc0][0xb6][0xf7][0xff]+\[0x92]bg[0x15]w[0x9a][0xae][0xe][0x15]K[0xf5]&p[0xdc]8[0x11](&w[0xb][0xdf][0xc5][0xf4][0xdd]o[0xe2]/$[0x8f]&[0x2][0xfa][0x97][0xbc][0x1d]i[0xd7]K[0xde]N[0x8c][0xd1][0x92][0xb7][0x9f]'t[0xf9][0xeb]eoqb[0xb9][0xe4][0xb5][0xea][0xa8]K[0xde]:[0xfa][0xb2][0xb7][0xd7][0xce]2[0xcc][0xf7][0xba]=[0xe]i[0xb1]em[0xfe][0xb][0xd5]i[0x2][0xd6][0x7]W[0xff][0xdb][0x3][0xe7][0xe9][0xdc][0xbf]V[0xfa][0xe6][0xf2]G[0x81][0xfe]/d[0xd0][0xff]+s$[0xfc]?w[0x2][0xdb][0xd6][0xff],[0xd4]pw[0xb0]NT[0xe2][0xf][0x97]mv[0x91][0xdc][0xe2]BU[0xa8][0xa2][0x9d][0x1][0x1e][0xb6][0xc5][0xc8][0xd0][0xa1][0x88]m[/#[0x93])d[0x8e][0x8a][0xc5][0xc4][0xfe][0x9f]a[0xfe][0x9f][0x85][0xa3]b[0xa9]P[0x84][0xf][0x9c][0xff][0x15][0xb2][0xb9][0xaf]Hq[0xeb][0x94][0xc4][0xc0][0x9f]y[0xff][0xf7][0xf9][0xcf][0x82]g> "[0xfe][0xef][0x2]|[0xfe][0xf3][0xc3][0xf6][0x91][0x98][0x1c]x[0x13][0x87][0xf4][0xc5][0xd9][0xac][0x8c]U[0xeb][0xbf]|[0x96][0x8f][0xff][0x99][0xfc]Q[0x8e][0x9f][0xff][0xc8][0x9][0xff][0xef][0x9d][0xc0][0x9e][0x86][0xd7][0xe]8d[0xe9]e[0x6]~[0x90][0x5][0x1e][0xe3][0x7]%#[0x9c][0xf1][0xf3][0xd4][0xd0][0x1c][0x9]e[0xc5]{[0x8a][0xda]D[0xd2]L)[0x9c][0xd2][0x95]0[0x9][0xa5]MB[0x1b][0xb5][0xe5][0xd4]~?Ut{o[0x8f][0xd9][0xac]I[0x8c][0xe8][0x91]?[0xee][0xed][0xc1][0xe4][0xe0][0x9f]0[0xd4][0x4]]M[0x8][0x8b]U[0xf7]N[0xb1][0xb5]!K[0x89]o[0xf6][0xf] [0x1d][0xce]2dy[0xa4][0xdd]R[0x83]}[0xbf]Ut[0xc][0x9d][0xc4]v![0xaa]>[0xd5][0xe4][0x94][0xa4]R[0xa9][0xb3]N[0xeb][0xd2][0xbb][0xe0][0xca][0xdf][0xb4]@S[0x1c])[0x13][0xc7]$[0xef][0xfc]g[0x1f]0t[0x2]%e9xTk[0xf6]:[0x9f][0xda][0xad]z[0xb3]G~[0xc0]Z[0x1e][0x92][0xf4]g[0xc5]:$[0xb6]9[0xa6][0xf0]Eb?[0xd2][0x17]?B1[0x92]ci[0xe3]:[0xde][0xff][0x2]$[0xee][0xf9]T[0xa9]ajB?[0xfe][0xc8][0xcb][0xc0]0[0xfb][0xfb])N^[0xea][0x80]?[0xf5]n[0xe1][0xda]O[0x85][0x8]M[0x1d][0x92]T@[0xa3][0x9f]6[0xb8][0x99]k[0x9f]]v[0x84][0xc9][0x90]J[0xfc][0xc][0xd1][0xc9][0x1e]_[0xf0]\?[0xed][0xf1]&[0xbc][0xbb][0xe1]-[0x18][0x90]&[0xb9][0xd7][0x13][0xf8][0xac][0xf1]j#[0xcb][0x8e][0x97]8[0xcc][0xd0][0xfd][0xc5]v?$,_*[0x14][0xf6][0xe4]@[0xc2][0xed][0xd2][0x6][0x88][0x95][0xbd] }[0x6]j{f[0xd7][0xc1]M[0xdd]}[0x9b]N[0xd0]#[0xd5][0xb4][0x90]][0xff][0xd4]H[0x1d][0xf0][0xf2]bp[0xa8]T[0xa7][0xe][0x12][0xc4]j[0xf0][0xd3]sw[0xa7][0x9f][0x1d][0xac][0x11][0xb1]w[0xe3]2V[0xe9][0xff],[0xe8]|[0xbe][0xfe][0x83])@[0x1e][0xf4][0xa9]P[0xca][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xfd][0xbf][0xb]p[0x99]m[0x99][0xa6][0x83]~c[0xd4]:e[0x17][0xa3][0x81]:sTs[0xea][0x1c][0x92][0xce][0xde][0x9e][0x9b]D[0x99][0xb0][0xab][0xac],[0xc9]}s[0x1a][0x1a]0[0xdc][0x4][0x15][0xd3][0xb0]M[0x9d][0x96]y[0xba][0xf8]l[0x92][0x1b][0xf4]z177K5[0xd8][0xeb][0xbd][0xbd][0xaf][0x89][0xe7][0xb8][0x4]j[0x8e][0xef]y[0x82][0xae]![0xb0][0xba][0xd4][0xa9][0xf5][0x8f]m[0x16]?[0x88][0xb8]w[0x9][0x1a]*[0xb][0xb4]C[0xdc]kR[0xa4][0xa5][0x5]#[0x95]|[0x9][0xcb][0xb]8[0xfd][0xa6]8!?|[0xe3][0xfc]H[0xf6][0xbf]9{[0xf3]M[0xe3][0x80][0xa4][0xc9]7[0xe3]o[0x8c][0x85]zw[0x16][0x89][0xee][0x98]:[0xba][0xb8][0xa3]ZJ[0xaa]v[0x87][\r][0x81][0xa7][0xf4]^[0x19]Ot[0x96]o[0x11][0xb1]t[0xa9][0xdc]c*v+[0x14][0xf4][0x95][0xf7][0xef][0xa0][0xfe][0xef])[0x9d][0x10]X[0xf][0x93][0x81]2[0xfc]2[0x9d][0xb0][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xc7][0xe6]|[0xc7][0xde][0xe3]0s[0x9a][0x8d]A[0xbe]^[0x8b]'d[0x8b]k[0xaf][0x9][0xf9][0xc6]![0xdf][0xc]y;=[0xb7][0x0][0xb][0xd8][0x8]|[0xfd][0xff][0xb2][0xd6][0xb9]RI[0xac][0xff]v[0x1][[0xb][0xdd][0xb8][0xa4][0x8c]U[0xe3][0xa9]p[0xe4][0xf1][0xff]([0x97][0x85]t[0xb9]bA[0x9c][0xff][0xdd][\r]L[0x98][0xab]1]s[0xfd][0xb7][0x17][0xbb][0xbe][0xdb][0xdb][0xc3][0x85]Y[0xb0]\[0xd8][0xd7]`9[0xa8][0xe9]0[0x9a]Yo[0xa2][0xab]:[0x9][0x16]k[0xe9][0xb7][0x4][0xf]\[0x1c][0x90][0x85][0xb7]l[\r]dQg[\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x3][0xe4][0x15][0xac][0x11][0xf0][0xee][0xfa]Y[0x8][0xf9][0xc1][0xde]O[0x9]kG[0x86][0x7][0xd7]ZU[0xbc]h[0xb6][0xd3]?[0xab]7j[0xcc][0xcf][0x8][0x17][0x14][0xa1][0xf5][0x3]Ke[0x11][0xbc][0xad][0xc0][0xbd]C[0xeb][\r]q[0x97] l[0x9d][0xc8][0xdf]z+/[0xc]([0x5][0x9].[0xa7][0xec]j5[0xfc]u[0xe2]&~[0xb][0xa9][0xc7][0xc1][0xd3][0xd6]5[[0x8e]`[0xd6][0xd0][0x15][0xc9][0xd1]4^^[0x96][0x16][0xdb][0x8f]-[0xfb][0x16])[0xf1][0xd6][0xb6][0xce][0x8d]fK[0xc1][0xeb][0xd3][0x80][0xe8]=[0xbe]xC$[0xfe]*[0x11]JW[0xac][0x91][0xff];@[0xe7]b[0xb][0xd7]IRT[0xb5][0xac][0xeb][0xfb][0xde][0xb3][0x83]0[0xc2][0xd0]Rr[0x1e][0xe5][0x2][0x81]A[0xca][0x8][0xc2]9|[0xd1][0x95]d 5xwj[0xb8][0xfd][0xa3][0xac][0xf3][0xca][0x89][0xc9]v [0xdd][0xe1]=d=z[0xef][0xec]sW[0x6]V[0x2]_N[0x1e][0xf8][0x14]L,[0xed][0x16][0x8a][0xf7][0x9a]j!aP[0xbe][[0x16][0x17]E[0xd7]`[0x90]"[0xbf][\r]I[0xca]o[0xd9][0xca][0x94][0xfc][0xd6]7[0xc][0xcc]5ix9K[0x16][0xd7][0xb3][0xd1][0xdc][0xa9][0x90]U[0x1][0x8b][0x9][0xda][0x92]Q[0xfe][0xd3][0xde][0x93][0xf5][0xff][0xed][0x5][0xdb]L.c[0x85][0xfe][0x87][0xb5]^[0x9e][0xad][0xff]`[0x5][0x98]+[0xa1][0xfd]/W,[0x15][0x8f][0x84][0xfe][0xdf][0x5]:[0xd4][0x9e][0xc0][0x12][0x92][0xe2]U[0x93][0xcb]3b[0x88]o[0x89][0x87]v[0x8][0x17][0xe7][0xfa][0x9c][0xac][0x93]7[0x94][0x89][0x95][\r]5[[0x9d][0x8b]wp)[0xb8][0x9a][0x4]H[0x6][0x12]*[0xb0]&[0xc5]E[0xda]r[0x14][0x9f][0x95]{[0xcb][0x96][0xbe][0x87][0xb5][0x14][0x9d][0xf1][0xf2][0xc7]j[0xed][0x9e][0xe][0xcf][0x94]!^[0xb5][0x14][0xb6][0xa7][0xda][0xfa]5,[0xc6][0xdc][0x5]y[0xe4]ud[0xe0]uG[0xbf]ho[0xdc][0xc7][0xa1][0x8f][0xbb]l{[0x1a][0xed][0x90][0x8d][0x87][0x1a][0x92][0x1d][0xd5][0xb4][0xa9][0xd4][0x81]?`[0xea][0xac]Px8W[0xba]4[0xa2][0xdc]>[0xb0][0x1f]-[0xeb][0xcd][0x1b]F[0x3][0x8b][0xb0]~[0x10]R[0xb1][0x81][0xa5][0xf3][0xc2][0x84]q[0xf3][0x94]tg6p[0x16]1Q[0xe3]v?[0xc5][0xd5];[0xbb]i[0xfd][0x80]|[0xf7][0x86][0xa4][0xa6][0x86]v[0xff]F[0x96]e[0x18]gdkj[0xf0][0xa0][0xee][0x92][\r][0x1f][0xa9]X[0xc4][0x1d]:[0x2]]k[0xcd][0x12][0x91]wj[0xe7][0xf5].(V^@6w$e[0xe0]_[0xf6]M[0x11]zhj/[0x82][0xd4]m0^-[0x1b][0xc7]ke[0x2]cy[0xea][0xdd]U[0xbd]QM[0xa1]![0xe2][0xcd][0x1b]f}[0xe]M6[0x98]a[0x12]g$|[0xc0]p[0x9b]O[0xc2][0x1b][0xc3][0xf6]S[0xe7][0xa6]C^q6\[0x83][0xf2]w[0xa9]&[0x8a][0xcd][0x8b][0xe2][0x96][0xd7][0xa0]B([0xe]P.[0x9][0x95][0xe2][0x86][0xe5][0xc0][0x17]S`[0xc4]~4[0x87]+[0xc3][0x90][0x7]j[0x1e][0x96][0xea]}[0xee]o[0xbe] [0x19][0x7][0x87][0xa1][0xb2]\l[0xf3][0xf5][0xfe][0xc1][0xfd][0xf9][0xe3]wP[0x89][[0xf3][0x8b]7[0xd4][0xba]hYu[0xda][0x8b][0xe][0xa5][0x8e]2[\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xb5][0xc9]\[0xe]o[0x8a][0xe7][0xfe]:t[0x5][0xb0][0xbe]8{[0xc0][0xd3]<[0x8e]n[0xf0][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x86]1H[0x80][0xdd][0xbb][0x8]h[0x9f]g?L[0xbd][0x9a][0x17][0x1][0xf9][0x95]/[0xd9][0xa9][0xc3]@[0xca][0xf]$[\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xd5][0xdc][0x8f][0x1d][0xff][0xa3][0xac]\B[0xb6]G$[0xb6];[0xce][0x0][0xaa][0x1a][0xf6][0x10][0xd7][0x1a]-[0xc9]!6z[0xb5];[0x9d][0xaf][0xc1] |[0x99][0xd1]>[0xc7][0xc0]i[0xb]]t[0xc4][0xf5][0x8][0xcc]W$[0xe5]N[0xd1][0x9c][0xba][0x8b][0x8d][0xb7][0xc9][0x92]F>[0xe4][0xe5][0xae][0xaa]gT[0x98][0x80][0xb][0xc9][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "i~[\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0x94][0x9c]n[0xff][0xc0][0x9f][0x2]Iw[0xa0][0xf6]:TQ[0xf1]F^s[0xea][0xec][0xc3][0xc0][0x9f][0x89][0xbc][0x6][0x89]4[0xe8][0xd0]Y[0x92][0xe2]R[0xb9][0xef][0xe1][0xc5][0xbe]<%:[0xe0]b[0xb2][0xc5]Tm[0xe0]?[0xe0][0xa0][0xf3][0x9]c[0x1b]![0xb1];[0xbc]![0x89][0x3][0xc9]|[0x3]$&[0xe3][0x9b]#U[0xbf][0x4]x[0xc6][0x7][0x95]h[0xd3]T}}[0xb8][0x1f][0xa8][0xc6][0xd8]4=[0xdd][0xfe]@-[0xed]z[0xb6][0xcf][0xbc][0x96][0x17][0x9a][0xd8][0x95][0xfa]+K[0xdf][0x9f][0xef][0x7][0xa1][0x84][0x8c][0xef][0xf1][0xa2][0x1f]U[0x16]np[0xe7]%M[0xe1])[0x8d]y[0xce]/[0x93][0x9e][0xef][0xe][0xe6][0xbb]P[0xa4]1[0x17][0x7]`[0xd4][0xdd]u[0xc3]f[0xf1][0xf]8A[0xb1]-[0x13][0x11][0xbe]8[0xba][0x92][0x1a]aNo[0xb9]#[0xe7]b[0xef][0x83]>[0x91]4[0xc0][0xfb][0xfb][0x8c]&[0xf4]"KS[0xdd][0xc6]4[0x8d]&[0xae];[0xf0]~x[0x9e]5<[0x93]9[0xf0][0xb7][0xf5][0xec][0xe9][0x4]j[0x19]J[0xed][0xed][0xbb]q[0xda][0x9e]g[0xef]j[0xc3][0xdb]![0xd6]*c[0xc5][0xfc]?[0x9f]-[0xe5][0xfc][0xf9][0xe6][0xa8][0x4][0xf3][0xff]|^[0xd8]v[0x3]k[0xcd][0xff][0x91][0xef]sS[0xff]{j[0x98]cH[0xac][0x19]0[0x8d][0xb7]F[0xb0][0xba][0xb5]A[0xb6][0xcb][0xd6][0xa8][0xcd][0xbe][0xad]N[0xca][0xf5][0xf1][0xea][0x84]X[0xf4];S[0x9d]=[0xd0]O![0xaa][0xe8]7vs`[0xf3]n<[0xdc]'[0xf1][0xa9]&[0xbd][0xd7][0x1c]n[0xf9]B[0x1a][0xf7][0x9][0xd0][0x8c]f[0x96][0xb2]e)3[0xdf]0[0x4]Z[0x90][0xc5][0x16]9%^E[0xf6]S<[0xe6]5[0x9f]tk[0xd7]d[0xdf][0xbe]1[0xa7][0xba][0xda][0xc6])[0xd0][0x15][0x86]L[0xd8]G\[0x7][0xdc]T[0xe3][0xb7]*<[0x5][0xd4]8#M[0xa7]o[0xa8]>I[0xc1]<[0x81][0xb5]R[0xdd]p[0xcc]}[0x98][0x9c]b[0xcf]l[0xd4][0xcb]H[0x87][0xaf][0xf6]qV[0xc2][0x12][0xa9][0xec][0xf9][0xe9][0x1c]:($[0x84]![0x8c][0x0][0xf3][0xa3]#[0xc0]~[0x90]W[0x2][0xc2][0xc][0xa7][0xcc][0xc6]YNZ[0xaa][0xd2][0xa9][0x95]{[0xb5][0x14]Z[0xf4][0xdc]Q[0xd0]oww[0x92][0x12][0xe4]v[0x95][0x9d]7[0x97][0x86][0xf4][0xb][0xd3][0xaf]hZ[\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[0xe3][0x1e]&[0xc4][0x86][0xde][0xcf][0xfa]*[0x1c][0xfe][0xcc]Yq[0x96][0x17][0xb][0xfc][0x8][0xea][0xc4][0xda]{[0xc1][0xe1][0x82][0xd9][0xdd]B[0xd5][0xc4][0xe9][0x99][0xe6][0xce][0xed][0xc3]f[0x9d]p[0x92][0xb0][0xa5]l[0xce][0xdb]"[0x94]&x[0xca]H[0x8f]q[0xa1][0x88][0xd4]dI[0x83][0xcc][0xd5][0x2][0xa9]^[0x98][0xc7][0xc4][0xb3][0xe9]0[0xc4]z)[0x98][0x14]c[0xc9]sE[0xc7][0xca]_D[0x94][0xf]@v[0xf0][0xb1]dk[0xa0][0xe4]$D[0x91][0xd4][0xa9][0xfd][0xd5]U[0xbd]S[0xab][0xf6][0xcb][0x9d][0xf3][0xae][0xb7]&[\r][0xde][0xbb][0xc4]Yo[0x2][0xd1]CN[0xec][0xb1][0xa6][0x9d]([0x6][0xae][0x8e][0xcc][0x1]s.[0xf6]l[0x93]0[\r]`[0x82];[0x87][0x18][0xca]/[0x84][0xa5][0xfa][0x96][0xc]f[0x84]k[0x89]k]aAO[0xf6]SnhItS[0x1e][0x98] ?h_H[0x1d]xY|[0xd6][0x86][0xb2][0xe2]=[0xc7],'[0xbb][0xa1][0x9e]/[0xd1]X[0xa2] [0x9f]oE[0x8d][0xc9][0xe6][0xbf][0x83][0xf5]![0xac]Z[0x83]L![0xdb]oL[0xb6][0xd0][[0xc8][0xc8][0xb6][0xb6]=[0x9e][0x6](B[0xac][0x8c][0xc3][0xc1][0x97][0x96][0x90]bQ[0x16][0xdd][0xea][0x7][0xb7]C[0x1e][0xb2]nv[0xd8]+[0x9f][0x1f][0xb6][0xaf][0xba][0x17][0x87][0x9d][0xab][0xe6]a[0xa5][0xd5]h[0xd4]*[0xbd][0x1f][0x3][0xec][0x81]- [0x6]7v~W$[0xd1]F[0xa0][0xcc]5[0xc]a^V[0xf0][0xd0][0xf6][0x82]E[0xb2][0x8d]x[0xac][0x87]2b>9L[0xb9][0xef][0xa7][0xca][0x97][0xe5]>[0x8]A[0xbf][0xdd]iU[0xaf]*[0xb0][0xce]G[0xc9]{[0xee][0x11]O[0x80][0x0][0x1][0x2][0x4] [0xfc][0xf1][0xf2]v[0xf2][0x0]8[0x10][0x0][\r][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "0[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 >> "[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "HTTP/1.1 200 OK[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "Api-Version: 1.39[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "Content-Type: application/json[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "Date: Thu, 27 Jun 2019 02:10:47 GMT[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "Docker-Experimental: true[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "Ostype: linux[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "Server: Docker/18.09.2 (linux)[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "Transfer-Encoding: chunked[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.headers - http-outgoing-0 << HTTP/1.1 200 OK -DEBUG dockerjava-jaxrs-async-0 org.apache.http.headers - http-outgoing-0 << Api-Version: 1.39 -DEBUG dockerjava-jaxrs-async-0 org.apache.http.headers - http-outgoing-0 << Content-Type: application/json -DEBUG dockerjava-jaxrs-async-0 org.apache.http.headers - http-outgoing-0 << Date: Thu, 27 Jun 2019 02:10:47 GMT -DEBUG dockerjava-jaxrs-async-0 org.apache.http.headers - http-outgoing-0 << Docker-Experimental: true -DEBUG dockerjava-jaxrs-async-0 org.apache.http.headers - http-outgoing-0 << Ostype: linux -DEBUG dockerjava-jaxrs-async-0 org.apache.http.headers - http-outgoing-0 << Server: Docker/18.09.2 (linux) -DEBUG dockerjava-jaxrs-async-0 org.apache.http.headers - http-outgoing-0 << Transfer-Encoding: chunked -DEBUG dockerjava-jaxrs-async-0 org.apache.http.impl.execchain.MainClientExec - Connection can be kept alive indefinitely -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "37[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "{"stream":"Step 1/1 : FROM busybox"}[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "{"stream":"\n"}[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "82[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "{"stream":" ---\u003e 59788edf1f3e\n"}[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "{"aux":{"ID":"sha256:59788edf1f3e78cd0ebe6ce1446e9d10788225db3dedcfd1a59f764bad2b2690"}}[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 com.github.dockerjava.jaxrs.JerseyDockerCmdExecFactory - 1 * Client response received on thread dockerjava-jaxrs-async-0 -1 < 200 -1 < Api-Version: 1.39 -1 < Content-Length: -1 -1 < Content-Type: application/json -1 < Date: Thu, 27 Jun 2019 02:10:47 GMT -1 < Docker-Experimental: true -1 < Ostype: linux -1 < Server: Docker/18.09.2 (linux) -1 < Transfer-Encoding: chunked -{"stream":"Step 1/1 : FROM busybox"} -{"stream":"\n"} - - -DEBUG dockerjava-jaxrs-async-0 com.github.dockerjava.core.command.BuildImageResultCallback - BuildResponseItem[stream=Step 1/1 : FROM busybox,status=,progressDetail=,progress=,id=,from=,time=,errorDetail=,error=,aux=] -DEBUG dockerjava-jaxrs-async-0 com.github.dockerjava.core.command.BuildImageResultCallback - BuildResponseItem[stream= -,status=,progressDetail=,progress=,id=,from=,time=,errorDetail=,error=,aux=] -DEBUG dockerjava-jaxrs-async-0 com.github.dockerjava.core.command.BuildImageResultCallback - BuildResponseItem[stream= ---> 59788edf1f3e -,status=,progressDetail=,progress=,id=,from=,time=,errorDetail=,error=,aux=] -DEBUG dockerjava-jaxrs-async-0 com.github.dockerjava.core.command.BuildImageResultCallback - BuildResponseItem[stream=,status=,progressDetail=,progress=,id=,from=,time=,errorDetail=,error=,aux=ResponseItem.AuxDetail[size=,tag=,digest=]] -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "30[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "{"stream":"Successfully built 59788edf1f3e\n"}[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "0[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 org.apache.http.wire - http-outgoing-0 << "[\r][\n]" -DEBUG dockerjava-jaxrs-async-0 com.github.dockerjava.core.command.BuildImageResultCallback - BuildResponseItem[stream=Successfully built 59788edf1f3e -,status=,progressDetail=,progress=,id=,from=,time=,errorDetail=,error=,aux=] -DEBUG dockerjava-jaxrs-async-0 com.github.dockerjava.jaxrs.JerseyDockerCmdExecFactory$1 - Connection [id: 0][route: {}->unix://localhost:80] can be kept alive indefinitely -DEBUG dockerjava-jaxrs-async-0 org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-0: set socket timeout to 0 -DEBUG dockerjava-jaxrs-async-0 com.github.dockerjava.jaxrs.JerseyDockerCmdExecFactory$1 - Connection released: [id: 0][route: {}->unix://localhost:80][total kept alive: 1; route allocated: 1 of 10; total allocated: 1 of 100] -DEBUG main com.github.dockerjava.core.command.AbstrDockerCmd - Cmd: 59788edf1f3e,127.0.0.1:5000/ama_cli_created_me,ama_cli_created_me,,com.github.dockerjava.jaxrs.TagImageCmdExec@57d7f8ca -DEBUG main com.github.dockerjava.jaxrs.JerseyDockerCmdExecFactory - 2 * Sending client request on thread main -2 > POST unix://localhost:80/images/59788edf1f3e/tag?repo=127.0.0.1%3A5000%2Fama_cli_created_me&tag=ama_cli_created_me - -DEBUG main org.apache.http.client.protocol.RequestAddCookies - CookieSpec selected: default -DEBUG main org.apache.http.client.protocol.RequestAuthCache - Auth cache not set in the context -DEBUG main com.github.dockerjava.jaxrs.JerseyDockerCmdExecFactory$1 - Connection request: [route: {}->unix://localhost:80][total kept alive: 1; route allocated: 1 of 10; total allocated: 1 of 100] From d0a92f06f534c202e1ac6b0a80c85632aeee9a33 Mon Sep 17 00:00:00 2001 From: "guy.peleg" Date: Thu, 27 Jun 2019 13:30:45 +1000 Subject: [PATCH 7/8] moving to Klogging --- ama-cli/build.gradle | 2 ++ .../apache/amaterasu/ama/cli/container/ContainerHandler.kt | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ama-cli/build.gradle b/ama-cli/build.gradle index d2c49a33..448800bc 100644 --- a/ama-cli/build.gradle +++ b/ama-cli/build.gradle @@ -54,6 +54,8 @@ dependencies { compile "org.jetbrains.kotlin:kotlin-reflect" compile group: 'org.slf4j', name: 'slf4j-api', version: '2.0.0-alpha0' compile group: 'org.slf4j', name: 'slf4j-log4j12', version: '2.0.0-alpha0' +// https://mvnrepository.com/artifact/io.github.microutils/kotlin-logging + compile group: 'io.github.microutils', name: 'kotlin-logging', version: '1.6.26' compile group: 'org.jetbrains.kotlinx', name: 'kotlinx-coroutines-core', version: '1.1.1' diff --git a/ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/container/ContainerHandler.kt b/ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/container/ContainerHandler.kt index a84b46b3..8d529987 100644 --- a/ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/container/ContainerHandler.kt +++ b/ama-cli/src/main/kotlin/org/apache/amaterasu/ama/cli/container/ContainerHandler.kt @@ -7,12 +7,13 @@ import com.github.dockerjava.core.DockerClientBuilder import com.github.dockerjava.core.command.BuildImageResultCallback import com.github.dockerjava.core.command.PushImageResultCallback import com.github.dockerjava.jaxrs.JerseyDockerCmdExecFactory -import org.slf4j.LoggerFactory +import mu.KLogging import java.io.File class ContainerHandler(val action : String, val imageName : String = "") { - val logger = LoggerFactory.getLogger(ContainerHandler::class.java) + companion object: KLogging() + private val dockerHost = System.getenv("DOCKER_HOST") ?: "unix:///var/run/docker.sock" private val dockerRegistry = System.getenv("DOCKER_REGISTRY") ?: "127.0.0.1:5000" From 1c044a8e72f26d02bee34df6f5bfc7606912ce6e Mon Sep 17 00:00:00 2001 From: "guy.peleg" Date: Thu, 27 Jun 2019 14:53:22 +1000 Subject: [PATCH 8/8] removing zip --- .../amaterasu_pandas-0.2.0-incubating-rc4.zip | Bin 7602 -> 0 bytes .../amaterasu_python-0.2.0-incubating-rc4.zip | Bin 5629 -> 0 bytes .../amaterasu_pyspark-0.2.0-incubating-rc4.zip | Bin 13770 -> 0 bytes .../dist/amaterasu-sdk-0.2.0-incubating-rc4.zip | Bin 13978 -> 0 bytes 4 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 frameworks/python/pandas_runtime/dist/amaterasu_pandas-0.2.0-incubating-rc4.zip delete mode 100644 frameworks/python/python_runtime/dist/amaterasu_python-0.2.0-incubating-rc4.zip delete mode 100644 frameworks/spark/pyspark_runtime/dist/amaterasu_pyspark-0.2.0-incubating-rc4.zip delete mode 100644 sdk_python/dist/amaterasu-sdk-0.2.0-incubating-rc4.zip diff --git a/frameworks/python/pandas_runtime/dist/amaterasu_pandas-0.2.0-incubating-rc4.zip b/frameworks/python/pandas_runtime/dist/amaterasu_pandas-0.2.0-incubating-rc4.zip deleted file mode 100644 index b2f00332fc0ac243a65b085e76a9df27383be1de..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 7602 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 Nf$I=oe`+uY{{_PdqFMj| diff --git a/frameworks/python/python_runtime/dist/amaterasu_python-0.2.0-incubating-rc4.zip b/frameworks/python/python_runtime/dist/amaterasu_python-0.2.0-incubating-rc4.zip deleted file mode 100644 index 09a70e6ab9e36a869f30c07761f7b34e5e7aa1ea..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5629 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 Dus+^@ diff --git a/sdk_python/dist/amaterasu-sdk-0.2.0-incubating-rc4.zip b/sdk_python/dist/amaterasu-sdk-0.2.0-incubating-rc4.zip deleted file mode 100644 index 4200b851276cf4bb7ed55b2ca4810ba81bf5b733..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 13978 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