docker-api 1.23.0 → 1.24.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (109) hide show
  1. checksums.yaml +4 -4
  2. data/.cane +1 -1
  3. data/.rspec +1 -0
  4. data/.travis.yml +7 -6
  5. data/Dockerfile +2 -0
  6. data/README.md +5 -5
  7. data/Rakefile +26 -31
  8. data/TESTING.md +7 -19
  9. data/docker-api.gemspec +0 -1
  10. data/lib/docker/image.rb +6 -2
  11. data/lib/docker/version.rb +1 -1
  12. data/spec/docker/container_spec.rb +72 -92
  13. data/spec/docker/event_spec.rb +33 -23
  14. data/spec/docker/exec_spec.rb +9 -24
  15. data/spec/docker/image_spec.rb +75 -81
  16. data/spec/docker_spec.rb +21 -32
  17. metadata +4 -200
  18. data/spec/support/vcr.rb +0 -14
  19. data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +0 -32
  20. data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +0 -39
  21. data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +0 -39
  22. data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +0 -34
  23. data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +0 -125
  24. data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +0 -125
  25. data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +0 -125
  26. data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +0 -165
  27. data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +0 -165
  28. data/spec/vcr/Docker_Container/_copy/when_the_file_does_not_exist/raises_an_error.yml +0 -136
  29. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +0 -241
  30. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +0 -198
  31. data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +0 -84
  32. data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist/when_the_HTTP_request_returns_a_200/sets_the_id.yml +0 -55
  33. data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +0 -85
  34. data/spec/vcr/Docker_Container/_exec/when_detach_is_true/returns_the_Docker_Exec_object.yml +0 -180
  35. data/spec/vcr/Docker_Container/_exec/when_passed_a_block/streams_the_stdout/stderr_messages.yml +0 -183
  36. data/spec/vcr/Docker_Container/_exec/when_passed_only_a_command/returns_the_stdout/stderr_messages_and_exit_code.yml +0 -183
  37. data/spec/vcr/Docker_Container/_exec/when_stdin_object_is_passed/returns_the_stdout/stderr_messages.yml +0 -101
  38. data/spec/vcr/Docker_Container/_exec/when_tty_is_true/returns_the_raw_stdout/stderr_output.yml +0 -182
  39. data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +0 -333
  40. data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +0 -84
  41. data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +0 -84
  42. data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +0 -164
  43. data/spec/vcr/Docker_Container/_kill/with_a_kill_signal/kills_the_container.yml +0 -257
  44. data/spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/raises_a_client_error.yml +0 -171
  45. data/spec/vcr/Docker_Container/_logs/when_selecting_stdout/returns_blank_logs.yml +0 -82
  46. data/spec/vcr/Docker_Container/_pause/pauses_the_container.yml +0 -176
  47. data/spec/vcr/Docker_Container/_rename/renames_the_container.yml +0 -149
  48. data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +0 -243
  49. data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +0 -107
  50. 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 +0 -392
  51. data/spec/vcr/Docker_Container/_start/starts_the_container.yml +0 -140
  52. data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +0 -164
  53. data/spec/vcr/Docker_Container/_streaming_logs/when_not_selecting_any_stream/raises_a_client_error.yml +0 -217
  54. data/spec/vcr/Docker_Container/_streaming_logs/when_passing_a_block/returns_hello_.yml +0 -131
  55. data/spec/vcr/Docker_Container/_streaming_logs/when_selecting_stdout/returns_blank_logs.yml +0 -131
  56. data/spec/vcr/Docker_Container/_streaming_logs/when_using_a_tty/returns_hello_.yml +0 -131
  57. data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +0 -194
  58. data/spec/vcr/Docker_Container/_unpause/unpauses_the_container.yml +0 -176
  59. data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +0 -107
  60. data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +0 -107
  61. data/spec/vcr/Docker_Exec/_create/when_the_HTTP_request_returns_a_201/sets_the_id.yml +0 -130
  62. data/spec/vcr/Docker_Exec/_json/returns_the_description_as_a_Hash.yml +0 -207
  63. data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/block_is_passed/attaches_to_the_stream.yml +0 -182
  64. data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/returns_the_stdout_and_stderr_messages.yml +0 -182
  65. data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_true/returns_empty_stdout/stderr_messages_with_exitcode.yml +0 -180
  66. data/spec/vcr/Docker_Exec/_start_/when_the_HTTP_request_returns_a_201/starts_the_exec_instance.yml +0 -180
  67. data/spec/vcr/Docker_Exec/_start_/when_the_command_has_already_run/raises_an_error.yml +0 -180
  68. data/spec/vcr/Docker_Exec/_start_/when_wait_set_long_time_value/returns_empty_stdout_and_stderr_messages_with_exitcode.yml +0 -189
  69. data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +0 -111
  70. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +0 -75
  71. 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 +0 -219
  72. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +0 -75
  73. data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +0 -79
  74. 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 +0 -194
  75. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_a_block_capturing_build_output/uses_a_cached_version_the_second_time/calls_the_block_and_passes_build_output.yml +0 -96
  76. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_X-Registry-Config_header.yml +0 -194
  77. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +0 -562
  78. 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 +0 -601
  79. 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 +0 -65
  80. data/spec/vcr/Docker_Image/_create/with_a_block_capturing_create_output/calls_the_block_and_passes_build_output.yml +0 -38
  81. data/spec/vcr/Docker_Image/_exist_/when_the_image_does_exist/returns_true.yml +0 -33
  82. data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +0 -33
  83. data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +0 -66
  84. data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_invalid/raises_an_error.yml +0 -265
  85. data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_valid/returns_an_Image.yml +0 -303
  86. data/spec/vcr/Docker_Image/_import/when_the_file_does_exist/creates_the_Image.yml +0 -59
  87. data/spec/vcr/Docker_Image/_insert_local/when_a_direcory_is_passed/inserts_the_directory.yml +0 -1469
  88. data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +0 -244
  89. data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +0 -224
  90. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +0 -289
  91. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +0 -32
  92. data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +0 -366
  93. data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +0 -62
  94. data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +0 -246
  95. data/spec/vcr/Docker_Image/_push/streams_output_from_push.yml +0 -246
  96. 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 +0 -382
  97. data/spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml +0 -264
  98. data/spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml +0 -141
  99. data/spec/vcr/Docker_Image/_refresh_/with_an_explicit_connection/updates_using_the_provided_connection.yml +0 -62
  100. data/spec/vcr/Docker_Image/_remove/when_no_name_is_given/removes_the_Image.yml +0 -652
  101. data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +0 -162
  102. data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +0 -162
  103. 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 +0 -162
  104. 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 +0 -63
  105. data/spec/vcr/Docker_Image/_save/calls_the_class_method.yml +0 -67
  106. data/spec/vcr/Docker_Image/_save/when_a_filename_is_specified/exports_tarball_of_image_to_specified_file.yml +0 -176
  107. data/spec/vcr/Docker_Image/_save/when_no_filename_is_specified/returns_raw_binary_data_as_string.yml +0 -176
  108. data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +0 -79
  109. data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +0 -88
