docker-api 1.18.0 → 1.19.0

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