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,19 +2,19 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri:
|
5
|
+
uri: <DOCKER_HOST>/v1.16/build?t=<USERNAME>%2Fdebian%3Afrom_dir
|
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
|
- application/tar
|
14
14
|
Transfer-Encoding:
|
15
15
|
- chunked
|
16
16
|
X-Registry-Config:
|
17
|
-
-
|
17
|
+
- eyJjb25maWdzIjp7IiI6eyJ1c2VybmFtZSI6IiIsInBhc3N3b3JkIjoiIiwiZW1haWwiOiIifX19
|
18
18
|
response:
|
19
19
|
status:
|
20
20
|
code: 200
|
@@ -23,24 +23,363 @@ http_interactions:
|
|
23
23
|
Content-Type:
|
24
24
|
- application/json
|
25
25
|
Date:
|
26
|
-
-
|
26
|
+
- Thu, 12 Feb 2015 01:24:46 GMT
|
27
27
|
body:
|
28
|
-
encoding:
|
29
|
-
string: "{\"stream\":\"Step 0 : FROM debian:wheezy\\n\"}\r\n{\"
|
30
|
-
|
31
|
-
|
32
|
-
|
28
|
+
encoding: US-ASCII
|
29
|
+
string: ! "{\"stream\":\"Step 0 : FROM debian:wheezy\\n\"}\r\n{\"status\":\"The
|
30
|
+
image you are pulling has been verified\",\"id\":\"debian:wheezy\"}\r\n{\"status\":\"Pulling
|
31
|
+
fs layer\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Pulling
|
32
|
+
fs layer\",\"progressDetail\":{},\"id\":\"30d39e59ffe2\"}{\"status\":\"Pulling
|
33
|
+
fs layer\",\"progressDetail\":{},\"id\":\"c90d655b99b2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1423704287},\"progress\":\"[==================================================\\u003e]
|
34
|
+
1.024 kB/1.024 kB\",\"id\":\"c90d655b99b2\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"c90d655b99b2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1423704287},\"progress\":\"[==================================================\\u003e]
|
35
|
+
1.024 kB/1.024 kB\",\"id\":\"511136ea3c5a\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1423704287},\"progress\":\"[==================================================\\u003e]
|
36
|
+
1.024 kB/1.024 kB\",\"id\":\"511136ea3c5a\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":539628,\"total\":90081280,\"start\":1423704287},\"progress\":\"[\\u003e
|
37
|
+
\ ] 539.6 kB/90.08 MB 1m32s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1080300,\"total\":90081280,\"start\":1423704287},\"progress\":\"[\\u003e
|
38
|
+
\ ] 1.08 MB/90.08 MB 55s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1616876,\"total\":90081280,\"start\":1423704287},\"progress\":\"[\\u003e
|
39
|
+
\ ] 1.617 MB/90.08 MB 42s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2157548,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=\\u003e
|
40
|
+
\ ] 2.158 MB/90.08 MB 35s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2698220,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=\\u003e
|
41
|
+
\ ] 2.698 MB/90.08 MB 31s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3226604,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=\\u003e
|
42
|
+
\ ] 3.227 MB/90.08 MB 27s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3767276,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==\\u003e
|
43
|
+
\ ] 3.767 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4307948,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==\\u003e
|
44
|
+
\ ] 4.308 MB/90.08 MB 24s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4836332,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==\\u003e
|
45
|
+
\ ] 4.836 MB/90.08 MB 22s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5364716,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==\\u003e
|
46
|
+
\ ] 5.365 MB/90.08 MB 21s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5893100,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===\\u003e
|
47
|
+
\ ] 5.893 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6433772,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===\\u003e
|
48
|
+
\ ] 6.434 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6962156,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===\\u003e
|
49
|
+
\ ] 6.962 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7490540,\"total\":90081280,\"start\":1423704287},\"progress\":\"[====\\u003e
|
50
|
+
\ ] 7.491 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8027116,\"total\":90081280,\"start\":1423704287},\"progress\":\"[====\\u003e
|
51
|
+
\ ] 8.027 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8567788,\"total\":90081280,\"start\":1423704287},\"progress\":\"[====\\u003e
|
52
|
+
\ ] 8.568 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9108460,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=====\\u003e
|
53
|
+
\ ] 9.108 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9649132,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=====\\u003e
|
54
|
+
\ ] 9.649 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10189804,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=====\\u003e
|
55
|
+
\ ] 10.19 MB/90.08 MB 21s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10730476,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=====\\u003e
|
56
|
+
\ ] 10.73 MB/90.08 MB 21s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11271148,\"total\":90081280,\"start\":1423704287},\"progress\":\"[======\\u003e
|
57
|
+
\ ] 11.27 MB/90.08 MB 21s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11811820,\"total\":90081280,\"start\":1423704287},\"progress\":\"[======\\u003e
|
58
|
+
\ ] 11.81 MB/90.08 MB 22s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12344300,\"total\":90081280,\"start\":1423704287},\"progress\":\"[======\\u003e
|
59
|
+
\ ] 12.34 MB/90.08 MB 23s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12884972,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=======\\u003e
|
60
|
+
\ ] 12.88 MB/90.08 MB 23s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13421548,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=======\\u003e
|
61
|
+
\ ] 13.42 MB/90.08 MB 23s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13958124,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=======\\u003e
|
62
|
+
\ ] 13.96 MB/90.08 MB 24s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14486508,\"total\":90081280,\"start\":1423704287},\"progress\":\"[========\\u003e
|
63
|
+
\ ] 14.49 MB/90.08 MB 24s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15023084,\"total\":90081280,\"start\":1423704287},\"progress\":\"[========\\u003e
|
64
|
+
\ ] 15.02 MB/90.08 MB 24s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15555564,\"total\":90081280,\"start\":1423704287},\"progress\":\"[========\\u003e
|
65
|
+
\ ] 15.56 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16083948,\"total\":90081280,\"start\":1423704287},\"progress\":\"[========\\u003e
|
66
|
+
\ ] 16.08 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16620524,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=========\\u003e
|
67
|
+
\ ] 16.62 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17153004,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=========\\u003e
|
68
|
+
\ ] 17.15 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17685484,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=========\\u003e
|
69
|
+
\ ] 17.69 MB/90.08 MB 26s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18217964,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==========\\u003e
|
70
|
+
\ ] 18.22 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18758636,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==========\\u003e
|
71
|
+
\ ] 18.76 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19299308,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==========\\u003e
|
72
|
+
\ ] 19.3 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19839980,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===========\\u003e
|
73
|
+
\ ] 19.84 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20380652,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===========\\u003e
|
74
|
+
\ ] 20.38 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20917228,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===========\\u003e
|
75
|
+
\ ] 20.92 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21445612,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===========\\u003e
|
76
|
+
\ ] 21.45 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21982188,\"total\":90081280,\"start\":1423704287},\"progress\":\"[============\\u003e
|
77
|
+
\ ] 21.98 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22514668,\"total\":90081280,\"start\":1423704287},\"progress\":\"[============\\u003e
|
78
|
+
\ ] 22.51 MB/90.08 MB 24s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23043052,\"total\":90081280,\"start\":1423704287},\"progress\":\"[============\\u003e
|
79
|
+
\ ] 23.04 MB/90.08 MB 24s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23571436,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=============\\u003e
|
80
|
+
\ ] 23.57 MB/90.08 MB 24s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24108012,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=============\\u003e
|
81
|
+
\ ] 24.11 MB/90.08 MB 24s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24636396,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=============\\u003e
|
82
|
+
\ ] 24.64 MB/90.08 MB 24s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25164780,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=============\\u003e
|
83
|
+
\ ] 25.16 MB/90.08 MB 24s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25701356,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==============\\u003e
|
84
|
+
\ ] 25.7 MB/90.08 MB 24s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26233836,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==============\\u003e
|
85
|
+
\ ] 26.23 MB/90.08 MB 24s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26762220,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==============\\u003e
|
86
|
+
\ ] 26.76 MB/90.08 MB 23s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27294700,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===============\\u003e
|
87
|
+
\ ] 27.29 MB/90.08 MB 23s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27835372,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===============\\u003e
|
88
|
+
\ ] 27.84 MB/90.08 MB 23s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28376044,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===============\\u003e
|
89
|
+
\ ] 28.38 MB/90.08 MB 23s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28916716,\"total\":90081280,\"start\":1423704287},\"progress\":\"[================\\u003e
|
90
|
+
\ ] 28.92 MB/90.08 MB 22s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29457388,\"total\":90081280,\"start\":1423704287},\"progress\":\"[================\\u003e
|
91
|
+
\ ] 29.46 MB/90.08 MB 22s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29985772,\"total\":90081280,\"start\":1423704287},\"progress\":\"[================\\u003e
|
92
|
+
\ ] 29.99 MB/90.08 MB 22s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30522348,\"total\":90081280,\"start\":1423704287},\"progress\":\"[================\\u003e
|
93
|
+
\ ] 30.52 MB/90.08 MB 21s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31050732,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=================\\u003e
|
94
|
+
\ ] 31.05 MB/90.08 MB 21s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31583212,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=================\\u003e
|
95
|
+
\ ] 31.58 MB/90.08 MB 21s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32111596,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=================\\u003e
|
96
|
+
\ ] 32.11 MB/90.08 MB 21s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32652268,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==================\\u003e
|
97
|
+
\ ] 32.65 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33188844,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==================\\u003e
|
98
|
+
\ ] 33.19 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33717228,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==================\\u003e
|
99
|
+
\ ] 33.72 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34249708,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===================\\u003e
|
100
|
+
\ ] 34.25 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34782188,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===================\\u003e
|
101
|
+
\ ] 34.78 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35322860,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===================\\u003e
|
102
|
+
\ ] 35.32 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35851244,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===================\\u003e
|
103
|
+
\ ] 35.85 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36387820,\"total\":90081280,\"start\":1423704287},\"progress\":\"[====================\\u003e
|
104
|
+
\ ] 36.39 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36920300,\"total\":90081280,\"start\":1423704287},\"progress\":\"[====================\\u003e
|
105
|
+
\ ] 36.92 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37452780,\"total\":90081280,\"start\":1423704287},\"progress\":\"[====================\\u003e
|
106
|
+
\ ] 37.45 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37993452,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=====================\\u003e
|
107
|
+
\ ] 37.99 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38521836,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=====================\\u003e
|
108
|
+
\ ] 38.52 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39050220,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=====================\\u003e
|
109
|
+
\ ] 39.05 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39586796,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=====================\\u003e
|
110
|
+
\ ] 39.59 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40115180,\"total\":90081280,\"start\":1423704287},\"progress\":\"[======================\\u003e
|
111
|
+
\ ] 40.12 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40655852,\"total\":90081280,\"start\":1423704287},\"progress\":\"[======================\\u003e
|
112
|
+
\ ] 40.66 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41196524,\"total\":90081280,\"start\":1423704287},\"progress\":\"[======================\\u003e
|
113
|
+
\ ] 41.2 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41737196,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=======================\\u003e
|
114
|
+
\ ] 41.74 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42277868,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=======================\\u003e
|
115
|
+
\ ] 42.28 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42814444,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=======================\\u003e
|
116
|
+
\ ] 42.81 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43355116,\"total\":90081280,\"start\":1423704287},\"progress\":\"[========================\\u003e
|
117
|
+
\ ] 43.36 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43887596,\"total\":90081280,\"start\":1423704287},\"progress\":\"[========================\\u003e
|
118
|
+
\ ] 43.89 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44424172,\"total\":90081280,\"start\":1423704287},\"progress\":\"[========================\\u003e
|
119
|
+
\ ] 44.42 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44952556,\"total\":90081280,\"start\":1423704287},\"progress\":\"[========================\\u003e
|
120
|
+
\ ] 44.95 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45480940,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=========================\\u003e
|
121
|
+
\ ] 45.48 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46017516,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=========================\\u003e
|
122
|
+
\ ] 46.02 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46545900,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=========================\\u003e
|
123
|
+
\ ] 46.55 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47074284,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==========================\\u003e
|
124
|
+
\ ] 47.07 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47602668,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==========================\\u003e
|
125
|
+
\ ] 47.6 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48135148,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==========================\\u003e
|
126
|
+
\ ] 48.14 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48667628,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===========================\\u003e
|
127
|
+
\ ] 48.67 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49200108,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===========================\\u003e
|
128
|
+
\ ] 49.2 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49728492,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===========================\\u003e
|
129
|
+
\ ] 49.73 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50269164,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===========================\\u003e
|
130
|
+
\ ] 50.27 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50797548,\"total\":90081280,\"start\":1423704287},\"progress\":\"[============================\\u003e
|
131
|
+
\ ] 50.8 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51330028,\"total\":90081280,\"start\":1423704287},\"progress\":\"[============================\\u003e
|
132
|
+
\ ] 51.33 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51870700,\"total\":90081280,\"start\":1423704287},\"progress\":\"[============================\\u003e
|
133
|
+
\ ] 51.87 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52411372,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=============================\\u003e
|
134
|
+
\ ] 52.41 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52952044,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=============================\\u003e
|
135
|
+
\ ] 52.95 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53480428,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=============================\\u003e
|
136
|
+
\ ] 53.48 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54017004,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=============================\\u003e
|
137
|
+
\ ] 54.02 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54557676,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==============================\\u003e
|
138
|
+
\ ] 54.56 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55090156,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==============================\\u003e
|
139
|
+
\ ] 55.09 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55622636,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==============================\\u003e
|
140
|
+
\ ] 55.62 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56159212,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===============================\\u003e
|
141
|
+
\ ] 56.16 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56687596,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===============================\\u003e
|
142
|
+
\ ] 56.69 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57224172,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===============================\\u003e
|
143
|
+
\ ] 57.22 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57752556,\"total\":90081280,\"start\":1423704287},\"progress\":\"[================================\\u003e
|
144
|
+
\ ] 57.75 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58293228,\"total\":90081280,\"start\":1423704287},\"progress\":\"[================================\\u003e
|
145
|
+
\ ] 58.29 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58833900,\"total\":90081280,\"start\":1423704287},\"progress\":\"[================================\\u003e
|
146
|
+
\ ] 58.83 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59374572,\"total\":90081280,\"start\":1423704287},\"progress\":\"[================================\\u003e
|
147
|
+
\ ] 59.37 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59915244,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=================================\\u003e
|
148
|
+
\ ] 59.92 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60451820,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=================================\\u003e
|
149
|
+
\ ] 60.45 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60980204,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=================================\\u003e
|
150
|
+
\ ] 60.98 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61508588,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==================================\\u003e
|
151
|
+
\ ] 61.51 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62041068,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==================================\\u003e
|
152
|
+
\ ] 62.04 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62569452,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==================================\\u003e
|
153
|
+
\ ] 62.57 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63097836,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===================================\\u003e
|
154
|
+
\ ] 63.1 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63638508,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===================================\\u003e
|
155
|
+
\ ] 63.64 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64170988,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===================================\\u003e
|
156
|
+
\ ] 64.17 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64699372,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===================================\\u003e
|
157
|
+
\ ] 64.7 MB/90.08 MB 14s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65240044,\"total\":90081280,\"start\":1423704287},\"progress\":\"[====================================\\u003e
|
158
|
+
\ ] 65.24 MB/90.08 MB 14s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65780716,\"total\":90081280,\"start\":1423704287},\"progress\":\"[====================================\\u003e
|
159
|
+
\ ] 65.78 MB/90.08 MB 14s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66321388,\"total\":90081280,\"start\":1423704287},\"progress\":\"[====================================\\u003e
|
160
|
+
\ ] 66.32 MB/90.08 MB 13s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66862060,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=====================================\\u003e
|
161
|
+
\ ] 66.86 MB/90.08 MB 13s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67402732,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=====================================\\u003e
|
162
|
+
\ ] 67.4 MB/90.08 MB 13s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67943404,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=====================================\\u003e
|
163
|
+
\ ] 67.94 MB/90.08 MB 12s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68475884,\"total\":90081280,\"start\":1423704287},\"progress\":\"[======================================\\u003e
|
164
|
+
\ ] 68.48 MB/90.08 MB 12s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69008364,\"total\":90081280,\"start\":1423704287},\"progress\":\"[======================================\\u003e
|
165
|
+
\ ] 69.01 MB/90.08 MB 12s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69536748,\"total\":90081280,\"start\":1423704287},\"progress\":\"[======================================\\u003e
|
166
|
+
\ ] 69.54 MB/90.08 MB 11s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70073324,\"total\":90081280,\"start\":1423704287},\"progress\":\"[======================================\\u003e
|
167
|
+
\ ] 70.07 MB/90.08 MB 11s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70605804,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=======================================\\u003e
|
168
|
+
\ ] 70.61 MB/90.08 MB 11s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71134188,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=======================================\\u003e
|
169
|
+
\ ] 71.13 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71674860,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=======================================\\u003e
|
170
|
+
\ ] 71.67 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72211436,\"total\":90081280,\"start\":1423704287},\"progress\":\"[========================================\\u003e
|
171
|
+
\ ] 72.21 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72743916,\"total\":90081280,\"start\":1423704287},\"progress\":\"[========================================\\u003e
|
172
|
+
\ ] 72.74 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73280492,\"total\":90081280,\"start\":1423704287},\"progress\":\"[========================================\\u003e
|
173
|
+
\ ] 73.28 MB/90.08 MB 9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73808876,\"total\":90081280,\"start\":1423704287},\"progress\":\"[========================================\\u003e
|
174
|
+
\ ] 73.81 MB/90.08 MB 9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74341356,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=========================================\\u003e
|
175
|
+
\ ] 74.34 MB/90.08 MB 9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74873836,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=========================================\\u003e
|
176
|
+
\ ] 74.87 MB/90.08 MB 8s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75414508,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=========================================\\u003e
|
177
|
+
\ ] 75.41 MB/90.08 MB 8s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75946988,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==========================================\\u003e
|
178
|
+
\ ] 75.95 MB/90.08 MB 8s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76479468,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==========================================\\u003e
|
179
|
+
\ ] 76.48 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77007852,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==========================================\\u003e
|
180
|
+
\ ] 77.01 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77536236,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===========================================\\u003e
|
181
|
+
\ ] 77.54 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78064620,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===========================================\\u003e
|
182
|
+
\ ] 78.06 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78593004,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===========================================\\u003e
|
183
|
+
\ ] 78.59 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79133676,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===========================================\\u003e
|
184
|
+
\ ] 79.13 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79666156,\"total\":90081280,\"start\":1423704287},\"progress\":\"[============================================\\u003e
|
185
|
+
\ ] 79.67 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80202732,\"total\":90081280,\"start\":1423704287},\"progress\":\"[============================================\\u003e
|
186
|
+
\ ] 80.2 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80739308,\"total\":90081280,\"start\":1423704287},\"progress\":\"[============================================\\u003e
|
187
|
+
\ ] 80.74 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81275884,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=============================================\\u003e
|
188
|
+
\ ] 81.28 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81804268,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=============================================\\u003e
|
189
|
+
\ ] 81.8 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82340844,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=============================================\\u003e
|
190
|
+
\ ] 82.34 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82869228,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=============================================\\u003e
|
191
|
+
\ ] 82.87 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83409900,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==============================================\\u003e
|
192
|
+
\ ] 83.41 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83950572,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==============================================\\u003e
|
193
|
+
\ ] 83.95 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84491244,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==============================================\\u003e
|
194
|
+
\ ] 84.49 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85027820,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===============================================\\u003e
|
195
|
+
\ ] 85.03 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85556204,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===============================================\\u003e
|
196
|
+
\ ] 85.56 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86084588,\"total\":90081280,\"start\":1423704287},\"progress\":\"[===============================================\\u003e
|
197
|
+
\ ] 86.08 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86617068,\"total\":90081280,\"start\":1423704287},\"progress\":\"[================================================\\u003e
|
198
|
+
\ ] 86.62 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87149548,\"total\":90081280,\"start\":1423704287},\"progress\":\"[================================================\\u003e
|
199
|
+
\ ] 87.15 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87686124,\"total\":90081280,\"start\":1423704287},\"progress\":\"[================================================\\u003e
|
200
|
+
\ ] 87.69 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88218604,\"total\":90081280,\"start\":1423704287},\"progress\":\"[================================================\\u003e
|
201
|
+
\ ] 88.22 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88759276,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=================================================\\u003e
|
202
|
+
] 88.76 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89299948,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=================================================\\u003e
|
203
|
+
] 89.3 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89832428,\"total\":90081280,\"start\":1423704287},\"progress\":\"[=================================================\\u003e
|
204
|
+
] 89.83 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90081280,\"total\":90081280,\"start\":1423704287},\"progress\":\"[==================================================\\u003e]
|
205
|
+
90.08 MB/90.08 MB\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":557056,\"total\":90081280,\"start\":1423704336},\"progress\":\"[\\u003e
|
206
|
+
\ ] 557.1 kB/90.08 MB 1m59s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1114112,\"total\":90081280,\"start\":1423704336},\"progress\":\"[\\u003e
|
207
|
+
\ ] 1.114 MB/90.08 MB 59s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1671168,\"total\":90081280,\"start\":1423704336},\"progress\":\"[\\u003e
|
208
|
+
\ ] 1.671 MB/90.08 MB 40s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2228224,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=\\u003e
|
209
|
+
\ ] 2.228 MB/90.08 MB 30s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2785280,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=\\u003e
|
210
|
+
\ ] 2.785 MB/90.08 MB 24s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3342336,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=\\u003e
|
211
|
+
\ ] 3.342 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3899392,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==\\u003e
|
212
|
+
\ ] 3.899 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4456448,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==\\u003e
|
213
|
+
\ ] 4.456 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5013504,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==\\u003e
|
214
|
+
\ ] 5.014 MB/90.08 MB 13s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5570560,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===\\u003e
|
215
|
+
\ ] 5.571 MB/90.08 MB 12s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6127616,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===\\u003e
|
216
|
+
\ ] 6.128 MB/90.08 MB 11s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6684672,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===\\u003e
|
217
|
+
\ ] 6.685 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7241728,\"total\":90081280,\"start\":1423704336},\"progress\":\"[====\\u003e
|
218
|
+
\ ] 7.242 MB/90.08 MB 9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7798784,\"total\":90081280,\"start\":1423704336},\"progress\":\"[====\\u003e
|
219
|
+
\ ] 7.799 MB/90.08 MB 9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8355840,\"total\":90081280,\"start\":1423704336},\"progress\":\"[====\\u003e
|
220
|
+
\ ] 8.356 MB/90.08 MB 8s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8912896,\"total\":90081280,\"start\":1423704336},\"progress\":\"[====\\u003e
|
221
|
+
\ ] 8.913 MB/90.08 MB 8s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9469952,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=====\\u003e
|
222
|
+
\ ] 9.47 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":10027008,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=====\\u003e
|
223
|
+
\ ] 10.03 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":10584064,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=====\\u003e
|
224
|
+
\ ] 10.58 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11141120,\"total\":90081280,\"start\":1423704336},\"progress\":\"[======\\u003e
|
225
|
+
\ ] 11.14 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11698176,\"total\":90081280,\"start\":1423704336},\"progress\":\"[======\\u003e
|
226
|
+
\ ] 11.7 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12255232,\"total\":90081280,\"start\":1423704336},\"progress\":\"[======\\u003e
|
227
|
+
\ ] 12.26 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12812288,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=======\\u003e
|
228
|
+
\ ] 12.81 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":13369344,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=======\\u003e
|
229
|
+
\ ] 13.37 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":13926400,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=======\\u003e
|
230
|
+
\ ] 13.93 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":14483456,\"total\":90081280,\"start\":1423704336},\"progress\":\"[========\\u003e
|
231
|
+
\ ] 14.48 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15040512,\"total\":90081280,\"start\":1423704336},\"progress\":\"[========\\u003e
|
232
|
+
\ ] 15.04 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15597568,\"total\":90081280,\"start\":1423704336},\"progress\":\"[========\\u003e
|
233
|
+
\ ] 15.6 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16154624,\"total\":90081280,\"start\":1423704336},\"progress\":\"[========\\u003e
|
234
|
+
\ ] 16.15 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16711680,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=========\\u003e
|
235
|
+
\ ] 16.71 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17268736,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=========\\u003e
|
236
|
+
\ ] 17.27 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17825792,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=========\\u003e
|
237
|
+
\ ] 17.83 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":18382848,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==========\\u003e
|
238
|
+
\ ] 18.38 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":18939904,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==========\\u003e
|
239
|
+
\ ] 18.94 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":19496960,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==========\\u003e
|
240
|
+
\ ] 19.5 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":20054016,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===========\\u003e
|
241
|
+
\ ] 20.05 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":20611072,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===========\\u003e
|
242
|
+
\ ] 20.61 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21168128,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===========\\u003e
|
243
|
+
\ ] 21.17 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21725184,\"total\":90081280,\"start\":1423704336},\"progress\":\"[============\\u003e
|
244
|
+
\ ] 21.73 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22282240,\"total\":90081280,\"start\":1423704336},\"progress\":\"[============\\u003e
|
245
|
+
\ ] 22.28 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22839296,\"total\":90081280,\"start\":1423704336},\"progress\":\"[============\\u003e
|
246
|
+
\ ] 22.84 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23396352,\"total\":90081280,\"start\":1423704336},\"progress\":\"[============\\u003e
|
247
|
+
\ ] 23.4 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23953408,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=============\\u003e
|
248
|
+
\ ] 23.95 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24510464,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=============\\u003e
|
249
|
+
\ ] 24.51 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25067520,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=============\\u003e
|
250
|
+
\ ] 25.07 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25624576,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==============\\u003e
|
251
|
+
\ ] 25.62 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26181632,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==============\\u003e
|
252
|
+
\ ] 26.18 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26738688,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==============\\u003e
|
253
|
+
\ ] 26.74 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":27295744,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===============\\u003e
|
254
|
+
\ ] 27.3 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":27852800,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===============\\u003e
|
255
|
+
\ ] 27.85 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":28409856,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===============\\u003e
|
256
|
+
\ ] 28.41 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":28966912,\"total\":90081280,\"start\":1423704336},\"progress\":\"[================\\u003e
|
257
|
+
\ ] 28.97 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":29523968,\"total\":90081280,\"start\":1423704336},\"progress\":\"[================\\u003e
|
258
|
+
\ ] 29.52 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30081024,\"total\":90081280,\"start\":1423704336},\"progress\":\"[================\\u003e
|
259
|
+
\ ] 30.08 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30638080,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=================\\u003e
|
260
|
+
\ ] 30.64 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":31195136,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=================\\u003e
|
261
|
+
\ ] 31.2 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":31752192,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=================\\u003e
|
262
|
+
\ ] 31.75 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32309248,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=================\\u003e
|
263
|
+
\ ] 32.31 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32866304,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==================\\u003e
|
264
|
+
\ ] 32.87 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":33423360,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==================\\u003e
|
265
|
+
\ ] 33.42 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":33980416,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==================\\u003e
|
266
|
+
\ ] 33.98 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":34537472,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===================\\u003e
|
267
|
+
\ ] 34.54 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":35094528,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===================\\u003e
|
268
|
+
\ ] 35.09 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":35651584,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===================\\u003e
|
269
|
+
\ ] 35.65 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":36208640,\"total\":90081280,\"start\":1423704336},\"progress\":\"[====================\\u003e
|
270
|
+
\ ] 36.21 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":36765696,\"total\":90081280,\"start\":1423704336},\"progress\":\"[====================\\u003e
|
271
|
+
\ ] 36.77 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":37322752,\"total\":90081280,\"start\":1423704336},\"progress\":\"[====================\\u003e
|
272
|
+
\ ] 37.32 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":37879808,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=====================\\u003e
|
273
|
+
\ ] 37.88 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":38436864,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=====================\\u003e
|
274
|
+
\ ] 38.44 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":38993920,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=====================\\u003e
|
275
|
+
\ ] 38.99 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":39550976,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=====================\\u003e
|
276
|
+
\ ] 39.55 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":40108032,\"total\":90081280,\"start\":1423704336},\"progress\":\"[======================\\u003e
|
277
|
+
\ ] 40.11 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":40665088,\"total\":90081280,\"start\":1423704336},\"progress\":\"[======================\\u003e
|
278
|
+
\ ] 40.67 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":41222144,\"total\":90081280,\"start\":1423704336},\"progress\":\"[======================\\u003e
|
279
|
+
\ ] 41.22 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":41779200,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=======================\\u003e
|
280
|
+
\ ] 41.78 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":42336256,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=======================\\u003e
|
281
|
+
\ ] 42.34 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":42893312,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=======================\\u003e
|
282
|
+
\ ] 42.89 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":43450368,\"total\":90081280,\"start\":1423704336},\"progress\":\"[========================\\u003e
|
283
|
+
\ ] 43.45 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":44007424,\"total\":90081280,\"start\":1423704336},\"progress\":\"[========================\\u003e
|
284
|
+
\ ] 44.01 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":44564480,\"total\":90081280,\"start\":1423704336},\"progress\":\"[========================\\u003e
|
285
|
+
\ ] 44.56 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":45121536,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=========================\\u003e
|
286
|
+
\ ] 45.12 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":45678592,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=========================\\u003e
|
287
|
+
\ ] 45.68 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":46235648,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=========================\\u003e
|
288
|
+
\ ] 46.24 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":46792704,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=========================\\u003e
|
289
|
+
\ ] 46.79 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":47349760,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==========================\\u003e
|
290
|
+
\ ] 47.35 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":47906816,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==========================\\u003e
|
291
|
+
\ ] 47.91 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":48463872,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==========================\\u003e
|
292
|
+
\ ] 48.46 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":49020928,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===========================\\u003e
|
293
|
+
\ ] 49.02 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":49577984,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===========================\\u003e
|
294
|
+
\ ] 49.58 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":50135040,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===========================\\u003e
|
295
|
+
\ ] 50.14 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":50692096,\"total\":90081280,\"start\":1423704336},\"progress\":\"[============================\\u003e
|
296
|
+
\ ] 50.69 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":51249152,\"total\":90081280,\"start\":1423704336},\"progress\":\"[============================\\u003e
|
297
|
+
\ ] 51.25 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":51806208,\"total\":90081280,\"start\":1423704336},\"progress\":\"[============================\\u003e
|
298
|
+
\ ] 51.81 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":52363264,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=============================\\u003e
|
299
|
+
\ ] 52.36 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":52920320,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=============================\\u003e
|
300
|
+
\ ] 52.92 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":53477376,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=============================\\u003e
|
301
|
+
\ ] 53.48 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":54034432,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=============================\\u003e
|
302
|
+
\ ] 54.03 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":54591488,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==============================\\u003e
|
303
|
+
\ ] 54.59 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":55148544,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==============================\\u003e
|
304
|
+
\ ] 55.15 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":55705600,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==============================\\u003e
|
305
|
+
\ ] 55.71 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":56262656,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===============================\\u003e
|
306
|
+
\ ] 56.26 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":56819712,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===============================\\u003e
|
307
|
+
\ ] 56.82 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":57376768,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===============================\\u003e
|
308
|
+
\ ] 57.38 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":57933824,\"total\":90081280,\"start\":1423704336},\"progress\":\"[================================\\u003e
|
309
|
+
\ ] 57.93 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":58490880,\"total\":90081280,\"start\":1423704336},\"progress\":\"[================================\\u003e
|
310
|
+
\ ] 58.49 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":59047936,\"total\":90081280,\"start\":1423704336},\"progress\":\"[================================\\u003e
|
311
|
+
\ ] 59.05 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":59604992,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=================================\\u003e
|
312
|
+
\ ] 59.6 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":60162048,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=================================\\u003e
|
313
|
+
\ ] 60.16 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":60719104,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=================================\\u003e
|
314
|
+
\ ] 60.72 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":61276160,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==================================\\u003e
|
315
|
+
\ ] 61.28 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":61833216,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==================================\\u003e
|
316
|
+
\ ] 61.83 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":62390272,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==================================\\u003e
|
317
|
+
\ ] 62.39 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":62947328,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==================================\\u003e
|
318
|
+
\ ] 62.95 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":63504384,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===================================\\u003e
|
319
|
+
\ ] 63.5 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":64061440,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===================================\\u003e
|
320
|
+
\ ] 64.06 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":64618496,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===================================\\u003e
|
321
|
+
\ ] 64.62 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65175552,\"total\":90081280,\"start\":1423704336},\"progress\":\"[====================================\\u003e
|
322
|
+
\ ] 65.18 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65732608,\"total\":90081280,\"start\":1423704336},\"progress\":\"[====================================\\u003e
|
323
|
+
\ ] 65.73 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":66289664,\"total\":90081280,\"start\":1423704336},\"progress\":\"[====================================\\u003e
|
324
|
+
\ ] 66.29 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":66846720,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=====================================\\u003e
|
325
|
+
\ ] 66.85 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":67403776,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=====================================\\u003e
|
326
|
+
\ ] 67.4 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":67960832,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=====================================\\u003e
|
327
|
+
\ ] 67.96 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":68517888,\"total\":90081280,\"start\":1423704336},\"progress\":\"[======================================\\u003e
|
328
|
+
\ ] 68.52 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":69074944,\"total\":90081280,\"start\":1423704336},\"progress\":\"[======================================\\u003e
|
329
|
+
\ ] 69.07 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":69632000,\"total\":90081280,\"start\":1423704336},\"progress\":\"[======================================\\u003e
|
330
|
+
\ ] 69.63 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":70189056,\"total\":90081280,\"start\":1423704336},\"progress\":\"[======================================\\u003e
|
331
|
+
\ ] 70.19 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":70746112,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=======================================\\u003e
|
332
|
+
\ ] 70.75 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":71303168,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=======================================\\u003e
|
333
|
+
\ ] 71.3 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":71860224,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=======================================\\u003e
|
334
|
+
\ ] 71.86 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":72417280,\"total\":90081280,\"start\":1423704336},\"progress\":\"[========================================\\u003e
|
335
|
+
\ ] 72.42 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":72974336,\"total\":90081280,\"start\":1423704336},\"progress\":\"[========================================\\u003e
|
336
|
+
\ ] 72.97 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":73531392,\"total\":90081280,\"start\":1423704336},\"progress\":\"[========================================\\u003e
|
337
|
+
\ ] 73.53 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":74088448,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=========================================\\u003e
|
338
|
+
\ ] 74.09 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":74645504,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=========================================\\u003e
|
339
|
+
\ ] 74.65 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":75202560,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=========================================\\u003e
|
340
|
+
\ ] 75.2 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":75759616,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==========================================\\u003e
|
341
|
+
\ ] 75.76 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":76316672,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==========================================\\u003e
|
342
|
+
\ ] 76.32 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":76873728,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==========================================\\u003e
|
343
|
+
\ ] 76.87 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":77430784,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==========================================\\u003e
|
344
|
+
\ ] 77.43 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":77987840,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===========================================\\u003e
|
345
|
+
\ ] 77.99 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":78544896,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===========================================\\u003e
|
346
|
+
\ ] 78.54 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":79101952,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===========================================\\u003e
|
347
|
+
\ ] 79.1 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":79659008,\"total\":90081280,\"start\":1423704336},\"progress\":\"[============================================\\u003e
|
348
|
+
\ ] 79.66 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":80216064,\"total\":90081280,\"start\":1423704336},\"progress\":\"[============================================\\u003e
|
349
|
+
\ ] 80.22 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":80773120,\"total\":90081280,\"start\":1423704336},\"progress\":\"[============================================\\u003e
|
350
|
+
\ ] 80.77 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":81330176,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=============================================\\u003e
|
351
|
+
\ ] 81.33 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":81887232,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=============================================\\u003e
|
352
|
+
\ ] 81.89 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":82444288,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=============================================\\u003e
|
353
|
+
\ ] 82.44 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":83001344,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==============================================\\u003e
|
354
|
+
\ ] 83 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":83558400,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==============================================\\u003e
|
355
|
+
\ ] 83.56 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":84115456,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==============================================\\u003e
|
356
|
+
\ ] 84.12 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":84672512,\"total\":90081280,\"start\":1423704336},\"progress\":\"[==============================================\\u003e
|
357
|
+
\ ] 84.67 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":85229568,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===============================================\\u003e
|
358
|
+
\ ] 85.23 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":85786624,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===============================================\\u003e
|
359
|
+
\ ] 85.79 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":86343680,\"total\":90081280,\"start\":1423704336},\"progress\":\"[===============================================\\u003e
|
360
|
+
\ ] 86.34 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":86900736,\"total\":90081280,\"start\":1423704336},\"progress\":\"[================================================\\u003e
|
361
|
+
\ ] 86.9 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":87457792,\"total\":90081280,\"start\":1423704336},\"progress\":\"[================================================\\u003e
|
362
|
+
\ ] 87.46 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":88014848,\"total\":90081280,\"start\":1423704336},\"progress\":\"[================================================\\u003e
|
363
|
+
\ ] 88.01 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":88571904,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=================================================\\u003e
|
364
|
+
] 88.57 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":89128960,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=================================================\\u003e
|
365
|
+
] 89.13 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":89686016,\"total\":90081280,\"start\":1423704336},\"progress\":\"[=================================================\\u003e
|
366
|
+
] 89.69 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1423704340},\"progress\":\"[==================================================\\u003e]
|
367
|
+
1.024 kB/1.024 kB\",\"id\":\"c90d655b99b2\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"c90d655b99b2\"}{\"status\":\"Status:
|
368
|
+
Downloaded newer image for debian:wheezy\"}\r\n{\"stream\":\" ---\\u003e c90d655b99b2\\n\"}\r\n{\"stream\":\"Step
|
369
|
+
1 : ADD . /\\n\"}\r\n{\"stream\":\" ---\\u003e 6f2142780c43\\n\"}\r\n{\"stream\":\"Removing
|
370
|
+
intermediate container 687769b6f79d\\n\"}\r\n{\"stream\":\"Successfully built
|
371
|
+
6f2142780c43\\n\"}\r\n"
|
33
372
|
http_version:
|
34
|
-
recorded_at:
|
373
|
+
recorded_at: Thu, 12 Feb 2015 01:25:43 GMT
|
35
374
|
- request:
|
36
375
|
method: post
|
37
|
-
uri:
|
376
|
+
uri: <DOCKER_HOST>/v1.16/containers/create
|
38
377
|
body:
|
39
378
|
encoding: UTF-8
|
40
|
-
string: '{"Image":"
|
379
|
+
string: ! '{"Image":"6f2142780c43","Cmd":["cat","/Dockerfile"]}'
|
41
380
|
headers:
|
42
381
|
User-Agent:
|
43
|
-
- Swipely/Docker-API 1.
|
382
|
+
- Swipely/Docker-API 1.18.0
|
44
383
|
Content-Type:
|
45
384
|
- application/json
|
46
385
|
response:
|
@@ -51,24 +390,25 @@ http_interactions:
|
|
51
390
|
Content-Type:
|
52
391
|
- application/json
|
53
392
|
Date:
|
54
|
-
-
|
393
|
+
- Thu, 12 Feb 2015 01:25:44 GMT
|
55
394
|
Content-Length:
|
56
395
|
- '90'
|
57
396
|
body:
|
58
|
-
encoding:
|
59
|
-
string:
|
60
|
-
|
397
|
+
encoding: US-ASCII
|
398
|
+
string: ! '{"Id":"4707690f34b24f564480f5fd67ecd6fdca6c4079af9197e724fa39071539814b","Warnings":null}
|
399
|
+
|
400
|
+
'
|
61
401
|
http_version:
|
62
|
-
recorded_at:
|
402
|
+
recorded_at: Thu, 12 Feb 2015 01:25:44 GMT
|
63
403
|
- request:
|
64
404
|
method: post
|
65
|
-
uri:
|
405
|
+
uri: <DOCKER_HOST>/v1.16/containers/4707690f34b24f564480f5fd67ecd6fdca6c4079af9197e724fa39071539814b/start
|
66
406
|
body:
|
67
407
|
encoding: UTF-8
|
68
|
-
string:
|
408
|
+
string: ! '{}'
|
69
409
|
headers:
|
70
410
|
User-Agent:
|
71
|
-
- Swipely/Docker-API 1.
|
411
|
+
- Swipely/Docker-API 1.18.0
|
72
412
|
Content-Type:
|
73
413
|
- application/json
|
74
414
|
response:
|
@@ -77,21 +417,21 @@ http_interactions:
|
|
77
417
|
message:
|
78
418
|
headers:
|
79
419
|
Date:
|
80
|
-
-
|
420
|
+
- Thu, 12 Feb 2015 01:25:44 GMT
|
81
421
|
body:
|
82
|
-
encoding:
|
422
|
+
encoding: US-ASCII
|
83
423
|
string: ''
|
84
424
|
http_version:
|
85
|
-
recorded_at:
|
425
|
+
recorded_at: Thu, 12 Feb 2015 01:25:44 GMT
|
86
426
|
- request:
|
87
427
|
method: get
|
88
|
-
uri:
|
428
|
+
uri: <DOCKER_HOST>/v1.16/containers/4707690f34b24f564480f5fd67ecd6fdca6c4079af9197e724fa39071539814b/logs?stdout=true
|
89
429
|
body:
|
90
430
|
encoding: US-ASCII
|
91
431
|
string: ''
|
92
432
|
headers:
|
93
433
|
User-Agent:
|
94
|
-
- Swipely/Docker-API 1.
|
434
|
+
- Swipely/Docker-API 1.18.0
|
95
435
|
Content-Type:
|
96
436
|
- text/plain
|
97
437
|
response:
|
@@ -100,24 +440,24 @@ http_interactions:
|
|
100
440
|
message:
|
101
441
|
headers:
|
102
442
|
Date:
|
103
|
-
-
|
443
|
+
- Thu, 12 Feb 2015 01:25:44 GMT
|
104
444
|
Content-Type:
|
105
445
|
- application/octet-stream
|
106
446
|
body:
|
107
|
-
encoding:
|
447
|
+
encoding: US-ASCII
|
108
448
|
string: !binary |-
|
109
|
-
|
449
|
+
AQAAAAAAABNGUk9NIGRlYmlhbjp3aGVlenkKAQAAAAAAAAhBREQgLiAvCg==
|
110
450
|
http_version:
|
111
|
-
recorded_at:
|
451
|
+
recorded_at: Thu, 12 Feb 2015 01:25:44 GMT
|
112
452
|
- request:
|
113
453
|
method: get
|
114
|
-
uri:
|
454
|
+
uri: <DOCKER_HOST>/v1.16/images/json?all=true
|
115
455
|
body:
|
116
456
|
encoding: US-ASCII
|
117
457
|
string: ''
|
118
458
|
headers:
|
119
459
|
User-Agent:
|
120
|
-
- Swipely/Docker-API 1.
|
460
|
+
- Swipely/Docker-API 1.18.0
|
121
461
|
Content-Type:
|
122
462
|
- text/plain
|
123
463
|
response:
|
@@ -128,94 +468,31 @@ http_interactions:
|
|
128
468
|
Content-Type:
|
129
469
|
- application/json
|
130
470
|
Date:
|
131
|
-
-
|
471
|
+
- Thu, 12 Feb 2015 01:25:44 GMT
|
472
|
+
Content-Length:
|
473
|
+
- '928'
|
132
474
|
body:
|
133
|
-
encoding:
|
134
|
-
string:
|
135
|
-
|
136
|
-
,{"Created":
|
137
|
-
|
138
|
-
,{"Created":
|
139
|
-
|
140
|
-
,{"Created":
|
141
|
-
|
142
|
-
|
143
|
-
,{"Created":1415864015,"Id":"16b02bf8dc3d1f70e098cbd968f154468fcf41be6bf59b24a35b4fdded3edbca","ParentId":"b22cb7ed5ccbeeaf2a67d5d3034a308c6eedf2ccb247851c9a14c05b441716fa","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":23990121,"VirtualSize":411598960}
|
144
|
-
,{"Created":1415863862,"Id":"b22cb7ed5ccbeeaf2a67d5d3034a308c6eedf2ccb247851c9a14c05b441716fa","ParentId":"8b170afd480f41a84331dcaabfa6465769205e645ba13f8baa085f1f68e4f1cf","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":11550557,"VirtualSize":387608839}
|
145
|
-
,{"Created":1415863855,"Id":"8b170afd480f41a84331dcaabfa6465769205e645ba13f8baa085f1f68e4f1cf","ParentId":"8dda8bb23254979ce24f2ca4d7115f4563a9ae4f0e774b2d419318d81a5c720d","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":73,"VirtualSize":376058282}
|
146
|
-
,{"Created":1415863853,"Id":"8dda8bb23254979ce24f2ca4d7115f4563a9ae4f0e774b2d419318d81a5c720d","ParentId":"7d49ba12f2de52ae8dfec8c661f4471e00d546b57adc3913cefc56f89b932e22","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1880042,"VirtualSize":376058209}
|
147
|
-
,{"Created":1415863849,"Id":"d9925ba888d4dba2d9b22273d261155fe3b2a4e6cfa5db44e4abe5ac8e311efa","ParentId":"4abfff610473315c2fb7a6278c924948ba877fe6630ad197f734572b7636188e","RepoTags":["registry:0.8.1"],"Size":0,"VirtualSize":430388853}
|
148
|
-
,{"Created":1415863848,"Id":"4abfff610473315c2fb7a6278c924948ba877fe6630ad197f734572b7636188e","ParentId":"8b840022b4b5d60e0f66d7f72b992eb5b52e75dfdf1b8e9535d85df57236e7f5","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":430388853}
|
149
|
-
,{"Created":1415863847,"Id":"8b840022b4b5d60e0f66d7f72b992eb5b52e75dfdf1b8e9535d85df57236e7f5","ParentId":"11d3a913c69b0ea1c7d0df3708dfa8c789b68dc0884471cf862de1160c7eaaba","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":430388853}
|
150
|
-
,{"Created":1415863846,"Id":"11d3a913c69b0ea1c7d0df3708dfa8c789b68dc0884471cf862de1160c7eaaba","ParentId":"ae88728b911af97e928890b1c3b7b34dd25fb313f3b20cd73e532e2903d3d3b9","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":430388853}
|
151
|
-
,{"Created":1415863845,"Id":"ae88728b911af97e928890b1c3b7b34dd25fb313f3b20cd73e532e2903d3d3b9","ParentId":"16c101215b54ac2210fa62d54e0893323ae43e3d33b75119b1246a9dbbc1c7cf","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":23901352,"VirtualSize":430388853}
|
152
|
-
,{"Created":1415863690,"Id":"16c101215b54ac2210fa62d54e0893323ae43e3d33b75119b1246a9dbbc1c7cf","ParentId":"4c86ccffaf465d6688815f844bfadbb91a76df42043e629d208c5b75de31b891","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":8442747,"VirtualSize":406487501}
|
153
|
-
,{"Created":1415863686,"Id":"4c86ccffaf465d6688815f844bfadbb91a76df42043e629d208c5b75de31b891","ParentId":"e930198c27c4d790fd3eece5212c7ab1e6f272bfd21061c877b38696aa91ac27","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":73,"VirtualSize":398044754}
|
154
|
-
,{"Created":1415863685,"Id":"e930198c27c4d790fd3eece5212c7ab1e6f272bfd21061c877b38696aa91ac27","ParentId":"6ffb25246d5531cdbf15ac250dcf0d10fca544944eaf7386b4cff8577488f258","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1861177,"VirtualSize":398044681}
|
155
|
-
,{"Created":1415863681,"Id":"7e2db37c6564bf030e6c5af9725bf9f9a8196846e3a77a51e201fc97871e2e60","ParentId":"765d6041baaa23390504094a101b8f4e3433e99a03cb0f5cf20e3b2e3a2a7523","RepoTags":["registry:latest"],"Size":0,"VirtualSize":411649320}
|
156
|
-
,{"Created":1415863680,"Id":"765d6041baaa23390504094a101b8f4e3433e99a03cb0f5cf20e3b2e3a2a7523","ParentId":"c978e4c4261aec2dbc24c84427460afdaeaa64359ff4ed0ad6d4d00f0e0e0cd7","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":411649320}
|
157
|
-
,{"Created":1415863680,"Id":"c978e4c4261aec2dbc24c84427460afdaeaa64359ff4ed0ad6d4d00f0e0e0cd7","ParentId":"f846b2ccf2c5679f8d95014285a8e771441b5e5fc04670e0dfcb1242e985eb5e","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":411649320}
|
158
|
-
,{"Created":1415863679,"Id":"f846b2ccf2c5679f8d95014285a8e771441b5e5fc04670e0dfcb1242e985eb5e","ParentId":"7949c9f83980aab0ac80e3150c0d3f899556c68f35d8f6f9ca7c79ecb769b70e","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":411649320}
|
159
|
-
,{"Created":1415863679,"Id":"7949c9f83980aab0ac80e3150c0d3f899556c68f35d8f6f9ca7c79ecb769b70e","ParentId":"e8ca0e3bcd941b41c0c3dabebdb545f8331ddbb25257e6bc2cd3b6e6233d64f5","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":50796,"VirtualSize":411649320}
|
160
|
-
,{"Created":1415863677,"Id":"e8ca0e3bcd941b41c0c3dabebdb545f8331ddbb25257e6bc2cd3b6e6233d64f5","ParentId":"d242d0f728d9aaec3a24215bd3f6fc85a365f36bbb97727a84d5de7cc45792c4","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":23990121,"VirtualSize":411598524}
|
161
|
-
,{"Created":1415863518,"Id":"d242d0f728d9aaec3a24215bd3f6fc85a365f36bbb97727a84d5de7cc45792c4","ParentId":"b3b586534b2a68b97cec6e3d676fe1b2a1713565929c7e9ff331aad04eaf83cb","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":11550557,"VirtualSize":387608403}
|
162
|
-
,{"Created":1415863510,"Id":"b3b586534b2a68b97cec6e3d676fe1b2a1713565929c7e9ff331aad04eaf83cb","ParentId":"1ac06968b34e2b5b7c4e16488a4059f6493018f6744a57cf6a4fd2418f7acc4f","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":73,"VirtualSize":376057846}
|
163
|
-
,{"Created":1415863509,"Id":"1ac06968b34e2b5b7c4e16488a4059f6493018f6744a57cf6a4fd2418f7acc4f","ParentId":"7d49ba12f2de52ae8dfec8c661f4471e00d546b57adc3913cefc56f89b932e22","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1879606,"VirtualSize":376057773}
|
164
|
-
,{"Created":1415309161,"Id":"7d49ba12f2de52ae8dfec8c661f4471e00d546b57adc3913cefc56f89b932e22","ParentId":"5506de2b643be1e6febbf3b8a240760c6843244c41e12aa2f60ccbb7153d17f5","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":174920601,"VirtualSize":374178167}
|
165
|
-
,{"Created":1415306638,"Id":"f6fab3b798be3174f45aa1eb731f8182705555f89c9026d8c1ef230cbf8301dd","ParentId":"f10807909bc552de261ca7463effc467600c3dca68d8e7704425283a6911d2ca","RepoTags":["debian:wheezy"],"Size":0,"VirtualSize":85100505}
|
166
|
-
,{"Created":1415306636,"Id":"f10807909bc552de261ca7463effc467600c3dca68d8e7704425283a6911d2ca","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":85100505,"VirtualSize":85100505}
|
167
|
-
,{"Created":1414177799,"Id":"74dc9d28a649ac161e2a70d84190fe576f77f403f2565012f07bd68d638d291a","ParentId":"00bcc0fe318f87107ed0db582ed109899506cd2cde230505ea11a5c400e9ac7a","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":426413472}
|
168
|
-
,{"Created":1414177799,"Id":"c723c9b95ac05c29c3e96b0b02e8fcf12096d850306b776a17877ee061daf49f","ParentId":"74dc9d28a649ac161e2a70d84190fe576f77f403f2565012f07bd68d638d291a","RepoTags":["registry:0.7.3"],"Size":0,"VirtualSize":426413472}
|
169
|
-
,{"Created":1414177798,"Id":"96490e2b34642fabcdf6c4c157bd07be2caf4a71b9bd42c27386a1ff28d94d0c","ParentId":"1168ef7bd438745360d3506a6182ed73fec60bfea4181732dd75d6447016f012","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":426413472}
|
170
|
-
,{"Created":1414177798,"Id":"00bcc0fe318f87107ed0db582ed109899506cd2cde230505ea11a5c400e9ac7a","ParentId":"96490e2b34642fabcdf6c4c157bd07be2caf4a71b9bd42c27386a1ff28d94d0c","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":426413472}
|
171
|
-
,{"Created":1414177797,"Id":"1168ef7bd438745360d3506a6182ed73fec60bfea4181732dd75d6447016f012","ParentId":"a9c8dae074b96475a0775e199f79e456f0ee9a8288164e0b84fcc65ca163432e","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":20135062,"VirtualSize":426413472}
|
172
|
-
,{"Created":1414177667,"Id":"a9c8dae074b96475a0775e199f79e456f0ee9a8288164e0b84fcc65ca163432e","ParentId":"17b869d7773564fa1ca26ef3aa5b3a9e615dabd1a433a4a00848c0c9790096fe","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":8437018,"VirtualSize":406278410}
|
173
|
-
,{"Created":1414177663,"Id":"4627c1e0f2389a25dce44361dba566542607509b4fec86cc7fae9f6bb93dc2eb","ParentId":"6ffb25246d5531cdbf15ac250dcf0d10fca544944eaf7386b4cff8577488f258","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1657815,"VirtualSize":397841319}
|
174
|
-
,{"Created":1414177663,"Id":"17b869d7773564fa1ca26ef3aa5b3a9e615dabd1a433a4a00848c0c9790096fe","ParentId":"4627c1e0f2389a25dce44361dba566542607509b4fec86cc7fae9f6bb93dc2eb","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":73,"VirtualSize":397841392}
|
175
|
-
,{"Created":1414174623,"Id":"881f05ab63649f7d4b4ab048a2e01725c6a2d45f8866807bdb7766e28cdf224e","ParentId":"74583b71c35c28e06e11e0af0193351b852f3e9466a7b2c19a3add9a8528ee57","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":462038905}
|
176
|
-
,{"Created":1414174623,"Id":"bee70978874ce288a546770e762196041c90d5b0c0ef7e0c3d2e551d79417701","ParentId":"881f05ab63649f7d4b4ab048a2e01725c6a2d45f8866807bdb7766e28cdf224e","RepoTags":["registry:0.6.9"],"Size":0,"VirtualSize":462038905}
|
177
|
-
,{"Created":1414174623,"Id":"74583b71c35c28e06e11e0af0193351b852f3e9466a7b2c19a3add9a8528ee57","ParentId":"0909821a1551e63f5b169edaa3fa460134d86aa0ed5e6ed3acb4f50afa98002d","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":462038905}
|
178
|
-
,{"Created":1414174622,"Id":"0909821a1551e63f5b169edaa3fa460134d86aa0ed5e6ed3acb4f50afa98002d","ParentId":"ad702f54c76e4d5e1fb47f9efc355c871f7087ae772ca0fafeedad8185d17058","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":34915187,"VirtualSize":462038905}
|
179
|
-
,{"Created":1414174578,"Id":"ad702f54c76e4d5e1fb47f9efc355c871f7087ae772ca0fafeedad8185d17058","ParentId":"29b16b1bfd162dd7b35cb98a72ad44108361bede4e42679e01dd8aa15aa1fe0f","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":73,"VirtualSize":427123718}
|
180
|
-
,{"Created":1414174578,"Id":"29b16b1bfd162dd7b35cb98a72ad44108361bede4e42679e01dd8aa15aa1fe0f","ParentId":"f6d75c7fe58a905c14381100921562877d06a759acc70fbda6d3863796e0f003","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1613702,"VirtualSize":427123645}
|
181
|
-
,{"Created":1414126280,"Id":"6ffb25246d5531cdbf15ac250dcf0d10fca544944eaf7386b4cff8577488f258","ParentId":"9fe54074b35a3dd77eb2ffe2edf9226645e71fe292964b6d662a4010e695d9b8","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":41247201,"VirtualSize":396183504}
|
182
|
-
,{"Created":1414126257,"Id":"9fe54074b35a3dd77eb2ffe2edf9226645e71fe292964b6d662a4010e695d9b8","ParentId":"cd72e4fcfd16a48d617cc8fe6c692400b55c3dd013a357f485a08a820f1f75ab","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":135294909,"VirtualSize":354936303}
|
183
|
-
,{"Created":1414126216,"Id":"cd72e4fcfd16a48d617cc8fe6c692400b55c3dd013a357f485a08a820f1f75ab","ParentId":"57b5d5cb0bfe239f714f9a00439d7774f3b3359270f81ea74b41dbd7775eb46a","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":219641394}
|
184
|
-
,{"Created":1414126211,"Id":"57b5d5cb0bfe239f714f9a00439d7774f3b3359270f81ea74b41dbd7775eb46a","ParentId":"5506de2b643be1e6febbf3b8a240760c6843244c41e12aa2f60ccbb7153d17f5","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":20383828,"VirtualSize":219641394}
|
185
|
-
,{"Created":1414108439,"Id":"5506de2b643be1e6febbf3b8a240760c6843244c41e12aa2f60ccbb7153d17f5","ParentId":"22093c35d77bb609b9257ffb2640845ec05018e3d96cb939f68d0e19127f1723","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":199257566}
|
186
|
-
,{"Created":1414108438,"Id":"22093c35d77bb609b9257ffb2640845ec05018e3d96cb939f68d0e19127f1723","ParentId":"3680052c0f5cf8ecb86ddf4d6ed331c89cdb691554572a80ec04724cf6ee9436","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":6557772,"VirtualSize":199257566}
|
187
|
-
,{"Created":1414108414,"Id":"3680052c0f5cf8ecb86ddf4d6ed331c89cdb691554572a80ec04724cf6ee9436","ParentId":"e791be0477f28fd52f7609aed81733427d4cc0da620962d072e18ebcb32720a4","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1895,"VirtualSize":192699794}
|
188
|
-
,{"Created":1414108413,"Id":"e791be0477f28fd52f7609aed81733427d4cc0da620962d072e18ebcb32720a4","ParentId":"ccb62158e97068cc05b2f0927a8acde14c64d0d363cc448238357fe221a39699","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":192697899}
|
189
|
-
,{"Created":1414108412,"Id":"ccb62158e97068cc05b2f0927a8acde14c64d0d363cc448238357fe221a39699","ParentId":"d497ad3926c8997e1e0de74cdd5285489bb2c4acd6db15292e04bbab07047cd0","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":194791,"VirtualSize":192697899}
|
190
|
-
,{"Created":1413872056,"Id":"d497ad3926c8997e1e0de74cdd5285489bb2c4acd6db15292e04bbab07047cd0","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":192503108,"VirtualSize":192503108}
|
191
|
-
,{"Created":1412204406,"Id":"f6d75c7fe58a905c14381100921562877d06a759acc70fbda6d3863796e0f003","ParentId":"b083996910428bc46e25ad7c7c0d5dd84c8ced88fe0cceeafe01787d9abd8848","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":6614587,"VirtualSize":425509943}
|
192
|
-
,{"Created":1412204399,"Id":"b083996910428bc46e25ad7c7c0d5dd84c8ced88fe0cceeafe01787d9abd8848","ParentId":"c07f578f0911d8a712ae9e6909f8778fae749d0dabf65542aba8428c553388ac","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":10478,"VirtualSize":418895356}
|
193
|
-
,{"Created":1412204376,"Id":"c07f578f0911d8a712ae9e6909f8778fae749d0dabf65542aba8428c553388ac","ParentId":"195eb90b534950d334188c3627f860fbdf898e224d8a0a11ec54ff453175e081","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":234168708,"VirtualSize":418884878}
|
194
|
-
,{"Created":1412196370,"Id":"0dfaa2625e19b0925a9e0fc7ea2c2a7f4fd0d31ec1e9838d08bf1310965ffc75","ParentId":"df7546f9f060a2268024c8a230d8639878585defcc1bc6f79d2728a13957871b","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":5454693,"VirtualSize":5454693}
|
195
|
-
,{"Created":1412196370,"Id":"d415c60e5ea32875e4ddc7f7578bfaac3d59fb16e1334e705398b10ee91af801","ParentId":"0dfaa2625e19b0925a9e0fc7ea2c2a7f4fd0d31ec1e9838d08bf1310965ffc75","RepoTags":["busybox:ubuntu-12.04"],"Size":0,"VirtualSize":5454693}
|
196
|
-
,{"Created":1412196368,"Id":"e433a6c5b276a31aa38bf6eaba9cd1cfd69ea33f706ed72b3f20bafde5cd8644","ParentId":"df7546f9f060a2268024c8a230d8639878585defcc1bc6f79d2728a13957871b","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":2433303,"VirtualSize":2433303}
|
197
|
-
,{"Created":1412196368,"Id":"e72ac664f4f0c6a061ac4ef332557a70d69b0c624b6add35f1c181ff7fff2287","ParentId":"e433a6c5b276a31aa38bf6eaba9cd1cfd69ea33f706ed72b3f20bafde5cd8644","RepoTags":["busybox:buildroot-2014.02","busybox:latest"],"Size":0,"VirtualSize":2433303}
|
198
|
-
,{"Created":1412196367,"Id":"ad8766e8635d2ae9ddd77d32b8f0fa091fb88fffed77b3a8a240bdcdc6f5aa05","ParentId":"df7546f9f060a2268024c8a230d8639878585defcc1bc6f79d2728a13957871b","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":2489301,"VirtualSize":2489301}
|
199
|
-
,{"Created":1412196367,"Id":"df7546f9f060a2268024c8a230d8639878585defcc1bc6f79d2728a13957871b","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":0}
|
200
|
-
,{"Created":1412196367,"Id":"4b2909447dbef01f71ca476725c2dbb3af12de41aa2d7491d62c66678ede2294","ParentId":"ad8766e8635d2ae9ddd77d32b8f0fa091fb88fffed77b3a8a240bdcdc6f5aa05","RepoTags":["busybox:buildroot-2013.08.1"],"Size":0,"VirtualSize":2489301}
|
201
|
-
,{"Created":1403128415,"Id":"195eb90b534950d334188c3627f860fbdf898e224d8a0a11ec54ff453175e081","ParentId":"209ea56fda6dc2fb013e4d1e40cb678b2af91d1b54a71529f7df0bd867adc961","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":4411741,"VirtualSize":184716170}
|
202
|
-
,{"Created":1403128408,"Id":"209ea56fda6dc2fb013e4d1e40cb678b2af91d1b54a71529f7df0bd867adc961","ParentId":"0f4aac48388f5d65a725ccf8e7caada42f136026c566528a5ee9b02467dac90a","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":74007417,"VirtualSize":180304429}
|
203
|
-
,{"Created":1403128396,"Id":"fae16849ebe23b48f2bedcc08aaabd45408c62b531ffd8d3088592043d5e7364","ParentId":"f127542f0b6191e99bb015b672f5cf48fa79d974784ac8090b11aeac184eaaff","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":189999,"VirtualSize":106295125}
|
204
|
-
,{"Created":1403128396,"Id":"0f4aac48388f5d65a725ccf8e7caada42f136026c566528a5ee9b02467dac90a","ParentId":"fae16849ebe23b48f2bedcc08aaabd45408c62b531ffd8d3088592043d5e7364","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1887,"VirtualSize":106297012}
|
205
|
-
,{"Created":1403128393,"Id":"f127542f0b6191e99bb015b672f5cf48fa79d974784ac8090b11aeac184eaaff","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":106105126,"VirtualSize":106105126}
|
206
|
-
,{"Created":1371157430,"Id":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","ParentId":"","RepoTags":["scratch:latest"],"Size":0,"VirtualSize":0}
|
207
|
-
]
|
475
|
+
encoding: US-ASCII
|
476
|
+
string: ! '[{"Created":1423704342,"Id":"6f2142780c43bf7b5df2c309d2c0a293736d813ae9472da5eeffdee10bd25858","ParentId":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","RepoTags":["<USERNAME>/debian:from_dir"],"Size":27,"VirtualSize":85120800}
|
477
|
+
|
478
|
+
,{"Created":1422379591,"Id":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","ParentId":"30d39e59ffe287f29a41a3f8bd70734afc8728329e3289945cbdc5bbf07cd980","RepoTags":["debian:wheezy"],"Size":0,"VirtualSize":85120773}
|
479
|
+
|
480
|
+
,{"Created":1422379584,"Id":"30d39e59ffe287f29a41a3f8bd70734afc8728329e3289945cbdc5bbf07cd980","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":85120773,"VirtualSize":85120773}
|
481
|
+
|
482
|
+
,{"Created":1371157430,"Id":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","ParentId":"","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":0}
|
483
|
+
|
484
|
+
]'
|
208
485
|
http_version:
|
209
|
-
recorded_at:
|
486
|
+
recorded_at: Thu, 12 Feb 2015 01:25:44 GMT
|
210
487
|
- request:
|
211
488
|
method: get
|
212
|
-
uri:
|
489
|
+
uri: <DOCKER_HOST>/v1.16/images/6f2142780c43/json
|
213
490
|
body:
|
214
491
|
encoding: US-ASCII
|
215
492
|
string: ''
|
216
493
|
headers:
|
217
494
|
User-Agent:
|
218
|
-
- Swipely/Docker-API 1.
|
495
|
+
- Swipely/Docker-API 1.18.0
|
219
496
|
Content-Type:
|
220
497
|
- text/plain
|
221
498
|
response:
|
@@ -226,24 +503,27 @@ http_interactions:
|
|
226
503
|
Content-Type:
|
227
504
|
- application/json
|
228
505
|
Date:
|
229
|
-
-
|
506
|
+
- Thu, 12 Feb 2015 01:25:44 GMT
|
230
507
|
Content-Length:
|
231
|
-
- '
|
508
|
+
- '1655'
|
232
509
|
body:
|
233
|
-
encoding:
|
234
|
-
string:
|
235
|
-
|
510
|
+
encoding: US-ASCII
|
511
|
+
string: ! '{"Architecture":"amd64","Author":"","Checksum":"tarsum.dev+sha256:8b0dedde858684b002e77085ed16f9da8c3150af3322e12066e1567889925003","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":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"687769b6f79d528deccb8e32f67ea83eb32df4f1382960553d1c46f5057dc7ea","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop)
|
512
|
+
ADD dir:8a2fc36550254133492fa2224d204c55392f0c48c71b0f0dba20d71f741d89a3 in
|
513
|
+
/"],"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":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-02-12T01:25:42.263197717Z","DockerVersion":"1.4.1","Id":"6f2142780c43bf7b5df2c309d2c0a293736d813ae9472da5eeffdee10bd25858","Os":"linux","Parent":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","Size":27,"VirtualSize":85120800}
|
514
|
+
|
515
|
+
'
|
236
516
|
http_version:
|
237
|
-
recorded_at:
|
517
|
+
recorded_at: Thu, 12 Feb 2015 01:25:44 GMT
|
238
518
|
- request:
|
239
519
|
method: post
|
240
|
-
uri:
|
520
|
+
uri: <DOCKER_HOST>/v1.16/containers/4707690f34b24f564480f5fd67ecd6fdca6c4079af9197e724fa39071539814b/wait
|
241
521
|
body:
|
242
522
|
encoding: US-ASCII
|
243
523
|
string: ''
|
244
524
|
headers:
|
245
525
|
User-Agent:
|
246
|
-
- Swipely/Docker-API 1.
|
526
|
+
- Swipely/Docker-API 1.18.0
|
247
527
|
Content-Type:
|
248
528
|
- text/plain
|
249
529
|
response:
|
@@ -254,24 +534,25 @@ http_interactions:
|
|
254
534
|
Content-Type:
|
255
535
|
- application/json
|
256
536
|
Date:
|
257
|
-
-
|
537
|
+
- Thu, 12 Feb 2015 01:25:44 GMT
|
258
538
|
Content-Length:
|
259
539
|
- '17'
|
260
540
|
body:
|
261
|
-
encoding:
|
262
|
-
string:
|
263
|
-
|
541
|
+
encoding: US-ASCII
|
542
|
+
string: ! '{"StatusCode":0}
|
543
|
+
|
544
|
+
'
|
264
545
|
http_version:
|
265
|
-
recorded_at:
|
546
|
+
recorded_at: Thu, 12 Feb 2015 01:25:44 GMT
|
266
547
|
- request:
|
267
548
|
method: delete
|
268
|
-
uri:
|
549
|
+
uri: <DOCKER_HOST>/v1.16/containers/4707690f34b24f564480f5fd67ecd6fdca6c4079af9197e724fa39071539814b
|
269
550
|
body:
|
270
551
|
encoding: US-ASCII
|
271
552
|
string: ''
|
272
553
|
headers:
|
273
554
|
User-Agent:
|
274
|
-
- Swipely/Docker-API 1.
|
555
|
+
- Swipely/Docker-API 1.18.0
|
275
556
|
Content-Type:
|
276
557
|
- text/plain
|
277
558
|
response:
|
@@ -280,21 +561,21 @@ http_interactions:
|
|
280
561
|
message:
|
281
562
|
headers:
|
282
563
|
Date:
|
283
|
-
-
|
564
|
+
- Thu, 12 Feb 2015 01:25:45 GMT
|
284
565
|
body:
|
285
|
-
encoding:
|
566
|
+
encoding: US-ASCII
|
286
567
|
string: ''
|
287
568
|
http_version:
|
288
|
-
recorded_at:
|
569
|
+
recorded_at: Thu, 12 Feb 2015 01:25:45 GMT
|
289
570
|
- request:
|
290
571
|
method: delete
|
291
|
-
uri:
|
572
|
+
uri: <DOCKER_HOST>/v1.16/images/6f2142780c43?noprune=true
|
292
573
|
body:
|
293
574
|
encoding: US-ASCII
|
294
575
|
string: ''
|
295
576
|
headers:
|
296
577
|
User-Agent:
|
297
|
-
- Swipely/Docker-API 1.
|
578
|
+
- Swipely/Docker-API 1.18.0
|
298
579
|
Content-Type:
|
299
580
|
- text/plain
|
300
581
|
response:
|
@@ -305,15 +586,16 @@ http_interactions:
|
|
305
586
|
Content-Type:
|
306
587
|
- application/json
|
307
588
|
Date:
|
308
|
-
-
|
589
|
+
- Thu, 12 Feb 2015 01:25:45 GMT
|
309
590
|
Content-Length:
|
310
|
-
- '
|
591
|
+
- '121'
|
311
592
|
body:
|
312
|
-
encoding:
|
313
|
-
string:
|
314
|
-
|
315
|
-
,{"Deleted":"
|
316
|
-
|
593
|
+
encoding: US-ASCII
|
594
|
+
string: ! '[{"Untagged":"<USERNAME>/debian:from_dir"}
|
595
|
+
|
596
|
+
,{"Deleted":"6f2142780c43bf7b5df2c309d2c0a293736d813ae9472da5eeffdee10bd25858"}
|
597
|
+
|
598
|
+
]'
|
317
599
|
http_version:
|
318
|
-
recorded_at:
|
319
|
-
recorded_with: VCR 2.9.
|
600
|
+
recorded_at: Thu, 12 Feb 2015 01:25:45 GMT
|
601
|
+
recorded_with: VCR 2.9.2
|