Git-Credential-Manager-for-Windows
Git-Credential-Manager-for-Windows copied to clipboard
No prompt for NTLM TFS on non-joined computer
Description
I'm currently trying to clone the same TFS Git repository from two machines that have recently been installed with the exact same software. Only difference between the two: one is joined to the same domain as the TFS server, while the other isn't joined to any domain.
Cloning the repository from the Visual Studio Team Explorer works on both machines, and creates a new entry in the Windows Credential Manager.
But cloning from the Git command line only works from the domain-joined computer.
On the non-joined computer, the git clone commands ends with no prompt and this error message:
fatal: Authentication failed for 'https://tfs.server.name/Collection/_git/Repo/'
The only way I've found to configure the non-joined computers is to manually create and maintain the credentials in the Windows Credential Manager. Then, it starts working.
Switching to schannel (as mentioned in your FAQ) doesn't change the observed behavior.
Is this expected behavior, or am I missing something here?
I can provide full GIT_TRACE + GCM_TRACE logs if necessary.
Versions
- git version 2.19.0.windows.1
- Git Credential Manager for Windows version 1.17.1
Configuration
core.symlinks=false
core.autocrlf=true
core.fscache=true
color.diff=auto
color.status=auto
color.branch=auto
color.interactive=true
help.format=html
rebase.autosquash=true
http.sslcainfo=C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
http.sslbackend=openssl
diff.astextplain.textconv=astextplain
filter.lfs.clean=git-lfs clean -- %f
filter.lfs.smudge=git-lfs smudge -- %f
filter.lfs.process=git-lfs filter-process
filter.lfs.required=true
credential.helper=manager
@rendmath a GIT_TRACE + GCM_TRACE would be very useful. If you're willing to add a GIT_TRACE_CURL to that mix it would be even better. Please remember to redact any private, personally identifiable, or secret information from the trace before sharing. Thanks!
I'm seeing the same issue connecting from a different forest/domain to the one in TFS. Here's the trace:
C:\tmp>git clone https://this.is.fqdn.url/tfs/SomeName/SomeName/ProjectName/_git/Some.Interesting.Repo LocalFolderName
Cloning into 'LocalFolderName'...
12:51:29.824485 ...\Common.cs:744 trace: [Main] git-credential-manager (v1.18.0) 'get'
12:51:29.903487 ...\Git\Where.cs:348 trace: [FindGitInstallations] found 1 Git installation(s).
12:51:29.910488 ...Configuration.cs:222 trace: [LoadGitConfiguration] git All config read, 17 entries.
12:51:29.918489 ...\Common.cs:345 trace: [EnableTraceLogging] GCM arguments:
protocol=https
host=this.is.fqdn.url
path=
12:51:29.989489 ...\Common.cs:85 trace: [CreateAuthentication] detecting authority type for 'https://this.is.fqdn.url/'.
12:51:30.252496 ...\Common.cs:224 trace: [CreateAuthentication] authority for 'https://this.is.fqdn.url/' is basic with NTLM=Auto.
12:51:30.253496 ...\Common.cs:765 trace: [QueryCredentials] querying 'Auto' for credentials.
12:51:30.407500 ...uthentication.cs:119 trace: [AcquireCredentials] 'https://this.is.fqdn.url/' supports NTLM, sending NTLM credentials instead
12:51:30.408500 ...\Common.cs:780 trace: [QueryCredentials] credentials found.
12:51:30.770572 ...\Common.cs:744 trace: [Main] git-credential-manager (v1.18.0) 'erase'
12:51:30.846574 ...\Git\Where.cs:348 trace: [FindGitInstallations] found 1 Git installation(s).
12:51:30.854575 ...Configuration.cs:222 trace: [LoadGitConfiguration] git All config read, 17 entries.
12:51:30.861574 ...\Common.cs:345 trace: [EnableTraceLogging] GCM arguments:
protocol=https
host=this.is.fqdn.url
path=
username=
password=
12:51:30.912575 ...\Common.cs:85 trace: [CreateAuthentication] detecting authority type for 'https://this.is.fqdn.url/'.
12:51:31.166960 ...\Common.cs:224 trace: [CreateAuthentication] authority for 'https://this.is.fqdn.url/' is basic with NTLM=Auto.
12:51:31.168960 ...\Common.cs:252 trace: [DeleteCredentials] deleting basic credentials for 'https://this.is.fqdn.url/'.
12:51:31.173960 ...aseSecureStore.cs:59 trace: [Delete] credentials not found for 'git:https://this.is.fqdn.url'.
fatal: Authentication failed for 'https://this.is.fqdn.url/tfs/SomeName/SomeName/ProjectName/_git/Some.Interesting.Repo/'
We have the same issue as above. If we using Visual Studio Team Explorer GCM stores the credentials in the Windows Credential Store. But if we use the command line or git bash it doesn't prompt for a username or password and as such the authentication fails. Also the work around of using Visual Studio Team Explorer doesn't work with GIT LFS. GIT will succeed but (because GSM will find the credentials in the credential store) GIT LFS fails (seems like the credentials aren't being passed along).
GIT and GIT LFS works for domain joined computers, but doesn't for non-domain joined computer.
As a note we have an on Prem TFS 2018 with the latest update and using Azure Active Domain connected to on Prem Active Directory
What is Visual Studio Team Explorer doing that is different from the command line?
@gistofj:
Is this thread still monitored?
I'm experiencing the same issue here:
I'm working in a sandbox machine on host.devglobal.exp.loc
while I need to access a TFS machine at tfs.global.exp.loc
. And I cannot authenticate, not matter what I try.
- Git for Windows version:
2.21.0.windows.1
- Credential Manager is used.
When accessing the TFS website from my sandbox machine in IE11, I need to authenticate like domain\user
. I'd expect git to request/accept the same credentials.
Using Git, Visual Studio 2019 or Git Extensions, none of them is asking me for credentials when I try to clone the repository. The only software that's asking me for credentials is GitHub Desktop. I even stores the credentials I enter in the Windows credential store. Nonetheless, authentication fails and the repository is not cloned to my sandbox machine.
When I enter the following git command:
git clone --config core.ignorecase=false --branch development http://tfs.global.exp.loc:8080/tfs/MyCollection/_git/exp-Plus Exp-Plus
This is the result, traced by GIT_TRACE
, GCM_TRACE
and GIT_TRACE_CURL
:
CLICK ME FOR DETAILS
git : 14:46:34.243296 exec-cmd.c:236 trace: resolved executable dir: C:/Program Files/Git/mingw64/bin
At line:1 char:1
+ git clone --config core.ignorecase=false --branch development http:// ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (14:46:34.243296...Git/mingw64/bin:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
14:46:34.243296 git.c:419 trace: built-in: git clone --config core.ignorecase=false --branch development http://tfs.global.exp.loc:8080/tfs/MyCollection/_git/exp-Plus Exp-Plus
14:46:34.305798 run-command.c:643 trace: run_command: git remote-http origin http://tfs.global.exp.loc:8080/tfs/MyCollection/_git/exp-Plus
Cloning into 'Exp-Plus'...
14:46:34.321424 exec-cmd.c:236 trace: resolved executable dir: C:/Program Files/Git/mingw64/libexec/git-core
14:46:34.321424 git.c:676 trace: exec: git-remote-http origin http://tfs.global.exp.loc:8080/tfs/MyCollection/_git/exp-Plus
14:46:34.321424 run-command.c:643 trace: run_command: git-remote-http origin http://tfs.global.exp.loc:8080/tfs/MyCollection/_git/exp-Plus
14:46:34.321424 exec-cmd.c:236 trace: resolved executable dir: C:/Program Files/Git/mingw64/libexec/git-core
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 6 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Couldn't find host tfs.global.exp.loc in the _netrc file; using defaults
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 0 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 1 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 2 ms for 1 (transfer 0x339e350)
14:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
1
4:46:34.337051 http.c:728 == Info: Expire in 3 ms for 1 (transfer 0x339e350)
14:46:34.352677 http.c:728 == Info: Expire in 6 ms for 1 (transfer 0x339e350)
14:46:34.352677 http.c:728 == Info: Trying 10.7.78.56...
14:46:34.352677 http.c:728 == Info: TCP_NODELAY set
14:46:34.352677 http.c:728 == Info: Expire in 200 ms for 4 (transfer 0x339e350)
14:46:34.415184 http.c:728 == Info: Connected to tfs.global.exp.loc (10.7.78.56) port 8080 (#0)
14:46:34.415184 http.c:675 => Send header, 0000000228 bytes (0x000000e4)
14:46:34.415184 http.c:687 => Send header: GET /tfs/MyCollection/_git/exp-Plus/info/refs?service=git-upload-pack HTTP/1.1
14:46:34.415184 http.c:687 => Send header: Host: tfs.global.exp.loc:8080
14:46:34.415184 http.c:687 => Send header: User-Agent: git/2.21.0.windows.1
14:46:34.415184 http.c:687 => Send header: Accept: */*
14:46:34.415184 http.c:687 => Send header: Accept-Encoding: deflate, gzip
14:46:34.415184 http.c:687 => Send header: Pragma: no-cache
14:46:34.415184 http.c:687 => Send header:
14:46:34.415184 http.c:675 <= Recv header, 0000000027 bytes (0x0000001b)
14:46:34.415184 http.c:687 <= Recv header: HTTP/1.1 401 Unauthorized
14:46:34.415184 http.c:675 <= Recv header, 0000000040 bytes (0x00000028)
14:46:34.415184 http.c:687 <= Recv header: Content-Type: text/html; charset=utf-8
14:46:34.415184 http.c:675 <= Recv header, 0000000028 bytes (0x0000001c)
14:46:34.415184 http.c:687 <= Recv header: Server: Microsoft-IIS/10.0
14:46:34.415184 http.c:675 <= Recv header, 0000000055 bytes (0x00000037)
14:46:34.415184 http.c:687 <= Recv header: X-TFS-ProcessId: 95d140ae-0f2b-46d6-9743-7c68c1945688
14:46:34.415184 http.c:675 <= Recv header, 0000000050 bytes (0x00000032)
14:46:34.415184 http.c:687 <= Recv header: ActivityId: c47aad1e-b494-4e03-837f-6ea9576f9c5a
14:46:34.415184 http.c:675 <= Recv header, 0000000053 bytes (0x00000035)
14:46:34.415184 http.c:687 <= Recv header: X-TFS-Session: c47aad1e-b494-4e03-837f-6ea9576f9c5a
14:46:34.415184 http.c:675 <= Recv header, 0000000051 bytes (0x00000033)
14:46:34.415184 http.c:687 <= Recv header: X-VSS-E2EID: c47aad1e-b494-4e03-837f-6ea9576f9c5a
14:46:34.415184 http.c:675 <= Recv header, 0000000029 bytes (0x0000001d)
14:46:34.415184 http.c:687 <= Recv header: X-FRAME-OPTIONS: SAMEORIGIN
14:46:34.415184 http.c:675 <= Recv header, 0000000690 bytes (0x000002b2)
14:46:34.415184 http.c:687 <= Recv header: X-TFS-SoapException: %3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csoap%3AEnvelope%20xmlns%3Asoap%3D%22http%3A%2F%2Fwww.w3.org%2F2003%2F05%2Fsoap-envelope%22%3E%3Csoap%3ABody%3E%3Csoap%3AFault%3E
%3Csoap%3ACode%3E%3Csoap%3AValue%3Esoap%3AReceiver%3C%2Fsoap%3AValue%3E%3Csoap%3ASubcode%3E%3Csoap%3AValue%3EUnauthorizedRequestException%3C%2Fsoap%3AValue%3E%3C%2Fsoap%3ASubcode%3E%3C%2Fsoap%3ACode%3E%3Csoap%3AReason%3E%3Csoap%3AText%20xml%3Alang%3D%22en%22%3ETF400813%
3A%20Resource%20not%20available%20for%20anonymous%20access.%20Client%20authentication%20required.%3C%2Fsoap%3AText%3E%3C%2Fsoap%3AReason%3E%3C%2Fsoap%3AFault%3E%3C%2Fsoap%3ABody%3E%3C%2Fsoap%3AEnvelope%3E
14:46:34.415184 http.c:675 <= Recv header, 0000000128 bytes (0x00000080)
14:46:34.415184 http.c:687 <= Recv header: X-TFS-ServiceError: TF400813%3A%20Resource%20not%20available%20for%20anonymous%20access.%20Client%20authentication%20required.
14:46:34.415184 http.c:675 <= Recv header, 0000000026 bytes (0x0000001a)
14:46:34.415184 http.c:687 <= Recv header: WWW-Authenticate: Bearer
14:46:34.415184 http.c:675 <= Recv header, 0000000068 bytes (0x00000044)
14:46:34.415184 http.c:687 <= Recv header: WWW-Authenticate: Basic realm="http://tfs.global.exp.loc:8080/tfs"
14:46:34.415184 http.c:675 <= Recv header, 0000000029 bytes (0x0000001d)
14:46:34.415184 http.c:687 <= Recv header: WWW-Authenticate: Negotiate
14:46:34.415184 http.c:675 <= Recv header, 0000000024 bytes (0x00000018)
14:46:34.415184 http.c:687 <= Recv header: WWW-Authenticate: NTLM
14:46:34.415184 http.c:675 <= Recv header, 0000000023 bytes (0x00000017)
14:46:34.415184 http.c:687 <= Recv header: X-Powered-By: ASP.NET
14:46:34.415184 http.c:675 <= Recv header, 0000000124 bytes (0x0000007c)
14:46:34.415184 http.c:687 <= Recv header: P3P: CP="CAO DSP COR ADMa DEV CONo TELo CUR PSA PSD TAI IVDo OUR SAMi BUS DEM NAV STA UNI COM INT PHY ONL FIN PUR LOC CNT"
14:46:34.415184 http.c:675 <= Recv header, 0000000024 bytes (0x00000018)
14:46:34.415184 http.c:687 <= Recv header: Lfs-Authenticate: NTLM
14:46:34.415184 http.c:675 <= Recv header, 0000000033 bytes (0x00000021)
14:46:34.415184 http.c:687 <= Recv header: X-Content-Type-Options: nosniff
14:46:34.415184 http.c:675 <= Recv header, 0000000037 bytes (0x00000025)
14:46:34.415184 http.c:687 <= Recv header: Date: Thu, 25 Apr 2019 12:46:33 GMT
14:46:34.415184 http.c:675 <= Recv header, 0000000023 bytes (0x00000017)
14:46:34.415184 http.c:687 <= Recv header: Content-Length: 20169
14:46:34.415184 http.c:675 <= Recv header, 0000000002 bytes (0x00000002)
14:46:34.415184 http.c:687 <= Recv header:
14:46:34.415184 http.c:701 <= Recv data, 0000012236 bytes (0x00002fcc)
14:46:34.415184 http.c:716 <= Recv data: ..<!DOCTYPE html>..<html>.. <head>.. <title>TF4008
14:46:34.415184 http.c:716 <= Recv data: 13: Resource not available for anonymous access. Client auth
14:46:34.415184 http.c:716 <= Recv data: entication required. - Microsoft Team Foundation Server</tit
14:46:34.415184 http.c:716 <= Recv data: le>.. <style type="text/css">.. body,butto
14:46:34.415184 http.c:716 <= Recv data: n { font-family: Segoe UI, Helvetica Neue, Helvetica, Arial,
14:46:34.415184 http.c:716 <= Recv data: Verdana; font-size: 16px; }.. body { height: 100
14:46:34.415184 http.c:716 <= Recv data: % }.. A { color: #106ebe; text-decoration: none;
14:46:34.415184 http.c:716 <= Recv data: }.. A:hover { text-decoration: underline; }..
14:46:34.415184 http.c:716 <= Recv data: h1 { font-size: 32px; color: #666; margin-bottom: 0p
14:46:34.415184 http.c:716 <= Recv data: x; }.. h2 { font-size: 24px; color: #666; font-we
14:46:34.415184 http.c:716 <= Recv data: ight: normal; margin-top: 0px; }.. pre { font-fam
14:46:34.415184 http.c:716 <= Recv data: ily: Consolas, Courier New, monospace; font-size: 12px; bord
14:46:34.415184 http.c:716 <= Recv data: er: 1px solid #ccc; background-color: #eaeaea; padding: 10px
14:46:34.415184 http.c:716 <= Recv data: ;}.. #moreInfoButton { background: transparent; b
14:46:34.430810 http.c:716 <= Recv data: order: 0; color: #106ebe; cursor: pointer; }..
14:46:34.430810 http.c:716 <= Recv data: .. </style>.. <script type="text/javascript"
14:46:34.430810 http.c:716 <= Recv data: >.. function toggle(event) {.. if
14:46:34.430810 http.c:716 <= Recv data: (!event.key || event.key === " " || event.key === "Spacebar"
14:46:34.430810 http.c:716 <= Recv data: || event.key === "Enter") {.. var icon =
14:46:34.430810 http.c:716 <= Recv data: document.getElementById("moreInfoIcon");..
14:46:34.430810 http.c:716 <= Recv data: var section = document.getElementById("moreInfo");..
14:46:34.430810 http.c:716 <= Recv data: var wasShowing = section.style.display === ""
14:46:34.430810 http.c:716 <= Recv data: ;.... icon.src = wasShowing..
14:46:34.430810 http.c:716 <= Recv data: ? "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgA
14:46:34.430810 http.c:716 <= Recv data: AABAAAAAQCAYAAAAf8%2F9hAAAABGdBTUEAALGPC%2FxhBQAAAAlwSFlzAAA
14:46:34.430810 http.c:716 <= Recv data: OwgAADsIBFShKgAAAABl0RVh0U29mdHdhcmUAUGFpbnQuTkVUIHYzLjUuODc
14:46:34.430810 http.c:716 <= Recv data: 7gF0AAAB2SURBVDhPY2AYBThDoKWlJa2jo0OO7CBaunTpfxAGGmRCliEgzc%
14:46:34.430810 http.c:716 <= Recv data: 2BePfs%2Ff%2F78%2F01NTZokGwIyAARAhkybNo10Q2AGwAwBeuV%2Fa2urH
14:46:34.430810 http.c:716 <= Recv data: tEuWb58OWUuABkAC4Pm5mY7om2GKQQZAMJkaQYZAgx5P4rSAclOHjANAOQrX
14:46:34.430810 http.c:716 <= Recv data: esb81M5AAAAAElFTkSuQmCC".. : "data:im
14:46:34.430810 http.c:716 <= Recv data: age/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8%2F9
14:46:34.430810 http.c:716 <= Recv data: hAAAABGdBTUEAALGPC%2FxhBQAAAAlwSFlzAAAOwgAADsIBFShKgAAAABl0R
14:46:34.430810 http.c:716 <= Recv data: Vh0U29mdHdhcmUAUGFpbnQuTkVUIHYzLjUuODc7gF0AAABCSURBVDhPY2AYB
14:46:34.430810 http.c:716 <= Recv data: fQJATU1NWsgLifLNhUVFVeg5v8gTLIBMM2RkZGkG4CsmWQD0DWTbAAowGD%2
14:46:34.430810 http.c:716 <= Recv data: BRqLJC0SSA24EagAAq9sjtZrUZogAAAAASUVORK5CYII%3D";..
14:46:34.430810 http.c:716 <= Recv data: section.style.display = wasShowing ? "none" : "";
14:46:34.430810 http.c:716 <= Recv data: .... event.target.setAttribute("aria-expa
14:46:34.430810 http.c:716 <= Recv data: nded", String(!wasShowing));.. }..
14:46:34.430810 http.c:716 <= Recv data: }.. </script>.. </head>.... <body>....
14:46:34.430810 http.c:716 <= Recv data: <div style="position: relative; width: 960px; margin-left: a
14:46:34.430810 http.c:716 <= Recv data: uto; margin-right: auto;">.... <div style="positi
14:46:34.430810 http.c:716 <= Recv data: on: absolute; left: 100px;right:0">.... ..
14:46:34.430810 http.c:716 <= Recv data: <h1>Error</h1>.. <h2>The page yo
14:46:34.430810 http.c:716 <= Recv data: u are looking for is currently unavailable.</h2>..
14:46:34.430810 http.c:716 <= Recv data: .. <div id="errorMessage" style="font-s
14:46:34.430810 http.c:716 <= Recv data: ize: 24px; color: #da0a00; margin-top: 30px; margin-bottom:
14:46:34.430810 http.c:716 <= Recv data: 30px;">TF400813: Resource not available for anonymous access
14:46:34.430810 http.c:716 <= Recv data: . Client authentication required.</div>.... <
14:46:34.430810 http.c:716 <= Recv data: div>.. <button id="moreInfoButton" aria-e
14:46:34.430810 http.c:716 <= Recv data: xpanded="false" aria-controls="moreInfo" onclick="toggle(eve
14:46:34.430810 http.c:716 <= Recv data: nt)">.. <img alt="" id="moreInfoIcon"
14:46:34.430810 http.c:716 <= Recv data: src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQ
14:46:34.430810 http.c:716 <= Recv data: CAYAAAAf8%2F9hAAAABGdBTUEAALGPC%2FxhBQAAAAlwSFlzAAAOwgAADsIB
14:46:34.430810 http.c:716 <= Recv data: FShKgAAAABl0RVh0U29mdHdhcmUAUGFpbnQuTkVUIHYzLjUuODc7gF0AAAB2
14:46:34.430810 http.c:716 <= Recv data: SURBVDhPY2AYBThDoKWlJa2jo0OO7CBaunTpfxAGGmRCliEgzc%2BePfs%2F
14:46:34.430810 http.c:716 <= Recv data: f%2F78%2F01NTZokGwIyAARAhkybNo10Q2AGwAwBeuV%2Fa2urHtEuWb58OW
14:46:34.430810 http.c:716 <= Recv data: UuABkAC4Pm5mY7om2GKQQZAMJkaQYZAgx5P4rSAclOHjANAOQrXesb81M5AA
14:46:34.430810 http.c:716 <= Recv data: AAAElFTkSuQmCC" width="16" height="16" align="absmiddle" bor
14:46:34.430810 http.c:716 <= Recv data: der="0" /> .. More information about
14:46:34.430810 http.c:716 <= Recv data: this error.. </button>.. <
14:46:34.430810 http.c:716 <= Recv data: /div>.. <div id="moreInfo" style="display: no
14:46:34.430810 http.c:716 <= Recv data: ne; padding-left: 20px; padding-top: 20px; width: 100%;">..
14:46:34.430810 http.c:716 <= Recv data: <pre tabindex="0" aria-label="Error detai
14:46:34.430810 http.c:716 <= Recv data: ls" id="errorMessageDetailed" style="width: 600px; height: 3
14:46:34.430810 http.c:716 <= Recv data: 00px; overflow: scroll;">TF400813: Resource not available fo
14:46:34.430810 http.c:716 <= Recv data: r anonymous access. Client authentication required.....</pre
14:46:34.430810 http.c:716 <= Recv data: >.. </div>...... <div style="f
14:46:34.430810 http.c:716 <= Recv data: ont-size: 24px; color: #107c10; margin-top: 30px;">Things yo
14:46:34.430810 http.c:716 <= Recv data: u can try:</div>.... <ul style="line-height:
14:46:34.430810 http.c:716 <= Recv data: 200%;">.. <li><a href="javascript:window.
14:46:34.430810 http.c:716 <= Recv data: location.reload(true);">Refresh the current page</a></li>..
14:46:34.430810 http.c:716 <= Recv data: <li><a href="javascript:history.back();">
14:46:34.430810 http.c:716 <= Recv data: Go back to the previous page</a></li>.. .
14:46:34.430810 http.c:716 <= Recv data: . <li><a href="/tfs/_signout?mode=SignInA
14:46:34.430810 http.c:716 <= Recv data: sDifferentUser&redirectUrl=%2Ftfs%2FMyCollection%2F_git
14:46:34.430810 http.c:716 <= Recv data: %2Fexp-Plus%2Finfo%2Frefs%3Fservice%3Dgit-u
14:46:34.430810 http.c:716 <= Recv data: pload-pack">Sign in as a different user</a></li>..
14:46:34.430810 http.c:716 <= Recv data: .. <li><a href="https://go.micr
14:46:34.430810 http.c:716 <= Recv data: osoft.com/fwlink/?LinkID=242556" target="_blank">Submit feed
14:46:34.430810 http.c:716 <= Recv data: back to Microsoft about this error</a></li>..
14:46:34.430810 http.c:716 <= Recv data: </ul>.. .... <div style="colo
14:46:34.430810 http.c:716 <= Recv data: r: #666; margin-top: 100px;">.. <div styl
14:46:34.430810 http.c:716 <= Recv data: e="">Microsoft Visual Studio Team Foundation Server</div>..
14:46:34.430810 http.c:716 <= Recv data: <div style="">.. Microsoft Corporation. A
14:46:34.430810 http.c:716 <= Recv data: ll rights reserved.</div>.. </div>..
14:46:34.430810 http.c:716 <= Recv data: </div>.... <div style="position: absolute; top
14:46:34.430810 http.c:716 <= Recv data: : 10px; width: 100px;">.. <img alt="" width="
14:46:34.430810 http.c:716 <= Recv data: 64" height="64" src="data:image/png;base64,iVBORw0KGgoAAAANS
14:46:34.430810 http.c:716 <= Recv data: UhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT
14:46:34.430810 http.c:716 <= Recv data: 2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAl
14:46:34.430810 http.c:716 <= Recv data: EtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2
14:46:34.430810 http.c:716 <= Recv data: AfkIaKOg6OIisr74Xuja9a89%2BbN%2FrXXPues852zzwfACAyWSDNRNYAMq
14:46:34.430810 http.c:716 <= Recv data: UIeEeCDx8TG4eQuQIEKJHAAEAizZCFz%2FSMBAPh%2BPDwrIsAHvgABeNMLC
14:46:34.430810 http.c:716 <= Recv data: ADATZvAMByH%2Fw%2FqQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTA
14:46:34.430810 http.c:716 <= Recv data: KAEAGDLY2LjAFAtAGAnf%2BbTAICd%2BJl7AQBblCEVAaCRACATZYhEAGg7A
14:46:34.430810 http.c:716 <= Recv data: KzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7A
14:46:34.430810 http.c:716 <= Recv data: GDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXK
14:46:34.430810 http.c:716 <= Recv data: xQ2YQJhmkAuwnmZGTKBNA%2Fg88wAAKCRFRHgg%2FP9eM4Ors7ONo62Dl8t6
14:46:34.430810 http.c:716 <= Recv data: r8G%2FyJiYuP%2B5c%2BrcEAAAOF0ftH%2BLC%2BzGoA7BoBt%2FqIl7gRoX
14:46:34.430810 http.c:716 <= Recv data: gugdfeLZrIPQLUAoOnaV%2FNw%2BH48PEWhkLnZ2eXk5NhKxEJbYcpXff5nw
14:46:34.430810 http.c:716 <= Recv data: l%2FAV%2F1s%2BX48%2FPf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H%
14:46:34.430810 http.c:716 <= Recv data: 2FLcL%2F%2Fwd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s%2B
14:46:34.430810 http.c:716 <= Recv data: wM%2B3zUAsGo%2BAXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93%
14:46:34.430810 http.c:716 <= Recv data: 2F%2B8%2F%2FUegJQCAZkmScQAAXkQkLlTKsz%2FHCAAARKCBKrBBG%2FTBG
14:46:34.430810 http.c:716 <= Recv data: CzABhzBBdzBC%2FxgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMB
14:46:34.430810 http.c:716 <= Recv data: RaIaTcA4uwlW4Dj1wD%2FphCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4I
14:46:34.430810 http.c:716 <= Recv data: cFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxl
14:46:34.430810 http.c:716 <= Recv data: IGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8%2BQ8c
14:46:34.430810 http.c:716 <= Recv data: wwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8%2BxdwQSgUXAC
14:46:34.430810 http.c:716 <= Recv data: TYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR%2BcQYYjI
14:46:34.430810 http.c:716 <= Recv data: xh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI%2BksqZs0S
14:46:34.430810 http.c:716 <= Recv data: Bojk8naZGuyBzmULCAryIXkneTD5DPkG%2BQh8lsKnWJAcaT4U%2BIoUspqS
14:46:34.430810 http.c:716 <= Recv data: hnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6Wto
14:46:34.430810 http.c:716 <= Recv data: pXTGmgXaPdpr%2Bh0uhHdlR5Ol9BX0svpR%2BiX6AP0dwwNhhWDx4hnKBmbG
14:46:34.430810 http.c:716 <= Recv data: AcYZxl3GK%2BYTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyo
14:46:34.430810 http.c:716 <= Recv data: vVKmqpqreqgtV81XLVI%2BpXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHq
14:46:34.430810 http.c:716 <= Recv data: meob1Q%2FpH5Z%2FYkGWcNMw09DpFGgsV%2FjvMYgC2MZs3gsIWsNq4Z1gTX
14:46:34.430810 http.c:716 <= Recv data: EJrHN2Xx2KruY%2FR27iz2qqaE5QzNKM1ezUvOUZj8H45hx%2BJx0TgnnKKe
14:46:34.430810 http.c:716 <= Recv data: X836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5
14:46:34.430810 http.c:716 <= Recv data: Bx0onXCdHZ4%2FOBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up%2B6Ynr5
14:46:34.430810 http.c:716 <= Recv data: egJ5Mb6feeb3n%2Bhx9L%2F1U%2FW36p%2FVHDFgGswwkBtsMzhg8xTVxbzw
14:46:34.430810 http.c:716 <= Recv data: dL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZ
14:46:34.430810 http.c:716 <= Recv data: LTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm%2Beb15vft2BaeFost
14:46:34.430810 http.c:716 <= Recv data: qi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw
14:46:34.430810 http.c:716 <= Recv data: 7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw%2B6TvZN9un2N%2FT0HDYfZD
14:46:34.430810 http.c:716 <= Recv data: qsdWh1%2Bc7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00d
14:46:34.430810 http.c:716 <= Recv data: nF2e5c4PziIuJS4LLLpc%2BLpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26%2F
14:46:34.430810 http.c:716 <= Recv data: uNu5p7ofcn8w0nymeWTNz0MPIQ%2BBR5dE%2FC5%2BVMGvfrH5PQ0%2BBZ7X
14:46:34.430810 http.c:716 <= Recv data: nIy9jL5FXrdewt6V3qvdh7xc%2B9j5yn%2BM%2B4zw33jLeWV%2FMN8C3yLf
14:46:34.430810 http.c:716 <= Recv data: LT8Nvnl%2BF30N%2FI%2F9k%2F3r%2F0QCngCUBZwOJgUGBWwL7%2BHp8Ib%
14:46:34.430810 http.c:716 <= Recv data: 2BOPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0
14:46:34.430810 http.c:716 <= Recv data: Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KN
14:46:34.430810 http.c:716 <= Recv data: So%2Bqi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt%2F87fOH4p3iC
14:46:34.430810 http.c:716 <= Recv data: %2BN7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnn
14:46:34.430810 http.c:716 <= Recv data: CHcJnIi%2FRNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdm
14:46:34.430810 http.c:716 <= Recv data: zqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z%2Bpn5mZ2y6xlhbL%2BxW6Lty8el
14:46:34.430810 http.c:716 <= Recv data: QfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a%2FzYnKOZarnivN7cyzytuQN5z
14:46:34.430810 http.c:716 <= Recv data: vn%2F%2FtEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3
14:46:34.430810 http.c:716 <= Recv data: VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1%2B1dT1gvWd%2B1Yfq
14:46:34.430810 http.c:716 <= Recv data: GnRs%2BFYmKrhTbF5cVf9go3HjlG4dvyr%2BZ3JS0qavEuWTPZtJm6ebeLZ5
14:46:34.430810 http.c:716 <= Recv data: bDpaql%2BaXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO%2FPLi8ZafJzs0
14:46:34.430810 http.c:716 <= Recv data: 7P1SkVPRU%2BlQ27tLdtWHX%2BG7R7ht7vPY07NXbW7z3%2FT7JvttVAVVN1
14:46:34.430810 http.c:716 <= Recv data: WbVZftJ%2B7P3P66Jqun4lvttXa1ObXHtxwPSA%2F0HIw6217nU1R3SPVRSj
14:46:34.430810 http.c:716 <= Recv data: 9Yr60cOxx%2B%2B%2Fp3vdy0NNg1VjZzG4iNwRHnk6fcJ3%2FceDTradox7r
14:46:34.430810 http.c:716 <= Recv data: OEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w%2B0dbq3nr8R9sfD5w0PFl5SvN
14:46:34.430810 http.c:716 <= Recv data: UyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb%2B%2B6EHTh0kX%2Fi
14:46:34.430810 http.c:716 <= Recv data: %2Bc7vDvOXPK4dPKy2%2BUTV7hXmq86X23qdOo8%2FpPTT8e7nLuarrlca7n
14:46:34.430810 http.c:716 <= Recv data: uer21e2b36RueN87d9L158Rb%2F1tWeOT3dvfN6b%2FfF9%2FXfFt1%2Bcif
14:46:34.430810 http.c:716 <= Recv data: 9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v%2B3Njv3H9qwHeg89HcR%2FcGhYP
14:46:34.430810 http.c:716 <= Recv data: P%2FpH1jw9DBY%2BZj8uGDYbrnjg%2BOTniP3L96fynQ89kzyaeF%2F6i%2F
14:46:34.430810 http.c:716 <= Recv data: suuFxYvfvjV69fO0ZjRoZfyl5O%2FbXyl%2FerA6xmv28bCxh6%2ByXgzMV7
14:46:34.430810 http.c:716 <= Recv data: 0VvvtwXfcdx3vo98PT%2BR8IH8o%2F2j5sfVT0Kf7kxmTk%2F8EA5jz%2FGM
14:46:34.430810 http.c:716 <= Recv data: zLdsAAAAgY0hSTQAAeiUAAICDAAD5%2FwAAgOkAAHUwAADqYAAAOpgAABdvk
14:46:34.430810 http.c:716 <= Recv data: l%2FFRgAAHaxJREFUeNrMm3mYXFWd9z%2Fn3Nq7q%2FdOeu9OdxIhhLD4jrz
14:46:34.430810 http.c:716 <= Recv data: jMi6vy4iozDtu78yLMI44L6MgRMAJm4ww4%2FO4L4SoYFAyAYIM4oAS4wYiE
14:46:34.430810 http.c:716 <= Recv data: ZNAgBDSSdNZ6H2rru6u%2Fd5zzvvHPbe60jYMPur7TiXnqXtvVd0%2B3%2B9
14:46:34.430810 http.c:716 <= Recv data: v%2F51zhTGGP9Xre9%2F73tscx3mTlHKD4zg9juM0O46TlFJGAMcYg1JKeZ5
14:46:34.430810 http.c:716 <= Recv data: X8jxvwfO8Kc%2FzjiulnlVKPXLJJZf8lD%2FxS%2FyxCdi%2BffvHQqHQuyO
14:46:34.430810 http.c:716 <= Recv data: RyFn19fWtVVVVMhKJkEgkiMfjxGIxQqEQjuNgCaBYLJLJZMjn82QyGXK5HAs
14:46:34.430810 http.c:716 <= Recv data: LCzqVSo25rrvf87wHP%2F7xj3%2F7vywB27ZtOy0cDl8ai8Xe3tLS0pNMJkV
14:46:34.430810 http.c:716 <= Recv data: tbS21tbWEw2Ecx0FrjTEGrTWlUgnXdXFdF8dxAAiHwwghEEKgtcZ1XVKpFJO
14:46:34.430810 http.c:716 <= Recv data: Tk8zOzpqJiYnjruvu8jzvG5dffvnB%2FxIEbNu2bU00Gr22qqrq3I6OjuaGh
14:46:34.430810 http.c:716 <= Recv data: gbq6uqIx%2BNIKSmVSszOzuJ5HplMhkKhQDqdJp1Oo5QqEwIQi8WIx%2BNlT
14:46:34.430810 http.c:716 <= Recv data: ampqaGhoYFwOMz8%2FDxjY2NMTU0xPDw8lc%2FnH%2FY87%2BZPfepTA%2F%
14:46:34.430810 http.c:716 <= Recv data: 2FfCLjnnnv%2BJZFI%2FG1PT093c3MzdXV1xGIxXNctq%2FP09DRzx4%2FhH
14:46:34.430810 http.c:716 <= Recv data: jxE6NggzsgoodwCulBCey4YgZECL%2BTgGchHI8w1NZHtWgV9fdS3tbGyoZ7
14:46:34.430810 http.c:716 <= Recv data: Gxkba29vJ5%2FNMTEwwPDzMiRMnXnRdd%2FvGjRuv%2BX9KwPbt218Xi8Vu7
14:46:34.430810 http.c:716 <= Recv data: urq%2BouVK1fK5uZmYrEYhUKBQqHA1NQUo%2F39FPb%2BluTTzxKbnkE6AhG
14:46:34.430810 http.c:716 <= Recv data: JQiSMkQ5CCACMNmhM2TwwGlEsYvJ5stkc01VRjp3xamKnn0FP3yqaGxvp7u7
14:46:34.430810 http.c:716 <= Recv data: GdV2GhoYYGhrSY2NjvyoWizds2rTpsT85AXffffcnq6urr1i9enV3Z2cn8Xg
14:46:34.430810 http.c:716 <= Recv data: crTXZbJYTJ04wsmcP4UceoWlwEBGPI2IxpBMCYcD%2FDyYADFoYjDYghG8Og
14:46:34.430810 http.c:716 <= Recv data: DEGA2gA10XMzTG%2FkGawZxWFN%2F0PVm3YQGtTI319faRSKQ4fPszg4OCLp
14:46:34.430810 http.c:716 <= Recv data: VLpK5s2bfqa%2BT0l%2BooJ2LFjxxdXrlz5sa6urmRrayvxeJxsNsvk5CQHH
14:46:34.430810 http.c:716 <= Recv data: 3mE6I9%2FTPOJIWRDHTIc9n9kwYBB%2BwJGABqFMlhS%2FO8E89Dm5HPPEhP
14:46:34.430810 http.c:716 <= Recv data: KZchPTDDQ0Y371%2B9j%2FWmn0t7eTjQaZWBggKNHj2bm5uZu37Rp08bfh4R
14:46:34.430810 http.c:716 <= Recv data: XRMD3v%2F%2F9b3d0dFzY29sbqaurIxQKkclkeGrfPqbvu4%2Be%2FfuJ1tU
14:46:34.430810 http.c:716 <= Recv data: RCod96RntgxMCowJACgRl4FoY0AZtDAJQdh6LmmDJsdeVAY0hPJcmPTnN4b9
14:46:34.430810 http.c:716 <= Recv data: 4E70f%2BiCtjfV0dXUxNDREf39%2FaXx8%2FN%2Buu%2B66i40x%2BpUQEHo
14:46:34.430810 http.c:716 <= Recv data: l4Lu7u%2F9uzZo1oerqaoQQjIyMsOfnPyd6%2F7%2BzOpMl0ty8RHq%2Buhu
14:46:34.430810 http.c:716 <= Recv data: lyqAAlLamIAxGBQCD3wVAfYaM8e%2BjMaDBGI0ACskk0apqTv%2FNo7xw5BC
14:46:34.430810 http.c:716 <= Recv data: pS%2F4RrTXd3d1Eo9GIMebDN910kxBCfPSVkPCyGrBjx44vdnV1Xbpu3bpIV
14:46:34.430810 http.c:716 <= Recv data: VUVxhgGBwd5%2FAc%2FYM2PfkxtMmkTGg1orODRS9Q5MAVdIWULExUc6yWfW
14:46:34.430810 http.c:716 <= Recv data: cdoFQZttCXFv6YEyJkZjnsu7icu46yzzqK7u5vp6Wn27dtXmpiY2HLjjTdu%
14:46:34.430810 http.c:716 <= Recv data: 2FM9ICL2cw2ttbf3Y6tWrI4lEglAoxBNPPMGRH9zP%2Bsd3U1VbayesMTaW6
14:46:34.430810 http.c:716 <= Recv data: 8DJWY8XvJsKuy47Qvv5SZ9pXQZsKkgzxvzOPYw2lOrqac%2FkGNy8md0f%2B
14:46:34.430810 http.c:716 <= Recv data: QjGGFatWsX69esjxWLx76%2B%2F%2FvphIcSXX46E0EuFupqamit6enqSNTU
14:46:34.430810 http.c:716 <= Recv data: 1hMNh9u7dy5G77ubUJ58kWldbTmBMBQh7qazSZbAVZnCSt7egffIMRlvSKoG
14:46:34.430810 http.c:716 <= Recv data: Xv7tIWPC5QKPjUbqEYWjLreyzWWdbWxurV6%2BuXlhYuOyqq656UgjxyEs5R
14:46:34.430810 http.c:716 <= Recv data: rncxVgsdvPq1au7W1paiEajHDx4kP577mHdnieI1SUhCGNl6eB7eQzan6b%2
14:46:34.430810 http.c:716 <= Recv data: Fzzo59KIU%2Fd9otFJordHGNwOttc0J7Hkw7D2U0eXfa6PQWuEpg1YaHYnQU
14:46:34.430810 http.c:716 <= Recv data: lWF99UvcfDQISYmJujr62PVqlWdiUTis0BYBMnHf0bAPffc8y9dXV1%2F0dv
14:46:34.430810 http.c:716 <= Recv data: bSywWY3p6mr333MOpv%2Fo1obp6tLKTtaqvtPFDlVK4mSxeoUgxm%2FUnhkE
14:46:34.430810 http.c:716 <= Recv data: bjac1SmuUp1FKoT1lwfnXtdZ42qC0Qhm9SEyphJfP4%2BULlHI5PKVQSuEpj
14:46:34.430810 http.c:716 <= Recv data: VLB7xVGeZhIjHYZZuzLX2BsYoJCocC6detYsWLFa6%2B55pp%2FfSlhy6W5f
14:46:34.430810 http.c:716 <= Recv data: SKR%2BN%2Ft7e0yHA5jjOGhu%2B5i7SOP4NTXWtv1JaSMwcNmcp6LVyrR%2B
14:46:34.430810 http.c:716 <= Recv data: 3%2F%2BgT%2B%2F%2FwFWXXQRxWwWz3V9oBi0Vr7kjEZhytqjjEFZDVGaspS
14:46:34.430810 http.c:716 <= Recv data: 9XA5ZVUXbFZdz2pZbaX7taynOzZV%2F52uBLwitDcYoVF0dnaMT%2FPb220m
14:46:34.430810 http.c:716 <= Recv data: n09TW1tLX1ycjkcgHL7744tOEEPJlfUA0Gr121apVXY2NjUgp%2BclPfkLdL
14:46:34.430810 http.c:716 <= Recv data: 39BREobwys9tsEI0K6HWyiw4YYbqD33XAA6PvYxCIc59PWvE6pKgHTKpuKHS
14:46:34.430810 http.c:716 <= Recv data: I3W1mSWOjfAyxcI1yRZcdllmFNOYbpYpPeGG9BOiKGdDxNJJssmsvhb7Xvhj
14:46:34.430810 http.c:716 <= Recv data: nZW%2FHQnT7zudcTjcdrb22lvb%2B8oFovXAB8GSstqwLZt206rqqo6N8iu5
14:46:34.430810 http.c:716 <= Recv data: ufnGfzxj%2BiYnMaJRH0bL%2F9Rqwmuh1sscvr115fBB6%2BOv%2Fs71l5%2
14:46:34.430810 http.c:716 <= Recv data: BOcWFLMp1y%2F7AM8rauF4EoTXaKAwGN5sjVF1Fy8aNqLVrKczMkE%2BnOTI
14:46:34.430810 http.c:716 <= Recv data: wQPfVV9F%2B7rvIz876wij7Cd8klNYYbahqWsnUd25jIjVLNBpl7dq1x
14:46:34.430810 http.c:701 <= Recv data, 0000007933 bytes (0x00001efd)
14:46:34.430810 http.c:716 <= Recv data: GKxt37kIx85e6kWlE8ikcilnZ2dzclkEoD77r2XVQcPYeJR38atXRq9aKNes
14:46:34.430810 http.c:716 <= Recv data: cj6666l7l3v%2Bh3b0sbQfeGFrL30ExQzGVzXKzvEwLFpC1xrP4coLeSINNT
14:46:34.430810 http.c:716 <= Recv data: 74Pv6KKRSeMr3F6V8nkP9%2FXRd%2FklWvvVtlLJZ3394vl8o%2BxOl0NXVt
14:46:34.430810 http.c:716 <= Recv data: B09zr6HHmJubo6mpiZaWloam5qa%2FhEIL0tALBZ7e3NzM%2BFw2K%2Fodu%
14:46:34.430810 http.c:716 <= Recv data: 2BmsVQAbKFigmTEPy7Oz9H1gQ9Q%2F67zfhe81ijXpVAs0vvRj3LqlZ%2FCL
14:46:34.430810 http.c:716 <= Recv data: ZXwisUK4LYoUj4ZpWyW6IomWq%2B5Br1mDYXZ2XJjxPM831EWChw8fJhVV1x
14:46:34.430810 http.c:716 <= Recv data: OpKuLUqFgHaexztSPFniKUEsLxbu2MTQ9QywWo7e3l0gk8kYgXqkFMmhjtba
14:46:34.430810 http.c:716 <= Recv data: 29jQ0NACwa9cuOiYmMaFwhbraP6A1RmmUp3Dq6pYHrxRKa9xikdl0mp4LL2L
14:46:34.430810 http.c:716 <= Recv data: 9pn%2BikMvhlUr%2BdzzPjw7GUMxkiDQ10Xr1VZSamiikUuX7aK3xPK98z2I
14:46:34.430810 http.c:716 <= Recv data: %2BT84YiiEHz%2FVQejGaVGqEicWoTs%2Fz%2FM9%2FRiaTYcWKFTQ1NXVed
14:46:34.430810 http.c:716 <= Recv data: tllF1f6PmnbUe9OJBIiFAqxkM0y8uMf0VkslBMVX1qLk%2FCMwklUceS220g
14:46:34.430810 http.c:716 <= Recv data: 98UQ5wQkmGrS7lAU6PjbGyg9%2BkDNvvJFioeh%2FxqLkY62ttF5zDaXWNoo
14:46:34.430810 http.c:716 <= Recv data: LC2hjyvfwPA%2FP8%2FxjpWjpaGf%2FLbcwevB5iEVRIiiU7AgSJqUJV1eTv
14:46:34.430810 http.c:716 <= Recv data: u%2F7pHIFGhsbaWpqEolE4h1ANMgLpLX%2Fs5qbmxFC8Nxzz7HqV48R8XybN
14:46:34.430810 http.c:716 <= Recv data: cpvXAZxtzwAXSrxxCc%2FycTjj%2Fu9PAv%2BpEl7HkZrxo8epemv%2FooN1
14:46:34.430810 http.c:716 <= Recv data: 15HKZdDuR5eNkukqYm2T38ab8UKiul0We0r%2F5ZSvpqv7OhgcOt3eWHrVqq
14:46:34.430810 http.c:716 <= Recv data: LRXQqhZpJoWdT6NlZ1Fwalc2gczl0ycWprcEcP8GJ48colUr09vYSDodPA%2
14:46:34.430810 http.c:716 <= Recv data: BKAAyDvvPPOt9XX17fW1NQghODI7t3URSJIq1JeoP425pc9LwbCYYTr8sQnP
14:46:34.430810 http.c:716 <= Recv data: sHwo48io1E81%2FWTlQoCXNfFGMPwCy9Qf%2F57OOMzN5Cfnye8YgUd115La
14:46:34.430810 http.c:716 <= Recv data: cUKinNzKKUolUqUSiWKxaLfZcrnyReLNLW2cvjLX%2Bb5275Nk1KEZ2d9AmZ
14:46:34.430810 http.c:716 <= Recv data: TeLOzKHuuZ2Yw09OYiTHMyCgRYOhnP6PkuiSTSZLJ5IqLLrrorWUCHMd5UzQ
14:46:34.430810 http.c:716 <= Recv data: alUIIcrkcU0%2F8hnCyppyeBs4lGCrI0mz2JiIRHGDfxo0M%2FexnyGSyTEJ
14:46:34.430810 http.c:716 <= Recv data: ARDCM1gwdPkztX76Tsz%2F7WVZcein5xkZyU1PkCwVyuRy5XI58Pk8%2Bn6e
14:46:34.430810 http.c:716 <= Recv data: Qz1MolWhua%2BOFb3yDgfvuoxWILS1pK94rjyVQBWR%2BupOMp0gkEiSTSVl
14:46:34.430810 http.c:716 <= Recv data: bW%2Ft6ICKEENJxnA2RSAQhBKlUCueFAUjEy%2Fk4J8VqXc4CtXWOSmuEE0a
14:46:34.430810 http.c:716 <= Recv data: 4Hvuu%2FBSju34K8ThusVi246ANrpRCeR5HDx3C%2B7M%2Fo9TSQnZ6moL9T
14:46:34.430810 http.c:716 <= Recv data: qlUKvsRzzrJls5OTnzzm7ywYwctQHSZVFYuQ0IwwkDxxWFSc%2FOEw2EaGhq
14:46:34.430810 http.c:716 <= Recv data: IRqOnAhFASMdxeqqqqhBCcPToUeITM36PTpuKQmXx2OiK%2BK00WmmU9hDhE
14:46:34.430810 http.c:716 <= Recv data: NJTPL1pE9N79iASicX4bBc%2Fcrkc%2BUKBkusyfuIERRvLA8Blm%2Fc8lNa
14:46:34.430810 http.c:716 <= Recv data: 0dHczdtddDOzYwcqXkTwVJCwdjh2p0RGklKxcuZJwONxuuXSk4zgr4vE4Qgg
14:46:34.430810 http.c:716 <= Recv data: mJydJFPN%2B4mNt39jcXQVmgM3BbUfXoNEGPK0hHIJCnv0bN5J65hmIxykUC
14:46:34.430810 http.c:716 <= Recv data: r46FwoUi0UfrPUJlWZSeewqxcquLibvuouDt99OSwX45SRdqfLLESGBzPAwQ
14:46:34.430810 http.c:716 <= Recv data: ghqamqQUtbbUCillLI6FPLD4vTx4yQqujHKlqE%2BYGVHYBK%2BJnjKlCs6b
14:46:34.430810 http.c:716 <= Recv data: UDE45DJsP%2FCi5j51a9wIxGKxeJJITIAexJ4rX3fYQytPT1MbN%2FOc7fdd
14:46:34.430810 http.c:716 <= Recv data: hJ4loAVyxxXSl0AUghiQPqFwyiliMViCCGqrHU40nGcSKCmobk5pJRow6K6G
14:46:34.430810 http.c:716 <= Recv data: 58QbTu7Wi9GAmX8%2Bl9jMEEYHBvDPXoUd3SEZz98IZnHH8eEQidFheA4OC8
14:46:34.430810 http.c:716 <= Recv data: TYgxNTU1MbN%2FO89%2F5DittvHopR1ep%2BnIZf%2BDY8xAQSqdxHAcpJUK
14:46:34.430810 http.c:716 <= Recv data: IcMCRBBzXdRFCEMpmfYlXNCyMVhWNCW3re4WngzIUjJR48%2FMUDh2iOD6Ot
14:46:34.430810 http.c:716 <= Recv data: n%2FYUx5Dn%2FscJp%2FHDeL5EpUvx3nPI1FXR2xoiOet2ieWSHip1JdeDwA
14:46:34.430810 http.c:716 <= Recv data: 7S4YAyOYIh8NIKQNufBMwNuvSWiPdIibo1NiCprI7o7Txsy6rFUb6C5nFEyc
14:46:34.430810 http.c:716 <= Recv data: oHjvmp6A2IysB1Q0NdP3zP1MQAs%2BaQaUJVKa7xhjSExMkXv1q3n7jjSfV6
14:46:34.430810 http.c:716 <= Recv data: S%2Bl8pVSd5a5JitIwS68BouxwW1CSimltQ4ppSAWw5XOYge2sm1d0ac3xmA
14:46:34.430810 http.c:716 <= Recv data: cB5XL4R07hvI82x%2F0Xy4Qr6%2Bn59Zbybe2Ukqn%2FerRSj7I7wOvHyySS
14:46:34.430810 http.c:716 <= Recv data: inZ%2F9vfcuo738npWvPcZz9LqEKl5cv28havCKkxSF%2BIQhBWilCi2v%2B
14:46:34.430810 http.c:716 <= Recv data: WrwEq4FN6nlcKJlGIV1F0RBmksuCVbVr6GSFoKVHT05QGBvwEx0rdWMnHGxv
14:46:34.430810 http.c:716 <= Recv data: pufVWcm1tlObmfAe3DHhT2fG1PctQKMTze%2FfCeedx2g03oJdRe6fymvRBO
14:46:34.430810 http.c:716 <= Recv data: RJ%2FOCCFgxQQEhASAgEYW%2BYLfxnOLdPmeV6mWCyitSba2kbWVWjESarvN
14:46:34.430810 http.c:716 <= Recv data: 0E1xgiMELhjYxRHRhYLEEupC8Rqa%2Bn%2B6lfJt7VRmp09yeYrwXuBqS0ZQ
14:46:34.430810 http.c:716 <= Recv data: ghi0SiHn3qK0Hvewyn%2F9E94FaospbSA7RAOjhDI8pBIIXCE9If0NaGqdxV
14:46:34.430810 http.c:716 <= Recv data: CiCAtzwbdd%2Bm67nQmk8F1XZq7u3DzeT%2Fmn5T3W6BSUBoeoTQ1ZbXCfyn
14:46:34.430810 http.c:716 <= Recv data: As5Jf9c1vUuju9tW%2BspQNkh0b8mobGxHhMMquHpUlYgHGo1GOHjhA4m%2F
14:46:34.430810 http.c:716 <= Recv data: %2Fllddfz1eIH0hkARAZQVwgSOE7%2FhEMCTSzn%2FFKa%2FCcRwymQxKqdl
14:46:34.430810 http.c:716 <= Recv data: AaaXruieC3Lu1tZV8JIxWnu%2Fh9WJr2ghJaWwUNzVTnqyqBF9bS%2FdXvkK
14:46:34.430810 http.c:716 <= Recv data: hrY2irecrJa%2BU8sOk1rR0dJC%2B916K%2B%2FcTqqlBKeVL1XHKI2y31Qz
14:46:34.430810 http.c:716 <= Recv data: 399N4wQX0XX21T4JSSCl8FZc%2BIY4QhIUkJO0QwYCQXXdo6%2B5BCMHU1BS
14:46:34.430810 http.c:716 <= Recv data: u647ZaWtZKpUO5PN5FhYW6OzsJLfmVX7TwoCyThApcGdm8Kam%2FWUpO4y9S
14:46:34.430810 http.c:716 <= Recv data: zgWo%2BerX6XY01NW%2B8pOTqABrlK0dncz9m%2F%2FxqHt21n48pdxDh3Cq
14:46:34.430810 http.c:716 <= Recv data: akpS99xHMLhMKFQiEgkQiIeZ2xwkO6NG%2Bm89BO4QMgYX7oIqxXWFwCSQAs
14:46:34.430810 http.c:716 <= Recv data: EjpSgNSpZRVtLC0IIxsbGyGazLwQQZC6Xe9R1XT03N0c0GiXx5%2BeQTaeDt
14:46:34.430810 http.c:716 <= Recv data: Wvf5nM53JGRsrMLHJ6ye3t6v%2FQlCqtWUZyZKffuA5uuzPTaenqYuPtuDn3
14:46:34.430810 http.c:716 <= Recv data: ve7TZJGfhX24mPDBAKFmDlLIMPhqNEg6H%2FTnF46SOH%2Be0Gz5D58c%2FT
14:46:34.430810 http.c:716 <= Recv data: kkpHAyOlbgjJA7%2Be0gK6xukTeoM8Xe8g1gkgud5zMzM6PHx8Sety1Lyyiu
14:46:34.430810 http.c:716 <= Recv data: v%2FGkmk5lwXZdcLse6N7%2BF0VwOz67iKs%2FFPXasrOqmArwTCdN3yy246
14:46:34.430810 http.c:716 <= Recv data: 9dTsvt%2BKmO8V%2FHe0tXF2Pbt5SQnFti00mRvugl56Hlidk9QAD4WixGNR
14:46:34.430810 http.c:716 <= Recv data: onH436nenKSM7%2F4RVouvhhc189mLOiQFIQlhKQkLCVhax5ZYPUHPoTjOMz
14:46:34.430810 http.c:716 <= Recv data: Pz5NKpabuv%2F%2F%2B35ZNAFD5fP7Zubk5MpkMZ599NtP19SjXxRMSb3zcz
14:46:34.430810 http.c:716 <= Recv data: %2FoqgAeJTvtHL0afcQalVMpPcSvBW4fnKUV7by8Td9%2FNwa1bWWHBV8Z2x
14:46:34.430810 http.c:716 <= Recv data: %2FPI3nwT%2BtkDxBoaiEQiRKPR8nvlcOfnOetLX8KsfRXSdZECHIRvBkL6f
14:46:34.430810 http.c:716 <= Recv data: kGCg4OTzzMfi%2FGa178ex3F44YUXKBQKR6z0i4CSgMnlcj%2FO5%2FNmcnK
14:46:34.430810 http.c:716 <= Recv data: S2tpaWs87j2xqBp3PU0qnF1dsg6Vq%2B547ccJfuloi%2BbImaE1bdzcnvv1
14:46:34.430810 http.c:716 <= Recv data: tnrO5fcICNxUZXQiIKs38jZ8h%2F%2BRTxJqaiMViy45kbS3p48fJzM8hHYe
14:46:34.430810 http.c:716 <= Recv data: QEIQcQUg6hMCGRYdQ2MHVGvned5NMJikUCgwODprp6elfAwUrQyONMebKK6%
14:46:34.430810 http.c:716 <= Recv data: 2F8VjqdfjGXyzE7O8tf%2FsM%2FMDmXpjQ6WnZ4aon9S2DoRz9ifvt2nOrqc
14:46:34.430810 http.c:716 <= Recv data: l0f5PVBVXfs1lvpv%2Fvu3yls5En5m0Q6kpjnMXv1VaQefphEczMxq%2FqRS
14:46:34.430810 http.c:716 <= Recv data: IRIJEKyvp7U5Di7%2FuZvcMbHiURjfthE%2BgWP45MQBoRSTIVCvOGKT%2BE
14:46:34.430810 http.c:716 <= Recv data: 4DqlUiqGhoZHvfve7DwQEGGNMMA%2BVzWYfSaVSTExM8Ko1a9Cvfz3zuVxZ6
14:46:34.430810 http.c:716 <= Recv data: lSYQBABBHD89ttZuHcHMpHwy2fPQwGtnZ0c%2F9a3GLj%2FflorwJtl6nlp6
14:46:34.430810 http.c:716 <= Recv data: zIRClENzH3mM4w88ABxqwmRcJjapiZmJyd56Py%2FJvLcczQnqwkJQ1gKwlI
14:46:34.430810 http.c:716 <= Recv data: Sko61fYl0HMhmmf6z%2F8a6desolUo8%2BeSTLCws7LGqX7AwyoJQY2Njm9P
14:46:34.430810 http.c:716 <= Recv data: p9Ewmk2F8fJz3fP4LDAlxkuS9Cg3QFSSc2HoH%2BQceIJxMQiJBa3cXx7Zs4
14:46:34.430810 http.c:716 <= Recv data: fC999Jie09Ly9fFl1MOXRIQkQjVjmT6059mcNs2YitXUt%2FRwczoKA%2B99
14:46:34.430810 http.c:716 <= Recv data: 71En3qSrpokcWy2x2LyE8JPfUNaMxoO88bPf4FIJEIul6O%2Fvz%2B1f%2F%
14:46:34.430810 http.c:716 <= Recv data: 2F%2B%2B4C8Haq8OGqMMUKIZ77whS%2F8fHp6%2BgOxWIxzzjmHnee%2Fh5k
14:46:34.430810 http.c:716 <= Recv data: f%2FJD6JT5g6QgBw3fcQeP0NJFzzuHQd7%2FL8M6dtFaAD8zGVLDuSIkUfqg
14:46:34.430810 http.c:716 <= Recv data: V1plJQIbD1AiPmWuv5dnMArWnrWfvzTcTP3CA9mSSCAIp%2FRzfsbm%2BxL%
14:46:34.430810 http.c:716 <= Recv data: 2BHkhIvnWbi%2FX%2FN%2B88%2Bm2KxyOOPP87s7Ozuxx577DCQBYrBhonyH
14:46:34.430810 http.c:716 <= Recv data: iEhhLzkkkvOWLdu3YN9fX3tHR0d9KxezZU1NfR6Xrk8rXSELDlWVrc8oNY23
14:46:34.430810 http.c:716 <= Recv data: eRLlKnSEuBI6Z8HqazwSQhJiaMNxWKBBSAmJQ3V1faeljD7XSH8awiJSM%2F
14:46:34.430810 http.c:716 <= Recv data: yRF0d%2F%2FPwYRqqqxkdHeWOO%2B4Y3bVr1%2BV79ux5DhgD5oNtM%2BUa0
14:46:34.430810 http.c:716 <= Recv data: hijt2zZ8vzc3Ny%2FT01N6enpadx8nvc%2F8AOOvYQjDK4FrzBQAzRWrECa5
14:46:34.430810 http.c:716 <= Recv data: drXtoKTZQCL4B0hCAX5vSOpSiRoq65mZXW1nzsIG%2FOFLGd7IZsGS6UYFYK
14:46:34.430810 http.c:716 <= Recv data: %2B22%2BnMZnEdV1%2B%2Bctf6pmZmV179uwZBBaAfOWeoaVltXvdddfdMDE
14:46:34.430810 http.c:716 <= Recv data: xsWdmZoZDhw7xlneey9qPX8LQkspPLWMKegngZbel2d1Uonwi7C7xgCB7blN
14:46:34.430810 http.c:716 <= Recv data: jIZ1FNQ%2FI8bNz396BsAAjBfm5NKkrruAt555LPp%2F3N3UdOfLUli1bvm1
14:46:34.430810 http.c:716 <= Recv data: Vf8HmAMv3FSwz%2BRMnTvzr0NDQyNzcHPv27WPjLbeSeO1%2FZ3QJ8KWAl15
14:46:34.430810 http.c:716 <= Recv data: bVvpIhJSI4J8I6nvbsRHWHKyGVBY8oUBLpMSR%2FnlICIx0UFPTHHnXu%2Fh
14:46:34.430810 http.c:716 <= Recv data: fN99MoVBgbGyMxx57bPTZZ5%2B9HcgBc0ul%2F1KbpLzNmzf%2FYmpq6rbjx
14:46:34.430810 http.c:716 <= Recv data: 49ns9ksTz%2F9NDf%2F6td0%2FNX5jC0hgQrNYAkZYhnpCzTSN9oyaAICrBM
14:46:34.430810 http.c:716 <= Recv data: 82Wcsgg%2BcnR%2Fr%2FevGcXCnptj%2F6rP4wL334rouCwsL7Ny5MzsyMrJ
14:46:34.430810 http.c:716 <= Recv data: j586dT1nwC9Y9vfwmKctQ4XOf%2B9zXx8fH7x4YGChlMhkOHzrEFd%2B%2Fj
14:46:34.430810 http.c:716 <= Recv data: %2B4LLuDFirpgqcTNf7YRyW9JLUpfGNvQ8I9FIOElfkGWtcA6P9u9dicn6X%
14:46:34.430810 http.c:716 <= Recv data: 2FD6%2FjQo48hjCGXy%2FHQQw%2BVBgcHf7h169YdFvwcUFhuv6B8CVPVQPa
14:46:34.430810 http.c:716 <= Recv data: mm266dnh4%2BIf9%2Ff3e%2FPw8%2Fc8%2Fz1V33snKiy7kkONQXCJxlhBRq
14:46:34.430810 http.c:716 <= Recv data: SGLaiDKGVAgUwTW7n1gYolfCLq7gXMUjoPJLZCZmWbgggt4366fIY0hm83yH
14:46:34.430810 http.c:716 <= Recv data: %2F%2FxH15%2Ff%2F%2FDmzdvvgXIAGlr%2F%2Fr32ipr18%2BjQMO111771
14:46:34.430810 http.c:716 <= Recv data: c7OzveefvrpkUQiwZlnnsmOu7bz4Ef%2BnhqtaXbdZTu0le92GWbRjhE4UhC
14:46:34.430810 http.c:716 <= Recv data: ukHLYSn%2FptUrbRxjMdIohIPKd23nrBR8uP4ny0EMPlfr7%2Bx%2F%2B2te
14:46:34.430810 http.c:716 <= Recv data: %2B9nkLfhpIVcb932uvsN1KEgPqr7766pvb2trev2HDhqrGxkZ6e3vpf%2Fp
14:46:34.430810 http.c:716 <= Recv data: p7r%2F7Loa%2Bs5X2YrG86C6X9OQdbPcGWfbkIfxGZshWcCEsUMexSzay7OQ
14:46:34.430810 http.c:716 <= Recv data: caU1gNk1KKSbWr%2Bc1Dz%2FM6o4O0uk0Y2Nj7Ny5Mzs4OPjDzZs3b7bgZ4D
14:46:34.430810 http.c:716 <= Recv data: Zl1L9V7xdvpKESy%2B99BMrVqy4YN26de2nnHIKyWSS9vZ2tt9yC49t2UJyY
14:46:34.430810 http.c:716 <= Recv data: ICwUlTZDLBSI0KA4%2Fi2HTpJ%2BotAQ2XQ2OaG39NjYYEFpUjFYjTccQdv%
14:46:34.430810 http.c:716 <= Recv data: 2F%2BAHUUqRz%2BfZs2cPjz766OjIyMi9W7duvdeq%2BysC%2F4qfF6ggoe5
14:46:34.430810 http.c:716 <= Recv data: 973vfW0455ZTLOjs7X33mmWfK%2Bvp6mpqaODowwO4HHmDvT3chnj1AfalEg
14:46:34.430810 http.c:716 <= Recv data: y2CQkDYEX7XJsjyrJTDItACp0yKVB6iWKLkecwDpfZOGq%2FbxJ%2B%2F%2B
14:46:34.430810 http.c:716 <= Recv data: z00tLeTyWSYmpriF7%2F4hT5y5MhTzzzzzHd%2B8pOf7LeSn7V2X%2FiDt8s
14:46:34.430810 http.c:716 <= Recv data: vQ0LEJnt1l1122dUNDQ3vXLNmTduZZ55JdXU1dXV1DB45wuFf%2FpLBI4cZ%
14:46:34.430810 http.c:716 <= Recv data: 2BvWvEUcGiGpNte0FxO1NnGB1smLooE8FiM52kh%2F4EF1vfCPnnHcewQaOh
14:46:34.430810 http.c:716 <= Recv data: YUFdu%2FezVNPPTU6MzOza8uWLbfb2n7OAp%2B3pe4remDi93pmyDrGsN14U
14:46:34.430810 http.c:716 <= Recv data: fuGN7xh%2FWte85qP1dbWvm716tUNGzZsoKGhgUQiQWl%2BnvGREV4cHiYzM
14:46:34.430810 http.c:716 <= Recv data: c7owYMsDB7FmxgnsjAPuTxhYxDxOKaujvjq1UQ6O1lx6jra%2B%2FroXbuWp
14:46:34.430810 http.c:716 <= Recv data: vZ2AAqFAqlUij179nDgwIHU7Ozsbx5%2F%2FPFte%2FfufbEiyZmz6u%2F%2
14:46:34.430810 http.c:716 <= Recv data: B0R%2BZWYaEwCSSQO2b3%2FzmDWecccaHqqurX9PW1ta%2Bdu1a0dfXR01ND
14:46:34.430810 http.c:716 <= Recv data: dFoFCllefXH8zwqN24Hx5FIhFAoVH5wUmvN%2FPw8AwMDHDhwwLz44osjCws
14:46:34.430810 http.c:716 <= Recv data: Le%2Fft2%2FeD3bt3D9q6K1uR5BT85cw%2F0UNTL2ESIavVSTviF1100fuam
14:46:34.430810 http.c:716 <= Recv data: ppeH4vF1jY2Nja3tLTIrq4uWltbTyLELlOXt9gVi0Wy2SxjY2McP36c4eFhP
14:46:34.430810 http.c:716 <= Recv data: T09PVUoFI5MTk7%2B5s4773zQWkfR1vMLQXHjP1v1ylT%2Bj%2F7orCUibIm
14:46:34.430810 http.c:716 <= Recv data: osiMORM8%2F%2F%2FxzWltbz66qquqLRCKtjuPUCyESQohIRRKmjTElY0xOK
14:46:34.430810 http.c:716 <= Recv data: TVbKpXGstns4PDw8DMPPvjgvopeTAA8a0feqrv%2Bg%2Bb%2Fx3p4ukIjopa
14:46:34.430810 http.c:716 <= Recv data: AWMUIVy7vLbPDZWlRWbncWKgYeUuE94cC%2F5M9PW59RODYI3ZEg2hYmRguI
14:46:34.430810 http.c:716 <= Recv data: SCQdAA8kHrJDuU%2FVPbHnfD%2FHQAa7ooYDLZ%2FNAAAAABJRU5ErkJggg%
14:46:34.430810 http.c:716 <= Recv data: 3D%3D" />.. </div>.. </div>.. </body>..
14:46:34.430810 http.c:716 <= Recv data: </html>......
14:46:34.430810 http.c:728 == Info: Connection #0 to host tfs.global.exp.loc left intact
14:46:34.430810 run-command.c:643 trace: run_command: 'git credential-manager get'
14:46:34.477689 exec-cmd.c:236 trace: resolved executable dir: C:/Program Files/Git/mingw64/libexec/git-core
14:46:34.477689 git.c:676 trace: exec: git-credential-manager get
14:46:34.477689 run-command.c:643 trace: run_command: git-credential-manager get
14:46:34.555821 ...\Common.cs:744 trace: [Main] git-credential-manager (v1.18.4) 'get'
14:46:34.633952 ...\Git\Where.cs:348 trace: [FindGitInstallations] found 1 Git installation(s).
14:46:34.649579 ...Configuration.cs:222 trace: [LoadGitConfiguration] git All config read, 32 entries.
14:46:34.712088 ...\Common.cs:85 trace: [CreateAuthentication] detecting authority type for 'http://tfs.global.exp.loc:8080/'.
14:46:34.727716 ...\Common.cs:224 trace: [CreateAuthentication] authority for 'http://tfs.global.exp.loc:8080/' is basic with NTLM=Auto.
14:46:34.727716 ...\Common.cs:765 trace: [QueryCredentials] querying 'Auto' for credentials.
14:46:34.790221 ...uthentication.cs:119 trace: [AcquireCredentials] 'http://tfs.global.exp.loc:8080/' supports NTLM, sending NTLM credentials instead
14:46:34.790221 ...\Common.cs:780 trace: [QueryCredentials] credentials found.
14:46:34.806050 http.c:728 == Info: Expire in 0 ms for 6 (transfer 0x339e350)
14:46:34.806050 http.c:728 == Info: Couldn't find host tfs.global.exp.loc in the _netrc file; using defaults
14:46:34.806050 http.c:728 == Info: Found bundle for host tfs.global.exp.loc: 0x33a4760 [can pipeline]
14:46:34.806050 http.c:728 == Info: Could pipeline, but not asked to!
14:46:34.806050 http.c:728 == Info: Re-using existing connection! (#0) with host tfs.global.exp.loc
14:46:34.806050 http.c:728 == Info: Connected to tfs.global.exp.loc (10.7.78.56) port 8080 (#0)
14:46:34.806050 http.c:728 == Info: Expire in 0 ms for 6 (transfer 0x339e350)
14:46:34.806050 http.c:675 => Send header, 0000000228 bytes (0x000000e4)
14:46:34.806050 http.c:687 => Send header: GET /tfs/MyCollection/_git/exp-Plus/info/refs?service=git-upload-pack HTTP/1.1
14:46:34.806050 http.c:687 => Send header: Host: tfs.global.exp.loc:8080
14:46:34.806050 http.c:687 => Send header: User-Agent: git/2.21.0.windows.1
14:46:34.806050 http.c:687 => Send header: Accept: */*
14:46:34.806050 http.c:687 => Send header: Accept-Encoding: deflate, gzip
14:46:34.806050 http.c:687 => Send header: Pragma: no-cache
14:46:34.806050 http.c:687 => Send header:
14:46:34.821472 http.c:675 <= Recv header, 0000000027 bytes (0x0000001b)
14:46:34.821472 http.c:687 <= Recv header: HTTP/1.1 401 Unauthorized
14:46:34.821472 http.c:675 <= Recv header, 0000000040 bytes (0x00000028)
14:46:34.821472 http.c:687 <= Recv header: Content-Type: text/html; charset=utf-8
14:46:34.821472 http.c:675 <= Recv header, 0000000028 bytes (0x0000001c)
14:46:34.821472 http.c:687 <= Recv header: Server: Microsoft-IIS/10.0
14:46:34.821472 http.c:675 <= Recv header, 0000000055 bytes (0x00000037)
14:46:34.821472 http.c:687 <= Recv header: X-TFS-ProcessId: 95d140ae-0f2b-46d6-9743-7c68c1945688
14:46:34.821472 http.c:675 <= Recv header, 0000000050 bytes (0x00000032)
14:46:34.821472 http.c:687 <= Recv header: ActivityId: c47aacf9-b494-4e03-837f-6ea9576f9c5a
14:46:34.821472 http.c:675 <= Recv header, 0000000053 bytes (0x00000035)
14:46:34.821472 http.c:687 <= Recv header: X-TFS-Session: c47aacf9-b494-4e03-837f-6ea9576f9c5a
14:46:34.821472 http.c:675 <= Recv header, 0000000051 bytes (0x00000033)
14:46:34.821472 http.c:687 <= Recv header: X-VSS-E2EID: c47aacf9-b494-4e03-837f-6ea9576f9c5a
14:46:34.821472 http.c:675 <= Recv header, 0000000029 bytes (0x0000001d)
14:46:34.821472 http.c:687 <= Recv header: X-FRAME-OPTIONS: SAMEORIGIN
14:46:34.821472 http.c:675 <= Recv header, 0000000690 bytes (0x000002b2)
14:46:34.821472 http.c:687 <= Recv header: X-TFS-SoapException: %3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csoap%3AEnvelope%20xmlns%3Asoap%3D%22http%3A%2F%2Fwww.w3.org%2F2003%2F05%2Fsoap-envelope%22%3E%3Csoap%3ABody%3E%3Csoap%3AFault%3E
%3Csoap%3ACode%3E%3Csoap%3AValue%3Esoap%3AReceiver%3C%2Fsoap%3AValue%3E%3Csoap%3ASubcode%3E%3Csoap%3AValue%3EUnauthorizedRequestException%3C%2Fsoap%3AValue%3E%3C%2Fsoap%3ASubcode%3E%3C%2Fsoap%3ACode%3E%3Csoap%3AReason%3E%3Csoap%3AText%20xml%3Alang%3D%22en%22%3ETF400813%
3A%20Resource%20not%20available%20for%20anonymous%20access.%20Client%20authentication%20required.%3C%2Fsoap%3AText%3E%3C%2Fsoap%3AReason%3E%3C%2Fsoap%3AFault%3E%3C%2Fsoap%3ABody%3E%3C%2Fsoap%3AEnvelope%3E
14:46:34.821472 http.c:675 <= Recv header, 0000000128 bytes (0x00000080)
14:46:34.821472 http.c:687 <= Recv header: X-TFS-ServiceError: TF400813%3A%20Resource%20not%20available%20for%20anonymous%20access.%20Client%20authentication%20required.
14:46:34.821472 http.c:675 <= Recv header, 0000000026 bytes (0x0000001a)
14:46:34.821472 http.c:687 <= Recv header: WWW-Authenticate: Bearer
14:46:34.821472 http.c:675 <= Recv header, 0000000068 bytes (0x00000044)
14:46:34.821472 http.c:687 <= Recv header: WWW-Authenticate: Basic realm="http://tfs.global.exp.loc:8080/tfs"
14:46:34.821472 http.c:675 <= Recv header, 0000000029 bytes (0x0000001d)
14:46:34.821472 http.c:687 <= Recv header: WWW-Authenticate: Negotiate
14:46:34.821472 http.c:675 <= Recv header, 0000000024 bytes (0x00000018)
14:46:34.821472 http.c:687 <= Recv header: WWW-Authenticate: NTLM
14:46:34.821472 http.c:675 <= Recv header, 0000000023 bytes (0x00000017)
14:46:34.821472 http.c:687 <= Recv header: X-Powered-By: ASP.NET
14:46:34.821472 http.c:675 <= Recv header, 0000000124 bytes (0x0000007c)
14:46:34.821472 http.c:687 <= Recv header: P3P: CP="CAO DSP COR ADMa DEV CONo TELo CUR PSA PSD TAI IVDo OUR SAMi BUS DEM NAV STA UNI COM INT PHY ONL FIN PUR LOC CNT"
14:46:34.821472 http.c:675 <= Recv header, 0000000024 bytes (0x00000018)
14:46:34.821472 http.c:687 <= Recv header: Lfs-Authenticate: NTLM
14:46:34.821472 http.c:675 <= Recv header, 0000000033 bytes (0x00000021)
14:46:34.821472 http.c:687 <= Recv header: X-Content-Type-Options: nosniff
14:46:34.821472 http.c:675 <= Recv header, 0000000037 bytes (0x00000025)
14:46:34.821472 http.c:687 <= Recv header: Date: Thu, 25 Apr 2019 12:46:33 GMT
14:46:34.821472 http.c:675 <= Recv header, 0000000023 bytes (0x00000017)
14:46:34.821472 http.c:687 <= Recv header: Content-Length: 20169
14:46:34.821472 http.c:675 <= Recv header, 0000000002 bytes (0x00000002)
14:46:34.821472 http.c:687 <= Recv header:
14:46:34.821472 http.c:728 == Info: Ignoring the response-body
14:46:34.821472 http.c:701 <= Recv data, 0000001196 bytes (0x000004ac)
14:46:34.821472 http.c:716 <= Recv data: ..<!DOCTYPE html>..<html>.. <head>.. <title>TF4008
14:46:34.821472 http.c:716 <= Recv data: 13: Resource not available for anonymous access. Client auth
14:46:34.821472 http.c:716 <= Recv data: entication required. - Microsoft Team Foundation Server</tit
14:46:34.821472 http.c:716 <= Recv data: le>.. <style type="text/css">.. body,butto
14:46:34.821472 http.c:716 <= Recv data: n { font-family: Segoe UI, Helvetica Neue, Helvetica, Arial,
14:46:34.821472 http.c:716 <= Recv data: Verdana; font-size: 16px; }.. body { height: 100
14:46:34.821472 http.c:716 <= Recv data: % }.. A { color: #106ebe; text-decoration: none;
14:46:34.821472 http.c:716 <= Recv data: }.. A:hover { text-decoration: underline; }..
14:46:34.821472 http.c:716 <= Recv data: h1 { font-size: 32px; color: #666; margin-bottom: 0p
14:46:34.821472 http.c:716 <= Recv data: x; }.. h2 { font-size: 24px; color: #666; font-we
14:46:34.821472 http.c:716 <= Recv data: ight: normal; margin-top: 0px; }.. pre { font-fam
14:46:34.821472 http.c:716 <= Recv data: ily: Consolas, Courier New, monospace; font-size: 12px; bord
14:46:34.821472 http.c:716 <= Recv data: er: 1px solid #ccc; background-color: #eaeaea; padding: 10px
14:46:34.821472 http.c:716 <= Recv data: ;}.. #moreInfoButton { background: transparent; b
14:46:34.821472 http.c:716 <= Recv data: order: 0; color: #106ebe; cursor: pointer; }..
14:46:34.821472 http.c:716 <= Recv data: .. </style>.. <script type="text/javascript"
14:46:34.821472 http.c:716 <= Recv data: >.. function toggle(event) {.. if
14:46:34.821472 http.c:716 <= Recv data: (!event.key || event.key === " " || event.key === "Spacebar"
14:46:34.821472 http.c:716 <= Recv data: || event.key === "Enter") {.. var icon =
14:46:34.821472 http.c:716 <= Recv data: document.getElementById("moreInfoIcon");..
14:46:34.821472 http.c:701 <= Recv data, 0000011040 bytes (0x00002b20)
14:46:34.821472 http.c:716 <= Recv data: var section = document.getElementById("moreInfo");..
14:46:34.821472 http.c:716 <= Recv data: var wasShowing = section.style.display ==
14:46:34.821472 http.c:716 <= Recv data: = "";.... icon.src = wasShowing..
14:46:34.821472 http.c:716 <= Recv data: ? "data:image/png;base64,iVBORw0KGgoAAAANSUh
14:46:34.821472 http.c:716 <= Recv data: EUgAAABAAAAAQCAYAAAAf8%2F9hAAAABGdBTUEAALGPC%2FxhBQAAAAlwSFl
14:46:34.821472 http.c:716 <= Recv data: zAAAOwgAADsIBFShKgAAAABl0RVh0U29mdHdhcmUAUGFpbnQuTkVUIHYzLjU
14:46:34.821472 http.c:716 <= Recv data: uODc7gF0AAAB2SURBVDhPY2AYBThDoKWlJa2jo0OO7CBaunTpfxAGGmRCliE
14:46:34.821472 http.c:716 <= Recv data: gzc%2BePfs%2Ff%2F78%2F01NTZokGwIyAARAhkybNo10Q2AGwAwBeuV%2Fa
14:46:34.821472 http.c:716 <= Recv data: 2urHtEuWb58OWUuABkAC4Pm5mY7om2GKQQZAMJkaQYZAgx5P4rSAclOHjANA
14:46:34.821472 http.c:716 <= Recv data: OQrXesb81M5AAAAAElFTkSuQmCC".. : "dat
14:46:34.821472 http.c:716 <= Recv data: a:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8
14:46:34.821472 http.c:716 <= Recv data: %2F9hAAAABGdBTUEAALGPC%2FxhBQAAAAlwSFlzAAAOwgAADsIBFShKgAAAA
14:46:34.821472 http.c:716 <= Recv data: Bl0RVh0U29mdHdhcmUAUGFpbnQuTkVUIHYzLjUuODc7gF0AAABCSURBVDhPY
14:46:34.821472 http.c:716 <= Recv data: 2AYBfQJATU1NWsgLifLNhUVFVeg5v8gTLIBMM2RkZGkG4CsmWQD0DWTbAAow
14:46:34.821472 http.c:716 <= Recv data: GD%2BRqLJC0SSA24EagAAq9sjtZrUZogAAAAASUVORK5CYII%3D";..
14:46:34.821472 http.c:716 <= Recv data: section.style.display = wasShowing ? "none" :
14:46:34.821472 http.c:716 <= Recv data: "";.... event.target.setAttribute("aria-
14:46:34.821472 http.c:716 <= Recv data: expanded", String(!wasShowing));.. }..
14:46:34.821472 http.c:716 <= Recv data: }.. </script>.. </head>.... <body>....
14:46:34.821472 http.c:716 <= Recv data: <div style="position: relative; width: 960px; margin-lef
14:46:34.821472 http.c:716 <= Recv data: t: auto; margin-right: auto;">.... <div style="po
14:46:34.821472 http.c:716 <= Recv data: sition: absolute; left: 100px;right:0">.... .
14:46:34.821472 http.c:716 <= Recv data: . <h1>Error</h1>.. <h2>The pag
14:46:34.821472 http.c:716 <= Recv data: e you are looking for is currently unavailable.</h2>..
14:46:34.821472 http.c:716 <= Recv data: .. <div id="errorMessage" style="fo
14:46:34.821472 http.c:716 <= Recv data: nt-size: 24px; color: #da0a00; margin-top: 30px; margin-bott
14:46:34.821472 http.c:716 <= Recv data: om: 30px;">TF400813: Resource not available for anonymous ac
14:46:34.821472 http.c:716 <= Recv data: cess. Client authentication required.</div>....
14:46:34.821472 http.c:716 <= Recv data: <div>.. <button id="moreInfoButton" ar
14:46:34.821472 http.c:716 <= Recv data: ia-expanded="false" aria-controls="moreInfo" onclick="toggle
14:46:34.821472 http.c:716 <= Recv data: (event)">.. <img alt="" id="moreInfoI
14:46:34.821472 http.c:716 <= Recv data: con" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAA
14:46:34.821472 http.c:716 <= Recv data: AAAQCAYAAAAf8%2F9hAAAABGdBTUEAALGPC%2FxhBQAAAAlwSFlzAAAOwgAA
14:46:34.821472 http.c:716 <= Recv data: DsIBFShKgAAAABl0RVh0U29mdHdhcmUAUGFpbnQuTkVUIHYzLjUuODc7gF0A
14:46:34.821472 http.c:716 <= Recv data: AAB2SURBVDhPY2AYBThDoKWlJa2jo0OO7CBaunTpfxAGGmRCliEgzc%2BePf
14:46:34.821472 http.c:716 <= Recv data: s%2Ff%2F78%2F01NTZokGwIyAARAhkybNo10Q2AGwAwBeuV%2Fa2urHtEuWb
14:46:34.821472 http.c:716 <= Recv data: 58OWUuABkAC4Pm5mY7om2GKQQZAMJkaQYZAgx5P4rSAclOHjANAOQrXesb81
14:46:34.821472 http.c:716 <= Recv data: M5AAAAAElFTkSuQmCC" width="16" height="16" align="absmiddle"
14:46:34.821472 http.c:716 <= Recv data: border="0" /> .. More information ab
14:46:34.821472 http.c:716 <= Recv data: out this error.. </button>..
14:46:34.821472 http.c:716 <= Recv data: </div>.. <div id="moreInfo" style="display
14:46:34.821472 http.c:716 <= Recv data: : none; padding-left: 20px; padding-top: 20px; width: 100%;"
14:46:34.821472 http.c:716 <= Recv data: >.. <pre tabindex="0" aria-label="Error d
14:46:34.821472 http.c:716 <= Recv data: etails" id="errorMessageDetailed" style="width: 600px; heigh
14:46:34.821472 http.c:716 <= Recv data: t: 300px; overflow: scroll;">TF400813: Resource not availabl
14:46:34.821472 http.c:716 <= Recv data: e for anonymous access. Client authentication required.....<
14:46:34.821472 http.c:716 <= Recv data: /pre>.. </div>...... <div styl
14:46:34.821472 http.c:716 <= Recv data: e="font-size: 24px; color: #107c10; margin-top: 30px;">Thing
14:46:34.821472 http.c:716 <= Recv data: s you can try:</div>.... <ul style="line-heig
14:46:34.821472 http.c:716 <= Recv data: ht: 200%;">.. <li><a href="javascript:win
14:46:34.821472 http.c:716 <= Recv data: dow.location.reload(true);">Refresh the current page</a></li
14:46:34.821472 http.c:716 <= Recv data: >.. <li><a href="javascript:history.back(
14:46:34.821472 http.c:716 <= Recv data: );">Go back to the previous page</a></li>..
14:46:34.821472 http.c:716 <= Recv data: .. <li><a href="/tfs/_signout?mode=Sig
14:46:34.821472 http.c:716 <= Recv data: nInAsDifferentUser&redirectUrl=%2Ftfs%2FMyCollection%2F
14:46:34.821472 http.c:716 <= Recv data: _git%2Fexp-Plus%2Finfo%2Frefs%3Fservice%3Dg
14:46:34.821472 http.c:716 <= Recv data: it-upload-pack">Sign in as a different user</a></li>..
14:46:34.821472 http.c:716 <= Recv data: .. <li><a href="https://go.
14:46:34.821472 http.c:716 <= Recv data: microsoft.com/fwlink/?LinkID=242556" target="_blank">Submit
14:46:34.821472 http.c:716 <= Recv data: feedback to Microsoft about this error</a></li>..
14:46:34.821472 http.c:716 <= Recv data: </ul>.. .... <div style="
14:46:34.821472 http.c:716 <= Recv data: color: #666; margin-top: 100px;">.. <div
14:46:34.821472 http.c:716 <= Recv data: style="">Microsoft Visual Studio Team Foundation Server</div
14:46:34.821472 http.c:716 <= Recv data: >.. <div style="">.. Microsoft Corporatio
14:46:34.821472 http.c:716 <= Recv data: n. All rights reserved.</div>.. </div>..
14:46:34.821472 http.c:716 <= Recv data: </div>.... <div style="position: absolute;
14:46:34.821472 http.c:716 <= Recv data: top: 10px; width: 100px;">.. <img alt="" wid
14:46:34.821472 http.c:716 <= Recv data: th="64" height="64" src="data:image/png;base64,iVBORw0KGgoAA
14:46:34.821472 http.c:716 <= Recv data: AANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAAAsTAAALEwEAmpwYA
14:46:34.821472 http.c:716 <= Recv data: AAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS
14:46:34.821472 http.c:716 <= Recv data: 4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsD
14:46:34.821472 http.c:716 <= Recv data: IoK2AfkIaKOg6OIisr74Xuja9a89%2BbN%2FrXXPues852zzwfACAyWSDNRN
14:46:34.821472 http.c:716 <= Recv data: YAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz%2FSMBAPh%2BPDwrIsAHvgABe
14:46:34.821472 http.c:716 <= Recv data: NMLCADATZvAMByH%2Fw%2FqQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdm
14:46:34.821472 http.c:716 <= Recv data: CZTAKAEAGDLY2LjAFAtAGAnf%2BbTAICd%2BJl7AQBblCEVAaCRACATZYhEA
14:46:34.821472 http.c:716 <= Recv data: Gg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpA
14:46:34.821472 http.c:716 <= Recv data: AR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4oz
14:46:34.821472 http.c:716 <= Recv data: kkXKxQ2YQJhmkAuwnmZGTKBNA%2Fg88wAAKCRFRHgg%2FP9eM4Ors7ONo62D
14:46:34.821472 http.c:716 <= Recv data: l8t6r8G%2FyJiYuP%2B5c%2BrcEAAAOF0ftH%2BLC%2BzGoA7BoBt%2FqIl7
14:46:34.821472 http.c:716 <= Recv data: gRoXgugdfeLZrIPQLUAoOnaV%2FNw%2BH48PEWhkLnZ2eXk5NhKxEJbYcpXf
14:46:34.821472 http.c:716 <= Recv data: f5nwl%2FAV%2F1s%2BX48%2FPf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5
14:46:34.821472 http.c:716 <= Recv data: o9H%2FLcL%2F%2Fwd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8
14:46:34.821472 http.c:716 <= Recv data: s%2BwM%2B3zUAsGo%2BAXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4
14:46:34.821472 http.c:716 <= Recv data: c93%2F%2B8%2F%2FUegJQCAZkmScQAAXkQkLlTKsz%2FHCAAARKCBKrBBG%2
14:46:34.821472 http.c:716 <= Recv data: FTBGCzABhzBBdzBC%2FxgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EA
14:46:34.821472 http.c:716 <= Recv data: dNMBRaIaTcA4uwlW4Dj1wD%2FphCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXm
14:46:34.821472 http.c:716 <= Recv data: YX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGv
14:46:34.821472 http.c:716 <= Recv data: EcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8%2
14:46:34.821472 http.c:716 <= Recv data: BQ8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8%2BxdwQSg
14:46:34.821472 http.c:716 <= Recv data: UXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR%2BcQ
14:46:34.821472 http.c:716 <= Recv data: YYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI%2Bksq
14:46:34.821472 http.c:716 <= Recv data: Zs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG%2BQh8lsKnWJAcaT4U%2BIoU
14:46:34.821472 http.c:716 <= Recv data: spqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS
14:46:34.821472 http.c:716 <= Recv data: 6WtopXTGmgXaPdpr%2Bh0uhHdlR5Ol9BX0svpR%2BiX6AP0dwwNhhWDx4hnK
14:46:34.821472 http.c:716 <= Recv data: BmbGAcYZxl3GK%2BYTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSa
14:46:34.821472 http.c:716 <= Recv data: VGyovVKmqpqreqgtV81XLVI%2BpXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO
14:46:34.821472 http.c:716 <= Recv data: 6iHqmeob1Q%2FpH5Z%2FYkGWcNMw09DpFGgsV%2FjvMYgC2MZs3gsIWsNq4Z
14:46:34.821472 http.c:716 <= Recv data: 1gTXEJrHN2Xx2KruY%2FR27iz2qqaE5QzNKM1ezUvOUZj8H45hx%2BJx0Tgn
14:46:34.821472 http.c:716 <= Recv data: nKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n
14:46:34.821472 http.c:716 <= Recv data: 7gQ5Bx0onXCdHZ4%2FOBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up%2B6
14:46:34.821472 http.c:716 <= Recv data: Ynr5egJ5Mb6feeb3n%2Bhx9L%2F1U%2FW36p%2FVHDFgGswwkBtsMzhg8xTV
14:46:34.821472 http.c:716 <= Recv data: xbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgY
14:46:34.821472 http.c:716 <= Recv data: mISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm%2Beb15vft2Bae
14:46:34.821472 http.c:716 <= Recv data: Fostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rn
14:46:34.821472 http.c:716 <= Recv data: tZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw%2B6TvZN9un2N%2FT0HD
14:46:34.821472 http.c:716 <= Recv data: YfZDqsdWh1%2Bc7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVO
14:46:34.821472 http.c:716 <= Recv data: b00dnF2e5c4PziIuJS4LLLpc%2BLpsbxt3IveRKdPVxXeF60vWdm7Obwu2o2
14:46:34.821472 http.c:716 <= Recv data: 6%2FuNu5p7ofcn8w0nymeWTNz0MPIQ%2BBR5dE%2FC5%2BVMGvfrH5PQ0%2B
14:46:34.821472 http.c:716 <= Recv data: BZ7XnIy9jL5FXrdewt6V3qvdh7xc%2B9j5yn%2BM%2B4zw33jLeWV%2FMN8C
14:46:34.821472 http.c:716 <= Recv data: 3yLfLT8Nvnl%2BF30N%2FI%2F9k%2F3r%2F0QCngCUBZwOJgUGBWwL7%2BHp
14:46:34.821472 http.c:716 <= Recv data: 8Ib%2BOPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQf
14:46:34.821472 http.c:716 <= Recv data: ujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85r
14:46:34.821472 http.c:716 <= Recv data: y1KNSo%2Bqi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt%2F87fOH4
14:46:34.821472 http.c:716 <= Recv data: p3iC%2BN7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyW
14:46:34.821472 http.c:716 <= Recv data: OCnnCHcJnIi%2FRNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMD
14:46:34.821472 http.c:716 <= Recv data: UzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z%2Bpn5mZ2y6xlhbL%2BxW6Lt
14:46:34.821472 http.c:716 <= Recv data: y8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a%2FzYnKOZarnivN7cyzytu
14:46:34.821472 http.c:716 <= Recv data: QN5zvn%2F%2FtEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq
14:46:34.821472 http.c:716 <= Recv data: 2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1%2B1dT1gvWd%2B
14:46:34.821472 http.c:716 <= Recv data: 1YfqGnRs%2BFYmKrhTbF5cVf9go3HjlG4dvyr%2BZ3JS0qavEuWTPZtJm6eb
14:46:34.821472 http.c:716 <= Recv data: eLZ5bDpaql%2BaXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO%2FPLi8Zaf
14:46:34.821472 http.c:716 <= Recv data: Jzs07P1SkVPRU%2BlQ27tLdtWHX%2BG7R7ht7vPY07NXbW7z3%2FT7JvttVA
14:46:34.821472 http.c:716 <= Recv data: VVN1WbVZftJ%2B7P3P66Jqun4lvttXa1ObXHtxwPSA%2F0HIw6217nU1R3SP
14:46:34.821472 http.c:716 <= Recv data: VRSj9Yr60cOxx%2B%2B%2Fp3vdy0NNg1VjZzG4iNwRHnk6fcJ3%2FceDTrad
14:46:34.821472 http.c:716 <= Recv data: ox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w%2B0dbq3nr8R9sfD5w0PFl
14:46:34.821472 http.c:716 <= Recv data: 5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb%2B%2B6EHTh0kX
14:46:34.821472 http.c:716 <= Recv data: %2Fi%2Bc7vDvOXPK4dPKy2%2BUTV7hXmq86X23qdOo8%2FpPTT8e7nLuarrl
14:46:34.821472 http.c:716 <= Recv data: ca7nuer21e2b36RueN87d9L158Rb%2F1tWeOT3dvfN6b%2FfF9%2FXfFt1%2
14:46:34.821472 http.c:716 <= Recv data: Bcif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v%2B3Njv3H9qwHeg89HcR%2Fc
14:46:34.821472 http.c:716 <= Recv data: GhYPP%2FpH1jw9DBY%2BZj8uGDYbrnjg%2BOTniP3L96fynQ89kzyaeF%2F6
14:46:34.821472 http.c:716 <= Recv data: i%2FsuuFxYvfvjV69fO0ZjRoZfyl5O%2FbXyl%2FerA6xmv28bCxh6%2ByXg
14:46:34.821472 http.c:716 <= Recv data: zMV70VvvtwXfcdx3vo98PT%2BR8IH8o%2F2j5sfVT0Kf7kxmTk%2F8EA5jz%
14:46:34.821472 http.c:716 <= Recv data: 2FGMzLdsAAAAgY0hSTQAAeiUAAICDAAD5%2FwAAgOkAAHUwAADqYAAAOpgAA
14:46:34.821472 http.c:716 <= Recv data: Bdvkl%2FFRgAAHaxJREFUeNrMm3mYXFWd9z%2Fn3Nq7q%2FdOeu9OdxIhhLD
14:46:34.821472 http.c:716 <= Recv data: 4jrzjMi6vy4iozDtu78yLMI44L6MgRMAJm4ww4%2FO4L4SoYFAyAYIM4oAS4
14:46:34.821472 http.c:716 <= Recv data: wYiEZNAgBDSSdNZ6H2rru6u%2Fd5zzvvHPbe60jYMPur7TiXnqXtvVd0%2B3
14:46:34.821472 http.c:716 <= Recv data: %2B9v%2F51zhTGGP9Xre9%2F73tscx3mTlHKD4zg9juM0O46TlFJGAMcYg1J
14:46:34.821472 http.c:716 <= Recv data: KeZ5X8jxvwfO8Kc%2FzjiulnlVKPXLJJZf8lD%2FxS%2FyxCdi%2BffvHQqH
14:46:34.821472 http.c:716 <= Recv data: QuyORyFn19fWtVVVVMhKJkEgkiMfjxGIxQqEQjuNgCaBYLJLJZMjn82QyGXK
14:46:34.821472 http.c:716 <= Recv data: 5HAsLCzqVSo25rrvf87wHP%2F7xj3%2F7vywB27ZtOy0cDl8ai8Xe3tLS0pN
14:46:34.821472 http.c:716 <= Recv data: MJkVtbS21tbWEw2Ecx0FrjTEGrTWlUgnXdXFdF8dxAAiHwwghEEKgtcZ1XVK
14:46:34.821472 http.c:716 <= Recv data: pFJOTk8zOzpqJiYnjruvu8jzvG5dffvnB%2FxIEbNu2bU00Gr22qqrq3I6Oj
14:46:34.821472 http.c:716 <= Recv data: uaGhgbq6uqIx%2BNIKSmVSszOzuJ5HplMhkKhQDqdJp1Oo5QqEwIQi8WIx%2
14:46:34.821472 http.c:716 <= Recv data: BNlTampqaGhoYFwOMz8%2FDxjY2NMTU0xPDw8lc%2FnH%2FY87%2BZPfepTA
14:46:34.821472 http.c:716 <= Recv data: %2F%2FfCLjnnnv%2BJZFI%2FG1PT093c3MzdXV1xGIxXNctq%2FP09DRzx4%
14:46:34.821472 http.c:716 <= Recv data: 2FhHjxE6NggzsgoodwCulBCey4YgZECL%2BTgGchHI8w1NZHtWgV9fdS3tbG
14:46:34.821472 http.c:716 <= Recv data: yoZ7Gxkba29vJ5%2FNMTEwwPDzMiRMnXnRdd%2FvGjRuv%2BX9KwPbt218Xi
14:46:34.821472 http.c:716 <= Recv data: 8Vu7urq%2BouVK1fK5uZmYrEYhUKBQqHA1NQUo%2F39FPb%2BluTTzxKbnkE
14:46:34.821472 http.c:716 <= Recv data: 6AhGJQiSMkQ5CCACMNmhM2TwwGlEsYvJ5stkc01VRjp3xamKnn0FP3yqaGxv
14:46:34.821472 http.c:716 <= Recv data: p7u7GdV2GhoYYGhrSY2NjvyoWizds2rTpsT85AXffffcnq6urr1i9enV3Z2c
14:46:34.821472 http.c:716 <= Recv data: n8XgcrTXZbJYTJ04wsmcP4UceoWlwEBGPI2IxpBMCYcD%2FDyYADFoYjDYgh
14:46:34.821472 http.c:716 <= Recv data: G8OgDEGA2gA10XMzTG%2FkGawZxWFN%2F0PVm3YQGtTI319faRSKQ4fPszg4
14:46:34.821472 http.c:716 <= Recv data: OCLpVLpK5s2bfqa%2BT0l%2BooJ2LFjxxdXrlz5sa6urmRrayvxeJxsNsvk5
14:46:34.821472 http.c:716 <= Recv data: CQHH3mE6I9%2FTPOJIWRDHTIc9n9kwYBB%2BwJGABqFMlhS%2FO8E89Dm5HP
14:46:34.821472 http.c:716 <= Recv data: PEhPKZchPTDDQ0Y371%2B9j%2FWmn0t7eTjQaZWBggKNHj2bm5uZu37Rp08b
14:46:34.821472 http.c:716 <= Recv data: fh4RXRMD3v%2F%2F9b3d0dFzY29sbqaurIxQKkclkeGrfPqbvu4%2Be%2Ffu
14:46:34.821472 http.c:716 <= Recv data: J1tURCod96RntgxMCowJACgRl4FoY0AZtDAJQdh6LmmDJsdeVAY0hPJcmPTn
14:46:34.821472 http.c:716 <= Recv data: N4b94E70f%2BiCtjfV0dXUxNDREf39%2FaXx8%2FN%2Buu%2B66i40x%2BpU
14:46:34.821472 http.c:716 <= Recv data: QEHol4Lu7u%2F9uzZo1oerqaoQQjIyMsOfnPyd6%2F7%2BzOpMl0ty8RHq%2
14:46:34.821472 http.c:716 <= Recv data: BuhulyqAAlLamIAxGBQCD3wVAfYaM8e%2BjMaDBGI0ACskk0apqTv%2FNo7x
14:46:34.821472 http.c:716 <= Recv data: w5BCpS%2F4RrTXd3d1Eo9GIMebDN910kxBCfPSVkPCyGrBjx44vdnV1Xbpu3
14:46:34.821472 http.c:716 <= Recv data: bpIVVUVxhgGBwd5%2FAc%2FYM2PfkxtMmkTGg1orODRS9Q5MAVdIWULExUc6
14:46:34.821472 http.c:716 <= Recv data: yWfWcdoFQZttCXFv6YEyJkZjnsu7icu46yzzqK7u5vp6Wn27dtXmpiY2HLjj
14:46:34.821472 http.c:716 <= Recv data: Tdu%2FM9ICL2cw2ttbf3Y6tWrI4lEglAoxBNPPMGRH9zP%2Bsd3U1VbayesM
14:46:34.821472 http.c:716 <= Recv data: TaW68DJWY8XvJsKuy47Qvv5SZ9pXQZsKkgzxvzOPYw2lOrqac%2FkGNy8md0
14:46:34.821472 http.c:716 <= Recv data: f%2BQjGGFatWsX69esjxWLx76%2B%2F%2FvphIcSXX46E0EuFupqamit6enq
14:46:34.821472 http.c:716 <= Recv data: SNTU1hMNh9u7dy5G77ubUJ58kWldbTmBMBQh7qazSZbAVZnCSt7egffIMRlv
14:46:34.821472 http.c:716 <= Recv data: SKoGXv7tIWPC5QKPjUbqEYWjLreyzWWdbWxurV6%2BuXlhYuOyqq656Ugjxy
14:46:34.821472 http.c:716 <= Recv data: Es5RrncxVgsdvPq1au7W1paiEajHDx4kP577mHdnieI1SUhCGNl6eB7eQzan
14:46:34.821472 http.c:716 <= Recv data: 6b%2Fzzo59KIU%2Fd9otFJordHGNwOttc0J7Hkw7D2U0eXfa6PQWuEpg1YaH
14:46:34.821472 http.c:716 <= Recv data: YnQUlWF99UvcfDQISYmJujr62PVqlWdiUTis0BYBMnHf0bAPffc8y9dXV1%2
14:46:34.821472 http.c:716 <= Recv data: F0dvbSywWY3p6mr333MOpv%2Fo1obp6tLKTtaqvtPFDlVK4mSxeoUgxm%2FU
14:46:34.821472 http.c:716 <= Recv data: nhkEbjac1SmuUp1FKoT1lwfnXtdZ42qC0Qhm9SEyphJfP4%2BULlHI5PKVQS
14:46:34.821472 http.c:716 <= Recv data: uEpjVLB7xVGeZhIjHYZZuzLX2BsYoJCocC6detYsWLFa6%2B55pp%2FfSlhy
14:46:34.821472 http.c:716 <= Recv data: 6W5fSKR%2BN%2Ft7e0yHA5jjOGhu%2B5i7SOP4NTXWtv1JaSMwcNmcp6LVyr
14:46:34.821472 http.c:716 <= Recv data: R%2B3%2F%2BgT%2B%2F%2FwFWXXQRxWwWz3V9oBi0Vr7kjEZhytqjjEFZDVG
14:46:34.821472 http.c:716 <= Recv data: aspS9XA5ZVUXbFZdz2pZbaX7taynOzZV%2F52uBLwitDcYoVF0dnaMT%2FPb
14:46:34.821472 http.c:716 <= Recv data: 220mn09TW1tLX1ycjkcgHL7744tOEEPJlfUA0Gr121apVXY2NjUgp%2BclPf
14:46:34.821472 http.c:716 <= Recv data: kLdL39BREobwys9tsEI0K6HWyiw4YYbqD33XAA6PvYxCIc59PWvE6pKgHTKp
14:46:34.821472 http.c:716 <= Recv data: uKHSI3W1mSWOjfAyxcI1yRZcdllmFNOYbpYpPeGG9BOiKGdDxNJJssmsvhb7
14:46:34.821472 http.c:716 <= Recv data: XvhjnZW%2FHQnT7zudcTjcdrb22lvb%2B8oFovXAB8GSstqwLZt206rqqo6N
14:46:34.821472 http.c:716 <= Recv data: 8iu5ufnGfzxj%2BiYnMaJRH0bL%2F9Rqwmuh1sscvr115fBB6%2BOv%2Fs71
14:46:34.821472 http.c:716 <= Recv data: l5%2BOcWFLMp1y%2F7AM8rauF4EoTXaKAwGN5sjVF1Fy8aNqLVrKczMkE%2B
14:46:34.821472 http.c:716 <= Recv data: nOTIwQPfVV9F%2B7rvIz876wij7Cd8klNYYbahqWsnUd25jIjVLNBpl7dq1x
14:46:34.821472 http.c:701 <= Recv data, 0000007933 bytes (0x00001efd)
14:46:34.821472 http.c:716 <= Recv data: GKxt37kIx85e6kWlE8ikcilnZ2dzclkEoD77r2XVQcPYeJR38atXRq9aKNes
14:46:34.821472 http.c:716 <= Recv data: cj6666l7l3v%2Bh3b0sbQfeGFrL30ExQzGVzXKzvEwLFpC1xrP4coLeSINNT
14:46:34.821472 http.c:716 <= Recv data: 74Pv6KKRSeMr3F6V8nkP9%2FXRd%2FklWvvVtlLJZ3394vl8o%2BxOl0NXVt
14:46:34.821472 http.c:716 <= Recv data: B09zr6HHmJubo6mpiZaWloam5qa%2FhEIL0tALBZ7e3NzM%2BFw2K%2Fodu%
14:46:34.821472 http.c:716 <= Recv data: 2BmsVQAbKFigmTEPy7Oz9H1gQ9Q%2F67zfhe81ijXpVAs0vvRj3LqlZ%2FCL
14:46:34.821472 http.c:716 <= Recv data: ZXwisUK4LYoUj4ZpWyW6IomWq%2B5Br1mDYXZ2XJjxPM831EWChw8fJhVV1x
14:46:34.821472 http.c:716 <= Recv data: OpKuLUqFgHaexztSPFniKUEsLxbu2MTQ9QywWo7e3l0gk8kYgXqkFMmhjtba
14:46:34.821472 http.c:716 <= Recv data: 29jQ0NACwa9cuOiYmMaFwhbraP6A1RmmUp3Dq6pYHrxRKa9xikdl0mp4LL2L
14:46:34.821472 http.c:716 <= Recv data: 9pn%2BikMvhlUr%2BdzzPjw7GUMxkiDQ10Xr1VZSamiikUuX7aK3xPK98z2I
14:46:34.821472 http.c:716 <= Recv data: %2BT84YiiEHz%2FVQejGaVGqEicWoTs%2Fz%2FM9%2FRiaTYcWKFTQ1NXVed
14:46:34.821472 http.c:716 <= Recv data: tllF1f6PmnbUe9OJBIiFAqxkM0y8uMf0VkslBMVX1qLk%2FCMwklUceS220g
14:46:34.821472 http.c:716 <= Recv data: 98UQ5wQkmGrS7lAU6PjbGyg9%2BkDNvvJFioeh%2FxqLkY62ttF5zDaXWNoo
14:46:34.821472 http.c:716 <= Recv data: LC2hjyvfwPA%2FP8%2FxjpWjpaGf%2FLbcwevB5iEVRIiiU7AgSJqUJV1eTv
14:46:34.821472 http.c:716 <= Recv data: u%2F7pHIFGhsbaWpqEolE4h1ANMgLpLX%2Fs5qbmxFC8Nxzz7HqV48R8XybN
14:46:34.821472 http.c:716 <= Recv data: cpvXAZxtzwAXSrxxCc%2FycTjj%2Fu9PAv%2BpEl7HkZrxo8epemv%2FooN1
14:46:34.821472 http.c:716 <= Recv data: 15HKZdDuR5eNkukqYm2T38ab8UKiul0We0r%2F5ZSvpqv7OhgcOt3eWHrVqq
14:46:34.821472 http.c:716 <= Recv data: LRXQqhZpJoWdT6NlZ1Fwalc2gczl0ycWprcEcP8GJ48colUr09vYSDodPA%2
14:46:34.821472 http.c:716 <= Recv data: BKAAyDvvPPOt9XX17fW1NQghODI7t3URSJIq1JeoP425pc9LwbCYYTr8sQnP
14:46:34.821472 http.c:716 <= Recv data: sHwo48io1E81%2FWTlQoCXNfFGMPwCy9Qf%2F57OOMzN5Cfnye8YgUd115La
14:46:34.821472 http.c:716 <= Recv data: cUKinNzKKUolUqUSiWKxaLfZcrnyReLNLW2cvjLX%2Bb5275Nk1KEZ2d9AmZ
14:46:34.821472 http.c:716 <= Recv data: TeLOzKHuuZ2Yw09OYiTHMyCgRYOhnP6PkuiSTSZLJ5IqLLrrorWUCHMd5UzQ
14:46:34.821472 http.c:716 <= Recv data: alUIIcrkcU0%2F8hnCyppyeBs4lGCrI0mz2JiIRHGDfxo0M%2FexnyGSyTEJ
14:46:34.821472 http.c:716 <= Recv data: ARDCM1gwdPkztX76Tsz%2F7WVZcein5xkZyU1PkCwVyuRy5XI58Pk8%2Bn6e
14:46:34.821472 http.c:716 <= Recv data: Qz1MolWhua%2BOFb3yDgfvuoxWILS1pK94rjyVQBWR%2BupOMp0gkEiSTSVl
14:46:34.821472 http.c:716 <= Recv data: bW%2Ft6ICKEENJxnA2RSAQhBKlUCueFAUjEy%2Fk4J8VqXc4CtXWOSmuEE0a
14:46:34.821472 http.c:716 <= Recv data: 4Hvuu%2FBSju34K8ThusVi246ANrpRCeR5HDx3C%2B7M%2Fo9TSQnZ6moL9T
14:46:34.821472 http.c:716 <= Recv data: qlUKvsRzzrJls5OTnzzm7ywYwctQHSZVFYuQ0IwwkDxxWFSc%2FOEw2EaGhq
14:46:34.821472 http.c:716 <= Recv data: IRqOnAhFASMdxeqqqqhBCcPToUeITM36PTpuKQmXx2OiK%2BK00WmmU9hDhE
14:46:34.821472 http.c:716 <= Recv data: NJTPL1pE9N79iASicX4bBc%2Fcrkc%2BUKBkusyfuIERRvLA8Blm%2Fc8lNa
14:46:34.821472 http.c:716 <= Recv data: 0dHczdtddDOzYwcqXkTwVJCwdjh2p0RGklKxcuZJwONxuuXSk4zgr4vE4Qgg
14:46:34.821472 http.c:716 <= Recv data: mJydJFPN%2B4mNt39jcXQVmgM3BbUfXoNEGPK0hHIJCnv0bN5J65hmIxykUC
14:46:34.821472 http.c:716 <= Recv data: r46FwoUi0UfrPUJlWZSeewqxcquLibvuouDt99OSwX45SRdqfLLESGBzPAwQ
14:46:34.821472 http.c:716 <= Recv data: ghqamqQUtbbUCillLI6FPLD4vTx4yQqujHKlqE%2BYGVHYBK%2BJnjKlCs6b
14:46:34.821472 http.c:716 <= Recv data: UDE45DJsP%2FCi5j51a9wIxGKxeJJITIAexJ4rX3fYQytPT1MbN%2FOc7fdd
14:46:34.821472 http.c:716 <= Recv data: hJ4loAVyxxXSl0AUghiQPqFwyiliMViCCGqrHU40nGcSKCmobk5pJRow6K6G
14:46:34.821472 http.c:716 <= Recv data: 58QbTu7Wi9GAmX8%2Bl9jMEEYHBvDPXoUd3SEZz98IZnHH8eEQidFheA4OC8
14:46:34.821472 http.c:716 <= Recv data: TYgxNTU1MbN%2FO89%2F5DittvHopR1ep%2BnIZf%2BDY8xAQSqdxHAcpJUK
14:46:34.821472 http.c:716 <= Recv data: IcMCRBBzXdRFCEMpmfYlXNCyMVhWNCW3re4WngzIUjJR48%2FMUDh2iOD6Ot
14:46:34.821472 http.c:716 <= Recv data: n%2FYUx5Dn%2FscJp%2FHDeL5EpUvx3nPI1FXR2xoiOet2ieWSHip1JdeDwA
14:46:34.821472 http.c:716 <= Recv data: 7S4YAyOYIh8NIKQNufBMwNuvSWiPdIibo1NiCprI7o7Txsy6rFUb6C5nFEyc
14:46:34.821472 http.c:716 <= Recv data: oHjvmp6A2IysB1Q0NdP3zP1MQAs%2BaQaUJVKa7xhjSExMkXv1q3n7jjSfV6
14:46:34.821472 http.c:716 <= Recv data: S%2Bl8pVSd5a5JitIwS68BouxwW1CSimltQ4ppSAWw5XOYge2sm1d0ac3xmA
14:46:34.821472 http.c:716 <= Recv data: cB5XL4R07hvI82x%2F0Xy4Qr6%2Bn59Zbybe2Ukqn%2FerRSj7I7wOvHyySS
14:46:34.821472 http.c:716 <= Recv data: inZ%2F9vfcuo738npWvPcZz9LqEKl5cv28havCKkxSF%2BIQhBWilCi2v%2B
14:46:34.821472 http.c:716 <= Recv data: WrwEq4FN6nlcKJlGI
V1F0RBmksuCVbVr6GSFoKVHT05QGBvwEx0rdWMnHGxv
14:46:34.821472 http.c:716 <= Recv data: pufVWcm1tlObmfAe3DHhT2fG1PctQKMTze%2FfCeedx2g03oJdRe6fymvRBO
14:46:34.821472 http.c:716 <= Recv data: RJ%2FOCCFgxQQEhASAgEYW%2BYLfxnOLdPmeV6mWCyitSba2kbWVWjESarvN
14:46:34.821472 http.c:716 <= Recv data: 0E1xgiMELhjYxRHRhYLEEupC8Rqa%2Bn%2B6lfJt7VRmp09yeYrwXuBqS0ZQ
14:46:34.821472 http.c:716 <= Recv data: ghi0SiHn3qK0Hvewyn%2F9E94FaospbSA7RAOjhDI8pBIIXCE9If0NaGqdxV
14:46:34.821472 http.c:716 <= Recv data: CiCAtzwbdd%2Bm67nQmk8F1XZq7u3DzeT%2Fmn5T3W6BSUBoeoTQ1ZbXCfyn
14:46:34.821472 http.c:716 <= Recv data: As5Jf9c1vUuju9tW%2BspQNkh0b8mobGxHhMMquHpUlYgHGo1GOHjhA4m%2F
14:46:34.821472 http.c:716 <= Recv data: %2Fllddfz1eIH0hkARAZQVwgSOE7%2FhEMCTSzn%2FFKa%2FCcRwymQxKqdl
14:46:34.821472 http.c:716 <= Recv data: AaaXruieC3Lu1tZV8JIxWnu%2Fh9WJr2ghJaWwUNzVTnqyqBF9bS%2FdXvkK
14:46:34.821472 http.c:716 <= Recv data: hrY2irecrJa%2BU8sOk1rR0dJC%2B916K%2B%2FcTqqlBKeVL1XHKI2y31Qz
14:46:34.821472 http.c:716 <= Recv data: 399N4wQX0XX21T4JSSCl8FZc%2BIY4QhIUkJO0QwYCQXXdo6%2B5BCMHU1BS
14:46:34.821472 http.c:716 <= Recv data: u647ZaWtZKpUO5PN5FhYW6OzsJLfmVX7TwoCyThApcGdm8Kam%2FWUpO4y9S
14:46:34.821472 http.c:716 <= Recv data: zgWo%2BerX6XY01NW%2B8pOTqABrlK0dncz9m%2F%2FxqHt21n48pdxDh3Cq
14:46:34.821472 http.c:716 <= Recv data: akpS99xHMLhMKFQiEgkQiIeZ2xwkO6NG%2Bm89BO4QMgYX7oIqxXWFwCSQAs
14:46:34.821472 http.c:716 <= Recv data: EjpSgNSpZRVtLC0IIxsbGyGazLwQQZC6Xe9R1XT03N0c0GiXx5%2BeQTaeDt
14:46:34.821472 http.c:716 <= Recv data: Wvf5nM53JGRsrMLHJ6ye3t6v%2FQlCqtWUZyZKffuA5uuzPTaenqYuPtuDn3
14:46:34.821472 http.c:716 <= Recv data: ve7TZJGfhX24mPDBAKFmDlLIMPhqNEg6H%2FTnF46SOH%2Be0Gz5D58c%2FT
14:46:34.821472 http.c:716 <= Recv data: kkpHAyOlbgjJA7%2Be0gK6xukTeoM8Xe8g1gkgud5zMzM6PHx8Sety1Lyyiu
14:46:34.821472 http.c:716 <= Recv data: v%2FGkmk5lwXZdcLse6N7%2BF0VwOz67iKs%2FFPXasrOqmArwTCdN3yy246
14:46:34.821472 http.c:716 <= Recv data: 9dTsvt%2BKmO8V%2FHe0tXF2Pbt5SQnFti00mRvugl56Hlidk9QAD4WixGNR
14:46:34.821472 http.c:716 <= Recv data: onH436nenKSM7%2F4RVouvhhc189mLOiQFIQlhKQkLCVhax5ZYPUHPoTjOMz
14:46:34.821472 http.c:716 <= Recv data: Pz5NKpabuv%2F%2F%2B35ZNAFD5fP7Zubk5MpkMZ599NtP19SjXxRMSb3zcz
14:46:34.821472 http.c:716 <= Recv data: %2FoqgAeJTvtHL0afcQalVMpPcSvBW4fnKUV7by8Td9%2FNwa1bWWHBV8Z2x
14:46:34.821472 http.c:716 <= Recv data: %2FPI3nwT%2BtkDxBoaiEQiRKPR8nvlcOfnOetLX8KsfRXSdZECHIRvBkL6f
14:46:34.821472 http.c:716 <= Recv data: kGCg4OTzzMfi%2FGa178ex3F44YUXKBQKR6z0i4CSgMnlcj%2FO5%2FNmcnK
14:46:34.821472 http.c:716 <= Recv data: S2tpaWs87j2xqBp3PU0qnF1dsg6Vq%2B547ccJfuloi%2BbImaE1bdzcnvv1
14:46:34.821472 http.c:716 <= Recv data: tnrO5fcICNxUZXQiIKs38jZ8h%2F%2BRTxJqaiMViy45kbS3p48fJzM8hHYe
14:46:34.821472 http.c:716 <= Recv data: QEIQcQUg6hMCGRYdQ2MHVGvned5NMJikUCgwODprp6elfAwUrQyONMebKK6%
14:46:34.821472 http.c:716 <= Recv data: 2F8VjqdfjGXyzE7O8tf%2FsM%2FMDmXpjQ6WnZ4aon9S2DoRz9ifvt2nOrqc
14:46:34.821472 http.c:716 <= Recv data: l0f5PVBVXfs1lvpv%2Fvu3yls5En5m0Q6kpjnMXv1VaQefphEczMxq%2FqRS
14:46:34.821472 http.c:716 <= Recv data: IRIJEKyvp7U5Di7%2FuZvcMbHiURjfthE%2BgWP45MQBoRSTIVCvOGKT%2BE
14:46:34.821472 http.c:716 <= Recv data: 4DqlUiqGhoZHvfve7DwQEGGNMMA%2BVzWYfSaVSTExM8Ko1a9Cvfz3zuVxZ6
14:46:34.821472 http.c:716 <= Recv data: lSYQBABBHD89ttZuHcHMpHwy2fPQwGtnZ0c%2F9a3GLj%2FflorwJtl6nlp6
14:46:34.821472 http.c:716 <= Recv data: zIRClENzH3mM4w88ABxqwmRcJjapiZmJyd56Py%2FJvLcczQnqwkJQ1gKwlI
14:46:34.821472 http.c:716 <= Recv data: Sko61fYl0HMhmmf6z%2F8a6desolUo8%2BeSTLCws7LGqX7AwyoJQY2Njm9P
14:46:34.821472 http.c:716 <= Recv data: p9Ewmk2F8fJz3fP4LDAlxkuS9Cg3QFSSc2HoH%2BQceIJxMQiJBa3cXx7Zs4
14:46:34.821472 http.c:716
<= Recv data: fC999Jie09Ly9fFl1MOXRIQkQjVjmT6059mcNs2YitXUt%2FRwczoKA%2B99
14:46:34.821472 http.c:716 <= Recv data: 71En3qSrpokcWy2x2LyE8JPfUNaMxoO88bPf4FIJEIul6O%2Fvz%2B1f%2F%
14:46:34.821472 http.c:716 <= Recv data: 2F%2B%2B4C8Haq8OGqMMUKIZ77whS%2F8fHp6%2BgOxWIxzzjmHnee%2Fh5k
14:46:34.821472 http.c:716 <= Recv data: f%2FJD6JT5g6QgBw3fcQeP0NJFzzuHQd7%2FL8M6dtFaAD8zGVLDuSIkUfqg
14:46:34.821472 http.c:716 <= Recv data: V1plJQIbD1AiPmWuv5dnMArWnrWfvzTcTP3CA9mSSCAIp%2FRzfsbm%2BxL%
14:46:34.821472 http.c:716 <= Recv data: 2BHkhIvnWbi%2FX%2FN%2B88%2Bm2KxyOOPP87s7Ozuxx577DCQBYrBhonyH
14:46:34.821472 http.c:716 <= Recv data: iEhhLzkkkvOWLdu3YN9fX3tHR0d9KxezZU1NfR6Xrk8rXSELDlWVrc8oNY23
14:46:34.821472 http.c:716 <= Recv data: eRLlKnSEuBI6Z8HqazwSQhJiaMNxWKBBSAmJQ3V1faeljD7XSH8awiJSM%2F
14:46:34.821472 http.c:716 <= Recv data: yRF0d%2F%2FPwYRqqqxkdHeWOO%2B4Y3bVr1%2BV79ux5DhgD5oNtM%2BUa0
14:46:34.821472 http.c:716 <= Recv data: hijt2zZ8vzc3Ny%2FT01N6enpadx8nvc%2F8AOOvYQjDK4FrzBQAzRWrECa5
14:46:34.821472 http.c:716 <= Recv data: drXtoKTZQCL4B0hCAX5vSOpSiRoq65mZXW1nzsIG%2FOFLGd7IZsGS6UYFYK
14:46:34.821472 http.c:716 <= Recv data: %2B22%2BnMZnEdV1%2B%2Bctf6pmZmV179uwZBBaAfOWeoaVltXvdddfdMDE
14:46:34.821472 http.c:716 <= Recv data: xsWdmZoZDhw7xlneey9qPX8LQkspPLWMKegngZbel2d1Uonwi7C7xgCB7blN
14:46:34.821472 http.c:716 <= Recv data: jIZ1FNQ%2FI8bNz396BsAAjBfm5NKkrruAt555LPp%2F3N3UdOfLUli1bvm1
14:46:34.821472 http.c:716 <= Recv data: Vf8HmAMv3FSwz%2BRMnTvzr0NDQyNzcHPv27WPjLbeSeO1%2FZ3QJ8KWAl15
14:46:34.821472 http.c:716 <= Recv data: bVvpIhJSI4J8I6nvbsRHWHKyGVBY8oUBLpMSR%2FnlICIx0UFPTHHnXu%2Fh
14:46:34.821472 http.c:716 <= Recv data: fN99MoVBgbGyMxx57bPTZZ5%2B9HcgBc0ul%2F1KbpLzNmzf%2FYmpq6rbjx
14:46:34.821472 http.c:716 <= Recv data: 49ns9ksTz%2F9NDf%2F6td0%2FNX5jC0hgQrNYAkZYhnpCzTSN9oyaAICrBM
14:46:34.821472 http.c:716 <= Recv data: 82Wcsgg%2BcnR%2Fr%2FevGcXCnptj%2F6rP4wL334rouCwsL7Ny5MzsyMrJ
14:46:34.821472 http.c:716 <= Recv data: j586dT1nwC9Y9vfwmKctQ4XOf%2B9zXx8fH7x4YGChlMhkOHzrEFd%2B%2Fj
14:46:34.821472 http.c:716 <= Recv data: %2B4LLuDFirpgqcTNf7YRyW9JLUpfGNvQ8I9FIOElfkGWtcA6P9u9dicn6X%
14:46:34.821472 http.c:716 <= Recv data: 2FD6%2FjQo48hjCGXy%2FHQQw%2BVBgcHf7h169YdFvwcUFhuv6B8CVPVQPa
14:46:34.821472 http.c:716 <= Recv data: mm266dnh4%2BIf9%2Ff3e%2FPw8%2Fc8%2Fz1V33snKiy7kkONQXCJxlhBRq
14:46:34.821472 http.c:716 <= Recv data: SGLaiDKGVAgUwTW7n1gYolfCLq7gXMUjoPJLZCZmWbgggt4366fIY0hm83yH
14:46:34.821472 http.c:716 <= Recv data: %2F%2FxH15%2Ff%2F%2FDmzdvvgXIAGlr%2F%2Fr32ipr18%2BjQMO111771
14:46:34.821472 http.c:716 <= Recv data: c7OzveefvrpkUQiwZlnnsmOu7bz4Ef%2BnhqtaXbdZTu0le92GWbRjhE4UhC
14:46:34.821472 http.c:716 <= Recv data: ukHLYSn%2FptUrbRxjMdIohIPKd23nrBR8uP4ny0EMPlfr7%2Bx%2F%2B2te
14:46:34.821472 http.c:716 <= Recv data: %2B9nkLfhpIVcb932uvsN1KEgPqr7766pvb2trev2HDhqrGxkZ6e3vpf%2Fp
14:46:34.821472 http.c:716 <= Recv data: p7r%2F7Loa%2Bs5X2YrG86C6X9OQdbPcGWfbkIfxGZshWcCEsUMexSzay7OQ
14:46:34.821472 http.c:716 <= Recv data: caU1gNk1KKSbWr%2Bc1Dz%2FM6o4O0uk0Y2Nj7Ny5Mzs4OPjDzZs3b7bgZ4D
14:46:34.821472 http.c:716 <= Recv data: Zl1L9V7xdvpKESy%2B99BMrVqy4YN26de2nnHIKyWSS9vZ2tt9yC49t2UJyY
14:46:34.821472 http.c:716 <= Recv data: ICwUlTZDLBSI0KA4%2Fi2HTpJ%2BotAQ2XQ2OaG39NjYYEFpUjFYjTccQdv%
14:46:34.821472 http.c:716 <= Recv data: 2F%2BAHUUqRz%2BfZs2cPjz766OjIyMi9W7duvdeq%2BysC%2F4qfF6ggoe5
14:46:34.821472 http.c:716 <= Recv data: 973vfW0455ZTLOjs7X33mmWfK%2Bvp6mpqaODowwO4HHmDvT3chnj1AfalEg
14:46:34.821472 http.c:716 <= Recv data: y2CQkDYEX7XJsjyrJTDItACp0yKVB6iWKLkecwDpfZOGq%2FbxJ%2B%2F%2B
14:46:34.821472 http.c:716 <= Recv data: z00tLeTyWSYmpriF7%2F4hT5y5MhTzzzzzHd%2B8pOf7
LeSn7V2X%2FiDt8s
14:46:34.821472 http.c:716 <= Recv data: vQ0LEJnt1l1122dUNDQ3vXLNmTduZZ55JdXU1dXV1DB45wuFf%2FpLBI4cZ%
14:46:34.821472 http.c:716 <= Recv data: 2BvWvEUcGiGpNte0FxO1NnGB1smLooE8FiM52kh%2F4EF1vfCPnnHcewQaOh
14:46:34.821472 http.c:716 <= Recv data: YUFdu%2FezVNPPTU6MzOza8uWLbfb2n7OAp%2B3pe4remDi93pmyDrGsN14U
14:46:34.821472 http.c:716 <= Recv data: fuGN7xh%2FWte85qP1dbWvm716tUNGzZsoKGhgUQiQWl%2BnvGREV4cHiYzM
14:46:34.821472 http.c:716 <= Recv data: c7owYMsDB7FmxgnsjAPuTxhYxDxOKaujvjq1UQ6O1lx6jra%2B%2FroXbuWp
14:46:34.821472 http.c:716 <= Recv data: vZ2AAqFAqlUij179nDgwIHU7Ozsbx5%2F%2FPFte%2FfufbEiyZmz6u%2F%2
14:46:34.821472 http.c:716 <= Recv data: B0R%2BZWYaEwCSSQO2b3%2FzmDWecccaHqqurX9PW1ta%2Bdu1a0dfXR01ND
14:46:34.821472 http.c:716 <= Recv data: dFoFCllefXH8zwqN24Hx5FIhFAoVH5wUmvN%2FPw8AwMDHDhwwLz44osjCws
14:46:34.821472 http.c:716 <= Recv data: Le%2Fft2%2FeD3bt3D9q6K1uR5BT85cw%2F0UNTL2ESIavVSTviF1100fuam
14:46:34.821472 http.c:716 <= Recv data: ppeH4vF1jY2Nja3tLTIrq4uWltbTyLELlOXt9gVi0Wy2SxjY2McP36c4eFhP
14:46:34.821472 http.c:716 <= Recv data: T09PVUoFI5MTk7%2B5s4773zQWkfR1vMLQXHjP1v1ylT%2Bj%2F7orCUibIm
14:46:34.821472 http.c:716 <= Recv data: osiMORM8%2F%2F%2FxzWltbz66qquqLRCKtjuPUCyESQohIRRKmjTElY0xOK
14:46:34.821472 http.c:716 <= Recv data: TVbKpXGstns4PDw8DMPPvjgvopeTAA8a0feqrv%2Bg%2Bb%2Fx3p4ukIjopa
14:46:34.821472 http.c:716 <= Recv data: AWMUIVy7vLbPDZWlRWbncWKgYeUuE94cC%2F5M9PW59RODYI3ZEg2hYmRguI
14:46:34.821472 http.c:716 <= Recv data: SCQdAA8kHrJDuU%2FVPbHnfD%2FHQAa7ooYDLZ%2FNAAAAABJRU5ErkJggg%
14:46:34.821472 http.c:716 <= Recv data: 3D%3D" />.. </div>.. </div>.. </body>..
14:46:34.821472 http.c:716 <= Recv data: </html>......
14:46:34.821472 http.c:728 == Info: Connection #0 to host tfs.global.exp.loc left intact
14:46:34.821472 http.c:728 == Info: Issue another request to this URL: 'http://tfs.global.exp.loc:8080/tfs/MyCollection/_git/exp-Plus/info/refs?service=git-upload-pack'
14:46:34.821472 http.c:728 == Info: Couldn't find host tfs.global.exp.loc in the _netrc file; using defaults
14:46:34.821472 http.c:728 == Info: Found bundle for host tfs.global.exp.loc: 0x33a4760 [can pipeline]
14:46:34.821472 http.c:728 == Info: Could pipeline, but not asked to!
14:46:34.821472 http.c:728 == Info: Re-using existing connection! (#0) with host tfs.global.exp.loc
14:46:34.821472 http.c:728 == Info: Connected to tfs.global.exp.loc (10.7.78.56) port 8080 (#0)
14:46:34.821472 http.c:728 == Info: Expire in 0 ms for 6 (transfer 0x339e350)
14:46:34.821472 http.c:728 == Info: Server auth using NTLM with user ''
14:46:34.821472 http.c:675 => Send header, 0000000306 bytes (0x00000132)
14:46:34.821472 http.c:687 => Send header: GET /tfs/MyCollection/_git/exp-Plus/info/refs?service=git-upload-pack HTTP/1.1
14:46:34.821472 http.c:687 => Send header: Host: tfs.global.exp.loc:8080
14:46:34.821472 http.c:687 => Send header: Authorization: NTLM <redacted>
14:46:34.821472 http.c:687 => Send header: User-Agent: git/2.21.0.windows.1
14:46:34.821472 http.c:687 => Send header: Accept: */*
14:46:34.821472 http.c:687 => Send header: Accept-Encoding: deflate, gzip
14:46:34.821472 http.c:687 => Send header: Pragma: no-cache
14:46:34.821472 http.c:687 => Send header:
14:46:34.821472 http.c:675 <= Recv header, 0000000027 bytes (0x0000001b)
14:46:34.821472 http.c:687 <= Recv header: HTTP/1.1 401 Unauthorized
14:46:34.821472 http.c:675 <= Recv header, 0000000043 bytes (0x0000002b)
14:46:34.821472 http.c:687 <= Recv header: Content-Type: text/html; charset=us-ascii
14:46:34.821472 http.c:675 <= Recv header, 0000000031 bytes (0x0000001f)
14:46:34.821472 http.c:687 <= Recv header: Server: Microsoft-HTTPAPI/2.0
14:46:34.821472 http.c:675 <= Recv header, 0000000325 bytes (0x00000145)
14:46:34.821472 http.c:687 <= Recv header: WWW-Authenticate: NTLM TlRMTVNTUAACAAAADAAMADgAAAAFgomipJy0oJ2nn+kAAAAAAAAAAJwAnABEAAAACgA5OAAAAA9HAEwATwBCAEEATAACAAwARwBMAE8AQgBBAEwAAQASAFMAWgBIAE0AMgA3ADMAOQAxAAQAHABnAGwAbwBiAGEAbAAuAHMAegBoAC4AbABvAGMAAwAwAHM
AegBoAG0AMgA3ADMAOQAxAC4AZwBsAG8AYgBhAGwALgBzAHoAaAAuAGwAbwBjAAUADgBzAHoAaAAuAGwAbwBjAAcACADOzmHqZPvUAQAAAAA=
14:46:34.821472 http.c:675 <= Recv header, 0000000037 bytes (0x00000025)
14:46:34.821472 http.c:687 <= Recv header: Date: Thu, 25 Apr 2019 12:46:33 GMT
14:46:34.821472 http.c:675 <= Recv header, 0000000021 bytes (0x00000015)
14:46:34.821472 http.c:687 <= Recv header: Content-Length: 341
14:46:34.821472 http.c:675 <= Recv header, 0000000002 bytes (0x00000002)
14:46:34.821472 http.c:687 <= Recv header:
14:46:34.821472 http.c:728 == Info: Ignoring the response-body
14:46:34.821472 http.c:701 <= Recv data, 0000000341 bytes (0x00000155)
14:46:34.821472 http.c:716 <= Recv data: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""http://www
14:46:34.821472 http.c:716 <= Recv data: .w3.org/TR/html4/strict.dtd">..<HTML><HEAD><TITLE>Not Author
14:46:34.821472 http.c:716 <= Recv data: ized</TITLE>..<META HTTP-EQUIV="Content-Type" Content="text/
14:46:34.821472 http.c:716 <= Recv data: html; charset=us-ascii"></HEAD>..<BODY><h2>Not Authorized</h
14:46:34.821472 http.c:716 <= Recv data: 2>..<hr><p>HTTP Error 401. The requested resource requires u
14:46:34.821472 http.c:716 <= Recv data: ser authentication.</p>..</BODY></HTML>..
14:46:34.821472 http.c:728 == Info: Connection #0 to host tfs.global.exp.loc left intact
14:46:34.821472 http.c:728 == Info: Issue another request to this URL: 'http://tfs.global.exp.loc:8080/tfs/MyCollection/_git/exp-Plus/info/refs?service=git-upload-pack'
14:46:34.821472 http.c:728 == Info: Couldn't find host tfs.global.exp.loc in the _netrc file; using defaults
14:46:34.821472 http.c:728 == Info: Found bundle for host tfs.global.exp.loc: 0x33a4760 [can pipeline]
14:46:34.821472 http.c:728 == Info: Could pipeline, but not asked to!
14:46:34.821472 http.c:728 == Info: Re-using existing connection! (#0) with host tfs.global.exp.loc
14:46:34.821472 http.c:728 == Info: Connected to tfs.global.exp.loc (10.7.78.56) port 8080 (#0)
14:46:34.821472 http.c:728 == Info: Expire in 0 ms for 6 (transfer 0x339e350)
14:46:34.821472 http.c:728 == Info: Server auth using NTLM with user ''
14:46:34.821472 http.c:675 => Send header, 0000000918 bytes (0x00000396)
14:46:34.821472 http.c:687 => Send header: GET /tfs/MyCollection/_git/exp-Plus/info/refs?service=git-upload-pack HTTP/1.1
14:46:34.821472 http.c:687 => Send header: Host: tfs.global.exp.loc:8080
14:46:34.821472 http.c:687 => Send header: Authorization: NTLM <redacted>
14:46:34.821472 http.c:687 => Send header: User-Agent: git/2.21.0.windows.1
14:46:34.821472 http.c:687 => Send header: Accept: */*
14:46:34.821472 http.c:687 => Send header: Accept-Encoding: deflate, gzip
14:46:34.821472 http.c:687 => Send header: Pragma: no-cache
14:46:34.821472 http.c:687 => Send header:
14:46:34.821472 http.c:675 <= Recv header, 0000000027 bytes (0x0000001b)
14:46:34.821472 http.c:687 <= Recv header: HTTP/1.1 401 Unauthorized
14:46:34.821472 http.c:675 <= Recv header, 0000000025 bytes (0x00000019)
14:46:34.821472 http.c:687 <= Recv header: Content-Type: text/html
14:46:34.821472 http.c:675 <= Recv header, 0000000028 bytes (0x0000001c)
14:46:34.821472 http.c:687 <= Recv header: Server: Microsoft-IIS/10.0
14:46:34.821472 http.c:675 <= Recv header, 0000000055 bytes (0x00000037)
14:46:34.821472 http.c:687 <= Recv header: X-TFS-ProcessId: 95d140ae-0f2b-46d6-9743-7c68c1945688
14:46:34.821472 http.c:675 <= Recv header, 0000000050 bytes (0x00000032)
14:46:34.821472 http.c:687 <= Recv header: ActivityId: c47aacff-b494-4e03-837f-6ea9576f9c5a
14:46:34.821472 http.c:675 <= Recv header, 0000000053 bytes (0x00000035)
14:46:34.821472 http.c:687 <= Recv header: X-TFS-Session: c47aacff-b494-4e03-837f-6ea9576f9c5a
14:46:34.821472 http.c:675 <= Recv header, 0000000051 bytes (0x00000033)
14:46:34.821472 http.c:687 <= Recv header: X-VSS-E2EID: c47aacff-b494-4e03-837f-6ea9576f9c5a
14:46:34.821472 http.c:675 <= Recv header, 0000000029 bytes (0x0000001d)
14:46:34.821472 http.c:687 <= Recv header: X-FRAME-OPTIONS: SAMEORIGIN
14:46:34.821472 http.c:675 <= Recv header, 0000000026 bytes (0x0000001a)
14:46:34.821472 http.c:687 <= Recv header: WWW-Authenticate: Bearer
14:46:34.821472 http.c:675 <= Recv header, 0000000068 bytes (0x00000044)
14:46:34.821472 http.c:687 <= Recv header: WWW-Authenticate: Basic realm="http://tfs.global.exp.loc:8080/tfs"
14:46:34.821472 http.c:675 <= Recv header, 0000000029 bytes (0x0000001d)
14:46:34.821472 http.c:687 <= Recv header: WWW-Authenticate: Negotiate
14:46:34.821472 http.c:728 == Info: NTLM handshake rejected
14:46:34.821472 http.c:728 == Info: Authentication problem. Ignoring this.
14:46:34.821472 http.c:675 <= Recv header, 0000000024 bytes (0x00000018)
14:46:34.821472 http.c:687 <= Recv header: WWW-Authenticate: NTLM
14:46:34.821472 http.c:675 <= Recv header, 0000000023 bytes (0x00000017)
14:46:34.821472 http.c:687 <= Recv header: X-Powered-By: ASP.NET
14:46:34.821472 http.c:675 <= Recv header, 0000000124 bytes (0x0000007c)
14:46:34.821472 http.c:687 <= Recv header: P3P: CP="CAO DSP COR ADMa DEV CONo TELo CUR PSA PSD TAI IVDo OUR SAMi BUS DEM NAV STA UNI COM INT PHY ONL FIN PUR LOC CNT"
14:46:34.821472 http.c:675 <= Recv header, 0000000024 bytes (0x00000018)
14:46:34.821472 http.c:687 <= Recv header: Lfs-Authenticate: NTLM
14:46:34.821472 http.c:675 <= Recv header, 0000000033 bytes (0x00000021)
14:46:34.821472 http.c:687 <= Recv header: X-Content-Type-Options: nosniff
14:46:34.821472 http.c:675 <= Recv header, 0000000037 bytes (0x00000025)
14:46:34.821472 http.c:687 <= Recv header: Date: Thu, 25 Apr 2019 12:46:33 GMT
14:46:34.821472 http.c:675 <= Recv header, 0000000022 bytes (0x00000016)
14:46:34.821472 http.c:687 <= Recv header: Content-Length: 1293
14:46:34.821472 http.c:675 <= Recv header, 0000000002 bytes (0x00000002)
14:46:34.821472 http.c:687 <= Recv header:
14:46:34.821472 http.c:701 <= Recv data, 0000001293 bytes (0x0000050d)
14:46:34.821472 http.c:716 <= Recv data: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "ht
14:46:34.821472 http.c:716 <= Recv data: tp://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">..<html xml
14:46:34.821472 http.c:716 <= Recv data: ns="http://www.w3.org/1999/xhtml">..<head>..<meta http-equiv
14:46:34.821472 http.c:716 <= Recv data: ="Content-Type" content="text/html; charset=iso-8859-1"/>..<
14:46:34.821472 http.c:716 <= Recv data: title>401 - Unauthorized: Access is denied due to invalid cr
14:46:34.821472 http.c:716 <= Recv data: edentials.</title>..<style type="text/css">..<!--..body{marg
14:46:34.821472 http.c:716 <= Recv data: in:0;font-size:.7em;font-family:Verdana, Arial, Helvetica, s
14:46:34.821472 http.c:716 <= Recv data: ans-serif;background:#EEEEEE;}..fieldset{padding:0 15px 10px
14:46:34.821472 http.c:716 <= Recv data: 15px;} ..h1{font-size:2.4em;margin:0;color:#FFF;}..h2{font-
14:46:34.821472 http.c:716 <= Recv data: size:1.7em;margin:0;color:#CC0000;} ..h3{font-size:1.2em;mar
14:46:34.821472 http.c:716 <= Recv data: gin:10px 0 0 0;color:#000000;} ..#header{width:96%;margin:0
14:46:34.821472 http.c:716 <= Recv data: 0 0 0;padding:6px 2% 6px 2%;font-family:"trebuchet MS", Verd
14:46:34.821472 http.c:716 <= Recv data: ana, sans-serif;color:#FFF;..background-color:#555555;}..#co
14:46:34.821472 http.c:716 <= Recv data: ntent{margin:0 0 0 2%;position:relative;}...content-containe
14:46:34.821472 http.c:716 <= Recv data: r{background:#FFF;width:96%;margin-top:8px;padding:10px;posi
14:46:34.821472 http.c:716 <= Recv data: tion:relative;}..-->..</style>..</head>..<body>..<div id="he
14:46:34.821472 http.c:716 <= Recv data: ader"><h1>Server Error</h1></div>..<div id="content">.. <div
14:46:34.821472 http.c:716 <= Recv data: class="content-container"><fieldset>.. <h2>401 - Unauthori
14:46:34.821472 http.c:716 <= Recv data: zed: Access is denied due to invalid credentials.</h2>.. <h
14:46:34.821472 http.c:716 <= Recv data: 3>You do not have permission to view this directory or page
14:46:34.821472 http.c:716 <= Recv data: using the credentials that you supplied.</h3>.. </fieldset><
14:46:34.821472 http.c:716 <= Recv data: /div>..</div>..</body>..</html>..
14:46:34.821472 http.c:728 == Info: Connection #0 to host tfs.global.exp.loc left intact
14:46:34.821472 run-command.c:643 trace: run_command: 'git credential-manager erase'
14:46:34.852723 exec-cmd.c:236 trace: resolved executable dir: C:/Program Files/Git/mingw64/libexec/git-core
14:46:34.852723 git.c:676 trace: exec: git-credential-manager erase
14:46:34.852723 run-command.c:643 trace: run_command: git-credential-manager erase
14:46:34.915229 ...\Common.cs:744 trace: [Main] git-credential-manager (v1.18.4) 'erase'
14:46:34.993359 ...\Git\Where.cs:348 trace: [FindGitInstallations] found 1 Git installation(s).
14:46:35.008986 ...Configuration.cs:222 trace: [LoadGitConfiguration] git All config read, 32 entries.
14:46:35.055866 ...\Common.cs:85 trace: [CreateAuthentication] detecting authority type for 'http://tfs.global.exp.loc:8080/'.
14:46:35.071492 ...\Common.cs:224 trace: [CreateAuthentication] authority for 'http://tfs.global.exp.loc:8080/' is basic with NTLM=Auto.
14:46:35.071492 ...\Common.cs:252 trace: [DeleteCredentials] deleting basic credentials for 'http://tfs.global.exp.loc:8080/'.
14:46:35.087119 ...aseSecureStore.cs:59 trace: [Delete] credentials not found for 'git:http://tfs.global.exp.loc:8080'.
14:46:35.102746 run-command.c:643 trace: run_command: 'git credential-manager erase'
14:46:35.118371 exec-cmd.c:236 trace: resolved executable dir: C:/Program Files/Git/mingw64/libexec/git-core
14:46:35.118371 git.c:676 trace: exec: git-credential-manager erase
14:46:35.118371 run-command.c:643 trace: run_command: git-credential-manager erase
14:46:35.180879 ...\Common.cs:744 trace: [Main] git-credential-manager (v1.18.4) 'erase'
14:46:35.274637 ...\Git\Where.cs:348 trace: [FindGitInstallations] found 1 Git installation(s).
14:46:35.274637 ...Configuration.cs:222 trace: [LoadGitConfiguration] git All config read, 32 entries.
14:46:35.321519 ...\Common.cs:85 trace: [CreateAuthentication] detecting authority type for 'http://tfs.global.exp.loc:8080/'.
14:46:35.352772 ...\Common.cs:224 trace: [CreateAuthentication] authority for 'http://tfs.global.exp.loc:8080/' is basic with NTLM=Auto.
14:46:35.352772 ...\Common.cs:252 trace: [DeleteCredentials] deleting basic credentials for 'http://tfs.global.exp.loc:8080/'.
14:46:35.352772 ...aseSecureStore.cs:59 trace: [Delete] credentials not found for 'git:http://tfs.global.exp.loc:8080'.
fatal: Authentication failed for 'http://tfs.global.exp.loc:8080/tfs/MyCollection/_git/exp-Plus/'
@SetTrend not by me. I am no longer associated with Microsoft or the GCM. Last I heard @jeschu1 had been handed the responsibility of monitoring this repository, but that was 6+ months ago and things may have changed.
Thanks for clarifying. So, I've launched a new issue now: #848.