docker-api 1.18.0 → 1.19.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +7 -7
- data/lib/docker/exec.rb +8 -2
- data/lib/docker/util.rb +11 -1
- data/lib/docker/version.rb +2 -2
- data/spec/docker/container_spec.rb +6 -5
- data/spec/docker/exec_spec.rb +29 -61
- data/spec/docker/image_spec.rb +8 -4
- data/spec/docker_spec.rb +4 -3
- data/spec/fixtures/build_from_dir/Dockerfile +1 -1
- data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +10 -9
- data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +15 -9
- data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +15 -9
- data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +10 -9
- data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +45 -34
- data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +31 -30
- data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +31 -30
- data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +45 -42
- data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +66 -35
- data/spec/vcr/Docker_Container/_copy/when_the_file_does_not_exist/raises_an_error.yml +37 -35
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +45 -43
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +44 -42
- data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +24 -22
- data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist/when_the_HTTP_request_returns_a_200/sets_the_id.yml +15 -14
- data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +24 -22
- data/spec/vcr/Docker_Container/_exec/when_detach_is_true/returns_the_Docker_Exec_object.yml +68 -39
- data/spec/vcr/Docker_Container/_exec/when_passed_a_block/streams_the_stdout/stderr_messages.yml +68 -38
- data/spec/vcr/Docker_Container/_exec/when_passed_only_a_command/returns_the_stdout/stderr_messages_and_exit_code.yml +183 -0
- data/spec/vcr/Docker_Container/_exec/when_stdin_object_is_passed/returns_the_stdout/stderr_messages.yml +26 -25
- data/spec/vcr/Docker_Container/_exec/when_tty_is_true/returns_the_raw_stdout/stderr_output.yml +68 -38
- data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +85 -92
- data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +24 -22
- data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +24 -22
- data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +48 -43
- data/spec/vcr/Docker_Container/_kill/with_a_kill_signal/kills_the_container.yml +83 -69
- data/spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/raises_a_client_error.yml +47 -42
- data/spec/vcr/Docker_Container/_logs/when_selecting_stdout/returns_blank_logs.yml +20 -19
- data/spec/vcr/Docker_Container/_pause/pauses_the_container.yml +45 -43
- data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +73 -65
- data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +29 -27
- data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_returns_a_status_code_of_0/creates_a_new_container_to_run_the_specified_command.yml +114 -102
- data/spec/vcr/Docker_Container/_start/starts_the_container.yml +42 -37
- data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +49 -44
- data/spec/vcr/Docker_Container/_streaming_logs/when_not_selecting_any_stream/raises_a_client_error.yml +47 -42
- data/spec/vcr/Docker_Container/_streaming_logs/when_selecting_stdout/returns_blank_logs.yml +20 -19
- data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +54 -51
- data/spec/vcr/Docker_Container/_unpause/unpauses_the_container.yml +45 -43
- data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +29 -27
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +29 -27
- data/spec/vcr/Docker_Exec/_create/when_the_HTTP_request_returns_a_201/sets_the_id.yml +35 -33
- data/spec/vcr/Docker_Exec/_json/returns_the_description_as_a_Hash.yml +207 -0
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/block_is_passed/attaches_to_the_stream.yml +68 -38
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/returns_the_stdout_and_stderr_messages.yml +68 -38
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_true/returns_empty_stdout/stderr_messages_with_exitcode.yml +180 -0
- data/spec/vcr/Docker_Exec/_start_/when_the_HTTP_request_returns_a_201/starts_the_exec_instance.yml +67 -38
- data/spec/vcr/Docker_Exec/_start_/when_the_command_has_already_run/raises_an_error.yml +67 -38
- data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +67 -87
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +9 -9
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_specifying_a_repo_in_the_query_parameters/builds_an_image_and_tags_it.yml +92 -107
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +9 -9
- data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +11 -9
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +89 -38
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_X-Registry-Config_header.yml +89 -38
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +421 -51
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_specifying_a_repo_in_the_query_parameters/builds_the_image_and_tags_it.yml +422 -140
- data/spec/vcr/Docker_Image/_create/when_the_Image_does_not_yet_exist_and_the_body_is_a_Hash/sets_the_id_and_sends_Docker_creds.yml +16 -16
- data/spec/vcr/Docker_Image/_create/with_a_block_capturing_create_output/calls_the_block_and_passes_build_output.yml +9 -7
- data/spec/vcr/Docker_Image/_exist_/when_the_image_does_exist/returns_true.yml +11 -9
- data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +11 -9
- data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +21 -18
- data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_invalid/raises_an_error.yml +164 -35
- data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_valid/returns_an_Image.yml +21 -23
- data/spec/vcr/Docker_Image/_import/when_the_file_does_exist/creates_the_Image.yml +15 -15
- data/spec/vcr/Docker_Image/_insert_local/when_a_direcory_is_passed/inserts_the_directory.yml +887 -840
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +76 -65
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +56 -48
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +63 -61
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +9 -9
- data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +69 -66
- data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +19 -17
- data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +99 -113
- data/spec/vcr/Docker_Image/_push/streams_output_from_push.yml +100 -391
- data/spec/vcr/Docker_Image/_push/when_the_image_was_retrived_by_get/when_no_tag_is_specified/looks_up_the_first_repo_tag.yml +174 -708
- data/spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml +115 -110
- data/spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml +77 -93
- data/spec/vcr/Docker_Image/_refresh_/with_an_explicit_connection/updates_using_the_provided_connection.yml +19 -17
- data/spec/vcr/Docker_Image/_remove/when_no_name_is_given/removes_the_Image.yml +581 -229
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +52 -50
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +42 -40
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_nil/command_configured_in_image/should_normally_show_result_if_image_has_Cmd_configured.yml +52 -50
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_nil/no_command_configured_in_image/should_raise_an_error_if_no_command_is_specified.yml +16 -15
- data/spec/vcr/Docker_Image/_save/calls_the_class_method.yml +42 -39
- data/spec/vcr/Docker_Image/_save/when_a_filename_is_specified/exports_tarball_of_image_to_specified_file.yml +51 -63
- data/spec/vcr/Docker_Image/_save/when_no_filename_is_specified/returns_raw_binary_data_as_string.yml +51 -63
- data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +48 -209
- data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +22 -22
- metadata +8 -8
- data/spec/vcr/Docker_Container/_exec/when_passed_only_a_command/returns_the_stdout/stderr_messages.yml +0 -153
- data/spec/vcr/Docker_Exec/_resize/when_exec_instance_has_TTY_enabled/returns_a_200.yml +0 -155
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_true/returns_empty_stdout_and_stderr_messages.yml +0 -151
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri:
|
5
|
+
uri: <DOCKER_HOST>/v1.16/images/create?fromImage=debian%3Awheezy
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
11
|
+
- Swipely/Docker-API 1.18.0
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -19,25 +19,25 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Thu, 12 Feb 2015 00:55:56 GMT
|
23
23
|
body:
|
24
|
-
encoding:
|
25
|
-
string: "{\"status\":\"The image you are pulling has been verified\",\"id\":\"debian:wheezy\"}\r\n{\"status\":\"Already
|
24
|
+
encoding: US-ASCII
|
25
|
+
string: ! "{\"status\":\"The image you are pulling has been verified\",\"id\":\"debian:wheezy\"}\r\n{\"status\":\"Already
|
26
26
|
exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
|
27
|
-
exists\",\"progressDetail\":{},\"id\":\"
|
28
|
-
exists\",\"progressDetail\":{},\"id\":\"
|
27
|
+
exists\",\"progressDetail\":{},\"id\":\"30d39e59ffe2\"}{\"status\":\"Already
|
28
|
+
exists\",\"progressDetail\":{},\"id\":\"c90d655b99b2\"}{\"status\":\"Status:
|
29
29
|
Image is up to date for debian:wheezy\"}\r\n"
|
30
30
|
http_version:
|
31
|
-
recorded_at:
|
31
|
+
recorded_at: Thu, 12 Feb 2015 00:55:56 GMT
|
32
32
|
- request:
|
33
33
|
method: get
|
34
|
-
uri:
|
34
|
+
uri: <DOCKER_HOST>/v1.16/images/c90d655b99b2/json
|
35
35
|
body:
|
36
36
|
encoding: US-ASCII
|
37
37
|
string: ''
|
38
38
|
headers:
|
39
39
|
User-Agent:
|
40
|
-
- Swipely/Docker-API 1.
|
40
|
+
- Swipely/Docker-API 1.18.0
|
41
41
|
Content-Type:
|
42
42
|
- text/plain
|
43
43
|
response:
|
@@ -48,13 +48,15 @@ http_interactions:
|
|
48
48
|
Content-Type:
|
49
49
|
- application/json
|
50
50
|
Date:
|
51
|
-
-
|
51
|
+
- Thu, 12 Feb 2015 00:55:56 GMT
|
52
52
|
Content-Length:
|
53
|
-
- '
|
53
|
+
- '1592'
|
54
54
|
body:
|
55
|
-
encoding:
|
56
|
-
string:
|
57
|
-
|
55
|
+
encoding: US-ASCII
|
56
|
+
string: ! '{"Architecture":"amd64","Author":"","Checksum":"tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/bash"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"dc534047acbb","Image":"30d39e59ffe287f29a41a3f8bd70734afc8728329e3289945cbdc5bbf07cd980","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"939613a44d80d4e75ce1053d4c2ee73da091e0aaeb233abfe29a478eca1769a9","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop)
|
57
|
+
CMD [/bin/bash]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"dc534047acbb","Image":"30d39e59ffe287f29a41a3f8bd70734afc8728329e3289945cbdc5bbf07cd980","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-01-27T17:26:31.855267409Z","DockerVersion":"1.4.1","Id":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","Os":"linux","Parent":"30d39e59ffe287f29a41a3f8bd70734afc8728329e3289945cbdc5bbf07cd980","Size":0,"VirtualSize":85120773}
|
58
|
+
|
59
|
+
'
|
58
60
|
http_version:
|
59
|
-
recorded_at:
|
60
|
-
recorded_with: VCR 2.9.
|
61
|
+
recorded_at: Thu, 12 Feb 2015 00:55:56 GMT
|
62
|
+
recorded_with: VCR 2.9.2
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri:
|
5
|
+
uri: <DOCKER_HOST>/v1.16/images/create?fromImage=busybox
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
11
|
+
- Swipely/Docker-API 1.18.0
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -19,225 +19,569 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Thu, 12 Feb 2015 00:54:48 GMT
|
23
23
|
body:
|
24
|
-
encoding:
|
25
|
-
string: "{\"status\":\"The image you are pulling has been verified\",\"id\":\"busybox:buildroot-2013.08.1\"}\r\n{\"status\":\"
|
24
|
+
encoding: US-ASCII
|
25
|
+
string: ! "{\"status\":\"The image you are pulling has been verified\",\"id\":\"busybox:buildroot-2013.08.1\"}\r\n{\"status\":\"Pulling
|
26
|
+
fs layer\",\"progressDetail\":{},\"id\":\"618b1fc306b0\"}{\"status\":\"Pulling
|
27
|
+
fs layer\",\"progressDetail\":{},\"id\":\"2aed48a4e41d\"}{\"status\":\"Already
|
26
28
|
exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
|
27
|
-
exists\",\"progressDetail\":{},\"id\":\"df7546f9f060\"}{\"status\":\"
|
28
|
-
|
29
|
-
|
30
|
-
|
29
|
+
exists\",\"progressDetail\":{},\"id\":\"df7546f9f060\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31062,\"total\":2803200,\"start\":1423702488},\"progress\":\"[\\u003e
|
30
|
+
\ ] 31.06 kB/2.803 MB 55s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67262,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=\\u003e
|
31
|
+
\ ] 67.26 kB/2.803 MB 26s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1423702488},\"progress\":\"[==================================================\\u003e]
|
32
|
+
1.024 kB/1.024 kB\",\"id\":\"2aed48a4e41d\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"2aed48a4e41d\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":100030,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=\\u003e
|
33
|
+
\ ] 100 kB/2.803 MB 18s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":132798,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==\\u003e
|
34
|
+
\ ] 132.8 kB/2.803 MB 14s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":165566,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==\\u003e
|
35
|
+
\ ] 165.6 kB/2.803 MB 11s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":198334,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===\\u003e
|
36
|
+
\ ] 198.3 kB/2.803 MB 9s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":231102,\"total\":2803200,\"start\":1423702488},\"progress\":\"[====\\u003e
|
37
|
+
\ ] 231.1 kB/2.803 MB 8s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":263870,\"total\":2803200,\"start\":1423702488},\"progress\":\"[====\\u003e
|
38
|
+
\ ] 263.9 kB/2.803 MB 7s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":296638,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=====\\u003e
|
39
|
+
\ ] 296.6 kB/2.803 MB 6s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":329406,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=====\\u003e
|
40
|
+
\ ] 329.4 kB/2.803 MB 5s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":362174,\"total\":2803200,\"start\":1423702488},\"progress\":\"[======\\u003e
|
41
|
+
\ ] 362.2 kB/2.803 MB 5s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":394942,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=======\\u003e
|
42
|
+
\ ] 394.9 kB/2.803 MB 5s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":427710,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=======\\u003e
|
43
|
+
\ ] 427.7 kB/2.803 MB 4s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":460478,\"total\":2803200,\"start\":1423702488},\"progress\":\"[========\\u003e
|
44
|
+
\ ] 460.5 kB/2.803 MB 4s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":493246,\"total\":2803200,\"start\":1423702488},\"progress\":\"[========\\u003e
|
45
|
+
\ ] 493.2 kB/2.803 MB 4s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":526014,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=========\\u003e
|
46
|
+
\ ] 526 kB/2.803 MB 3s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":558782,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=========\\u003e
|
47
|
+
\ ] 558.8 kB/2.803 MB 3s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":591550,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==========\\u003e
|
48
|
+
\ ] 591.5 kB/2.803 MB 3s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":624318,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===========\\u003e
|
49
|
+
\ ] 624.3 kB/2.803 MB 3s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":657086,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===========\\u003e
|
50
|
+
\ ] 657.1 kB/2.803 MB 3s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":689854,\"total\":2803200,\"start\":1423702488},\"progress\":\"[============\\u003e
|
51
|
+
\ ] 689.9 kB/2.803 MB 2s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":722622,\"total\":2803200,\"start\":1423702488},\"progress\":\"[============\\u003e
|
52
|
+
\ ] 722.6 kB/2.803 MB 2s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":755390,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=============\\u003e
|
53
|
+
\ ] 755.4 kB/2.803 MB 2s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":788158,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==============\\u003e
|
54
|
+
\ ] 788.2 kB/2.803 MB 2s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":820926,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==============\\u003e
|
55
|
+
\ ] 820.9 kB/2.803 MB 2s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":853694,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===============\\u003e
|
56
|
+
\ ] 853.7 kB/2.803 MB 2s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":886462,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===============\\u003e
|
57
|
+
\ ] 886.5 kB/2.803 MB 2s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":919230,\"total\":2803200,\"start\":1423702488},\"progress\":\"[================\\u003e
|
58
|
+
\ ] 919.2 kB/2.803 MB 2s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":951998,\"total\":2803200,\"start\":1423702488},\"progress\":\"[================\\u003e
|
59
|
+
\ ] 952 kB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":984766,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=================\\u003e
|
60
|
+
\ ] 984.8 kB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1017534,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==================\\u003e
|
61
|
+
\ ] 1.018 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1050302,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==================\\u003e
|
62
|
+
\ ] 1.05 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1083070,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===================\\u003e
|
63
|
+
\ ] 1.083 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1115838,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===================\\u003e
|
64
|
+
\ ] 1.116 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1148606,\"total\":2803200,\"start\":1423702488},\"progress\":\"[====================\\u003e
|
65
|
+
\ ] 1.149 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1181374,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=====================\\u003e
|
66
|
+
\ ] 1.181 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1214142,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=====================\\u003e
|
67
|
+
\ ] 1.214 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1246910,\"total\":2803200,\"start\":1423702488},\"progress\":\"[======================\\u003e
|
68
|
+
\ ] 1.247 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1279678,\"total\":2803200,\"start\":1423702488},\"progress\":\"[======================\\u003e
|
69
|
+
\ ] 1.28 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1312446,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=======================\\u003e
|
70
|
+
\ ] 1.312 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1345214,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=======================\\u003e
|
71
|
+
\ ] 1.345 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1377982,\"total\":2803200,\"start\":1423702488},\"progress\":\"[========================\\u003e
|
72
|
+
\ ] 1.378 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1410750,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=========================\\u003e
|
73
|
+
\ ] 1.411 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1443518,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=========================\\u003e
|
74
|
+
\ ] 1.444 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1476286,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==========================\\u003e
|
75
|
+
\ ] 1.476 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1509054,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==========================\\u003e
|
76
|
+
\ ] 1.509 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1541822,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===========================\\u003e
|
77
|
+
\ ] 1.542 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1574590,\"total\":2803200,\"start\":1423702488},\"progress\":\"[============================\\u003e
|
78
|
+
\ ] 1.575 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1607358,\"total\":2803200,\"start\":1423702488},\"progress\":\"[============================\\u003e
|
79
|
+
\ ] 1.607 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1640126,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=============================\\u003e
|
80
|
+
\ ] 1.64 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1672894,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=============================\\u003e
|
81
|
+
\ ] 1.673 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1705662,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==============================\\u003e
|
82
|
+
\ ] 1.706 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1738430,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===============================\\u003e
|
83
|
+
\ ] 1.738 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1771198,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===============================\\u003e
|
84
|
+
\ ] 1.771 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1803966,\"total\":2803200,\"start\":1423702488},\"progress\":\"[================================\\u003e
|
85
|
+
\ ] 1.804 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1836734,\"total\":2803200,\"start\":1423702488},\"progress\":\"[================================\\u003e
|
86
|
+
\ ] 1.837 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1869502,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=================================\\u003e
|
87
|
+
\ ] 1.87 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1902270,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=================================\\u003e
|
88
|
+
\ ] 1.902 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1935038,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==================================\\u003e
|
89
|
+
\ ] 1.935 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1967806,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===================================\\u003e
|
90
|
+
\ ] 1.968 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2000574,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===================================\\u003e
|
91
|
+
\ ] 2.001 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2033342,\"total\":2803200,\"start\":1423702488},\"progress\":\"[====================================\\u003e
|
92
|
+
\ ] 2.033 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2066110,\"total\":2803200,\"start\":1423702488},\"progress\":\"[====================================\\u003e
|
93
|
+
\ ] 2.066 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2098878,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=====================================\\u003e
|
94
|
+
\ ] 2.099 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2131646,\"total\":2803200,\"start\":1423702488},\"progress\":\"[======================================\\u003e
|
95
|
+
\ ] 2.132 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2164414,\"total\":2803200,\"start\":1423702488},\"progress\":\"[======================================\\u003e
|
96
|
+
\ ] 2.164 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2197182,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=======================================\\u003e
|
97
|
+
\ ] 2.197 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2229950,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=======================================\\u003e
|
98
|
+
\ ] 2.23 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2262718,\"total\":2803200,\"start\":1423702488},\"progress\":\"[========================================\\u003e
|
99
|
+
\ ] 2.263 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2295486,\"total\":2803200,\"start\":1423702488},\"progress\":\"[========================================\\u003e
|
100
|
+
\ ] 2.295 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2328254,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=========================================\\u003e
|
101
|
+
\ ] 2.328 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2361022,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==========================================\\u003e
|
102
|
+
\ ] 2.361 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2393790,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==========================================\\u003e
|
103
|
+
\ ] 2.394 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2426558,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===========================================\\u003e
|
104
|
+
\ ] 2.427 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2459326,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===========================================\\u003e
|
105
|
+
\ ] 2.459 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2492094,\"total\":2803200,\"start\":1423702488},\"progress\":\"[============================================\\u003e
|
106
|
+
\ ] 2.492 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2524862,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=============================================\\u003e
|
107
|
+
\ ] 2.525 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2557630,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=============================================\\u003e
|
108
|
+
\ ] 2.558 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2590398,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==============================================\\u003e
|
109
|
+
\ ] 2.59 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2623166,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==============================================\\u003e
|
110
|
+
\ ] 2.623 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2655934,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===============================================\\u003e
|
111
|
+
\ ] 2.656 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2688702,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===============================================\\u003e
|
112
|
+
\ ] 2.689 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2721470,\"total\":2803200,\"start\":1423702488},\"progress\":\"[================================================\\u003e
|
113
|
+
\ ] 2.721 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2754238,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=================================================\\u003e
|
114
|
+
] 2.754 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2784166,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=================================================\\u003e
|
115
|
+
] 2.784 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2803200,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==================================================\\u003e]
|
116
|
+
2.803 MB/2.803 MB\",\"id\":\"618b1fc306b0\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2803200,\"start\":1423702489},\"progress\":\"[\\u003e
|
117
|
+
\ ] 32.77 kB/2.803 MB 27s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=\\u003e
|
118
|
+
\ ] 65.54 kB/2.803 MB 14s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":98304,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=\\u003e
|
119
|
+
\ ] 98.3 kB/2.803 MB 9s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":131072,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==\\u003e
|
120
|
+
\ ] 131.1 kB/2.803 MB 7s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":163840,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==\\u003e
|
121
|
+
\ ] 163.8 kB/2.803 MB 5s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":196608,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===\\u003e
|
122
|
+
\ ] 196.6 kB/2.803 MB 4s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":229376,\"total\":2803200,\"start\":1423702489},\"progress\":\"[====\\u003e
|
123
|
+
\ ] 229.4 kB/2.803 MB 4s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":2803200,\"start\":1423702489},\"progress\":\"[====\\u003e
|
124
|
+
\ ] 262.1 kB/2.803 MB 3s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":294912,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=====\\u003e
|
125
|
+
\ ] 294.9 kB/2.803 MB 3s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=====\\u003e
|
126
|
+
\ ] 327.7 kB/2.803 MB 2s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":360448,\"total\":2803200,\"start\":1423702489},\"progress\":\"[======\\u003e
|
127
|
+
\ ] 360.4 kB/2.803 MB 2s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":393216,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=======\\u003e
|
128
|
+
\ ] 393.2 kB/2.803 MB 2s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":425984,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=======\\u003e
|
129
|
+
\ ] 426 kB/2.803 MB 2s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":458752,\"total\":2803200,\"start\":1423702489},\"progress\":\"[========\\u003e
|
130
|
+
\ ] 458.8 kB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":491520,\"total\":2803200,\"start\":1423702489},\"progress\":\"[========\\u003e
|
131
|
+
\ ] 491.5 kB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":524288,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=========\\u003e
|
132
|
+
\ ] 524.3 kB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":557056,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=========\\u003e
|
133
|
+
\ ] 557.1 kB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":589824,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==========\\u003e
|
134
|
+
\ ] 589.8 kB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":622592,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===========\\u003e
|
135
|
+
\ ] 622.6 kB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":655360,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===========\\u003e
|
136
|
+
\ ] 655.4 kB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":688128,\"total\":2803200,\"start\":1423702489},\"progress\":\"[============\\u003e
|
137
|
+
\ ] 688.1 kB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":720896,\"total\":2803200,\"start\":1423702489},\"progress\":\"[============\\u003e
|
138
|
+
\ ] 720.9 kB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":753664,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=============\\u003e
|
139
|
+
\ ] 753.7 kB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":786432,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==============\\u003e
|
140
|
+
\ ] 786.4 kB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":819200,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==============\\u003e
|
141
|
+
\ ] 819.2 kB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":851968,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===============\\u003e
|
142
|
+
\ ] 852 kB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":884736,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===============\\u003e
|
143
|
+
\ ] 884.7 kB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":917504,\"total\":2803200,\"start\":1423702489},\"progress\":\"[================\\u003e
|
144
|
+
\ ] 917.5 kB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":950272,\"total\":2803200,\"start\":1423702489},\"progress\":\"[================\\u003e
|
145
|
+
\ ] 950.3 kB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":983040,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=================\\u003e
|
146
|
+
\ ] 983 kB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1015808,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==================\\u003e
|
147
|
+
\ ] 1.016 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1048576,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==================\\u003e
|
148
|
+
\ ] 1.049 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1081344,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===================\\u003e
|
149
|
+
\ ] 1.081 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1114112,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===================\\u003e
|
150
|
+
\ ] 1.114 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1146880,\"total\":2803200,\"start\":1423702489},\"progress\":\"[====================\\u003e
|
151
|
+
\ ] 1.147 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1179648,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=====================\\u003e
|
152
|
+
\ ] 1.18 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1212416,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=====================\\u003e
|
153
|
+
\ ] 1.212 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1245184,\"total\":2803200,\"start\":1423702489},\"progress\":\"[======================\\u003e
|
154
|
+
\ ] 1.245 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1277952,\"total\":2803200,\"start\":1423702489},\"progress\":\"[======================\\u003e
|
155
|
+
\ ] 1.278 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1310720,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=======================\\u003e
|
156
|
+
\ ] 1.311 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1343488,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=======================\\u003e
|
157
|
+
\ ] 1.343 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1376256,\"total\":2803200,\"start\":1423702489},\"progress\":\"[========================\\u003e
|
158
|
+
\ ] 1.376 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1409024,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=========================\\u003e
|
159
|
+
\ ] 1.409 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1441792,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=========================\\u003e
|
160
|
+
\ ] 1.442 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1474560,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==========================\\u003e
|
161
|
+
\ ] 1.475 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1507328,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==========================\\u003e
|
162
|
+
\ ] 1.507 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1540096,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===========================\\u003e
|
163
|
+
\ ] 1.54 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1572864,\"total\":2803200,\"start\":1423702489},\"progress\":\"[============================\\u003e
|
164
|
+
\ ] 1.573 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1605632,\"total\":2803200,\"start\":1423702489},\"progress\":\"[============================\\u003e
|
165
|
+
\ ] 1.606 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1638400,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=============================\\u003e
|
166
|
+
\ ] 1.638 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1671168,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=============================\\u003e
|
167
|
+
\ ] 1.671 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1703936,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==============================\\u003e
|
168
|
+
\ ] 1.704 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1736704,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==============================\\u003e
|
169
|
+
\ ] 1.737 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1769472,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===============================\\u003e
|
170
|
+
\ ] 1.769 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1802240,\"total\":2803200,\"start\":1423702489},\"progress\":\"[================================\\u003e
|
171
|
+
\ ] 1.802 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1835008,\"total\":2803200,\"start\":1423702489},\"progress\":\"[================================\\u003e
|
172
|
+
\ ] 1.835 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1867776,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=================================\\u003e
|
173
|
+
\ ] 1.868 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1900544,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=================================\\u003e
|
174
|
+
\ ] 1.901 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1933312,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==================================\\u003e
|
175
|
+
\ ] 1.933 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1966080,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===================================\\u003e
|
176
|
+
\ ] 1.966 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1998848,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===================================\\u003e
|
177
|
+
\ ] 1.999 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2031616,\"total\":2803200,\"start\":1423702489},\"progress\":\"[====================================\\u003e
|
178
|
+
\ ] 2.032 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2064384,\"total\":2803200,\"start\":1423702489},\"progress\":\"[====================================\\u003e
|
179
|
+
\ ] 2.064 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2097152,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=====================================\\u003e
|
180
|
+
\ ] 2.097 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2129920,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=====================================\\u003e
|
181
|
+
\ ] 2.13 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2162688,\"total\":2803200,\"start\":1423702489},\"progress\":\"[======================================\\u003e
|
182
|
+
\ ] 2.163 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2195456,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=======================================\\u003e
|
183
|
+
\ ] 2.195 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2228224,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=======================================\\u003e
|
184
|
+
\ ] 2.228 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2260992,\"total\":2803200,\"start\":1423702489},\"progress\":\"[========================================\\u003e
|
185
|
+
\ ] 2.261 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2293760,\"total\":2803200,\"start\":1423702489},\"progress\":\"[========================================\\u003e
|
186
|
+
\ ] 2.294 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2326528,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=========================================\\u003e
|
187
|
+
\ ] 2.327 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2359296,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==========================================\\u003e
|
188
|
+
\ ] 2.359 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2392064,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==========================================\\u003e
|
189
|
+
\ ] 2.392 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2424832,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===========================================\\u003e
|
190
|
+
\ ] 2.425 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2457600,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===========================================\\u003e
|
191
|
+
\ ] 2.458 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2490368,\"total\":2803200,\"start\":1423702489},\"progress\":\"[============================================\\u003e
|
192
|
+
\ ] 2.49 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2523136,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=============================================\\u003e
|
193
|
+
\ ] 2.523 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2555904,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=============================================\\u003e
|
194
|
+
\ ] 2.556 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2588672,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==============================================\\u003e
|
195
|
+
\ ] 2.589 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2621440,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==============================================\\u003e
|
196
|
+
\ ] 2.621 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2654208,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===============================================\\u003e
|
197
|
+
\ ] 2.654 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2686976,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===============================================\\u003e
|
198
|
+
\ ] 2.687 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2719744,\"total\":2803200,\"start\":1423702489},\"progress\":\"[================================================\\u003e
|
199
|
+
\ ] 2.72 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2752512,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=================================================\\u003e
|
200
|
+
] 2.753 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2785280,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=================================================\\u003e
|
201
|
+
] 2.785 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1423702489},\"progress\":\"[==================================================\\u003e]
|
202
|
+
1.024 kB/1.024 kB\",\"id\":\"2aed48a4e41d\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"2aed48a4e41d\"}{\"status\":\"The
|
203
|
+
image you are pulling has been verified\",\"id\":\"busybox:buildroot-2014.02\"}\r\n{\"status\":\"Already
|
31
204
|
exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
|
32
205
|
exists\",\"progressDetail\":{},\"id\":\"df7546f9f060\"}{\"status\":\"Already
|
33
|
-
exists\",\"progressDetail\":{},\"id\":\"
|
34
|
-
exists\",\"progressDetail\":{},\"id\":\"
|
206
|
+
exists\",\"progressDetail\":{},\"id\":\"ea13149945cb\"}{\"status\":\"Already
|
207
|
+
exists\",\"progressDetail\":{},\"id\":\"4986bf8c1536\"}{\"status\":\"The image
|
35
208
|
you are pulling has been verified\",\"id\":\"busybox:latest\"}\r\n{\"status\":\"Already
|
36
209
|
exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
|
37
210
|
exists\",\"progressDetail\":{},\"id\":\"df7546f9f060\"}{\"status\":\"Already
|
38
|
-
exists\",\"progressDetail\":{},\"id\":\"
|
39
|
-
exists\",\"progressDetail\":{},\"id\":\"
|
40
|
-
you are pulling has been verified\",\"id\":\"busybox:ubuntu-12.04\"}\r\n{\"status\":\"
|
211
|
+
exists\",\"progressDetail\":{},\"id\":\"ea13149945cb\"}{\"status\":\"Already
|
212
|
+
exists\",\"progressDetail\":{},\"id\":\"4986bf8c1536\"}{\"status\":\"The image
|
213
|
+
you are pulling has been verified\",\"id\":\"busybox:ubuntu-12.04\"}\r\n{\"status\":\"Pulling
|
214
|
+
fs layer\",\"progressDetail\":{},\"id\":\"2982ec56c8d9\"}{\"status\":\"Pulling
|
215
|
+
fs layer\",\"progressDetail\":{},\"id\":\"492dad4279ba\"}{\"status\":\"Already
|
41
216
|
exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
|
42
|
-
exists\",\"progressDetail\":{},\"id\":\"df7546f9f060\"}{\"status\":\"
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
217
|
+
exists\",\"progressDetail\":{},\"id\":\"df7546f9f060\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1423702490},\"progress\":\"[==================================================\\u003e]
|
218
|
+
1.024 kB/1.024 kB\",\"id\":\"492dad4279ba\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"492dad4279ba\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66728,\"total\":5585920,\"start\":1423702491},\"progress\":\"[\\u003e
|
219
|
+
\ ] 66.73 kB/5.586 MB 4s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":123656,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=\\u003e
|
220
|
+
\ ] 123.7 kB/5.586 MB 4s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":188736,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=\\u003e
|
221
|
+
\ ] 188.7 kB/5.586 MB 3s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":254272,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==\\u003e
|
222
|
+
\ ] 254.3 kB/5.586 MB 3s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":319808,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==\\u003e
|
223
|
+
\ ] 319.8 kB/5.586 MB 2s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":385344,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===\\u003e
|
224
|
+
\ ] 385.3 kB/5.586 MB 2s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":450880,\"total\":5585920,\"start\":1423702491},\"progress\":\"[====\\u003e
|
225
|
+
\ ] 450.9 kB/5.586 MB 2s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":516416,\"total\":5585920,\"start\":1423702491},\"progress\":\"[====\\u003e
|
226
|
+
\ ] 516.4 kB/5.586 MB 2s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":581952,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=====\\u003e
|
227
|
+
\ ] 582 kB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":647488,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=====\\u003e
|
228
|
+
\ ] 647.5 kB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":713024,\"total\":5585920,\"start\":1423702491},\"progress\":\"[======\\u003e
|
229
|
+
\ ] 713 kB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":778560,\"total\":5585920,\"start\":1423702491},\"progress\":\"[======\\u003e
|
230
|
+
\ ] 778.6 kB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":844096,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=======\\u003e
|
231
|
+
\ ] 844.1 kB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":909632,\"total\":5585920,\"start\":1423702491},\"progress\":\"[========\\u003e
|
232
|
+
\ ] 909.6 kB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":975168,\"total\":5585920,\"start\":1423702491},\"progress\":\"[========\\u003e
|
233
|
+
\ ] 975.2 kB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1040704,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=========\\u003e
|
234
|
+
\ ] 1.041 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1106240,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=========\\u003e
|
235
|
+
\ ] 1.106 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1171776,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==========\\u003e
|
236
|
+
\ ] 1.172 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1237312,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===========\\u003e
|
237
|
+
\ ] 1.237 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1302848,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===========\\u003e
|
238
|
+
\ ] 1.303 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1368384,\"total\":5585920,\"start\":1423702491},\"progress\":\"[============\\u003e
|
239
|
+
\ ] 1.368 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1433920,\"total\":5585920,\"start\":1423702491},\"progress\":\"[============\\u003e
|
240
|
+
\ ] 1.434 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1499456,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=============\\u003e
|
241
|
+
\ ] 1.499 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1564992,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==============\\u003e
|
242
|
+
\ ] 1.565 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1630528,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==============\\u003e
|
243
|
+
\ ] 1.631 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1696064,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===============\\u003e
|
244
|
+
\ ] 1.696 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1761600,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===============\\u003e
|
245
|
+
\ ] 1.762 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1827136,\"total\":5585920,\"start\":1423702491},\"progress\":\"[================\\u003e
|
246
|
+
\ ] 1.827 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1892672,\"total\":5585920,\"start\":1423702491},\"progress\":\"[================\\u003e
|
247
|
+
\ ] 1.893 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1958208,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=================\\u003e
|
248
|
+
\ ] 1.958 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2023744,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==================\\u003e
|
249
|
+
\ ] 2.024 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2089280,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==================\\u003e
|
250
|
+
\ ] 2.089 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2154816,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===================\\u003e
|
251
|
+
\ ] 2.155 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2220352,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===================\\u003e
|
252
|
+
\ ] 2.22 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2285888,\"total\":5585920,\"start\":1423702491},\"progress\":\"[====================\\u003e
|
253
|
+
\ ] 2.286 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2351424,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=====================\\u003e
|
254
|
+
\ ] 2.351 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2416960,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=====================\\u003e
|
255
|
+
\ ] 2.417 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2482496,\"total\":5585920,\"start\":1423702491},\"progress\":\"[======================\\u003e
|
256
|
+
\ ] 2.482 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2548032,\"total\":5585920,\"start\":1423702491},\"progress\":\"[======================\\u003e
|
257
|
+
\ ] 2.548 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2613568,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=======================\\u003e
|
258
|
+
\ ] 2.614 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2679104,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=======================\\u003e
|
259
|
+
\ ] 2.679 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2744640,\"total\":5585920,\"start\":1423702491},\"progress\":\"[========================\\u003e
|
260
|
+
\ ] 2.745 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2810176,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=========================\\u003e
|
261
|
+
\ ] 2.81 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2875712,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=========================\\u003e
|
262
|
+
\ ] 2.876 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2941248,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==========================\\u003e
|
263
|
+
\ ] 2.941 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3006784,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==========================\\u003e
|
264
|
+
\ ] 3.007 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3072320,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===========================\\u003e
|
265
|
+
\ ] 3.072 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3137856,\"total\":5585920,\"start\":1423702491},\"progress\":\"[============================\\u003e
|
266
|
+
\ ] 3.138 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3203392,\"total\":5585920,\"start\":1423702491},\"progress\":\"[============================\\u003e
|
267
|
+
\ ] 3.203 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3268928,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=============================\\u003e
|
268
|
+
\ ] 3.269 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3334464,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=============================\\u003e
|
269
|
+
\ ] 3.334 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3400000,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==============================\\u003e
|
270
|
+
\ ] 3.4 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3465536,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===============================\\u003e
|
271
|
+
\ ] 3.466 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3531072,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===============================\\u003e
|
272
|
+
\ ] 3.531 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3596608,\"total\":5585920,\"start\":1423702491},\"progress\":\"[================================\\u003e
|
273
|
+
\ ] 3.597 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3662144,\"total\":5585920,\"start\":1423702491},\"progress\":\"[================================\\u003e
|
274
|
+
\ ] 3.662 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3727680,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=================================\\u003e
|
275
|
+
\ ] 3.728 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3793216,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=================================\\u003e
|
276
|
+
\ ] 3.793 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3858752,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==================================\\u003e
|
277
|
+
\ ] 3.859 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3924288,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===================================\\u003e
|
278
|
+
\ ] 3.924 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3989824,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===================================\\u003e
|
279
|
+
\ ] 3.99 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4055360,\"total\":5585920,\"start\":1423702491},\"progress\":\"[====================================\\u003e
|
280
|
+
\ ] 4.055 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4120896,\"total\":5585920,\"start\":1423702491},\"progress\":\"[====================================\\u003e
|
281
|
+
\ ] 4.121 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4186432,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=====================================\\u003e
|
282
|
+
\ ] 4.186 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4251968,\"total\":5585920,\"start\":1423702491},\"progress\":\"[======================================\\u003e
|
283
|
+
\ ] 4.252 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4317504,\"total\":5585920,\"start\":1423702491},\"progress\":\"[======================================\\u003e
|
284
|
+
\ ] 4.318 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4383040,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=======================================\\u003e
|
285
|
+
\ ] 4.383 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4448576,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=======================================\\u003e
|
286
|
+
\ ] 4.449 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4514112,\"total\":5585920,\"start\":1423702491},\"progress\":\"[========================================\\u003e
|
287
|
+
\ ] 4.514 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4579648,\"total\":5585920,\"start\":1423702491},\"progress\":\"[========================================\\u003e
|
288
|
+
\ ] 4.58 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4645184,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=========================================\\u003e
|
289
|
+
\ ] 4.645 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4710720,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==========================================\\u003e
|
290
|
+
\ ] 4.711 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4776256,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==========================================\\u003e
|
291
|
+
\ ] 4.776 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4841792,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===========================================\\u003e
|
292
|
+
\ ] 4.842 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4907328,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===========================================\\u003e
|
293
|
+
\ ] 4.907 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4972864,\"total\":5585920,\"start\":1423702491},\"progress\":\"[============================================\\u003e
|
294
|
+
\ ] 4.973 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5038400,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=============================================\\u003e
|
295
|
+
\ ] 5.038 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5103936,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=============================================\\u003e
|
296
|
+
\ ] 5.104 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5169472,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==============================================\\u003e
|
297
|
+
\ ] 5.169 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5235008,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==============================================\\u003e
|
298
|
+
\ ] 5.235 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5300544,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===============================================\\u003e
|
299
|
+
\ ] 5.301 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5366080,\"total\":5585920,\"start\":1423702491},\"progress\":\"[================================================\\u003e
|
300
|
+
\ ] 5.366 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5431616,\"total\":5585920,\"start\":1423702491},\"progress\":\"[================================================\\u003e
|
301
|
+
\ ] 5.432 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5497152,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=================================================\\u003e
|
302
|
+
] 5.497 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5562688,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=================================================\\u003e
|
303
|
+
] 5.563 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5585920,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==================================================\\u003e]
|
304
|
+
5.586 MB/5.586 MB\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":5585920,\"start\":1423702491},\"progress\":\"[\\u003e
|
305
|
+
\ ] 65.54 kB/5.586 MB 1m10s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":131072,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=\\u003e
|
306
|
+
\ ] 131.1 kB/5.586 MB 35s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":196608,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=\\u003e
|
307
|
+
\ ] 196.6 kB/5.586 MB 23s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==\\u003e
|
308
|
+
\ ] 262.1 kB/5.586 MB 17s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==\\u003e
|
309
|
+
\ ] 327.7 kB/5.586 MB 13s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":393216,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===\\u003e
|
310
|
+
\ ] 393.2 kB/5.586 MB 11s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":458752,\"total\":5585920,\"start\":1423702491},\"progress\":\"[====\\u003e
|
311
|
+
\ ] 458.8 kB/5.586 MB 9s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":524288,\"total\":5585920,\"start\":1423702491},\"progress\":\"[====\\u003e
|
312
|
+
\ ] 524.3 kB/5.586 MB 8s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":589824,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=====\\u003e
|
313
|
+
\ ] 589.8 kB/5.586 MB 7s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":655360,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=====\\u003e
|
314
|
+
\ ] 655.4 kB/5.586 MB 6s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":720896,\"total\":5585920,\"start\":1423702491},\"progress\":\"[======\\u003e
|
315
|
+
\ ] 720.9 kB/5.586 MB 5s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":786432,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=======\\u003e
|
316
|
+
\ ] 786.4 kB/5.586 MB 5s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":851968,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=======\\u003e
|
317
|
+
\ ] 852 kB/5.586 MB 4s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":917504,\"total\":5585920,\"start\":1423702491},\"progress\":\"[========\\u003e
|
318
|
+
\ ] 917.5 kB/5.586 MB 4s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":983040,\"total\":5585920,\"start\":1423702491},\"progress\":\"[========\\u003e
|
319
|
+
\ ] 983 kB/5.586 MB 4s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1048576,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=========\\u003e
|
320
|
+
\ ] 1.049 MB/5.586 MB 3s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1114112,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=========\\u003e
|
321
|
+
\ ] 1.114 MB/5.586 MB 3s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1179648,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==========\\u003e
|
322
|
+
\ ] 1.18 MB/5.586 MB 3s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1245184,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===========\\u003e
|
323
|
+
\ ] 1.245 MB/5.586 MB 3s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1310720,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===========\\u003e
|
324
|
+
\ ] 1.311 MB/5.586 MB 2s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1376256,\"total\":5585920,\"start\":1423702491},\"progress\":\"[============\\u003e
|
325
|
+
\ ] 1.376 MB/5.586 MB 2s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1441792,\"total\":5585920,\"start\":1423702491},\"progress\":\"[============\\u003e
|
326
|
+
\ ] 1.442 MB/5.586 MB 2s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1507328,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=============\\u003e
|
327
|
+
\ ] 1.507 MB/5.586 MB 2s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1572864,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==============\\u003e
|
328
|
+
\ ] 1.573 MB/5.586 MB 2s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1638400,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==============\\u003e
|
329
|
+
\ ] 1.638 MB/5.586 MB 2s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1703936,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===============\\u003e
|
330
|
+
\ ] 1.704 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1769472,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===============\\u003e
|
331
|
+
\ ] 1.769 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1835008,\"total\":5585920,\"start\":1423702491},\"progress\":\"[================\\u003e
|
332
|
+
\ ] 1.835 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1900544,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=================\\u003e
|
333
|
+
\ ] 1.901 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1966080,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=================\\u003e
|
334
|
+
\ ] 1.966 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2031616,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==================\\u003e
|
335
|
+
\ ] 2.032 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2097152,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==================\\u003e
|
336
|
+
\ ] 2.097 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2162688,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===================\\u003e
|
337
|
+
\ ] 2.163 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2228224,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===================\\u003e
|
338
|
+
\ ] 2.228 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2293760,\"total\":5585920,\"start\":1423702491},\"progress\":\"[====================\\u003e
|
339
|
+
\ ] 2.294 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2359296,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=====================\\u003e
|
340
|
+
\ ] 2.359 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2424832,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=====================\\u003e
|
341
|
+
\ ] 2.425 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2490368,\"total\":5585920,\"start\":1423702491},\"progress\":\"[======================\\u003e
|
342
|
+
\ ] 2.49 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2555904,\"total\":5585920,\"start\":1423702491},\"progress\":\"[======================\\u003e
|
343
|
+
\ ] 2.556 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2621440,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=======================\\u003e
|
344
|
+
\ ] 2.621 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2686976,\"total\":5585920,\"start\":1423702491},\"progress\":\"[========================\\u003e
|
345
|
+
\ ] 2.687 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2752512,\"total\":5585920,\"start\":1423702491},\"progress\":\"[========================\\u003e
|
346
|
+
\ ] 2.753 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2818048,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=========================\\u003e
|
347
|
+
\ ] 2.818 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2883584,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=========================\\u003e
|
348
|
+
\ ] 2.884 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2949120,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==========================\\u003e
|
349
|
+
\ ] 2.949 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3014656,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==========================\\u003e
|
350
|
+
\ ] 3.015 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3080192,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===========================\\u003e
|
351
|
+
\ ] 3.08 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3145728,\"total\":5585920,\"start\":1423702491},\"progress\":\"[============================\\u003e
|
352
|
+
\ ] 3.146 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3211264,\"total\":5585920,\"start\":1423702491},\"progress\":\"[============================\\u003e
|
353
|
+
\ ] 3.211 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3276800,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=============================\\u003e
|
354
|
+
\ ] 3.277 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3342336,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=============================\\u003e
|
355
|
+
\ ] 3.342 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3407872,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==============================\\u003e
|
356
|
+
\ ] 3.408 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3473408,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===============================\\u003e
|
357
|
+
\ ] 3.473 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3538944,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===============================\\u003e
|
358
|
+
\ ] 3.539 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3604480,\"total\":5585920,\"start\":1423702491},\"progress\":\"[================================\\u003e
|
359
|
+
\ ] 3.604 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3670016,\"total\":5585920,\"start\":1423702491},\"progress\":\"[================================\\u003e
|
360
|
+
\ ] 3.67 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3735552,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=================================\\u003e
|
361
|
+
\ ] 3.736 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3801088,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==================================\\u003e
|
362
|
+
\ ] 3.801 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3866624,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==================================\\u003e
|
363
|
+
\ ] 3.867 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3932160,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===================================\\u003e
|
364
|
+
\ ] 3.932 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3997696,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===================================\\u003e
|
365
|
+
\ ] 3.998 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4063232,\"total\":5585920,\"start\":1423702491},\"progress\":\"[====================================\\u003e
|
366
|
+
\ ] 4.063 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4128768,\"total\":5585920,\"start\":1423702491},\"progress\":\"[====================================\\u003e
|
367
|
+
\ ] 4.129 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4194304,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=====================================\\u003e
|
368
|
+
\ ] 4.194 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4259840,\"total\":5585920,\"start\":1423702491},\"progress\":\"[======================================\\u003e
|
369
|
+
\ ] 4.26 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4325376,\"total\":5585920,\"start\":1423702491},\"progress\":\"[======================================\\u003e
|
370
|
+
\ ] 4.325 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4390912,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=======================================\\u003e
|
371
|
+
\ ] 4.391 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4456448,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=======================================\\u003e
|
372
|
+
\ ] 4.456 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4521984,\"total\":5585920,\"start\":1423702491},\"progress\":\"[========================================\\u003e
|
373
|
+
\ ] 4.522 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4587520,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=========================================\\u003e
|
374
|
+
\ ] 4.588 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4653056,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=========================================\\u003e
|
375
|
+
\ ] 4.653 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4718592,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==========================================\\u003e
|
376
|
+
\ ] 4.719 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4784128,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==========================================\\u003e
|
377
|
+
\ ] 4.784 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4849664,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===========================================\\u003e
|
378
|
+
\ ] 4.85 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4915200,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===========================================\\u003e
|
379
|
+
\ ] 4.915 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4980736,\"total\":5585920,\"start\":1423702491},\"progress\":\"[============================================\\u003e
|
380
|
+
\ ] 4.981 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5046272,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=============================================\\u003e
|
381
|
+
\ ] 5.046 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5111808,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=============================================\\u003e
|
382
|
+
\ ] 5.112 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5177344,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==============================================\\u003e
|
383
|
+
\ ] 5.177 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5242880,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==============================================\\u003e
|
384
|
+
\ ] 5.243 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5308416,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===============================================\\u003e
|
385
|
+
\ ] 5.308 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5373952,\"total\":5585920,\"start\":1423702491},\"progress\":\"[================================================\\u003e
|
386
|
+
\ ] 5.374 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5439488,\"total\":5585920,\"start\":1423702491},\"progress\":\"[================================================\\u003e
|
387
|
+
\ ] 5.439 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5505024,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=================================================\\u003e
|
388
|
+
] 5.505 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5570560,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=================================================\\u003e
|
389
|
+
] 5.571 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1423702492},\"progress\":\"[==================================================\\u003e]
|
390
|
+
1.024 kB/1.024 kB\",\"id\":\"492dad4279ba\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"492dad4279ba\"}{\"status\":\"The
|
391
|
+
image you are pulling has been verified\",\"id\":\"busybox:ubuntu-14.04\"}\r\n{\"status\":\"Pulling
|
392
|
+
fs layer\",\"progressDetail\":{},\"id\":\"e8a999563c47\"}{\"status\":\"Pulling
|
393
|
+
fs layer\",\"progressDetail\":{},\"id\":\"f6169d24347d\"}{\"status\":\"Already
|
48
394
|
exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
|
49
|
-
exists\",\"progressDetail\":{},\"id\":\"df7546f9f060\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":
|
50
|
-
|
51
|
-
\ ] 62.26 kB/5.
|
52
|
-
\ ]
|
53
|
-
\ ]
|
54
|
-
\ ]
|
55
|
-
\ ]
|
56
|
-
\ ]
|
57
|
-
\ ]
|
58
|
-
\ ]
|
59
|
-
\ ]
|
60
|
-
\ ]
|
61
|
-
\ ]
|
62
|
-
\ ]
|
63
|
-
\ ]
|
64
|
-
\ ]
|
65
|
-
\ ]
|
66
|
-
\ ] 1.
|
67
|
-
\ ]
|
68
|
-
\ ] 1.
|
69
|
-
\ ] 1.
|
70
|
-
\ ] 1.
|
71
|
-
\ ] 1.
|
72
|
-
\ ]
|
73
|
-
\ ] 1.
|
74
|
-
\ ] 1.
|
75
|
-
\ ] 1.
|
76
|
-
\ ]
|
77
|
-
\ ] 1.
|
78
|
-
\ ] 1.
|
79
|
-
\ ] 1.
|
80
|
-
\ ] 1.
|
81
|
-
\ ]
|
82
|
-
\ ] 2.
|
83
|
-
\ ] 2.
|
84
|
-
\ ] 2.
|
85
|
-
\ ]
|
86
|
-
\ ] 2.
|
87
|
-
\ ] 2.
|
88
|
-
\ ] 2.
|
89
|
-
\ ] 2.
|
90
|
-
\ ]
|
91
|
-
\ ] 2.
|
92
|
-
\ ] 2.
|
93
|
-
\ ] 2.
|
94
|
-
\ ]
|
95
|
-
\ ] 2.
|
96
|
-
\ ] 3.
|
97
|
-
\ ] 3.
|
98
|
-
\ ] 3.
|
99
|
-
\ ]
|
100
|
-
\ ] 3.
|
101
|
-
\ ] 3.
|
102
|
-
\ ] 3.
|
103
|
-
\ ]
|
104
|
-
\ ] 3.
|
105
|
-
\ ] 3.
|
106
|
-
\ ] 3.
|
107
|
-
\ ] 3.
|
108
|
-
\
|
109
|
-
\ ] 3.
|
110
|
-
\ ] 3.
|
111
|
-
\ ] 3.
|
112
|
-
\ ] 4.
|
113
|
-
\ ] 4.
|
114
|
-
\ ] 4.
|
115
|
-
\
|
116
|
-
\ ] 4.
|
117
|
-
\ ]
|
118
|
-
\ ] 4.
|
119
|
-
\ ] 4.
|
120
|
-
\ ] 4.
|
121
|
-
\ ] 4.
|
122
|
-
\
|
123
|
-
\ ] 4.
|
124
|
-
\ ] 4.
|
125
|
-
\ ] 4.
|
126
|
-
\ ] 4.
|
127
|
-
\ ] 5.
|
128
|
-
\ ]
|
129
|
-
\
|
130
|
-
\ ] 5.
|
131
|
-
\ ] 5.
|
132
|
-
\ ] 5.
|
133
|
-
\ ] 5.
|
134
|
-
\ ] 5.
|
135
|
-
\ ] 5.
|
136
|
-
] 5.
|
137
|
-
]
|
138
|
-
5.
|
139
|
-
\ ] 65.54 kB/5.
|
140
|
-
\ ] 131.1 kB/5.
|
141
|
-
\ ] 196.6 kB/5.
|
142
|
-
\ ] 262.1 kB/5.
|
143
|
-
\ ] 327.7 kB/5.
|
144
|
-
\ ] 393.2 kB/5.
|
145
|
-
\ ] 458.8 kB/5.
|
146
|
-
\ ] 524.3 kB/5.
|
147
|
-
\ ] 589.8 kB/5.
|
148
|
-
\ ] 655.4 kB/5.
|
149
|
-
\ ] 720.9 kB/5.
|
150
|
-
\ ] 786.4 kB/5.
|
151
|
-
\ ] 852 kB/5.
|
152
|
-
\ ] 917.5 kB/5.
|
153
|
-
\ ] 983 kB/5.
|
154
|
-
\ ] 1.049 MB/5.
|
155
|
-
\ ] 1.114 MB/5.
|
156
|
-
\ ] 1.18 MB/5.
|
157
|
-
\ ] 1.245 MB/5.
|
158
|
-
\ ] 1.311 MB/5.
|
159
|
-
\ ] 1.376 MB/5.
|
160
|
-
\ ] 1.442 MB/5.
|
161
|
-
\ ] 1.507 MB/5.
|
162
|
-
\ ] 1.573 MB/5.
|
163
|
-
\ ] 1.638 MB/5.
|
164
|
-
\ ] 1.704 MB/5.
|
165
|
-
\ ] 1.769 MB/5.
|
166
|
-
\ ] 1.835 MB/5.
|
167
|
-
\ ] 1.901 MB/5.
|
168
|
-
\ ] 1.966 MB/5.
|
169
|
-
\ ] 2.032 MB/5.
|
170
|
-
\ ] 2.097 MB/5.
|
171
|
-
\ ] 2.163 MB/5.
|
172
|
-
\ ] 2.228 MB/5.
|
173
|
-
\ ] 2.294 MB/5.
|
174
|
-
\ ] 2.359 MB/5.
|
175
|
-
\ ] 2.425 MB/5.
|
176
|
-
\ ] 2.49 MB/5.
|
177
|
-
\ ] 2.556 MB/5.
|
178
|
-
\ ] 2.621 MB/5.
|
179
|
-
\ ] 2.687 MB/5.
|
180
|
-
\ ] 2.753 MB/5.
|
181
|
-
\ ] 2.818 MB/5.
|
182
|
-
\ ] 2.884 MB/5.
|
183
|
-
\ ] 2.949 MB/5.
|
184
|
-
\ ] 3.015 MB/5.
|
185
|
-
\ ] 3.08 MB/5.
|
186
|
-
\ ] 3.146 MB/5.
|
187
|
-
\ ] 3.211 MB/5.
|
188
|
-
\ ] 3.277 MB/5.
|
189
|
-
\ ] 3.342 MB/5.
|
190
|
-
\ ] 3.408 MB/5.
|
191
|
-
\ ] 3.473 MB/5.
|
192
|
-
\ ] 3.539 MB/5.
|
193
|
-
\ ] 3.604 MB/5.
|
194
|
-
\ ] 3.67 MB/5.
|
195
|
-
\ ] 3.736 MB/5.
|
196
|
-
\ ] 3.801 MB/5.
|
197
|
-
\ ] 3.867 MB/5.
|
198
|
-
\ ] 3.932 MB/5.
|
199
|
-
\ ] 3.998 MB/5.
|
200
|
-
\ ] 4.063 MB/5.
|
201
|
-
\ ] 4.129 MB/5.
|
202
|
-
\ ] 4.194 MB/5.
|
203
|
-
\ ] 4.26 MB/5.
|
204
|
-
\ ] 4.325 MB/5.
|
205
|
-
\ ] 4.391 MB/5.
|
206
|
-
\ ] 4.456 MB/5.
|
207
|
-
\ ] 4.522 MB/5.
|
208
|
-
\ ] 4.588 MB/5.
|
209
|
-
\ ] 4.653 MB/5.
|
210
|
-
\ ] 4.719 MB/5.
|
211
|
-
\ ] 4.784 MB/5.
|
212
|
-
\ ] 4.85 MB/5.
|
213
|
-
\ ] 4.915 MB/5.
|
214
|
-
\ ] 4.981 MB/5.
|
215
|
-
\ ] 5.046 MB/5.
|
216
|
-
\ ] 5.112 MB/5.
|
217
|
-
\ ] 5.177 MB/5.
|
218
|
-
\ ] 5.243 MB/5.
|
219
|
-
\ ] 5.308 MB/5.
|
220
|
-
\ ] 5.374 MB/5.
|
221
|
-
\ ] 5.439 MB/5.
|
222
|
-
\ ] 5.505 MB/5.
|
223
|
-
\ ] 5.571 MB/5.
|
224
|
-
] 5.636 MB/5.
|
225
|
-
] 5.702 MB/5.
|
226
|
-
|
227
|
-
3.072 kB/3.072 kB\",\"id\":\"d940f6fef591\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3072,\"total\":3072,\"start\":1417457317},\"progress\":\"[==================================================\\u003e]
|
228
|
-
3.072 kB/3.072 kB\",\"id\":\"d940f6fef591\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"d940f6fef591\"}{\"status\":\"Status:
|
395
|
+
exists\",\"progressDetail\":{},\"id\":\"df7546f9f060\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1423702493},\"progress\":\"[==================================================\\u003e]
|
396
|
+
1.024 kB/1.024 kB\",\"id\":\"f6169d24347d\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"f6169d24347d\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62264,\"total\":5742080,\"start\":1423702493},\"progress\":\"[\\u003e
|
397
|
+
\ ] 62.26 kB/5.742 MB 7s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":120104,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=\\u003e
|
398
|
+
\ ] 120.1 kB/5.742 MB 7s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":185184,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=\\u003e
|
399
|
+
\ ] 185.2 kB/5.742 MB 5s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":250720,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==\\u003e
|
400
|
+
\ ] 250.7 kB/5.742 MB 5s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":316256,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==\\u003e
|
401
|
+
\ ] 316.3 kB/5.742 MB 4s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":381792,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===\\u003e
|
402
|
+
\ ] 381.8 kB/5.742 MB 4s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":447328,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===\\u003e
|
403
|
+
\ ] 447.3 kB/5.742 MB 3s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":512864,\"total\":5742080,\"start\":1423702493},\"progress\":\"[====\\u003e
|
404
|
+
\ ] 512.9 kB/5.742 MB 3s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":578400,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=====\\u003e
|
405
|
+
\ ] 578.4 kB/5.742 MB 3s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":643936,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=====\\u003e
|
406
|
+
\ ] 643.9 kB/5.742 MB 3s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":709472,\"total\":5742080,\"start\":1423702493},\"progress\":\"[======\\u003e
|
407
|
+
\ ] 709.5 kB/5.742 MB 2s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":775008,\"total\":5742080,\"start\":1423702493},\"progress\":\"[======\\u003e
|
408
|
+
\ ] 775 kB/5.742 MB 2s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":840544,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=======\\u003e
|
409
|
+
\ ] 840.5 kB/5.742 MB 2s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":906080,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=======\\u003e
|
410
|
+
\ ] 906.1 kB/5.742 MB 2s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":971616,\"total\":5742080,\"start\":1423702493},\"progress\":\"[========\\u003e
|
411
|
+
\ ] 971.6 kB/5.742 MB 2s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1037152,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=========\\u003e
|
412
|
+
\ ] 1.037 MB/5.742 MB 2s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1102688,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=========\\u003e
|
413
|
+
\ ] 1.103 MB/5.742 MB 2s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1168224,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==========\\u003e
|
414
|
+
\ ] 1.168 MB/5.742 MB 2s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1233760,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==========\\u003e
|
415
|
+
\ ] 1.234 MB/5.742 MB 2s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1299296,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===========\\u003e
|
416
|
+
\ ] 1.299 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1364832,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===========\\u003e
|
417
|
+
\ ] 1.365 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1430368,\"total\":5742080,\"start\":1423702493},\"progress\":\"[============\\u003e
|
418
|
+
\ ] 1.43 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1495904,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=============\\u003e
|
419
|
+
\ ] 1.496 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1561440,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=============\\u003e
|
420
|
+
\ ] 1.561 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1626976,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==============\\u003e
|
421
|
+
\ ] 1.627 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1692512,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==============\\u003e
|
422
|
+
\ ] 1.693 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1758048,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===============\\u003e
|
423
|
+
\ ] 1.758 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1823584,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===============\\u003e
|
424
|
+
\ ] 1.824 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1889120,\"total\":5742080,\"start\":1423702493},\"progress\":\"[================\\u003e
|
425
|
+
\ ] 1.889 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1954656,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=================\\u003e
|
426
|
+
\ ] 1.955 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2020192,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=================\\u003e
|
427
|
+
\ ] 2.02 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2085728,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==================\\u003e
|
428
|
+
\ ] 2.086 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2151264,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==================\\u003e
|
429
|
+
\ ] 2.151 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2216800,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===================\\u003e
|
430
|
+
\ ] 2.217 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2282336,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===================\\u003e
|
431
|
+
\ ] 2.282 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2347872,\"total\":5742080,\"start\":1423702493},\"progress\":\"[====================\\u003e
|
432
|
+
\ ] 2.348 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2413408,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=====================\\u003e
|
433
|
+
\ ] 2.413 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2478944,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=====================\\u003e
|
434
|
+
\ ] 2.479 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2544480,\"total\":5742080,\"start\":1423702493},\"progress\":\"[======================\\u003e
|
435
|
+
\ ] 2.544 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2610016,\"total\":5742080,\"start\":1423702493},\"progress\":\"[======================\\u003e
|
436
|
+
\ ] 2.61 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2675552,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=======================\\u003e
|
437
|
+
\ ] 2.676 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2741088,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=======================\\u003e
|
438
|
+
\ ] 2.741 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2806624,\"total\":5742080,\"start\":1423702493},\"progress\":\"[========================\\u003e
|
439
|
+
\ ] 2.807 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2872160,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=========================\\u003e
|
440
|
+
\ ] 2.872 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2937696,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=========================\\u003e
|
441
|
+
\ ] 2.938 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3003232,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==========================\\u003e
|
442
|
+
\ ] 3.003 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3068768,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==========================\\u003e
|
443
|
+
\ ] 3.069 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3134304,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===========================\\u003e
|
444
|
+
\ ] 3.134 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3199840,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===========================\\u003e
|
445
|
+
\ ] 3.2 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3265376,\"total\":5742080,\"start\":1423702493},\"progress\":\"[============================\\u003e
|
446
|
+
\ ] 3.265 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3330912,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=============================\\u003e
|
447
|
+
\ ] 3.331 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3396448,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=============================\\u003e
|
448
|
+
\ ] 3.396 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3461984,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==============================\\u003e
|
449
|
+
\ ] 3.462 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3527520,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==============================\\u003e
|
450
|
+
\ ] 3.528 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3593056,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===============================\\u003e
|
451
|
+
\ ] 3.593 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3658592,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===============================\\u003e
|
452
|
+
\ ] 3.659 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3724128,\"total\":5742080,\"start\":1423702493},\"progress\":\"[================================\\u003e
|
453
|
+
\ ] 3.724 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3789664,\"total\":5742080,\"start\":1423702493},\"progress\":\"[================================\\u003e
|
454
|
+
\ ] 3.79 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3855200,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=================================\\u003e
|
455
|
+
\ ] 3.855 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3920736,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==================================\\u003e
|
456
|
+
\ ] 3.921 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3986272,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==================================\\u003e
|
457
|
+
\ ] 3.986 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4051808,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===================================\\u003e
|
458
|
+
\ ] 4.052 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4117344,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===================================\\u003e
|
459
|
+
\ ] 4.117 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4182880,\"total\":5742080,\"start\":1423702493},\"progress\":\"[====================================\\u003e
|
460
|
+
\ ] 4.183 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4248416,\"total\":5742080,\"start\":1423702493},\"progress\":\"[====================================\\u003e
|
461
|
+
\ ] 4.248 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4313952,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=====================================\\u003e
|
462
|
+
\ ] 4.314 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4379488,\"total\":5742080,\"start\":1423702493},\"progress\":\"[======================================\\u003e
|
463
|
+
\ ] 4.379 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4445024,\"total\":5742080,\"start\":1423702493},\"progress\":\"[======================================\\u003e
|
464
|
+
\ ] 4.445 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4510560,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=======================================\\u003e
|
465
|
+
\ ] 4.511 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4576096,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=======================================\\u003e
|
466
|
+
\ ] 4.576 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4641632,\"total\":5742080,\"start\":1423702493},\"progress\":\"[========================================\\u003e
|
467
|
+
\ ] 4.642 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4707168,\"total\":5742080,\"start\":1423702493},\"progress\":\"[========================================\\u003e
|
468
|
+
\ ] 4.707 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4772704,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=========================================\\u003e
|
469
|
+
\ ] 4.773 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4838240,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==========================================\\u003e
|
470
|
+
\ ] 4.838 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4903776,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==========================================\\u003e
|
471
|
+
\ ] 4.904 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4969312,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===========================================\\u003e
|
472
|
+
\ ] 4.969 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5034848,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===========================================\\u003e
|
473
|
+
\ ] 5.035 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5100384,\"total\":5742080,\"start\":1423702493},\"progress\":\"[============================================\\u003e
|
474
|
+
\ ] 5.1 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5165920,\"total\":5742080,\"start\":1423702493},\"progress\":\"[============================================\\u003e
|
475
|
+
\ ] 5.166 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5231456,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=============================================\\u003e
|
476
|
+
\ ] 5.231 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5296992,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==============================================\\u003e
|
477
|
+
\ ] 5.297 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5362528,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==============================================\\u003e
|
478
|
+
\ ] 5.363 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5428064,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===============================================\\u003e
|
479
|
+
\ ] 5.428 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5493600,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===============================================\\u003e
|
480
|
+
\ ] 5.494 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5559136,\"total\":5742080,\"start\":1423702493},\"progress\":\"[================================================\\u003e
|
481
|
+
\ ] 5.559 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5624672,\"total\":5742080,\"start\":1423702493},\"progress\":\"[================================================\\u003e
|
482
|
+
\ ] 5.625 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5690208,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=================================================\\u003e
|
483
|
+
] 5.69 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5742080,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==================================================\\u003e]
|
484
|
+
5.742 MB/5.742 MB\",\"id\":\"e8a999563c47\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":5742080,\"start\":1423702494},\"progress\":\"[\\u003e
|
485
|
+
\ ] 65.54 kB/5.742 MB 16s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":131072,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=\\u003e
|
486
|
+
\ ] 131.1 kB/5.742 MB 8s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":196608,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=\\u003e
|
487
|
+
\ ] 196.6 kB/5.742 MB 5s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==\\u003e
|
488
|
+
\ ] 262.1 kB/5.742 MB 4s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==\\u003e
|
489
|
+
\ ] 327.7 kB/5.742 MB 3s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":393216,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===\\u003e
|
490
|
+
\ ] 393.2 kB/5.742 MB 2s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":458752,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===\\u003e
|
491
|
+
\ ] 458.8 kB/5.742 MB 2s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":524288,\"total\":5742080,\"start\":1423702494},\"progress\":\"[====\\u003e
|
492
|
+
\ ] 524.3 kB/5.742 MB 2s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":589824,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=====\\u003e
|
493
|
+
\ ] 589.8 kB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":655360,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=====\\u003e
|
494
|
+
\ ] 655.4 kB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":720896,\"total\":5742080,\"start\":1423702494},\"progress\":\"[======\\u003e
|
495
|
+
\ ] 720.9 kB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":786432,\"total\":5742080,\"start\":1423702494},\"progress\":\"[======\\u003e
|
496
|
+
\ ] 786.4 kB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":851968,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=======\\u003e
|
497
|
+
\ ] 852 kB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":917504,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=======\\u003e
|
498
|
+
\ ] 917.5 kB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":983040,\"total\":5742080,\"start\":1423702494},\"progress\":\"[========\\u003e
|
499
|
+
\ ] 983 kB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1048576,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=========\\u003e
|
500
|
+
\ ] 1.049 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1114112,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=========\\u003e
|
501
|
+
\ ] 1.114 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1179648,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==========\\u003e
|
502
|
+
\ ] 1.18 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1245184,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==========\\u003e
|
503
|
+
\ ] 1.245 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1310720,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===========\\u003e
|
504
|
+
\ ] 1.311 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1376256,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===========\\u003e
|
505
|
+
\ ] 1.376 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1441792,\"total\":5742080,\"start\":1423702494},\"progress\":\"[============\\u003e
|
506
|
+
\ ] 1.442 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1507328,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=============\\u003e
|
507
|
+
\ ] 1.507 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1572864,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=============\\u003e
|
508
|
+
\ ] 1.573 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1638400,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==============\\u003e
|
509
|
+
\ ] 1.638 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1703936,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==============\\u003e
|
510
|
+
\ ] 1.704 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1769472,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===============\\u003e
|
511
|
+
\ ] 1.769 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1835008,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===============\\u003e
|
512
|
+
\ ] 1.835 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1900544,\"total\":5742080,\"start\":1423702494},\"progress\":\"[================\\u003e
|
513
|
+
\ ] 1.901 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1966080,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=================\\u003e
|
514
|
+
\ ] 1.966 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2031616,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=================\\u003e
|
515
|
+
\ ] 2.032 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2097152,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==================\\u003e
|
516
|
+
\ ] 2.097 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2162688,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==================\\u003e
|
517
|
+
\ ] 2.163 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2228224,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===================\\u003e
|
518
|
+
\ ] 2.228 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2293760,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===================\\u003e
|
519
|
+
\ ] 2.294 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2359296,\"total\":5742080,\"start\":1423702494},\"progress\":\"[====================\\u003e
|
520
|
+
\ ] 2.359 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2424832,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=====================\\u003e
|
521
|
+
\ ] 2.425 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2490368,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=====================\\u003e
|
522
|
+
\ ] 2.49 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2555904,\"total\":5742080,\"start\":1423702494},\"progress\":\"[======================\\u003e
|
523
|
+
\ ] 2.556 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2621440,\"total\":5742080,\"start\":1423702494},\"progress\":\"[======================\\u003e
|
524
|
+
\ ] 2.621 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2686976,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=======================\\u003e
|
525
|
+
\ ] 2.687 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2752512,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=======================\\u003e
|
526
|
+
\ ] 2.753 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2818048,\"total\":5742080,\"start\":1423702494},\"progress\":\"[========================\\u003e
|
527
|
+
\ ] 2.818 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2883584,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=========================\\u003e
|
528
|
+
\ ] 2.884 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2949120,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=========================\\u003e
|
529
|
+
\ ] 2.949 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3014656,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==========================\\u003e
|
530
|
+
\ ] 3.015 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3080192,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==========================\\u003e
|
531
|
+
\ ] 3.08 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3145728,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===========================\\u003e
|
532
|
+
\ ] 3.146 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3211264,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===========================\\u003e
|
533
|
+
\ ] 3.211 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3276800,\"total\":5742080,\"start\":1423702494},\"progress\":\"[============================\\u003e
|
534
|
+
\ ] 3.277 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3342336,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=============================\\u003e
|
535
|
+
\ ] 3.342 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3407872,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=============================\\u003e
|
536
|
+
\ ] 3.408 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3473408,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==============================\\u003e
|
537
|
+
\ ] 3.473 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3538944,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==============================\\u003e
|
538
|
+
\ ] 3.539 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3604480,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===============================\\u003e
|
539
|
+
\ ] 3.604 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3670016,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===============================\\u003e
|
540
|
+
\ ] 3.67 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3735552,\"total\":5742080,\"start\":1423702494},\"progress\":\"[================================\\u003e
|
541
|
+
\ ] 3.736 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3801088,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=================================\\u003e
|
542
|
+
\ ] 3.801 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3866624,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=================================\\u003e
|
543
|
+
\ ] 3.867 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3932160,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==================================\\u003e
|
544
|
+
\ ] 3.932 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3997696,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==================================\\u003e
|
545
|
+
\ ] 3.998 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4063232,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===================================\\u003e
|
546
|
+
\ ] 4.063 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4128768,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===================================\\u003e
|
547
|
+
\ ] 4.129 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4194304,\"total\":5742080,\"start\":1423702494},\"progress\":\"[====================================\\u003e
|
548
|
+
\ ] 4.194 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4259840,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=====================================\\u003e
|
549
|
+
\ ] 4.26 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4325376,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=====================================\\u003e
|
550
|
+
\ ] 4.325 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4390912,\"total\":5742080,\"start\":1423702494},\"progress\":\"[======================================\\u003e
|
551
|
+
\ ] 4.391 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4456448,\"total\":5742080,\"start\":1423702494},\"progress\":\"[======================================\\u003e
|
552
|
+
\ ] 4.456 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4521984,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=======================================\\u003e
|
553
|
+
\ ] 4.522 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4587520,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=======================================\\u003e
|
554
|
+
\ ] 4.588 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4653056,\"total\":5742080,\"start\":1423702494},\"progress\":\"[========================================\\u003e
|
555
|
+
\ ] 4.653 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4718592,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=========================================\\u003e
|
556
|
+
\ ] 4.719 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4784128,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=========================================\\u003e
|
557
|
+
\ ] 4.784 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4849664,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==========================================\\u003e
|
558
|
+
\ ] 4.85 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4915200,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==========================================\\u003e
|
559
|
+
\ ] 4.915 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4980736,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===========================================\\u003e
|
560
|
+
\ ] 4.981 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5046272,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===========================================\\u003e
|
561
|
+
\ ] 5.046 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5111808,\"total\":5742080,\"start\":1423702494},\"progress\":\"[============================================\\u003e
|
562
|
+
\ ] 5.112 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5177344,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=============================================\\u003e
|
563
|
+
\ ] 5.177 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5242880,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=============================================\\u003e
|
564
|
+
\ ] 5.243 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5308416,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==============================================\\u003e
|
565
|
+
\ ] 5.308 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5373952,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==============================================\\u003e
|
566
|
+
\ ] 5.374 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5439488,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===============================================\\u003e
|
567
|
+
\ ] 5.439 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5505024,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===============================================\\u003e
|
568
|
+
\ ] 5.505 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5570560,\"total\":5742080,\"start\":1423702494},\"progress\":\"[================================================\\u003e
|
569
|
+
\ ] 5.571 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5636096,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=================================================\\u003e
|
570
|
+
] 5.636 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5701632,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=================================================\\u003e
|
571
|
+
] 5.702 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1423702494},\"progress\":\"[==================================================\\u003e]
|
572
|
+
1.024 kB/1.024 kB\",\"id\":\"f6169d24347d\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"f6169d24347d\"}{\"status\":\"Status:
|
229
573
|
Downloaded newer image for busybox\"}\r\n"
|
230
574
|
http_version:
|
231
|
-
recorded_at:
|
575
|
+
recorded_at: Thu, 12 Feb 2015 00:54:54 GMT
|
232
576
|
- request:
|
233
577
|
method: delete
|
234
|
-
uri:
|
578
|
+
uri: <DOCKER_HOST>/v1.16/images/f6169d24347d?force=true
|
235
579
|
body:
|
236
580
|
encoding: US-ASCII
|
237
581
|
string: ''
|
238
582
|
headers:
|
239
583
|
User-Agent:
|
240
|
-
- Swipely/Docker-API 1.
|
584
|
+
- Swipely/Docker-API 1.18.0
|
241
585
|
Content-Type:
|
242
586
|
- text/plain
|
243
587
|
response:
|
@@ -248,27 +592,29 @@ http_interactions:
|
|
248
592
|
Content-Type:
|
249
593
|
- application/json
|
250
594
|
Date:
|
251
|
-
-
|
595
|
+
- Thu, 12 Feb 2015 00:54:55 GMT
|
252
596
|
Content-Length:
|
253
597
|
- '198'
|
254
598
|
body:
|
255
|
-
encoding:
|
256
|
-
string:
|
257
|
-
|
258
|
-
,{"Deleted":"
|
259
|
-
|
260
|
-
|
599
|
+
encoding: US-ASCII
|
600
|
+
string: ! '[{"Untagged":"busybox:ubuntu-14.04"}
|
601
|
+
|
602
|
+
,{"Deleted":"f6169d24347d30de48e4493836bec15c78a34f08cc7f17d6a45a19d68dc283ac"}
|
603
|
+
|
604
|
+
,{"Deleted":"e8a999563c473139dc74d02eefb7b13ffea63799bc05b8936b9ad7119b37742f"}
|
605
|
+
|
606
|
+
]'
|
261
607
|
http_version:
|
262
|
-
recorded_at:
|
608
|
+
recorded_at: Thu, 12 Feb 2015 00:54:55 GMT
|
263
609
|
- request:
|
264
610
|
method: get
|
265
|
-
uri:
|
611
|
+
uri: <DOCKER_HOST>/v1.16/images/json
|
266
612
|
body:
|
267
613
|
encoding: US-ASCII
|
268
614
|
string: ''
|
269
615
|
headers:
|
270
616
|
User-Agent:
|
271
|
-
- Swipely/Docker-API 1.
|
617
|
+
- Swipely/Docker-API 1.18.0
|
272
618
|
Content-Type:
|
273
619
|
- text/plain
|
274
620
|
response:
|
@@ -279,22 +625,28 @@ http_interactions:
|
|
279
625
|
Content-Type:
|
280
626
|
- application/json
|
281
627
|
Date:
|
282
|
-
-
|
628
|
+
- Thu, 12 Feb 2015 00:54:55 GMT
|
629
|
+
Content-Length:
|
630
|
+
- '1881'
|
283
631
|
body:
|
284
|
-
encoding:
|
285
|
-
string:
|
286
|
-
|
287
|
-
,{"Created":
|
288
|
-
|
289
|
-
,{"Created":
|
290
|
-
|
291
|
-
,{"Created":
|
292
|
-
|
293
|
-
,{"Created":
|
294
|
-
|
295
|
-
,{"Created":
|
632
|
+
encoding: US-ASCII
|
633
|
+
string: ! '[{"Created":1423702467,"Id":"c5bc00616537c7ba0f051c7212c2a8777bb50e7e195cc8768090f9075e402f31","ParentId":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":85120773}
|
634
|
+
|
635
|
+
,{"Created":1423521618,"Id":"a47c4817ef07f98471d0182715891eb87d1b015a6c9a977b1ea766a666e96f49","ParentId":"e41eb64a720e4098e29814b767a769fd2bd19222e0885d8f252c3c64318f51d8","RepoTags":["tianon/true:latest"],"Size":0,"VirtualSize":125}
|
636
|
+
|
637
|
+
,{"Created":1422480050,"Id":"c55308716b3671d8a238a6c1245a60f66d76a3e1404b7b8b6e5fe0e65bae4943","ParentId":"214c09aed08bbf283bfb334b5a0526fa7e66ccaf667a5feee66d75af6a69bc6f","RepoTags":["registry:latest"],"Size":0,"VirtualSize":418558798}
|
638
|
+
|
639
|
+
,{"Created":1422379591,"Id":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","ParentId":"30d39e59ffe287f29a41a3f8bd70734afc8728329e3289945cbdc5bbf07cd980","RepoTags":["debian:wheezy"],"Size":0,"VirtualSize":85120773}
|
640
|
+
|
641
|
+
,{"Created":1420064641,"Id":"492dad4279bae5bb73648efe9bf467b2cfa8bab1d593595226e3e7a95d9f6c35","ParentId":"2982ec56c8d910121e7594ca7890b062f6d37fadf7575f6a6f3adbabbafac9f5","RepoTags":["busybox:ubuntu-12.04"],"Size":0,"VirtualSize":5454693}
|
642
|
+
|
643
|
+
,{"Created":1420064636,"Id":"4986bf8c15363d1c5d15512d5266f8777bfba4974ac56e3270e7760f6f0a8125","ParentId":"ea13149945cb6b1e746bf28032f02e9b5a793523481a0a18645fc77ad53c4ea2","RepoTags":["busybox:buildroot-2014.02","busybox:latest"],"Size":0,"VirtualSize":2433303}
|
644
|
+
|
645
|
+
,{"Created":1420064634,"Id":"2aed48a4e41d3931167146e9b7492aa5639e7f6478be9eac584726ecec6824ed","ParentId":"618b1fc306b06d11e192812ede4c685dcbf886d2a0189e9a552c550fd7663df0","RepoTags":["busybox:buildroot-2013.08.1"],"Size":0,"VirtualSize":2489301}
|
646
|
+
|
296
647
|
,{"Created":1371157430,"Id":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","ParentId":"","RepoTags":["scratch:latest"],"Size":0,"VirtualSize":0}
|
297
|
-
|
648
|
+
|
649
|
+
]'
|
298
650
|
http_version:
|
299
|
-
recorded_at:
|
300
|
-
recorded_with: VCR 2.9.
|
651
|
+
recorded_at: Thu, 12 Feb 2015 00:54:55 GMT
|
652
|
+
recorded_with: VCR 2.9.2
|