@@ -1,562 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: post
5
- uri: <DOCKER_HOST>/v1.16/build
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- User-Agent:
11
- - Swipely/Docker-API 1.18.0
12
- Content-Type:
13
- - application/tar
14
- Transfer-Encoding:
15
- - chunked
16
- X-Registry-Config:
17
- - eyJjb25maWdzIjp7IiI6eyJ1c2VybmFtZSI6IiIsInBhc3N3b3JkIjoiIiwiZW1haWwiOiIifX19
18
- response:
19
- status:
20
- code: 200
21
- message:
22
- headers:
23
- Content-Type:
24
- - application/json
25
- Date:
26
- - Thu, 12 Feb 2015 01:23:34 GMT
27
- body:
28
- encoding: US-ASCII
29
- string: ! "{\"stream\":\"Step 0 : FROM debian:wheezy\\n\"}\r\n{\"status\":\"The
30
- image you are pulling has been verified\",\"id\":\"debian:wheezy\"}\r\n{\"status\":\"Pulling
31
- fs layer\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Pulling
32
- fs layer\",\"progressDetail\":{},\"id\":\"30d39e59ffe2\"}{\"status\":\"Pulling
33
- fs layer\",\"progressDetail\":{},\"id\":\"c90d655b99b2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1423704215},\"progress\":\"[==================================================\\u003e]
34
- 1.024 kB/1.024 kB\",\"id\":\"c90d655b99b2\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"c90d655b99b2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1423704215},\"progress\":\"[==================================================\\u003e]
35
- 1.024 kB/1.024 kB\",\"id\":\"511136ea3c5a\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1423704215},\"progress\":\"[==================================================\\u003e]
36
- 1.024 kB/1.024 kB\",\"id\":\"511136ea3c5a\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":539628,\"total\":90081280,\"start\":1423704215},\"progress\":\"[\\u003e
37
- \ ] 539.6 kB/90.08 MB 1m44s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1080300,\"total\":90081280,\"start\":1423704215},\"progress\":\"[\\u003e
38
- \ ] 1.08 MB/90.08 MB 1m9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1616876,\"total\":90081280,\"start\":1423704215},\"progress\":\"[\\u003e
39
- \ ] 1.617 MB/90.08 MB 53s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2145260,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=\\u003e
40
- \ ] 2.145 MB/90.08 MB 44s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2685932,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=\\u003e
41
- \ ] 2.686 MB/90.08 MB 38s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3222508,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=\\u003e
42
- \ ] 3.223 MB/90.08 MB 34s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3763180,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==\\u003e
43
- \ ] 3.763 MB/90.08 MB 31s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4291564,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==\\u003e
44
- \ ] 4.292 MB/90.08 MB 29s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4824044,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==\\u003e
45
- \ ] 4.824 MB/90.08 MB 26s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5352428,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==\\u003e
46
- \ ] 5.352 MB/90.08 MB 25s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5884908,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===\\u003e
47
- \ ] 5.885 MB/90.08 MB 23s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6421484,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===\\u003e
48
- \ ] 6.421 MB/90.08 MB 22s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6962156,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===\\u003e
49
- \ ] 6.962 MB/90.08 MB 21s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7502828,\"total\":90081280,\"start\":1423704215},\"progress\":\"[====\\u003e
50
- \ ] 7.503 MB/90.08 MB 20s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8043500,\"total\":90081280,\"start\":1423704215},\"progress\":\"[====\\u003e
51
- \ ] 8.043 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8571884,\"total\":90081280,\"start\":1423704215},\"progress\":\"[====\\u003e
52
- \ ] 8.572 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9100268,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=====\\u003e
53
- \ ] 9.1 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9632748,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=====\\u003e
54
- \ ] 9.633 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10173420,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=====\\u003e
55
- \ ] 10.17 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10709996,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=====\\u003e
56
- \ ] 10.71 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11238380,\"total\":90081280,\"start\":1423704215},\"progress\":\"[======\\u003e
57
- \ ] 11.24 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11770860,\"total\":90081280,\"start\":1423704215},\"progress\":\"[======\\u003e
58
- \ ] 11.77 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12299244,\"total\":90081280,\"start\":1423704215},\"progress\":\"[======\\u003e
59
- \ ] 12.3 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12827628,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=======\\u003e
60
- \ ] 12.83 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13368300,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=======\\u003e
61
- \ ] 13.37 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13896684,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=======\\u003e
62
- \ ] 13.9 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14425068,\"total\":90081280,\"start\":1423704215},\"progress\":\"[========\\u003e
63
- \ ] 14.43 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14961644,\"total\":90081280,\"start\":1423704215},\"progress\":\"[========\\u003e
64
- \ ] 14.96 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15490028,\"total\":90081280,\"start\":1423704215},\"progress\":\"[========\\u003e
65
- \ ] 15.49 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16022508,\"total\":90081280,\"start\":1423704215},\"progress\":\"[========\\u003e
66
- \ ] 16.02 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16550892,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=========\\u003e
67
- \ ] 16.55 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17083372,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=========\\u003e
68
- \ ] 17.08 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17619948,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=========\\u003e
69
- \ ] 17.62 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18152428,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==========\\u003e
70
- \ ] 18.15 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18693100,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==========\\u003e
71
- \ ] 18.69 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19233772,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==========\\u003e
72
- \ ] 19.23 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19766252,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==========\\u003e
73
- \ ] 19.77 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20302828,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===========\\u003e
74
- \ ] 20.3 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20835308,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===========\\u003e
75
- \ ] 20.84 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21375980,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===========\\u003e
76
- \ ] 21.38 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21908460,\"total\":90081280,\"start\":1423704215},\"progress\":\"[============\\u003e
77
- \ ] 21.91 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22440940,\"total\":90081280,\"start\":1423704215},\"progress\":\"[============\\u003e
78
- \ ] 22.44 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22977516,\"total\":90081280,\"start\":1423704215},\"progress\":\"[============\\u003e
79
- \ ] 22.98 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23514092,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=============\\u003e
80
- \ ] 23.51 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24050668,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=============\\u003e
81
- \ ] 24.05 MB/90.08 MB 18s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24583148,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=============\\u003e
82
- \ ] 24.58 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25115628,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=============\\u003e
83
- \ ] 25.12 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25644012,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==============\\u003e
84
- \ ] 25.64 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26180588,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==============\\u003e
85
- \ ] 26.18 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26713068,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==============\\u003e
86
- \ ] 26.71 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27245548,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===============\\u003e
87
- \ ] 27.25 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27782124,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===============\\u003e
88
- \ ] 27.78 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28310508,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===============\\u003e
89
- \ ] 28.31 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28851180,\"total\":90081280,\"start\":1423704215},\"progress\":\"[================\\u003e
90
- \ ] 28.85 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29391852,\"total\":90081280,\"start\":1423704215},\"progress\":\"[================\\u003e
91
- \ ] 29.39 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29920236,\"total\":90081280,\"start\":1423704215},\"progress\":\"[================\\u003e
92
- \ ] 29.92 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30448620,\"total\":90081280,\"start\":1423704215},\"progress\":\"[================\\u003e
93
- \ ] 30.45 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30981100,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=================\\u003e
94
- \ ] 30.98 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31517676,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=================\\u003e
95
- \ ] 31.52 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32046060,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=================\\u003e
96
- \ ] 32.05 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32574444,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==================\\u003e
97
- \ ] 32.57 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33106924,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==================\\u003e
98
- \ ] 33.11 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33639404,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==================\\u003e
99
- \ ] 33.64 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34167788,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==================\\u003e
100
- \ ] 34.17 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34700268,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===================\\u003e
101
- \ ] 34.7 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35240940,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===================\\u003e
102
- \ ] 35.24 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35773420,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===================\\u003e
103
- \ ] 35.77 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36305900,\"total\":90081280,\"start\":1423704215},\"progress\":\"[====================\\u003e
104
- \ ] 36.31 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36846572,\"total\":90081280,\"start\":1423704215},\"progress\":\"[====================\\u003e
105
- \ ] 36.85 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37379052,\"total\":90081280,\"start\":1423704215},\"progress\":\"[====================\\u003e
106
- \ ] 37.38 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37911532,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=====================\\u003e
107
- \ ] 37.91 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38448108,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=====================\\u003e
108
- \ ] 38.45 MB/90.08 MB 15s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38984684,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=====================\\u003e
109
- \ ] 38.98 MB/90.08 MB 14s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39513068,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=====================\\u003e
110
- \ ] 39.51 MB/90.08 MB 14s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40041452,\"total\":90081280,\"start\":1423704215},\"progress\":\"[======================\\u003e
111
- \ ] 40.04 MB/90.08 MB 14s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40569836,\"total\":90081280,\"start\":1423704215},\"progress\":\"[======================\\u003e
112
- \ ] 40.57 MB/90.08 MB 14s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41106412,\"total\":90081280,\"start\":1423704215},\"progress\":\"[======================\\u003e
113
- \ ] 41.11 MB/90.08 MB 14s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41634796,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=======================\\u003e
114
- \ ] 41.63 MB/90.08 MB 14s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42167276,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=======================\\u003e
115
- \ ] 42.17 MB/90.08 MB 14s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42699756,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=======================\\u003e
116
- \ ] 42.7 MB/90.08 MB 14s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43232236,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=======================\\u003e
117
- \ ] 43.23 MB/90.08 MB 14s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43764716,\"total\":90081280,\"start\":1423704215},\"progress\":\"[========================\\u003e
118
- \ ] 43.76 MB/90.08 MB 13s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44293100,\"total\":90081280,\"start\":1423704215},\"progress\":\"[========================\\u003e
119
- \ ] 44.29 MB/90.08 MB 13s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44825580,\"total\":90081280,\"start\":1423704215},\"progress\":\"[========================\\u003e
120
- \ ] 44.83 MB/90.08 MB 13s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45366252,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=========================\\u003e
121
- \ ] 45.37 MB/90.08 MB 13s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45902828,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=========================\\u003e
122
- \ ] 45.9 MB/90.08 MB 13s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46439404,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=========================\\u003e
123
- \ ] 46.44 MB/90.08 MB 13s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46971884,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==========================\\u003e
124
- \ ] 46.97 MB/90.08 MB 13s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47508460,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==========================\\u003e
125
- \ ] 47.51 MB/90.08 MB 12s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48045036,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==========================\\u003e
126
- \ ] 48.05 MB/90.08 MB 12s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48581612,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==========================\\u003e
127
- \ ] 48.58 MB/90.08 MB 12s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49118188,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===========================\\u003e
128
- \ ] 49.12 MB/90.08 MB 12s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49658860,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===========================\\u003e
129
- \ ] 49.66 MB/90.08 MB 12s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50191340,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===========================\\u003e
130
- \ ] 50.19 MB/90.08 MB 12s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50723820,\"total\":90081280,\"start\":1423704215},\"progress\":\"[============================\\u003e
131
- \ ] 50.72 MB/90.08 MB 12s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51264492,\"total\":90081280,\"start\":1423704215},\"progress\":\"[============================\\u003e
132
- \ ] 51.26 MB/90.08 MB 11s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51805164,\"total\":90081280,\"start\":1423704215},\"progress\":\"[============================\\u003e
133
- \ ] 51.81 MB/90.08 MB 11s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52345836,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=============================\\u003e
134
- \ ] 52.35 MB/90.08 MB 11s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52886508,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=============================\\u003e
135
- \ ] 52.89 MB/90.08 MB 11s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53423084,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=============================\\u003e
136
- \ ] 53.42 MB/90.08 MB 11s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53951468,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=============================\\u003e
137
- \ ] 53.95 MB/90.08 MB 11s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54492140,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==============================\\u003e
138
- \ ] 54.49 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55028716,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==============================\\u003e
139
- \ ] 55.03 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55561196,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==============================\\u003e
140
- \ ] 55.56 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56089580,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===============================\\u003e
141
- \ ] 56.09 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56622060,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===============================\\u003e
142
- \ ] 56.62 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57150444,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===============================\\u003e
143
- \ ] 57.15 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57687020,\"total\":90081280,\"start\":1423704215},\"progress\":\"[================================\\u003e
144
- \ ] 57.69 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58227692,\"total\":90081280,\"start\":1423704215},\"progress\":\"[================================\\u003e
145
- \ ] 58.23 MB/90.08 MB 9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58768364,\"total\":90081280,\"start\":1423704215},\"progress\":\"[================================\\u003e
146
- \ ] 58.77 MB/90.08 MB 9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59304940,\"total\":90081280,\"start\":1423704215},\"progress\":\"[================================\\u003e
147
- \ ] 59.3 MB/90.08 MB 9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59833324,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=================================\\u003e
148
- \ ] 59.83 MB/90.08 MB 9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60361708,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=================================\\u003e
149
- \ ] 60.36 MB/90.08 MB 9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60898284,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=================================\\u003e
150
- \ ] 60.9 MB/90.08 MB 9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61426668,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==================================\\u003e
151
- \ ] 61.43 MB/90.08 MB 8s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61963244,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==================================\\u003e
152
- \ ] 61.96 MB/90.08 MB 8s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62495724,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==================================\\u003e
153
- \ ] 62.5 MB/90.08 MB 8s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63032300,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==================================\\u003e
154
- \ ] 63.03 MB/90.08 MB 8s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63560684,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===================================\\u003e
155
- \ ] 63.56 MB/90.08 MB 8s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64089068,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===================================\\u003e
156
- \ ] 64.09 MB/90.08 MB 8s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64617452,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===================================\\u003e
157
- \ ] 64.62 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65158124,\"total\":90081280,\"start\":1423704215},\"progress\":\"[====================================\\u003e
158
- \ ] 65.16 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65690604,\"total\":90081280,\"start\":1423704215},\"progress\":\"[====================================\\u003e
159
- \ ] 65.69 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66218988,\"total\":90081280,\"start\":1423704215},\"progress\":\"[====================================\\u003e
160
- \ ] 66.22 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66747372,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=====================================\\u003e
161
- \ ] 66.75 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67275756,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=====================================\\u003e
162
- \ ] 67.28 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67808236,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=====================================\\u003e
163
- \ ] 67.81 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68340716,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=====================================\\u003e
164
- \ ] 68.34 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68869100,\"total\":90081280,\"start\":1423704215},\"progress\":\"[======================================\\u003e
165
- \ ] 68.87 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69401580,\"total\":90081280,\"start\":1423704215},\"progress\":\"[======================================\\u003e
166
- \ ] 69.4 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69942252,\"total\":90081280,\"start\":1423704215},\"progress\":\"[======================================\\u003e
167
- \ ] 69.94 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70470636,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=======================================\\u003e
168
- \ ] 70.47 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71007212,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=======================================\\u003e
169
- \ ] 71.01 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71535596,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=======================================\\u003e
170
- \ ] 71.54 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72076268,\"total\":90081280,\"start\":1423704215},\"progress\":\"[========================================\\u003e
171
- \ ] 72.08 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72612844,\"total\":90081280,\"start\":1423704215},\"progress\":\"[========================================\\u003e
172
- \ ] 72.61 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73141228,\"total\":90081280,\"start\":1423704215},\"progress\":\"[========================================\\u003e
173
- \ ] 73.14 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73673708,\"total\":90081280,\"start\":1423704215},\"progress\":\"[========================================\\u003e
174
- \ ] 73.67 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74202092,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=========================================\\u003e
175
- \ ] 74.2 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74742764,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=========================================\\u003e
176
- \ ] 74.74 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75275244,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=========================================\\u003e
177
- \ ] 75.28 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75803628,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==========================================\\u003e
178
- \ ] 75.8 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76332012,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==========================================\\u003e
179
- \ ] 76.33 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76872684,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==========================================\\u003e
180
- \ ] 76.87 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77413356,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==========================================\\u003e
181
- \ ] 77.41 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77941740,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===========================================\\u003e
182
- \ ] 77.94 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78470124,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===========================================\\u003e
183
- \ ] 78.47 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79010796,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===========================================\\u003e
184
- \ ] 79.01 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79543276,\"total\":90081280,\"start\":1423704215},\"progress\":\"[============================================\\u003e
185
- \ ] 79.54 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80075756,\"total\":90081280,\"start\":1423704215},\"progress\":\"[============================================\\u003e
186
- \ ] 80.08 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80616428,\"total\":90081280,\"start\":1423704215},\"progress\":\"[============================================\\u003e
187
- \ ] 80.62 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81148908,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=============================================\\u003e
188
- \ ] 81.15 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81689580,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=============================================\\u003e
189
- \ ] 81.69 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82222060,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=============================================\\u003e
190
- \ ] 82.22 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82758636,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=============================================\\u003e
191
- \ ] 82.76 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83295212,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==============================================\\u003e
192
- \ ] 83.3 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83835884,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==============================================\\u003e
193
- \ ] 83.84 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84364268,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==============================================\\u003e
194
- \ ] 84.36 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84896748,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===============================================\\u003e
195
- \ ] 84.9 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85437420,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===============================================\\u003e
196
- \ ] 85.44 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85965804,\"total\":90081280,\"start\":1423704215},\"progress\":\"[===============================================\\u003e
197
- \ ] 85.97 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86502380,\"total\":90081280,\"start\":1423704215},\"progress\":\"[================================================\\u003e
198
- \ ] 86.5 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87030764,\"total\":90081280,\"start\":1423704215},\"progress\":\"[================================================\\u003e
199
- \ ] 87.03 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87559148,\"total\":90081280,\"start\":1423704215},\"progress\":\"[================================================\\u003e
200
- \ ] 87.56 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88095724,\"total\":90081280,\"start\":1423704215},\"progress\":\"[================================================\\u003e
201
- \ ] 88.1 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88624108,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=================================================\\u003e
202
- ] 88.62 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89156588,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=================================================\\u003e
203
- ] 89.16 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89693164,\"total\":90081280,\"start\":1423704215},\"progress\":\"[=================================================\\u003e
204
- ] 89.69 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90081280,\"total\":90081280,\"start\":1423704215},\"progress\":\"[==================================================\\u003e]
205
- 90.08 MB/90.08 MB\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":557056,\"total\":90081280,\"start\":1423704243},\"progress\":\"[\\u003e
206
- \ ] 557.1 kB/90.08 MB 2m40s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1114112,\"total\":90081280,\"start\":1423704243},\"progress\":\"[\\u003e
207
- \ ] 1.114 MB/90.08 MB 1m19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1671168,\"total\":90081280,\"start\":1423704243},\"progress\":\"[\\u003e
208
- \ ] 1.671 MB/90.08 MB 53s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2228224,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=\\u003e
209
- \ ] 2.228 MB/90.08 MB 39s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2785280,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=\\u003e
210
- \ ] 2.785 MB/90.08 MB 31s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3342336,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=\\u003e
211
- \ ] 3.342 MB/90.08 MB 26s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3899392,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==\\u003e
212
- \ ] 3.899 MB/90.08 MB 22s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4456448,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==\\u003e
213
- \ ] 4.456 MB/90.08 MB 19s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5013504,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==\\u003e
214
- \ ] 5.014 MB/90.08 MB 17s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5570560,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===\\u003e
215
- \ ] 5.571 MB/90.08 MB 16s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6127616,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===\\u003e
216
- \ ] 6.128 MB/90.08 MB 14s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6684672,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===\\u003e
217
- \ ] 6.685 MB/90.08 MB 13s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7241728,\"total\":90081280,\"start\":1423704243},\"progress\":\"[====\\u003e
218
- \ ] 7.242 MB/90.08 MB 12s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7798784,\"total\":90081280,\"start\":1423704243},\"progress\":\"[====\\u003e
219
- \ ] 7.799 MB/90.08 MB 11s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8355840,\"total\":90081280,\"start\":1423704243},\"progress\":\"[====\\u003e
220
- \ ] 8.356 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8912896,\"total\":90081280,\"start\":1423704243},\"progress\":\"[====\\u003e
221
- \ ] 8.913 MB/90.08 MB 10s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9469952,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=====\\u003e
222
- \ ] 9.47 MB/90.08 MB 9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":10027008,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=====\\u003e
223
- \ ] 10.03 MB/90.08 MB 9s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":10584064,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=====\\u003e
224
- \ ] 10.58 MB/90.08 MB 8s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11141120,\"total\":90081280,\"start\":1423704243},\"progress\":\"[======\\u003e
225
- \ ] 11.14 MB/90.08 MB 8s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11698176,\"total\":90081280,\"start\":1423704243},\"progress\":\"[======\\u003e
226
- \ ] 11.7 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12255232,\"total\":90081280,\"start\":1423704243},\"progress\":\"[======\\u003e
227
- \ ] 12.26 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12812288,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=======\\u003e
228
- \ ] 12.81 MB/90.08 MB 7s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":13369344,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=======\\u003e
229
- \ ] 13.37 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":13926400,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=======\\u003e
230
- \ ] 13.93 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":14483456,\"total\":90081280,\"start\":1423704243},\"progress\":\"[========\\u003e
231
- \ ] 14.48 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15040512,\"total\":90081280,\"start\":1423704243},\"progress\":\"[========\\u003e
232
- \ ] 15.04 MB/90.08 MB 6s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15597568,\"total\":90081280,\"start\":1423704243},\"progress\":\"[========\\u003e
233
- \ ] 15.6 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16154624,\"total\":90081280,\"start\":1423704243},\"progress\":\"[========\\u003e
234
- \ ] 16.15 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16711680,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=========\\u003e
235
- \ ] 16.71 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17268736,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=========\\u003e
236
- \ ] 17.27 MB/90.08 MB 5s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17825792,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=========\\u003e
237
- \ ] 17.83 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":18382848,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==========\\u003e
238
- \ ] 18.38 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":18939904,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==========\\u003e
239
- \ ] 18.94 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":19496960,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==========\\u003e
240
- \ ] 19.5 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":20054016,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===========\\u003e
241
- \ ] 20.05 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":20611072,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===========\\u003e
242
- \ ] 20.61 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21168128,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===========\\u003e
243
- \ ] 21.17 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21725184,\"total\":90081280,\"start\":1423704243},\"progress\":\"[============\\u003e
244
- \ ] 21.73 MB/90.08 MB 4s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22282240,\"total\":90081280,\"start\":1423704243},\"progress\":\"[============\\u003e
245
- \ ] 22.28 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22839296,\"total\":90081280,\"start\":1423704243},\"progress\":\"[============\\u003e
246
- \ ] 22.84 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23396352,\"total\":90081280,\"start\":1423704243},\"progress\":\"[============\\u003e
247
- \ ] 23.4 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23953408,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=============\\u003e
248
- \ ] 23.95 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24510464,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=============\\u003e
249
- \ ] 24.51 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25067520,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=============\\u003e
250
- \ ] 25.07 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25624576,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==============\\u003e
251
- \ ] 25.62 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26181632,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==============\\u003e
252
- \ ] 26.18 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26738688,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==============\\u003e
253
- \ ] 26.74 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":27295744,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===============\\u003e
254
- \ ] 27.3 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":27852800,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===============\\u003e
255
- \ ] 27.85 MB/90.08 MB 3s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":28409856,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===============\\u003e
256
- \ ] 28.41 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":28966912,\"total\":90081280,\"start\":1423704243},\"progress\":\"[================\\u003e
257
- \ ] 28.97 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":29523968,\"total\":90081280,\"start\":1423704243},\"progress\":\"[================\\u003e
258
- \ ] 29.52 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30081024,\"total\":90081280,\"start\":1423704243},\"progress\":\"[================\\u003e
259
- \ ] 30.08 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30638080,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=================\\u003e
260
- \ ] 30.64 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":31195136,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=================\\u003e
261
- \ ] 31.2 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":31752192,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=================\\u003e
262
- \ ] 31.75 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32309248,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=================\\u003e
263
- \ ] 32.31 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32866304,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==================\\u003e
264
- \ ] 32.87 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":33423360,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==================\\u003e
265
- \ ] 33.42 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":33980416,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==================\\u003e
266
- \ ] 33.98 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":34537472,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===================\\u003e
267
- \ ] 34.54 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":35094528,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===================\\u003e
268
- \ ] 35.09 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":35651584,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===================\\u003e
269
- \ ] 35.65 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":36208640,\"total\":90081280,\"start\":1423704243},\"progress\":\"[====================\\u003e
270
- \ ] 36.21 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":36765696,\"total\":90081280,\"start\":1423704243},\"progress\":\"[====================\\u003e
271
- \ ] 36.77 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":37322752,\"total\":90081280,\"start\":1423704243},\"progress\":\"[====================\\u003e
272
- \ ] 37.32 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":37879808,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=====================\\u003e
273
- \ ] 37.88 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":38436864,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=====================\\u003e
274
- \ ] 38.44 MB/90.08 MB 2s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":38993920,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=====================\\u003e
275
- \ ] 38.99 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":39550976,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=====================\\u003e
276
- \ ] 39.55 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":40108032,\"total\":90081280,\"start\":1423704243},\"progress\":\"[======================\\u003e
277
- \ ] 40.11 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":40665088,\"total\":90081280,\"start\":1423704243},\"progress\":\"[======================\\u003e
278
- \ ] 40.67 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":41222144,\"total\":90081280,\"start\":1423704243},\"progress\":\"[======================\\u003e
279
- \ ] 41.22 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":41779200,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=======================\\u003e
280
- \ ] 41.78 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":42336256,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=======================\\u003e
281
- \ ] 42.34 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":42893312,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=======================\\u003e
282
- \ ] 42.89 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":43450368,\"total\":90081280,\"start\":1423704243},\"progress\":\"[========================\\u003e
283
- \ ] 43.45 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":44007424,\"total\":90081280,\"start\":1423704243},\"progress\":\"[========================\\u003e
284
- \ ] 44.01 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":44564480,\"total\":90081280,\"start\":1423704243},\"progress\":\"[========================\\u003e
285
- \ ] 44.56 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":45121536,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=========================\\u003e
286
- \ ] 45.12 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":45678592,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=========================\\u003e
287
- \ ] 45.68 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":46235648,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=========================\\u003e
288
- \ ] 46.24 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":46792704,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=========================\\u003e
289
- \ ] 46.79 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":47349760,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==========================\\u003e
290
- \ ] 47.35 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":47906816,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==========================\\u003e
291
- \ ] 47.91 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":48463872,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==========================\\u003e
292
- \ ] 48.46 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":49020928,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===========================\\u003e
293
- \ ] 49.02 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":49577984,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===========================\\u003e
294
- \ ] 49.58 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":50135040,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===========================\\u003e
295
- \ ] 50.14 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":50692096,\"total\":90081280,\"start\":1423704243},\"progress\":\"[============================\\u003e
296
- \ ] 50.69 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":51249152,\"total\":90081280,\"start\":1423704243},\"progress\":\"[============================\\u003e
297
- \ ] 51.25 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":51806208,\"total\":90081280,\"start\":1423704243},\"progress\":\"[============================\\u003e
298
- \ ] 51.81 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":52363264,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=============================\\u003e
299
- \ ] 52.36 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":52920320,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=============================\\u003e
300
- \ ] 52.92 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":53477376,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=============================\\u003e
301
- \ ] 53.48 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":54034432,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=============================\\u003e
302
- \ ] 54.03 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":54591488,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==============================\\u003e
303
- \ ] 54.59 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":55148544,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==============================\\u003e
304
- \ ] 55.15 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":55705600,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==============================\\u003e
305
- \ ] 55.71 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":56262656,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===============================\\u003e
306
- \ ] 56.26 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":56819712,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===============================\\u003e
307
- \ ] 56.82 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":57376768,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===============================\\u003e
308
- \ ] 57.38 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":57933824,\"total\":90081280,\"start\":1423704243},\"progress\":\"[================================\\u003e
309
- \ ] 57.93 MB/90.08 MB 1s\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":58490880,\"total\":90081280,\"start\":1423704243},\"progress\":\"[================================\\u003e
310
- \ ] 58.49 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":59047936,\"total\":90081280,\"start\":1423704243},\"progress\":\"[================================\\u003e
311
- \ ] 59.05 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":59604992,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=================================\\u003e
312
- \ ] 59.6 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":60162048,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=================================\\u003e
313
- \ ] 60.16 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":60719104,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=================================\\u003e
314
- \ ] 60.72 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":61276160,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==================================\\u003e
315
- \ ] 61.28 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":61833216,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==================================\\u003e
316
- \ ] 61.83 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":62390272,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==================================\\u003e
317
- \ ] 62.39 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":62947328,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==================================\\u003e
318
- \ ] 62.95 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":63504384,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===================================\\u003e
319
- \ ] 63.5 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":64061440,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===================================\\u003e
320
- \ ] 64.06 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":64618496,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===================================\\u003e
321
- \ ] 64.62 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65175552,\"total\":90081280,\"start\":1423704243},\"progress\":\"[====================================\\u003e
322
- \ ] 65.18 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65732608,\"total\":90081280,\"start\":1423704243},\"progress\":\"[====================================\\u003e
323
- \ ] 65.73 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":66289664,\"total\":90081280,\"start\":1423704243},\"progress\":\"[====================================\\u003e
324
- \ ] 66.29 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":66846720,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=====================================\\u003e
325
- \ ] 66.85 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":67403776,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=====================================\\u003e
326
- \ ] 67.4 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":67960832,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=====================================\\u003e
327
- \ ] 67.96 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":68517888,\"total\":90081280,\"start\":1423704243},\"progress\":\"[======================================\\u003e
328
- \ ] 68.52 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":69074944,\"total\":90081280,\"start\":1423704243},\"progress\":\"[======================================\\u003e
329
- \ ] 69.07 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":69632000,\"total\":90081280,\"start\":1423704243},\"progress\":\"[======================================\\u003e
330
- \ ] 69.63 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":70189056,\"total\":90081280,\"start\":1423704243},\"progress\":\"[======================================\\u003e
331
- \ ] 70.19 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":70746112,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=======================================\\u003e
332
- \ ] 70.75 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":71303168,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=======================================\\u003e
333
- \ ] 71.3 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":71860224,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=======================================\\u003e
334
- \ ] 71.86 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":72417280,\"total\":90081280,\"start\":1423704243},\"progress\":\"[========================================\\u003e
335
- \ ] 72.42 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":72974336,\"total\":90081280,\"start\":1423704243},\"progress\":\"[========================================\\u003e
336
- \ ] 72.97 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":73531392,\"total\":90081280,\"start\":1423704243},\"progress\":\"[========================================\\u003e
337
- \ ] 73.53 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":74088448,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=========================================\\u003e
338
- \ ] 74.09 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":74645504,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=========================================\\u003e
339
- \ ] 74.65 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":75202560,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=========================================\\u003e
340
- \ ] 75.2 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":75759616,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==========================================\\u003e
341
- \ ] 75.76 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":76316672,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==========================================\\u003e
342
- \ ] 76.32 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":76873728,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==========================================\\u003e
343
- \ ] 76.87 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":77430784,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==========================================\\u003e
344
- \ ] 77.43 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":77987840,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===========================================\\u003e
345
- \ ] 77.99 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":78544896,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===========================================\\u003e
346
- \ ] 78.54 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":79101952,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===========================================\\u003e
347
- \ ] 79.1 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":79659008,\"total\":90081280,\"start\":1423704243},\"progress\":\"[============================================\\u003e
348
- \ ] 79.66 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":80216064,\"total\":90081280,\"start\":1423704243},\"progress\":\"[============================================\\u003e
349
- \ ] 80.22 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":80773120,\"total\":90081280,\"start\":1423704243},\"progress\":\"[============================================\\u003e
350
- \ ] 80.77 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":81330176,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=============================================\\u003e
351
- \ ] 81.33 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":81887232,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=============================================\\u003e
352
- \ ] 81.89 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":82444288,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=============================================\\u003e
353
- \ ] 82.44 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":83001344,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==============================================\\u003e
354
- \ ] 83 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":83558400,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==============================================\\u003e
355
- \ ] 83.56 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":84115456,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==============================================\\u003e
356
- \ ] 84.12 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":84672512,\"total\":90081280,\"start\":1423704243},\"progress\":\"[==============================================\\u003e
357
- \ ] 84.67 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":85229568,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===============================================\\u003e
358
- \ ] 85.23 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":85786624,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===============================================\\u003e
359
- \ ] 85.79 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":86343680,\"total\":90081280,\"start\":1423704243},\"progress\":\"[===============================================\\u003e
360
- \ ] 86.34 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":86900736,\"total\":90081280,\"start\":1423704243},\"progress\":\"[================================================\\u003e
361
- \ ] 86.9 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":87457792,\"total\":90081280,\"start\":1423704243},\"progress\":\"[================================================\\u003e
362
- \ ] 87.46 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":88014848,\"total\":90081280,\"start\":1423704243},\"progress\":\"[================================================\\u003e
363
- \ ] 88.01 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":88571904,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=================================================\\u003e
364
- ] 88.57 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":89128960,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=================================================\\u003e
365
- ] 89.13 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":89686016,\"total\":90081280,\"start\":1423704243},\"progress\":\"[=================================================\\u003e
366
- ] 89.69 MB/90.08 MB 0\",\"id\":\"30d39e59ffe2\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"30d39e59ffe2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1423704246},\"progress\":\"[==================================================\\u003e]
367
- 1.024 kB/1.024 kB\",\"id\":\"c90d655b99b2\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"c90d655b99b2\"}{\"status\":\"Status:
368
- Downloaded newer image for debian:wheezy\"}\r\n{\"stream\":\" ---\\u003e c90d655b99b2\\n\"}\r\n{\"stream\":\"Step
369
- 1 : ADD . /\\n\"}\r\n{\"stream\":\" ---\\u003e fcb68773563d\\n\"}\r\n{\"stream\":\"Removing
370
- intermediate container faff932b11f8\\n\"}\r\n{\"stream\":\"Successfully built
371
- fcb68773563d\\n\"}\r\n"
372
- http_version:
373
- recorded_at: Thu, 12 Feb 2015 01:24:09 GMT
374
- - request:
375
- method: post
376
- uri: <DOCKER_HOST>/v1.16/containers/create
377
- body:
378
- encoding: UTF-8
379
- string: ! '{"Image":"fcb68773563d","Cmd":["cat","/Dockerfile"]}'
380
- headers:
381
- User-Agent:
382
- - Swipely/Docker-API 1.18.0
383
- Content-Type:
384
- - application/json
385
- response:
386
- status:
387
- code: 201
388
- message:
389
- headers:
390
- Content-Type:
391
- - application/json
392
- Date:
393
- - Thu, 12 Feb 2015 01:24:10 GMT
394
- Content-Length:
395
- - '90'
396
- body:
397
- encoding: US-ASCII
398
- string: ! '{"Id":"67cde64f4e5840d988c2f21d5eead13c70927c7f8a5e33b237648a8377f8a5c5","Warnings":null}
399
-
400
- '
401
- http_version:
402
- recorded_at: Thu, 12 Feb 2015 01:24:10 GMT
403
- - request:
404
- method: post
405
- uri: <DOCKER_HOST>/v1.16/containers/67cde64f4e5840d988c2f21d5eead13c70927c7f8a5e33b237648a8377f8a5c5/start
406
- body:
407
- encoding: UTF-8
408
- string: ! '{}'
409
- headers:
410
- User-Agent:
411
- - Swipely/Docker-API 1.18.0
412
- Content-Type:
413
- - application/json
414
- response:
415
- status:
416
- code: 204
417
- message:
418
- headers:
419
- Date:
420
- - Thu, 12 Feb 2015 01:24:10 GMT
421
- body:
422
- encoding: US-ASCII
423
- string: ''
424
- http_version:
425
- recorded_at: Thu, 12 Feb 2015 01:24:10 GMT
426
- - request:
427
- method: get
428
- uri: <DOCKER_HOST>/v1.16/containers/67cde64f4e5840d988c2f21d5eead13c70927c7f8a5e33b237648a8377f8a5c5/logs?stdout=true
429
- body:
430
- encoding: US-ASCII
431
- string: ''
432
- headers:
433
- User-Agent:
434
- - Swipely/Docker-API 1.18.0
435
- Content-Type:
436
- - text/plain
437
- response:
438
- status:
439
- code: 200
440
- message:
441
- headers:
442
- Date:
443
- - Thu, 12 Feb 2015 01:24:10 GMT
444
- Content-Type:
445
- - application/octet-stream
446
- body:
447
- encoding: US-ASCII
448
- string: !binary |-
449
- AQAAAAAAABNGUk9NIGRlYmlhbjp3aGVlenkKAQAAAAAAAAhBREQgLiAvCg==
450
- http_version:
451
- recorded_at: Thu, 12 Feb 2015 01:24:10 GMT
452
- - request:
453
- method: post
454
- uri: <DOCKER_HOST>/v1.16/containers/67cde64f4e5840d988c2f21d5eead13c70927c7f8a5e33b237648a8377f8a5c5/wait
455
- body:
456
- encoding: US-ASCII
457
- string: ''
458
- headers:
459
- User-Agent:
460
- - Swipely/Docker-API 1.18.0
461
- Content-Type:
462
- - text/plain
463
- response:
464
- status:
465
- code: 200
466
- message:
467
- headers:
468
- Content-Type:
469
- - application/json
470
- Date:
471
- - Thu, 12 Feb 2015 01:24:10 GMT
472
- Content-Length:
473
- - '17'
474
- body:
475
- encoding: US-ASCII
476
- string: ! '{"StatusCode":0}
477
-
478
- '
479
- http_version:
480
- recorded_at: Thu, 12 Feb 2015 01:24:10 GMT
481
- - request:
482
- method: post
483
- uri: <DOCKER_HOST>/v1.16/containers/67cde64f4e5840d988c2f21d5eead13c70927c7f8a5e33b237648a8377f8a5c5/wait
484
- body:
485
- encoding: US-ASCII
486
- string: ''
487
- headers:
488
- User-Agent:
489
- - Swipely/Docker-API 1.18.0
490
- Content-Type:
491
- - text/plain
492
- response:
493
- status:
494
- code: 200
495
- message:
496
- headers:
497
- Content-Type:
498
- - application/json
499
- Date:
500
- - Thu, 12 Feb 2015 01:24:10 GMT
501
- Content-Length:
502
- - '17'
503
- body:
504
- encoding: US-ASCII
505
- string: ! '{"StatusCode":0}
506
-
507
- '
508
- http_version:
509
- recorded_at: Thu, 12 Feb 2015 01:24:10 GMT
510
- - request:
511
- method: delete
512
- uri: <DOCKER_HOST>/v1.16/containers/67cde64f4e5840d988c2f21d5eead13c70927c7f8a5e33b237648a8377f8a5c5
513
- body:
514
- encoding: US-ASCII
515
- string: ''
516
- headers:
517
- User-Agent:
518
- - Swipely/Docker-API 1.18.0
519
- Content-Type:
520
- - text/plain
521
- response:
522
- status:
523
- code: 204
524
- message:
525
- headers:
526
- Date:
527
- - Thu, 12 Feb 2015 01:24:11 GMT
528
- body:
529
- encoding: US-ASCII
530
- string: ''
531
- http_version:
532
- recorded_at: Thu, 12 Feb 2015 01:24:11 GMT
533
- - request:
534
- method: delete
535
- uri: <DOCKER_HOST>/v1.16/images/fcb68773563d?noprune=true
536
- body:
537
- encoding: US-ASCII
538
- string: ''
539
- headers:
540
- User-Agent:
541
- - Swipely/Docker-API 1.18.0
542
- Content-Type:
543
- - text/plain
544
- response:
545
- status:
546
- code: 200
547
- message:
548
- headers:
549
- Content-Type:
550
- - application/json
551
- Date:
552
- - Thu, 12 Feb 2015 01:24:11 GMT
553
- Content-Length:
554
- - '81'
555
- body:
556
- encoding: US-ASCII
557
- string: ! '[{"Deleted":"fcb68773563d7157d562d3f8c20016db0827fe14d8646e10c71fe5bbdaa6fdec"}
558
-
559
- ]'
560
- http_version:
561
- recorded_at: Thu, 12 Feb 2015 01:24:11 GMT
562
- recorded_with: VCR 2.9.2