docker-api 1.15.0 → 1.16.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 (105) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +26 -1
  3. data/Rakefile +37 -0
  4. data/TESTING.md +61 -0
  5. data/lib/docker.rb +8 -1
  6. data/lib/docker/container.rb +44 -80
  7. data/lib/docker/exec.rb +98 -0
  8. data/lib/docker/image.rb +4 -3
  9. data/lib/docker/util.rb +79 -0
  10. data/lib/docker/version.rb +2 -2
  11. data/spec/docker/container_spec.rb +192 -56
  12. data/spec/docker/event_spec.rb +4 -4
  13. data/spec/docker/exec_spec.rb +197 -0
  14. data/spec/docker/image_spec.rb +131 -102
  15. data/spec/docker_spec.rb +37 -27
  16. data/spec/fixtures/build_from_dir/Dockerfile +2 -2
  17. data/spec/fixtures/export.tar +0 -0
  18. data/spec/fixtures/top/Dockerfile +2 -2
  19. data/spec/spec_helper.rb +10 -0
  20. data/spec/support/vcr.rb +5 -0
  21. data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +6 -8
  22. data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +7 -9
  23. data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +7 -9
  24. data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +7 -9
  25. data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +46 -139
  26. data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +62 -20
  27. data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +62 -20
  28. data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +71 -28
  29. data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +69 -23
  30. data/spec/vcr/Docker_Container/_copy/when_the_file_does_not_exist/raises_an_error.yml +134 -0
  31. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +73 -290
  32. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +51 -211
  33. data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +36 -17
  34. data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist/when_the_HTTP_request_returns_a_200/sets_the_id.yml +30 -9
  35. data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +17 -23
  36. data/spec/vcr/Docker_Container/_exec/when_detach_is_true/returns_the_Docker_Exec_object.yml +151 -0
  37. data/spec/vcr/Docker_Container/_exec/when_passed_a_block/streams_the_stdout/stderr_messages.yml +153 -0
  38. data/spec/vcr/Docker_Container/_exec/when_passed_only_a_command/returns_the_stdout/stderr_messages.yml +153 -0
  39. data/spec/vcr/Docker_Container/_exec/when_stdin_object_is_passed/returns_the_stdout/stderr_messages.yml +100 -0
  40. data/spec/vcr/Docker_Container/_exec/when_tty_is_true/returns_the_raw_stdout/stderr_output.yml +152 -0
  41. data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +263 -28
  42. data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +36 -17
  43. data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +36 -17
  44. data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +55 -53
  45. data/spec/vcr/Docker_Container/_kill/with_a_kill_signal/kills_the_container.yml +74 -96
  46. data/spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/raises_a_client_error.yml +84 -81
  47. data/spec/vcr/Docker_Container/_logs/when_selecting_stdout/returns_blank_logs.yml +34 -15
  48. data/spec/vcr/Docker_Container/_pause/pauses_the_container.yml +98 -45
  49. data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +88 -56
  50. data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +39 -22
  51. 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 +212 -60
  52. data/spec/vcr/Docker_Container/_start/starts_the_container.yml +45 -30
  53. data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +54 -83
  54. data/spec/vcr/Docker_Container/_streaming_logs/when_not_selecting_any_stream/raises_a_client_error.yml +84 -81
  55. data/spec/vcr/Docker_Container/_streaming_logs/when_selecting_stdout/returns_blank_logs.yml +46 -30
  56. data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +103 -40
  57. data/spec/vcr/Docker_Container/_unpause/unpauses_the_container.yml +81 -57
  58. data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +39 -22
  59. data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +39 -22
  60. data/spec/vcr/Docker_Exec/_create/when_the_HTTP_request_returns_a_201/sets_the_id.yml +128 -0
  61. data/spec/vcr/Docker_Exec/_resize/when_exec_instance_has_TTY_enabled/returns_a_200.yml +155 -0
  62. data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/block_is_passed/attaches_to_the_stream.yml +152 -0
  63. data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/returns_the_stdout_and_stderr_messages.yml +152 -0
  64. data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_true/returns_empty_stdout_and_stderr_messages.yml +151 -0
  65. data/spec/vcr/Docker_Exec/_start_/when_the_HTTP_request_returns_a_201/starts_the_exec_instance.yml +151 -0
  66. data/spec/vcr/Docker_Exec/_start_/when_the_command_has_already_run/raises_an_error.yml +151 -0
  67. data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +86 -200
  68. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +10 -14
  69. 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 +147 -39
  70. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +10 -14
  71. data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +12 -14
  72. 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 +118 -16
  73. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_X-Registry-Config_header.yml +118 -14
  74. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +109 -37
  75. 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 +214 -60
  76. 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 +41 -2631
  77. data/spec/vcr/Docker_Image/_exist_/when_the_image_does_exist/returns_true.yml +12 -19
  78. data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +7 -9
  79. data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +17 -198
  80. data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_invalid/raises_an_error.yml +26 -30
  81. data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_valid/returns_an_Image.yml +246 -22
  82. data/spec/vcr/Docker_Image/_import/when_the_file_does_exist/creates_the_Image.yml +35 -10
  83. data/spec/vcr/Docker_Image/_insert_local/when_a_direcory_is_passed/inserts_the_directory.yml +1249 -74
  84. data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +84 -94
  85. data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +70 -92
  86. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +125 -98
  87. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +13 -60
  88. data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +190 -135
  89. data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +15 -198
  90. data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +169 -264
  91. data/spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml +175 -4543
  92. data/spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml +90 -206
  93. data/spec/vcr/Docker_Image/_remove/when_no_name_is_given/removes_the_Image.yml +300 -0
  94. data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +77 -207
  95. data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +77 -207
  96. 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 +160 -0
  97. 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 -197
  98. data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +151 -73
  99. data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +42 -196
  100. metadata +67 -41
  101. data/spec/vcr/Docker_Container/_commit/if_run_is_passed_it_saves_the_command_in_the_image/saves_the_command.yml +0 -58
  102. data/spec/vcr/Docker_Container/_streaming_logs/when_not_selecting_any_stream/returns_the_error_message.yml +0 -163
  103. data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/and_a_command_runs_for_too_long/raises_a_ServerError.yml +0 -58
  104. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_Docker_creds.yml +0 -41
  105. data/spec/vcr/Docker_Image/_remove/removes_the_Image.yml +0 -276
@@ -2,17 +2,17 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: post
5
- uri: unix:///var/run/docker.sock/v1.12/images/create?fromImage=ubuntu
5
+ uri: "<DOCKER_HOST>/v1.15/images/create?fromImage=swipely%2Fscratch"
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.13.6
11
+ - Swipely/Docker-API 1.15.0
12
12
  Content-Type:
13
13
  - text/plain
14
14
  X-Registry-Auth:
15
- - eyJ1c2VybmFtZSI6InRsdW50ZXIiLCJwYXNzd29yZCI6IioqKioqKioqKioqKiIsImVtYWlsIjoidGx1bnRlckBnbWFpbC5jb20ifQ==
15
+ - eyJ1c2VybmFtZSI6InRkdWZmaWVsZCIsInBhc3N3b3JkIjoiaTlCZj5KZ3ZmYmpZL3NKV01jVTkiLCJlbWFpbCI6ImdpdGh1YkB0b21kdWZmaWVsZC5jb20ifQ==
16
16
  response:
17
17
  status:
18
18
  code: 200
@@ -21,2635 +21,45 @@ http_interactions:
21
21
  Content-Type:
22
22
  - application/json
23
23
  Date:
24
- - Wed, 29 Oct 2014 22:00:24 GMT
24
+ - Mon, 01 Dec 2014 18:08:52 GMT
25
25
  body:
26
26
  encoding: UTF-8
27
- string: "{\"status\":\"The image you are pulling has been verified\",\"id\":\"ubuntu:12.04\"}\r\n{\"status\":\"Pulling
28
- fs layer\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Pulling
29
- fs layer\",\"progressDetail\":{},\"id\":\"5f18d94c3eca\"}{\"status\":\"Pulling
30
- fs layer\",\"progressDetail\":{},\"id\":\"53db23c604fd\"}{\"status\":\"Pulling
31
- fs layer\",\"progressDetail\":{},\"id\":\"9f045ea36057\"}{\"status\":\"Pulling
32
- fs layer\",\"progressDetail\":{},\"id\":\"d03a1a9d7555\"}{\"status\":\"Pulling
33
- fs layer\",\"progressDetail\":{},\"id\":\"30868777f275\"}{\"status\":\"Pulling
34
- fs layer\",\"progressDetail\":{},\"id\":\"0b310e6bf058\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1536,\"total\":1536,\"start\":1414620025},\"progress\":\"[==================================================\\u003e]
35
- 1.536 kB/1.536 kB\",\"id\":\"511136ea3c5a\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1536,\"total\":1536,\"start\":1414620025},\"progress\":\"[==================================================\\u003e]
36
- 1.536 kB/1.536 kB\",\"id\":\"511136ea3c5a\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3072,\"total\":3072,\"start\":1414620025},\"progress\":\"[==================================================\\u003e]
37
- 3.072 kB/3.072 kB\",\"id\":\"0b310e6bf058\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"0b310e6bf058\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3650,\"total\":6656,\"start\":1414620025},\"progress\":\"[===========================\\u003e
38
- \ ] 3.65 kB/6.656 kB 0\",\"id\":\"d03a1a9d7555\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6656,\"total\":6656,\"start\":1414620025},\"progress\":\"[==================================================\\u003e]
39
- 6.656 kB/6.656 kB\",\"id\":\"d03a1a9d7555\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"d03a1a9d7555\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3648,\"total\":174080,\"start\":1414620025},\"progress\":\"[=\\u003e
40
- \ ] 3.648 kB/174.1 kB 23s\",\"id\":\"53db23c604fd\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15936,\"total\":174080,\"start\":1414620025},\"progress\":\"[====\\u003e
41
- \ ] 15.94 kB/174.1 kB 5s\",\"id\":\"53db23c604fd\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19467,\"total\":174080,\"start\":1414620025},\"progress\":\"[=====\\u003e
42
- \ ] 19.47 kB/174.1 kB 4s\",\"id\":\"53db23c604fd\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31051,\"total\":174080,\"start\":1414620025},\"progress\":\"[========\\u003e
43
- \ ] 31.05 kB/174.1 kB 2s\",\"id\":\"53db23c604fd\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3649,\"total\":11264,\"start\":1414620025},\"progress\":\"[================\\u003e
44
- \ ] 3.649 kB/11.26 kB 1s\",\"id\":\"9f045ea36057\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5000,\"total\":11264,\"start\":1414620025},\"progress\":\"[======================\\u003e
45
- \ ] 5 kB/11.26 kB 0\",\"id\":\"9f045ea36057\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11264,\"total\":11264,\"start\":1414620025},\"progress\":\"[==================================================\\u003e]
46
- 11.26 kB/11.26 kB\",\"id\":\"9f045ea36057\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"9f045ea36057\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47435,\"total\":174080,\"start\":1414620025},\"progress\":\"[=============\\u003e
47
- \ ] 47.44 kB/174.1 kB 1s\",\"id\":\"53db23c604fd\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51323,\"total\":174080,\"start\":1414620025},\"progress\":\"[==============\\u003e
48
- \ ] 51.32 kB/174.1 kB 1s\",\"id\":\"53db23c604fd\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58563,\"total\":174080,\"start\":1414620025},\"progress\":\"[================\\u003e
49
- \ ] 58.56 kB/174.1 kB 1s\",\"id\":\"53db23c604fd\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64982,\"total\":174080,\"start\":1414620025},\"progress\":\"[==================\\u003e
50
- \ ] 64.98 kB/174.1 kB 0\",\"id\":\"53db23c604fd\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72222,\"total\":174080,\"start\":1414620025},\"progress\":\"[====================\\u003e
51
- \ ] 72.22 kB/174.1 kB 0\",\"id\":\"53db23c604fd\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88606,\"total\":174080,\"start\":1414620025},\"progress\":\"[=========================\\u003e
52
- \ ] 88.61 kB/174.1 kB 0\",\"id\":\"53db23c604fd\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":256617,\"total\":25199104,\"start\":1414620025},\"progress\":\"[\\u003e
53
- \ ] 256.6 kB/25.2 MB 55s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":104990,\"total\":174080,\"start\":1414620025},\"progress\":\"[==============================\\u003e
54
- \ ] 105 kB/174.1 kB 0\",\"id\":\"53db23c604fd\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":121374,\"total\":174080,\"start\":1414620025},\"progress\":\"[==================================\\u003e
55
- \ ] 121.4 kB/174.1 kB 0\",\"id\":\"53db23c604fd\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":137758,\"total\":174080,\"start\":1414620025},\"progress\":\"[=======================================\\u003e
56
- \ ] 137.8 kB/174.1 kB 0\",\"id\":\"53db23c604fd\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":154142,\"total\":174080,\"start\":1414620025},\"progress\":\"[============================================\\u003e
57
- \ ] 154.1 kB/174.1 kB 0\",\"id\":\"53db23c604fd\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":170526,\"total\":174080,\"start\":1414620025},\"progress\":\"[================================================\\u003e
58
- \ ] 170.5 kB/174.1 kB 0\",\"id\":\"53db23c604fd\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":174080,\"total\":174080,\"start\":1414620025},\"progress\":\"[==================================================\\u003e]
59
- 174.1 kB/174.1 kB\",\"id\":\"53db23c604fd\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"53db23c604fd\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":518761,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=\\u003e
60
- \ ] 518.8 kB/25.2 MB 30s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":526991,\"total\":109585408,\"start\":1414620025},\"progress\":\"[\\u003e
61
- \ ] 527 kB/109.6 MB 2m15s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":780905,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=\\u003e
62
- \ ] 780.9 kB/25.2 MB 21s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1043049,\"total\":25199104,\"start\":1414620025},\"progress\":\"[==\\u003e
63
- \ ] 1.043 MB/25.2 MB 22s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1067663,\"total\":109585408,\"start\":1414620025},\"progress\":\"[\\u003e
64
- \ ] 1.068 MB/109.6 MB 1m40s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1299652,\"total\":25199104,\"start\":1414620025},\"progress\":\"[==\\u003e
65
- \ ] 1.3 MB/25.2 MB 22s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1608335,\"total\":109585408,\"start\":1414620025},\"progress\":\"[\\u003e
66
- \ ] 1.608 MB/109.6 MB 1m31s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1561796,\"total\":25199104,\"start\":1414620025},\"progress\":\"[===\\u003e
67
- \ ] 1.562 MB/25.2 MB 21s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1823940,\"total\":25199104,\"start\":1414620025},\"progress\":\"[===\\u003e
68
- \ ] 1.824 MB/25.2 MB 21s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2149007,\"total\":109585408,\"start\":1414620025},\"progress\":\"[\\u003e
69
- \ ] 2.149 MB/109.6 MB 1m24s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2086084,\"total\":25199104,\"start\":1414620025},\"progress\":\"[====\\u003e
70
- \ ] 2.086 MB/25.2 MB 20s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2689679,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=\\u003e
71
- \ ] 2.69 MB/109.6 MB 1m17s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2348228,\"total\":25199104,\"start\":1414620025},\"progress\":\"[====\\u003e
72
- \ ] 2.348 MB/25.2 MB 19s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2610372,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=====\\u003e
73
- \ ] 2.61 MB/25.2 MB 18s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3230351,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=\\u003e
74
- \ ] 3.23 MB/109.6 MB 1m11s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2872516,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=====\\u003e
75
- \ ] 2.873 MB/25.2 MB 17s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3134660,\"total\":25199104,\"start\":1414620025},\"progress\":\"[======\\u003e
76
- \ ] 3.135 MB/25.2 MB 16s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3771023,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=\\u003e
77
- \ ] 3.771 MB/109.6 MB 1m6s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3396804,\"total\":25199104,\"start\":1414620025},\"progress\":\"[======\\u003e
78
- \ ] 3.397 MB/25.2 MB 15s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4311695,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=\\u003e
79
- \ ] 4.312 MB/109.6 MB 1m2s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3658948,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=======\\u003e
80
- \ ] 3.659 MB/25.2 MB 15s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3921092,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=======\\u003e
81
- \ ] 3.921 MB/25.2 MB 14s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4852367,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==\\u003e
82
- \ ] 4.852 MB/109.6 MB 59s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4183236,\"total\":25199104,\"start\":1414620025},\"progress\":\"[========\\u003e
83
- \ ] 4.183 MB/25.2 MB 14s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4445380,\"total\":25199104,\"start\":1414620025},\"progress\":\"[========\\u003e
84
- \ ] 4.445 MB/25.2 MB 13s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5393039,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==\\u003e
85
- \ ] 5.393 MB/109.6 MB 56s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4707524,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=========\\u003e
86
- \ ] 4.708 MB/25.2 MB 13s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4969668,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=========\\u003e
87
- \ ] 4.97 MB/25.2 MB 12s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5933711,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==\\u003e
88
- \ ] 5.934 MB/109.6 MB 54s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5231812,\"total\":25199104,\"start\":1414620025},\"progress\":\"[==========\\u003e
89
- \ ] 5.232 MB/25.2 MB 12s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5493956,\"total\":25199104,\"start\":1414620025},\"progress\":\"[==========\\u003e
90
- \ ] 5.494 MB/25.2 MB 11s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6474383,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==\\u003e
91
- \ ] 6.474 MB/109.6 MB 52s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5756100,\"total\":25199104,\"start\":1414620025},\"progress\":\"[===========\\u003e
92
- \ ] 5.756 MB/25.2 MB 11s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6018244,\"total\":25199104,\"start\":1414620025},\"progress\":\"[===========\\u003e
93
- \ ] 6.018 MB/25.2 MB 10s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7015055,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===\\u003e
94
- \ ] 7.015 MB/109.6 MB 50s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6280388,\"total\":25199104,\"start\":1414620025},\"progress\":\"[============\\u003e
95
- \ ] 6.28 MB/25.2 MB 10s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6542532,\"total\":25199104,\"start\":1414620025},\"progress\":\"[============\\u003e
96
- \ ] 6.543 MB/25.2 MB 10s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7555727,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===\\u003e
97
- \ ] 7.556 MB/109.6 MB 48s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6804676,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=============\\u003e
98
- \ ] 6.805 MB/25.2 MB 9s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8096399,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===\\u003e
99
- \ ] 8.096 MB/109.6 MB 46s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7066820,\"total\":25199104,\"start\":1414620025},\"progress\":\"[==============\\u003e
100
- \ ] 7.067 MB/25.2 MB 9s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7328964,\"total\":25199104,\"start\":1414620025},\"progress\":\"[==============\\u003e
101
- \ ] 7.329 MB/25.2 MB 9s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8637071,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===\\u003e
102
- \ ] 8.637 MB/109.6 MB 45s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7591108,\"total\":25199104,\"start\":1414620025},\"progress\":\"[===============\\u003e
103
- \ ] 7.591 MB/25.2 MB 9s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9177743,\"total\":109585408,\"start\":1414620025},\"progress\":\"[====\\u003e
104
- \ ] 9.178 MB/109.6 MB 43s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7853252,\"total\":25199104,\"start\":1414620025},\"progress\":\"[===============\\u003e
105
- \ ] 7.853 MB/25.2 MB 8s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8115396,\"total\":25199104,\"start\":1414620025},\"progress\":\"[================\\u003e
106
- \ ] 8.115 MB/25.2 MB 8s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9718415,\"total\":109585408,\"start\":1414620025},\"progress\":\"[====\\u003e
107
- \ ] 9.718 MB/109.6 MB 42s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8377540,\"total\":25199104,\"start\":1414620025},\"progress\":\"[================\\u003e
108
- \ ] 8.378 MB/25.2 MB 8s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8639684,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=================\\u003e
109
- \ ] 8.64 MB/25.2 MB 8s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10259087,\"total\":109585408,\"start\":1414620025},\"progress\":\"[====\\u003e
110
- \ ] 10.26 MB/109.6 MB 41s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8901828,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=================\\u003e
111
- \ ] 8.902 MB/25.2 MB 7s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9163972,\"total\":25199104,\"start\":1414620025},\"progress\":\"[==================\\u003e
112
- \ ] 9.164 MB/25.2 MB 7s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10799759,\"total\":109585408,\"start\":1414620025},\"progress\":\"[====\\u003e
113
- \ ] 10.8 MB/109.6 MB 40s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9426116,\"total\":25199104,\"start\":1414620025},\"progress\":\"[==================\\u003e
114
- \ ] 9.426 MB/25.2 MB 7s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9688260,\"total\":25199104,\"start\":1414620025},\"progress\":\"[===================\\u003e
115
- \ ] 9.688 MB/25.2 MB 7s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11340431,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=====\\u003e
116
- \ ] 11.34 MB/109.6 MB 38s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9950404,\"total\":25199104,\"start\":1414620025},\"progress\":\"[===================\\u003e
117
- \ ] 9.95 MB/25.2 MB 6s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10212548,\"total\":25199104,\"start\":1414620025},\"progress\":\"[====================\\u003e
118
- \ ] 10.21 MB/25.2 MB 6s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11881103,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=====\\u003e
119
- \ ] 11.88 MB/109.6 MB 37s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10474692,\"total\":25199104,\"start\":1414620025},\"progress\":\"[====================\\u003e
120
- \ ] 10.47 MB/25.2 MB 6s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10736836,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=====================\\u003e
121
- \ ] 10.74 MB/25.2 MB 6s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12421775,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=====\\u003e
122
- \ ] 12.42 MB/109.6 MB 37s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10998980,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=====================\\u003e
123
- \ ] 11 MB/25.2 MB 6s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11261124,\"total\":25199104,\"start\":1414620025},\"progress\":\"[======================\\u003e
124
- \ ] 11.26 MB/25.2 MB 5s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12962447,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=====\\u003e
125
- \ ] 12.96 MB/109.6 MB 36s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11523268,\"total\":25199104,\"start\":1414620025},\"progress\":\"[======================\\u003e
126
- \ ] 11.52 MB/25.2 MB 5s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11785412,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=======================\\u003e
127
- \ ] 11.79 MB/25.2 MB 5s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13503119,\"total\":109585408,\"start\":1414620025},\"progress\":\"[======\\u003e
128
- \ ] 13.5 MB/109.6 MB 35s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12047556,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=======================\\u003e
129
- \ ] 12.05 MB/25.2 MB 5s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14043791,\"total\":109585408,\"start\":1414620025},\"progress\":\"[======\\u003e
130
- \ ] 14.04 MB/109.6 MB 34s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12309700,\"total\":25199104,\"start\":1414620025},\"progress\":\"[========================\\u003e
131
- \ ] 12.31 MB/25.2 MB 5s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12562404,\"total\":25199104,\"start\":1414620025},\"progress\":\"[========================\\u003e
132
- \ ] 12.56 MB/25.2 MB 5s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14584463,\"total\":109585408,\"start\":1414620025},\"progress\":\"[======\\u003e
133
- \ ] 14.58 MB/109.6 MB 33s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12815244,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=========================\\u003e
134
- \ ] 12.82 MB/25.2 MB 5s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15125135,\"total\":109585408,\"start\":1414620025},\"progress\":\"[======\\u003e
135
- \ ] 15.13 MB/109.6 MB 32s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13077388,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=========================\\u003e
136
- \ ] 13.08 MB/25.2 MB 4s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15665807,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=======\\u003e
137
- \ ] 15.67 MB/109.6 MB 32s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13339532,\"total\":25199104,\"start\":1414620025},\"progress\":\"[==========================\\u003e
138
- \ ] 13.34 MB/25.2 MB 4s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16206479,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=======\\u003e
139
- \ ] 16.21 MB/109.6 MB 31s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13601676,\"total\":25199104,\"start\":1414620025},\"progress\":\"[==========================\\u003e
140
- \ ] 13.6 MB/25.2 MB 4s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16747151,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=======\\u003e
141
- \ ] 16.75 MB/109.6 MB 31s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13863820,\"total\":25199104,\"start\":1414620025},\"progress\":\"[===========================\\u003e
142
- \ ] 13.86 MB/25.2 MB 4s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17287823,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=======\\u003e
143
- \ ] 17.29 MB/109.6 MB 30s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14125964,\"total\":25199104,\"start\":1414620025},\"progress\":\"[============================\\u003e
144
- \ ] 14.13 MB/25.2 MB 4s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17828495,\"total\":109585408,\"start\":1414620025},\"progress\":\"[========\\u003e
145
- \ ] 17.83 MB/109.6 MB 30s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14388108,\"total\":25199104,\"start\":1414620025},\"progress\":\"[============================\\u003e
146
- \ ] 14.39 MB/25.2 MB 4s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18369167,\"total\":109585408,\"start\":1414620025},\"progress\":\"[========\\u003e
147
- \ ] 18.37 MB/109.6 MB 30s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14650252,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=============================\\u003e
148
- \ ] 14.65 MB/25.2 MB 4s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18909839,\"total\":109585408,\"start\":1414620025},\"progress\":\"[========\\u003e
149
- \ ] 18.91 MB/109.6 MB 29s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14912396,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=============================\\u003e
150
- \ ] 14.91 MB/25.2 MB 4s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19450511,\"total\":109585408,\"start\":1414620025},\"progress\":\"[========\\u003e
151
- \ ] 19.45 MB/109.6 MB 29s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15174540,\"total\":25199104,\"start\":1414620025},\"progress\":\"[==============================\\u003e
152
- \ ] 15.17 MB/25.2 MB 4s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15436684,\"total\":25199104,\"start\":1414620025},\"progress\":\"[==============================\\u003e
153
- \ ] 15.44 MB/25.2 MB 4s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19991183,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=========\\u003e
154
- \ ] 19.99 MB/109.6 MB 28s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15698828,\"total\":25199104,\"start\":1414620025},\"progress\":\"[===============================\\u003e
155
- \ ] 15.7 MB/25.2 MB 3s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20531855,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=========\\u003e
156
- \ ] 20.53 MB/109.6 MB 28s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15960972,\"total\":25199104,\"start\":1414620025},\"progress\":\"[===============================\\u003e
157
- \ ] 15.96 MB/25.2 MB 3s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21072527,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=========\\u003e
158
- \ ] 21.07 MB/109.6 MB 27s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16223116,\"total\":25199104,\"start\":1414620025},\"progress\":\"[================================\\u003e
159
- \ ] 16.22 MB/25.2 MB 3s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21613199,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=========\\u003e
160
- \ ] 21.61 MB/109.6 MB 27s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16485260,\"total\":25199104,\"start\":1414620025},\"progress\":\"[================================\\u003e
161
- \ ] 16.49 MB/25.2 MB 3s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22153871,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==========\\u003e
162
- \ ] 22.15 MB/109.6 MB 27s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16747404,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=================================\\u003e
163
- \ ] 16.75 MB/25.2 MB 3s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22694543,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==========\\u003e
164
- \ ] 22.69 MB/109.6 MB 26s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17009548,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=================================\\u003e
165
- \ ] 17.01 MB/25.2 MB 3s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23235215,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==========\\u003e
166
- \ ] 23.24 MB/109.6 MB 26s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23775887,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==========\\u003e
167
- \ ] 23.78 MB/109.6 MB 25s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17271692,\"total\":25199104,\"start\":1414620025},\"progress\":\"[==================================\\u003e
168
- \ ] 17.27 MB/25.2 MB 3s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24316559,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===========\\u003e
169
- \ ] 24.32 MB/109.6 MB 26s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17533836,\"total\":25199104,\"start\":1414620025},\"progress\":\"[==================================\\u003e
170
- \ ] 17.53 MB/25.2 MB 3s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24857231,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===========\\u003e
171
- \ ] 24.86 MB/109.6 MB 26s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17795980,\"total\":25199104,\"start\":1414620025},\"progress\":\"[===================================\\u003e
172
- \ ] 17.8 MB/25.2 MB 3s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25397903,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===========\\u003e
173
- \ ] 25.4 MB/109.6 MB 26s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18058124,\"total\":25199104,\"start\":1414620025},\"progress\":\"[===================================\\u003e
174
- \ ] 18.06 MB/25.2 MB 3s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25938575,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===========\\u003e
175
- \ ] 25.94 MB/109.6 MB 26s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18320268,\"total\":25199104,\"start\":1414620025},\"progress\":\"[====================================\\u003e
176
- \ ] 18.32 MB/25.2 MB 3s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18582412,\"total\":25199104,\"start\":1414620025},\"progress\":\"[====================================\\u003e
177
- \ ] 18.58 MB/25.2 MB 3s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26479247,\"total\":109585408,\"start\":1414620025},\"progress\":\"[============\\u003e
178
- \ ] 26.48 MB/109.6 MB 26s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18844556,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=====================================\\u003e
179
- \ ] 18.84 MB/25.2 MB 2s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27019919,\"total\":109585408,\"start\":1414620025},\"progress\":\"[============\\u003e
180
- \ ] 27.02 MB/109.6 MB 26s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19106700,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=====================================\\u003e
181
- \ ] 19.11 MB/25.2 MB 2s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27560591,\"total\":109585408,\"start\":1414620025},\"progress\":\"[============\\u003e
182
- \ ] 27.56 MB/109.6 MB 26s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19368844,\"total\":25199104,\"start\":1414620025},\"progress\":\"[======================================\\u003e
183
- \ ] 19.37 MB/25.2 MB 2s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19630988,\"total\":25199104,\"start\":1414620025},\"progress\":\"[======================================\\u003e
184
- \ ] 19.63 MB/25.2 MB 2s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28101263,\"total\":109585408,\"start\":1414620025},\"progress\":\"[============\\u003e
185
- \ ] 28.1 MB/109.6 MB 26s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19893132,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=======================================\\u003e
186
- \ ] 19.89 MB/25.2 MB 2s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28641935,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=============\\u003e
187
- \ ] 28.64 MB/109.6 MB 26s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20155276,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=======================================\\u003e
188
- \ ] 20.16 MB/25.2 MB 2s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20417420,\"total\":25199104,\"start\":1414620025},\"progress\":\"[========================================\\u003e
189
- \ ] 20.42 MB/25.2 MB 2s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29182607,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=============\\u003e
190
- \ ] 29.18 MB/109.6 MB 26s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20679564,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=========================================\\u003e
191
- \ ] 20.68 MB/25.2 MB 2s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20941708,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=========================================\\u003e
192
- \ ] 20.94 MB/25.2 MB 1s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29723279,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=============\\u003e
193
- \ ] 29.72 MB/109.6 MB 26s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21203852,\"total\":25199104,\"start\":1414620025},\"progress\":\"[==========================================\\u003e
194
- \ ] 21.2 MB/25.2 MB 1s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21465996,\"total\":25199104,\"start\":1414620025},\"progress\":\"[==========================================\\u003e
195
- \ ] 21.47 MB/25.2 MB 1s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30263951,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=============\\u003e
196
- \ ] 30.26 MB/109.6 MB 25s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21728140,\"total\":25199104,\"start\":1414620025},\"progress\":\"[===========================================\\u003e
197
- \ ] 21.73 MB/25.2 MB 1s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21990284,\"total\":25199104,\"start\":1414620025},\"progress\":\"[===========================================\\u003e
198
- \ ] 21.99 MB/25.2 MB 1s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30804623,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==============\\u003e
199
- \ ] 30.8 MB/109.6 MB 25s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22252428,\"total\":25199104,\"start\":1414620025},\"progress\":\"[============================================\\u003e
200
- \ ] 22.25 MB/25.2 MB 1s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31345295,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==============\\u003e
201
- \ ] 31.35 MB/109.6 MB 25s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22514572,\"total\":25199104,\"start\":1414620025},\"progress\":\"[============================================\\u003e
202
- \ ] 22.51 MB/25.2 MB 1s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22776716,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=============================================\\u003e
203
- \ ] 22.78 MB/25.2 MB 1s\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31885967,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==============\\u003e
204
- \ ] 31.89 MB/109.6 MB 25s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23038860,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=============================================\\u003e
205
- \ ] 23.04 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32426639,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==============\\u003e
206
- \ ] 32.43 MB/109.6 MB 24s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23301004,\"total\":25199104,\"start\":1414620025},\"progress\":\"[==============================================\\u003e
207
- \ ] 23.3 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23563148,\"total\":25199104,\"start\":1414620025},\"progress\":\"[==============================================\\u003e
208
- \ ] 23.56 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32967311,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===============\\u003e
209
- \ ] 32.97 MB/109.6 MB 24s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23825292,\"total\":25199104,\"start\":1414620025},\"progress\":\"[===============================================\\u003e
210
- \ ] 23.83 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33507983,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===============\\u003e
211
- \ ] 33.51 MB/109.6 MB 24s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24087436,\"total\":25199104,\"start\":1414620025},\"progress\":\"[===============================================\\u003e
212
- \ ] 24.09 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24349580,\"total\":25199104,\"start\":1414620025},\"progress\":\"[================================================\\u003e
213
- \ ] 24.35 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34048655,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===============\\u003e
214
- \ ] 34.05 MB/109.6 MB 23s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24611724,\"total\":25199104,\"start\":1414620025},\"progress\":\"[================================================\\u003e
215
- \ ] 24.61 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24873868,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=================================================\\u003e
216
- ] 24.87 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34589327,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===============\\u003e
217
- \ ] 34.59 MB/109.6 MB 23s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25136012,\"total\":25199104,\"start\":1414620025},\"progress\":\"[=================================================\\u003e
218
- ] 25.14 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25199104,\"total\":25199104,\"start\":1414620025},\"progress\":\"[==================================================\\u003e]
219
- \ 25.2 MB/25.2 MB\",\"id\":\"30868777f275\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"30868777f275\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35129999,\"total\":109585408,\"start\":1414620025},\"progress\":\"[================\\u003e
220
- \ ] 35.13 MB/109.6 MB 23s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35670671,\"total\":109585408,\"start\":1414620025},\"progress\":\"[================\\u003e
221
- \ ] 35.67 MB/109.6 MB 23s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36211343,\"total\":109585408,\"start\":1414620025},\"progress\":\"[================\\u003e
222
- \ ] 36.21 MB/109.6 MB 23s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36752015,\"total\":109585408,\"start\":1414620025},\"progress\":\"[================\\u003e
223
- \ ] 36.75 MB/109.6 MB 23s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37292687,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=================\\u003e
224
- \ ] 37.29 MB/109.6 MB 23s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37833359,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=================\\u003e
225
- \ ] 37.83 MB/109.6 MB 23s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38374031,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=================\\u003e
226
- \ ] 38.37 MB/109.6 MB 23s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38914703,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=================\\u003e
227
- \ ] 38.91 MB/109.6 MB 23s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39455375,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==================\\u003e
228
- \ ] 39.46 MB/109.6 MB 22s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39996047,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==================\\u003e
229
- \ ] 40 MB/109.6 MB 22s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40536719,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==================\\u003e
230
- \ ] 40.54 MB/109.6 MB 22s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41077391,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==================\\u003e
231
- \ ] 41.08 MB/109.6 MB 22s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41618063,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==================\\u003e
232
- \ ] 41.62 MB/109.6 MB 21s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42158735,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===================\\u003e
233
- \ ] 42.16 MB/109.6 MB 21s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42699407,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===================\\u003e
234
- \ ] 42.7 MB/109.6 MB 21s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43240079,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===================\\u003e
235
- \ ] 43.24 MB/109.6 MB 21s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43780751,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===================\\u003e
236
- \ ] 43.78 MB/109.6 MB 20s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44321423,\"total\":109585408,\"start\":1414620025},\"progress\":\"[====================\\u003e
237
- \ ] 44.32 MB/109.6 MB 20s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44862095,\"total\":109585408,\"start\":1414620025},\"progress\":\"[====================\\u003e
238
- \ ] 44.86 MB/109.6 MB 20s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45402767,\"total\":109585408,\"start\":1414620025},\"progress\":\"[====================\\u003e
239
- \ ] 45.4 MB/109.6 MB 20s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45943439,\"total\":109585408,\"start\":1414620025},\"progress\":\"[====================\\u003e
240
- \ ] 45.94 MB/109.6 MB 19s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46484111,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=====================\\u003e
241
- \ ] 46.48 MB/109.6 MB 19s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47024783,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=====================\\u003e
242
- \ ] 47.02 MB/109.6 MB 19s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47565455,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=====================\\u003e
243
- \ ] 47.57 MB/109.6 MB 19s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48106127,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=====================\\u003e
244
- \ ] 48.11 MB/109.6 MB 19s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48646799,\"total\":109585408,\"start\":1414620025},\"progress\":\"[======================\\u003e
245
- \ ] 48.65 MB/109.6 MB 19s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49187471,\"total\":109585408,\"start\":1414620025},\"progress\":\"[======================\\u003e
246
- \ ] 49.19 MB/109.6 MB 19s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49728143,\"total\":109585408,\"start\":1414620025},\"progress\":\"[======================\\u003e
247
- \ ] 49.73 MB/109.6 MB 19s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50268815,\"total\":109585408,\"start\":1414620025},\"progress\":\"[======================\\u003e
248
- \ ] 50.27 MB/109.6 MB 18s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50809487,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=======================\\u003e
249
- \ ] 50.81 MB/109.6 MB 18s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51350159,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=======================\\u003e
250
- \ ] 51.35 MB/109.6 MB 18s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51890831,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=======================\\u003e
251
- \ ] 51.89 MB/109.6 MB 18s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52431503,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=======================\\u003e
252
- \ ] 52.43 MB/109.6 MB 18s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52972175,\"total\":109585408,\"start\":1414620025},\"progress\":\"[========================\\u003e
253
- \ ] 52.97 MB/109.6 MB 18s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53512847,\"total\":109585408,\"start\":1414620025},\"progress\":\"[========================\\u003e
254
- \ ] 53.51 MB/109.6 MB 17s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54053519,\"total\":109585408,\"start\":1414620025},\"progress\":\"[========================\\u003e
255
- \ ] 54.05 MB/109.6 MB 17s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54594191,\"total\":109585408,\"start\":1414620025},\"progress\":\"[========================\\u003e
256
- \ ] 54.59 MB/109.6 MB 17s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55134863,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=========================\\u003e
257
- \ ] 55.13 MB/109.6 MB 17s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55675535,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=========================\\u003e
258
- \ ] 55.68 MB/109.6 MB 16s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56216207,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=========================\\u003e
259
- \ ] 56.22 MB/109.6 MB 16s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56756879,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=========================\\u003e
260
- \ ] 56.76 MB/109.6 MB 16s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57297551,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==========================\\u003e
261
- \ ] 57.3 MB/109.6 MB 16s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57823762,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==========================\\u003e
262
- \ ] 57.82 MB/109.6 MB 16s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58364434,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==========================\\u003e
263
- \ ] 58.36 MB/109.6 MB 15s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58905106,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==========================\\u003e
264
- \ ] 58.91 MB/109.6 MB 15s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59445778,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===========================\\u003e
265
- \ ] 59.45 MB/109.6 MB 15s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59986450,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===========================\\u003e
266
- \ ] 59.99 MB/109.6 MB 15s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60527122,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===========================\\u003e
267
- \ ] 60.53 MB/109.6 MB 14s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61067794,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===========================\\u003e
268
- \ ] 61.07 MB/109.6 MB 14s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61608466,\"total\":109585408,\"start\":1414620025},\"progress\":\"[============================\\u003e
269
- \ ] 61.61 MB/109.6 MB 14s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62149138,\"total\":109585408,\"start\":1414620025},\"progress\":\"[============================\\u003e
270
- \ ] 62.15 MB/109.6 MB 14s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62689810,\"total\":109585408,\"start\":1414620025},\"progress\":\"[============================\\u003e
271
- \ ] 62.69 MB/109.6 MB 14s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63230482,\"total\":109585408,\"start\":1414620025},\"progress\":\"[============================\\u003e
272
- \ ] 63.23 MB/109.6 MB 13s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63771154,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=============================\\u003e
273
- \ ] 63.77 MB/109.6 MB 13s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64311826,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=============================\\u003e
274
- \ ] 64.31 MB/109.6 MB 13s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64852498,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=============================\\u003e
275
- \ ] 64.85 MB/109.6 MB 13s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65393170,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=============================\\u003e
276
- \ ] 65.39 MB/109.6 MB 13s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65933842,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==============================\\u003e
277
- \ ] 65.93 MB/109.6 MB 13s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66474514,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==============================\\u003e
278
- \ ] 66.47 MB/109.6 MB 12s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67015186,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==============================\\u003e
279
- \ ] 67.02 MB/109.6 MB 12s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67555858,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==============================\\u003e
280
- \ ] 67.56 MB/109.6 MB 12s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68096530,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===============================\\u003e
281
- \ ] 68.1 MB/109.6 MB 12s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68637202,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===============================\\u003e
282
- \ ] 68.64 MB/109.6 MB 12s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69177874,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===============================\\u003e
283
- \ ] 69.18 MB/109.6 MB 12s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69718546,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===============================\\u003e
284
- \ ] 69.72 MB/109.6 MB 11s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70259218,\"total\":109585408,\"start\":1414620025},\"progress\":\"[================================\\u003e
285
- \ ] 70.26 MB/109.6 MB 11s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70799890,\"total\":109585408,\"start\":1414620025},\"progress\":\"[================================\\u003e
286
- \ ] 70.8 MB/109.6 MB 11s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71340562,\"total\":109585408,\"start\":1414620025},\"progress\":\"[================================\\u003e
287
- \ ] 71.34 MB/109.6 MB 11s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71881234,\"total\":109585408,\"start\":1414620025},\"progress\":\"[================================\\u003e
288
- \ ] 71.88 MB/109.6 MB 11s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72421906,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=================================\\u003e
289
- \ ] 72.42 MB/109.6 MB 11s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72962578,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=================================\\u003e
290
- \ ] 72.96 MB/109.6 MB 10s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73503250,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=================================\\u003e
291
- \ ] 73.5 MB/109.6 MB 10s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74043922,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=================================\\u003e
292
- \ ] 74.04 MB/109.6 MB 10s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74584594,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==================================\\u003e
293
- \ ] 74.58 MB/109.6 MB 10s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75125266,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==================================\\u003e
294
- \ ] 75.13 MB/109.6 MB 10s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75665938,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==================================\\u003e
295
- \ ] 75.67 MB/109.6 MB 10s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76206610,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==================================\\u003e
296
- \ ] 76.21 MB/109.6 MB 10s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76747282,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===================================\\u003e
297
- \ ] 76.75 MB/109.6 MB 9s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77287954,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===================================\\u003e
298
- \ ] 77.29 MB/109.6 MB 9s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77828626,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===================================\\u003e
299
- \ ] 77.83 MB/109.6 MB 9s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78369298,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===================================\\u003e
300
- \ ] 78.37 MB/109.6 MB 9s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78909970,\"total\":109585408,\"start\":1414620025},\"progress\":\"[====================================\\u003e
301
- \ ] 78.91 MB/109.6 MB 9s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79450642,\"total\":109585408,\"start\":1414620025},\"progress\":\"[====================================\\u003e
302
- \ ] 79.45 MB/109.6 MB 9s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79991314,\"total\":109585408,\"start\":1414620025},\"progress\":\"[====================================\\u003e
303
- \ ] 79.99 MB/109.6 MB 8s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80531986,\"total\":109585408,\"start\":1414620025},\"progress\":\"[====================================\\u003e
304
- \ ] 80.53 MB/109.6 MB 8s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81072658,\"total\":109585408,\"start\":1414620025},\"progress\":\"[====================================\\u003e
305
- \ ] 81.07 MB/109.6 MB 8s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81613330,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=====================================\\u003e
306
- \ ] 81.61 MB/109.6 MB 8s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82154002,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=====================================\\u003e
307
- \ ] 82.15 MB/109.6 MB 8s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82694674,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=====================================\\u003e
308
- \ ] 82.69 MB/109.6 MB 8s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83235346,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=====================================\\u003e
309
- \ ] 83.24 MB/109.6 MB 7s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83776018,\"total\":109585408,\"start\":1414620025},\"progress\":\"[======================================\\u003e
310
- \ ] 83.78 MB/109.6 MB 7s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84316690,\"total\":109585408,\"start\":1414620025},\"progress\":\"[======================================\\u003e
311
- \ ] 84.32 MB/109.6 MB 7s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84857362,\"total\":109585408,\"start\":1414620025},\"progress\":\"[======================================\\u003e
312
- \ ] 84.86 MB/109.6 MB 7s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85398034,\"total\":109585408,\"start\":1414620025},\"progress\":\"[======================================\\u003e
313
- \ ] 85.4 MB/109.6 MB 7s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85938706,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=======================================\\u003e
314
- \ ] 85.94 MB/109.6 MB 6s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86479378,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=======================================\\u003e
315
- \ ] 86.48 MB/109.6 MB 6s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87020050,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=======================================\\u003e
316
- \ ] 87.02 MB/109.6 MB 6s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87560722,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=======================================\\u003e
317
- \ ] 87.56 MB/109.6 MB 6s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88101394,\"total\":109585408,\"start\":1414620025},\"progress\":\"[========================================\\u003e
318
- \ ] 88.1 MB/109.6 MB 6s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88642066,\"total\":109585408,\"start\":1414620025},\"progress\":\"[========================================\\u003e
319
- \ ] 88.64 MB/109.6 MB 6s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89182738,\"total\":109585408,\"start\":1414620025},\"progress\":\"[========================================\\u003e
320
- \ ] 89.18 MB/109.6 MB 5s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89723410,\"total\":109585408,\"start\":1414620025},\"progress\":\"[========================================\\u003e
321
- \ ] 89.72 MB/109.6 MB 5s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90264082,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=========================================\\u003e
322
- \ ] 90.26 MB/109.6 MB 5s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90793562,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=========================================\\u003e
323
- \ ] 90.79 MB/109.6 MB 5s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91325466,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=========================================\\u003e
324
- \ ] 91.33 MB/109.6 MB 5s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91857906,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=========================================\\u003e
325
- \ ] 91.86 MB/109.6 MB 5s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92386002,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==========================================\\u003e
326
- \ ] 92.39 MB/109.6 MB 4s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92920346,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==========================================\\u003e
327
- \ ] 92.92 MB/109.6 MB 4s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93461018,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==========================================\\u003e
328
- \ ] 93.46 MB/109.6 MB 4s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94001690,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==========================================\\u003e
329
- \ ] 94 MB/109.6 MB 4s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94542362,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===========================================\\u003e
330
- \ ] 94.54 MB/109.6 MB 4s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":95083034,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===========================================\\u003e
331
- \ ] 95.08 MB/109.6 MB 4s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":95623706,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===========================================\\u003e
332
- \ ] 95.62 MB/109.6 MB 3s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":96164378,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===========================================\\u003e
333
- \ ] 96.16 MB/109.6 MB 3s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":96705050,\"total\":109585408,\"start\":1414620025},\"progress\":\"[============================================\\u003e
334
- \ ] 96.71 MB/109.6 MB 3s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":97245722,\"total\":109585408,\"start\":1414620025},\"progress\":\"[============================================\\u003e
335
- \ ] 97.25 MB/109.6 MB 3s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":97786394,\"total\":109585408,\"start\":1414620025},\"progress\":\"[============================================\\u003e
336
- \ ] 97.79 MB/109.6 MB 3s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":98327066,\"total\":109585408,\"start\":1414620025},\"progress\":\"[============================================\\u003e
337
- \ ] 98.33 MB/109.6 MB 3s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":98867738,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=============================================\\u003e
338
- \ ] 98.87 MB/109.6 MB 2s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":99408410,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=============================================\\u003e
339
- \ ] 99.41 MB/109.6 MB 2s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":99949082,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=============================================\\u003e
340
- \ ] 99.95 MB/109.6 MB 2s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":100489754,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=============================================\\u003e
341
- \ ] 100.5 MB/109.6 MB 2s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":101030426,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==============================================\\u003e
342
- \ ] 101 MB/109.6 MB 2s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":101571098,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==============================================\\u003e
343
- \ ] 101.6 MB/109.6 MB 2s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":102111770,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==============================================\\u003e
344
- \ ] 102.1 MB/109.6 MB 2s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":102652442,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==============================================\\u003e
345
- \ ] 102.7 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":103193114,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===============================================\\u003e
346
- \ ] 103.2 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":103726210,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===============================================\\u003e
347
- \ ] 103.7 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":104266882,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===============================================\\u003e
348
- \ ] 104.3 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":104807554,\"total\":109585408,\"start\":1414620025},\"progress\":\"[===============================================\\u003e
349
- \ ] 104.8 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":105348226,\"total\":109585408,\"start\":1414620025},\"progress\":\"[================================================\\u003e
350
- \ ] 105.3 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":105888898,\"total\":109585408,\"start\":1414620025},\"progress\":\"[================================================\\u003e
351
- \ ] 105.9 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":106429570,\"total\":109585408,\"start\":1414620025},\"progress\":\"[================================================\\u003e
352
- \ ] 106.4 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":106970242,\"total\":109585408,\"start\":1414620025},\"progress\":\"[================================================\\u003e
353
- \ ] 107 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":107510914,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=================================================\\u003e
354
- ] 107.5 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":108051586,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=================================================\\u003e
355
- ] 108.1 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":108592258,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=================================================\\u003e
356
- ] 108.6 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":109132930,\"total\":109585408,\"start\":1414620025},\"progress\":\"[=================================================\\u003e
357
- ] 109.1 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":109585408,\"total\":109585408,\"start\":1414620025},\"progress\":\"[==================================================\\u003e]
358
- 109.6 MB/109.6 MB\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":557056,\"total\":109585408,\"start\":1414620054},\"progress\":\"[\\u003e
359
- \ ] 557.1 kB/109.6 MB 2m4s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1114112,\"total\":109585408,\"start\":1414620054},\"progress\":\"[\\u003e
360
- \ ] 1.114 MB/109.6 MB 1m2s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1671168,\"total\":109585408,\"start\":1414620054},\"progress\":\"[\\u003e
361
- \ ] 1.671 MB/109.6 MB 41s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2228224,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=\\u003e
362
- \ ] 2.228 MB/109.6 MB 30s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2785280,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=\\u003e
363
- \ ] 2.785 MB/109.6 MB 24s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3342336,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=\\u003e
364
- \ ] 3.342 MB/109.6 MB 20s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3899392,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=\\u003e
365
- \ ] 3.899 MB/109.6 MB 17s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4456448,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==\\u003e
366
- \ ] 4.456 MB/109.6 MB 15s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5013504,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==\\u003e
367
- \ ] 5.014 MB/109.6 MB 13s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5570560,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==\\u003e
368
- \ ] 5.571 MB/109.6 MB 12s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6127616,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==\\u003e
369
- \ ] 6.128 MB/109.6 MB 11s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6684672,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===\\u003e
370
- \ ] 6.685 MB/109.6 MB 10s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7241728,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===\\u003e
371
- \ ] 7.242 MB/109.6 MB 9s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7798784,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===\\u003e
372
- \ ] 7.799 MB/109.6 MB 8s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8355840,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===\\u003e
373
- \ ] 8.356 MB/109.6 MB 7s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8912896,\"total\":109585408,\"start\":1414620054},\"progress\":\"[====\\u003e
374
- \ ] 8.913 MB/109.6 MB 7s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9469952,\"total\":109585408,\"start\":1414620054},\"progress\":\"[====\\u003e
375
- \ ] 9.47 MB/109.6 MB 7s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":10027008,\"total\":109585408,\"start\":1414620054},\"progress\":\"[====\\u003e
376
- \ ] 10.03 MB/109.6 MB 6s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":10584064,\"total\":109585408,\"start\":1414620054},\"progress\":\"[====\\u003e
377
- \ ] 10.58 MB/109.6 MB 6s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11141120,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=====\\u003e
378
- \ ] 11.14 MB/109.6 MB 5s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11698176,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=====\\u003e
379
- \ ] 11.7 MB/109.6 MB 5s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12255232,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=====\\u003e
380
- \ ] 12.26 MB/109.6 MB 5s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12812288,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=====\\u003e
381
- \ ] 12.81 MB/109.6 MB 4s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":13369344,\"total\":109585408,\"start\":1414620054},\"progress\":\"[======\\u003e
382
- \ ] 13.37 MB/109.6 MB 4s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":13926400,\"total\":109585408,\"start\":1414620054},\"progress\":\"[======\\u003e
383
- \ ] 13.93 MB/109.6 MB 4s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":14483456,\"total\":109585408,\"start\":1414620054},\"progress\":\"[======\\u003e
384
- \ ] 14.48 MB/109.6 MB 4s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15040512,\"total\":109585408,\"start\":1414620054},\"progress\":\"[======\\u003e
385
- \ ] 15.04 MB/109.6 MB 4s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15597568,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=======\\u003e
386
- \ ] 15.6 MB/109.6 MB 3s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16154624,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=======\\u003e
387
- \ ] 16.15 MB/109.6 MB 3s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16711680,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=======\\u003e
388
- \ ] 16.71 MB/109.6 MB 3s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17268736,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=======\\u003e
389
- \ ] 17.27 MB/109.6 MB 3s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17825792,\"total\":109585408,\"start\":1414620054},\"progress\":\"[========\\u003e
390
- \ ] 17.83 MB/109.6 MB 3s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":18382848,\"total\":109585408,\"start\":1414620054},\"progress\":\"[========\\u003e
391
- \ ] 18.38 MB/109.6 MB 3s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":18939904,\"total\":109585408,\"start\":1414620054},\"progress\":\"[========\\u003e
392
- \ ] 18.94 MB/109.6 MB 3s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":19496960,\"total\":109585408,\"start\":1414620054},\"progress\":\"[========\\u003e
393
- \ ] 19.5 MB/109.6 MB 3s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":20054016,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=========\\u003e
394
- \ ] 20.05 MB/109.6 MB 2s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":20611072,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=========\\u003e
395
- \ ] 20.61 MB/109.6 MB 2s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21168128,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=========\\u003e
396
- \ ] 21.17 MB/109.6 MB 2s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21725184,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=========\\u003e
397
- \ ] 21.73 MB/109.6 MB 2s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22282240,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==========\\u003e
398
- \ ] 22.28 MB/109.6 MB 2s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22839296,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==========\\u003e
399
- \ ] 22.84 MB/109.6 MB 2s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23396352,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==========\\u003e
400
- \ ] 23.4 MB/109.6 MB 2s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23953408,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==========\\u003e
401
- \ ] 23.95 MB/109.6 MB 2s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24510464,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===========\\u003e
402
- \ ] 24.51 MB/109.6 MB 2s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25067520,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===========\\u003e
403
- \ ] 25.07 MB/109.6 MB 2s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25624576,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===========\\u003e
404
- \ ] 25.62 MB/109.6 MB 2s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26181632,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===========\\u003e
405
- \ ] 26.18 MB/109.6 MB 2s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26738688,\"total\":109585408,\"start\":1414620054},\"progress\":\"[============\\u003e
406
- \ ] 26.74 MB/109.6 MB 2s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":27295744,\"total\":109585408,\"start\":1414620054},\"progress\":\"[============\\u003e
407
- \ ] 27.3 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":27852800,\"total\":109585408,\"start\":1414620054},\"progress\":\"[============\\u003e
408
- \ ] 27.85 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":28409856,\"total\":109585408,\"start\":1414620054},\"progress\":\"[============\\u003e
409
- \ ] 28.41 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":28966912,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=============\\u003e
410
- \ ] 28.97 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":29523968,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=============\\u003e
411
- \ ] 29.52 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30081024,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=============\\u003e
412
- \ ] 30.08 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30638080,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=============\\u003e
413
- \ ] 30.64 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":31195136,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==============\\u003e
414
- \ ] 31.2 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":31752192,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==============\\u003e
415
- \ ] 31.75 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32309248,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==============\\u003e
416
- \ ] 32.31 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32866304,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==============\\u003e
417
- \ ] 32.87 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":33423360,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===============\\u003e
418
- \ ] 33.42 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":33980416,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===============\\u003e
419
- \ ] 33.98 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":34537472,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===============\\u003e
420
- \ ] 34.54 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":35094528,\"total\":109585408,\"start\":1414620054},\"progress\":\"[================\\u003e
421
- \ ] 35.09 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":35651584,\"total\":109585408,\"start\":1414620054},\"progress\":\"[================\\u003e
422
- \ ] 35.65 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":36208640,\"total\":109585408,\"start\":1414620054},\"progress\":\"[================\\u003e
423
- \ ] 36.21 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":36765696,\"total\":109585408,\"start\":1414620054},\"progress\":\"[================\\u003e
424
- \ ] 36.77 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":37322752,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=================\\u003e
425
- \ ] 37.32 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":37879808,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=================\\u003e
426
- \ ] 37.88 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":38436864,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=================\\u003e
427
- \ ] 38.44 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":38993920,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=================\\u003e
428
- \ ] 38.99 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":39550976,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==================\\u003e
429
- \ ] 39.55 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":40108032,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==================\\u003e
430
- \ ] 40.11 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":40665088,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==================\\u003e
431
- \ ] 40.67 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":41222144,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==================\\u003e
432
- \ ] 41.22 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":41779200,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===================\\u003e
433
- \ ] 41.78 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":42336256,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===================\\u003e
434
- \ ] 42.34 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":42893312,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===================\\u003e
435
- \ ] 42.89 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":43450368,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===================\\u003e
436
- \ ] 43.45 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":44007424,\"total\":109585408,\"start\":1414620054},\"progress\":\"[====================\\u003e
437
- \ ] 44.01 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":44564480,\"total\":109585408,\"start\":1414620054},\"progress\":\"[====================\\u003e
438
- \ ] 44.56 MB/109.6 MB 1s\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":45121536,\"total\":109585408,\"start\":1414620054},\"progress\":\"[====================\\u003e
439
- \ ] 45.12 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":45678592,\"total\":109585408,\"start\":1414620054},\"progress\":\"[====================\\u003e
440
- \ ] 45.68 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":46235648,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=====================\\u003e
441
- \ ] 46.24 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":46792704,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=====================\\u003e
442
- \ ] 46.79 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":47349760,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=====================\\u003e
443
- \ ] 47.35 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":47906816,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=====================\\u003e
444
- \ ] 47.91 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":48463872,\"total\":109585408,\"start\":1414620054},\"progress\":\"[======================\\u003e
445
- \ ] 48.46 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":49020928,\"total\":109585408,\"start\":1414620054},\"progress\":\"[======================\\u003e
446
- \ ] 49.02 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":49577984,\"total\":109585408,\"start\":1414620054},\"progress\":\"[======================\\u003e
447
- \ ] 49.58 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":50135040,\"total\":109585408,\"start\":1414620054},\"progress\":\"[======================\\u003e
448
- \ ] 50.14 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":50692096,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=======================\\u003e
449
- \ ] 50.69 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":51249152,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=======================\\u003e
450
- \ ] 51.25 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":51806208,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=======================\\u003e
451
- \ ] 51.81 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":52363264,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=======================\\u003e
452
- \ ] 52.36 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":52920320,\"total\":109585408,\"start\":1414620054},\"progress\":\"[========================\\u003e
453
- \ ] 52.92 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":53477376,\"total\":109585408,\"start\":1414620054},\"progress\":\"[========================\\u003e
454
- \ ] 53.48 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":54034432,\"total\":109585408,\"start\":1414620054},\"progress\":\"[========================\\u003e
455
- \ ] 54.03 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":54591488,\"total\":109585408,\"start\":1414620054},\"progress\":\"[========================\\u003e
456
- \ ] 54.59 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":55148544,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=========================\\u003e
457
- \ ] 55.15 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":55705600,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=========================\\u003e
458
- \ ] 55.71 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":56262656,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=========================\\u003e
459
- \ ] 56.26 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":56819712,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=========================\\u003e
460
- \ ] 56.82 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":57376768,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==========================\\u003e
461
- \ ] 57.38 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":57933824,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==========================\\u003e
462
- \ ] 57.93 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":58490880,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==========================\\u003e
463
- \ ] 58.49 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":59047936,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==========================\\u003e
464
- \ ] 59.05 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":59604992,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===========================\\u003e
465
- \ ] 59.6 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":60162048,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===========================\\u003e
466
- \ ] 60.16 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":60719104,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===========================\\u003e
467
- \ ] 60.72 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":61276160,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===========================\\u003e
468
- \ ] 61.28 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":61833216,\"total\":109585408,\"start\":1414620054},\"progress\":\"[============================\\u003e
469
- \ ] 61.83 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":62390272,\"total\":109585408,\"start\":1414620054},\"progress\":\"[============================\\u003e
470
- \ ] 62.39 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":62947328,\"total\":109585408,\"start\":1414620054},\"progress\":\"[============================\\u003e
471
- \ ] 62.95 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":63504384,\"total\":109585408,\"start\":1414620054},\"progress\":\"[============================\\u003e
472
- \ ] 63.5 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":64061440,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=============================\\u003e
473
- \ ] 64.06 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":64618496,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=============================\\u003e
474
- \ ] 64.62 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65175552,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=============================\\u003e
475
- \ ] 65.18 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65732608,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=============================\\u003e
476
- \ ] 65.73 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":66289664,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==============================\\u003e
477
- \ ] 66.29 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":66846720,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==============================\\u003e
478
- \ ] 66.85 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":67403776,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==============================\\u003e
479
- \ ] 67.4 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":67960832,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===============================\\u003e
480
- \ ] 67.96 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":68517888,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===============================\\u003e
481
- \ ] 68.52 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":69074944,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===============================\\u003e
482
- \ ] 69.07 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":69632000,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===============================\\u003e
483
- \ ] 69.63 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":70189056,\"total\":109585408,\"start\":1414620054},\"progress\":\"[================================\\u003e
484
- \ ] 70.19 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":70746112,\"total\":109585408,\"start\":1414620054},\"progress\":\"[================================\\u003e
485
- \ ] 70.75 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":71303168,\"total\":109585408,\"start\":1414620054},\"progress\":\"[================================\\u003e
486
- \ ] 71.3 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":71860224,\"total\":109585408,\"start\":1414620054},\"progress\":\"[================================\\u003e
487
- \ ] 71.86 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":72417280,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=================================\\u003e
488
- \ ] 72.42 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":72974336,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=================================\\u003e
489
- \ ] 72.97 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":73531392,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=================================\\u003e
490
- \ ] 73.53 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":74088448,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=================================\\u003e
491
- \ ] 74.09 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":74645504,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==================================\\u003e
492
- \ ] 74.65 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":75202560,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==================================\\u003e
493
- \ ] 75.2 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":75759616,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==================================\\u003e
494
- \ ] 75.76 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":76316672,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==================================\\u003e
495
- \ ] 76.32 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":76873728,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===================================\\u003e
496
- \ ] 76.87 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":77430784,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===================================\\u003e
497
- \ ] 77.43 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":77987840,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===================================\\u003e
498
- \ ] 77.99 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":78544896,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===================================\\u003e
499
- \ ] 78.54 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":79101952,\"total\":109585408,\"start\":1414620054},\"progress\":\"[====================================\\u003e
500
- \ ] 79.1 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":79659008,\"total\":109585408,\"start\":1414620054},\"progress\":\"[====================================\\u003e
501
- \ ] 79.66 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":80216064,\"total\":109585408,\"start\":1414620054},\"progress\":\"[====================================\\u003e
502
- \ ] 80.22 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":80773120,\"total\":109585408,\"start\":1414620054},\"progress\":\"[====================================\\u003e
503
- \ ] 80.77 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":81330176,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=====================================\\u003e
504
- \ ] 81.33 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":81887232,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=====================================\\u003e
505
- \ ] 81.89 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":82444288,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=====================================\\u003e
506
- \ ] 82.44 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":83001344,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=====================================\\u003e
507
- \ ] 83 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":83558400,\"total\":109585408,\"start\":1414620054},\"progress\":\"[======================================\\u003e
508
- \ ] 83.56 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":84115456,\"total\":109585408,\"start\":1414620054},\"progress\":\"[======================================\\u003e
509
- \ ] 84.12 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":84672512,\"total\":109585408,\"start\":1414620054},\"progress\":\"[======================================\\u003e
510
- \ ] 84.67 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":85229568,\"total\":109585408,\"start\":1414620054},\"progress\":\"[======================================\\u003e
511
- \ ] 85.23 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":85786624,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=======================================\\u003e
512
- \ ] 85.79 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":86343680,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=======================================\\u003e
513
- \ ] 86.34 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":86900736,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=======================================\\u003e
514
- \ ] 86.9 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":87457792,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=======================================\\u003e
515
- \ ] 87.46 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":88014848,\"total\":109585408,\"start\":1414620054},\"progress\":\"[========================================\\u003e
516
- \ ] 88.01 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":88571904,\"total\":109585408,\"start\":1414620054},\"progress\":\"[========================================\\u003e
517
- \ ] 88.57 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":89128960,\"total\":109585408,\"start\":1414620054},\"progress\":\"[========================================\\u003e
518
- \ ] 89.13 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":89686016,\"total\":109585408,\"start\":1414620054},\"progress\":\"[========================================\\u003e
519
- \ ] 89.69 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":90243072,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=========================================\\u003e
520
- \ ] 90.24 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":90800128,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=========================================\\u003e
521
- \ ] 90.8 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":91357184,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=========================================\\u003e
522
- \ ] 91.36 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":91914240,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=========================================\\u003e
523
- \ ] 91.91 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":92471296,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==========================================\\u003e
524
- \ ] 92.47 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":93028352,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==========================================\\u003e
525
- \ ] 93.03 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":93585408,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==========================================\\u003e
526
- \ ] 93.59 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":94142464,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==========================================\\u003e
527
- \ ] 94.14 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":94699520,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===========================================\\u003e
528
- \ ] 94.7 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":95256576,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===========================================\\u003e
529
- \ ] 95.26 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":95813632,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===========================================\\u003e
530
- \ ] 95.81 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":96370688,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===========================================\\u003e
531
- \ ] 96.37 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":96927744,\"total\":109585408,\"start\":1414620054},\"progress\":\"[============================================\\u003e
532
- \ ] 96.93 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":97484800,\"total\":109585408,\"start\":1414620054},\"progress\":\"[============================================\\u003e
533
- \ ] 97.48 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":98041856,\"total\":109585408,\"start\":1414620054},\"progress\":\"[============================================\\u003e
534
- \ ] 98.04 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":98598912,\"total\":109585408,\"start\":1414620054},\"progress\":\"[============================================\\u003e
535
- \ ] 98.6 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":99155968,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=============================================\\u003e
536
- \ ] 99.16 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":99713024,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=============================================\\u003e
537
- \ ] 99.71 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":100270080,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=============================================\\u003e
538
- \ ] 100.3 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":100827136,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==============================================\\u003e
539
- \ ] 100.8 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":101384192,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==============================================\\u003e
540
- \ ] 101.4 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":101941248,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==============================================\\u003e
541
- \ ] 101.9 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":102498304,\"total\":109585408,\"start\":1414620054},\"progress\":\"[==============================================\\u003e
542
- \ ] 102.5 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":103055360,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===============================================\\u003e
543
- \ ] 103.1 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":103612416,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===============================================\\u003e
544
- \ ] 103.6 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":104169472,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===============================================\\u003e
545
- \ ] 104.2 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":104726528,\"total\":109585408,\"start\":1414620054},\"progress\":\"[===============================================\\u003e
546
- \ ] 104.7 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":105283584,\"total\":109585408,\"start\":1414620054},\"progress\":\"[================================================\\u003e
547
- \ ] 105.3 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":105840640,\"total\":109585408,\"start\":1414620054},\"progress\":\"[================================================\\u003e
548
- \ ] 105.8 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":106397696,\"total\":109585408,\"start\":1414620054},\"progress\":\"[================================================\\u003e
549
- \ ] 106.4 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":106954752,\"total\":109585408,\"start\":1414620054},\"progress\":\"[================================================\\u003e
550
- \ ] 107 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":107511808,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=================================================\\u003e
551
- ] 107.5 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":108068864,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=================================================\\u003e
552
- ] 108.1 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":108625920,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=================================================\\u003e
553
- ] 108.6 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":109182976,\"total\":109585408,\"start\":1414620054},\"progress\":\"[=================================================\\u003e
554
- ] 109.2 MB/109.6 MB 0\",\"id\":\"5f18d94c3eca\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"5f18d94c3eca\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":174080,\"start\":1414620054},\"progress\":\"[=========\\u003e
555
- \ ] 32.77 kB/174.1 kB 4s\",\"id\":\"53db23c604fd\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":174080,\"start\":1414620054},\"progress\":\"[==================\\u003e
556
- \ ] 65.54 kB/174.1 kB 1s\",\"id\":\"53db23c604fd\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":98304,\"total\":174080,\"start\":1414620054},\"progress\":\"[============================\\u003e
557
- \ ] 98.3 kB/174.1 kB 0\",\"id\":\"53db23c604fd\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":131072,\"total\":174080,\"start\":1414620054},\"progress\":\"[=====================================\\u003e
558
- \ ] 131.1 kB/174.1 kB 0\",\"id\":\"53db23c604fd\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":163840,\"total\":174080,\"start\":1414620054},\"progress\":\"[===============================================\\u003e
559
- \ ] 163.8 kB/174.1 kB 0\",\"id\":\"53db23c604fd\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":174080,\"total\":174080,\"start\":1414620054},\"progress\":\"[==================================================\\u003e]
560
- 174.1 kB/174.1 kB\",\"id\":\"53db23c604fd\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"53db23c604fd\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11264,\"total\":11264,\"start\":1414620054},\"progress\":\"[==================================================\\u003e]
561
- 11.26 kB/11.26 kB\",\"id\":\"9f045ea36057\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"9f045ea36057\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6656,\"total\":6656,\"start\":1414620054},\"progress\":\"[==================================================\\u003e]
562
- 6.656 kB/6.656 kB\",\"id\":\"d03a1a9d7555\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"d03a1a9d7555\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":25199104,\"start\":1414620054},\"progress\":\"[\\u003e
563
- \ ] 262.1 kB/25.2 MB 1m33s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":524288,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=\\u003e
564
- \ ] 524.3 kB/25.2 MB 46s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":786432,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=\\u003e
565
- \ ] 786.4 kB/25.2 MB 30s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1048576,\"total\":25199104,\"start\":1414620054},\"progress\":\"[==\\u003e
566
- \ ] 1.049 MB/25.2 MB 22s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1310720,\"total\":25199104,\"start\":1414620054},\"progress\":\"[==\\u003e
567
- \ ] 1.311 MB/25.2 MB 17s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1572864,\"total\":25199104,\"start\":1414620054},\"progress\":\"[===\\u003e
568
- \ ] 1.573 MB/25.2 MB 14s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1835008,\"total\":25199104,\"start\":1414620054},\"progress\":\"[===\\u003e
569
- \ ] 1.835 MB/25.2 MB 12s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2097152,\"total\":25199104,\"start\":1414620054},\"progress\":\"[====\\u003e
570
- \ ] 2.097 MB/25.2 MB 10s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2359296,\"total\":25199104,\"start\":1414620054},\"progress\":\"[====\\u003e
571
- \ ] 2.359 MB/25.2 MB 9s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2621440,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=====\\u003e
572
- \ ] 2.621 MB/25.2 MB 8s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2883584,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=====\\u003e
573
- \ ] 2.884 MB/25.2 MB 7s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3145728,\"total\":25199104,\"start\":1414620054},\"progress\":\"[======\\u003e
574
- \ ] 3.146 MB/25.2 MB 6s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3407872,\"total\":25199104,\"start\":1414620054},\"progress\":\"[======\\u003e
575
- \ ] 3.408 MB/25.2 MB 6s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3670016,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=======\\u003e
576
- \ ] 3.67 MB/25.2 MB 5s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3932160,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=======\\u003e
577
- \ ] 3.932 MB/25.2 MB 5s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4194304,\"total\":25199104,\"start\":1414620054},\"progress\":\"[========\\u003e
578
- \ ] 4.194 MB/25.2 MB 4s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4456448,\"total\":25199104,\"start\":1414620054},\"progress\":\"[========\\u003e
579
- \ ] 4.456 MB/25.2 MB 4s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4718592,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=========\\u003e
580
- \ ] 4.719 MB/25.2 MB 4s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4980736,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=========\\u003e
581
- \ ] 4.981 MB/25.2 MB 4s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5242880,\"total\":25199104,\"start\":1414620054},\"progress\":\"[==========\\u003e
582
- \ ] 5.243 MB/25.2 MB 3s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5505024,\"total\":25199104,\"start\":1414620054},\"progress\":\"[==========\\u003e
583
- \ ] 5.505 MB/25.2 MB 3s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5767168,\"total\":25199104,\"start\":1414620054},\"progress\":\"[===========\\u003e
584
- \ ] 5.767 MB/25.2 MB 3s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6029312,\"total\":25199104,\"start\":1414620054},\"progress\":\"[===========\\u003e
585
- \ ] 6.029 MB/25.2 MB 3s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6291456,\"total\":25199104,\"start\":1414620054},\"progress\":\"[============\\u003e
586
- \ ] 6.291 MB/25.2 MB 2s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6553600,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=============\\u003e
587
- \ ] 6.554 MB/25.2 MB 2s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6815744,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=============\\u003e
588
- \ ] 6.816 MB/25.2 MB 2s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7077888,\"total\":25199104,\"start\":1414620054},\"progress\":\"[==============\\u003e
589
- \ ] 7.078 MB/25.2 MB 2s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7340032,\"total\":25199104,\"start\":1414620054},\"progress\":\"[==============\\u003e
590
- \ ] 7.34 MB/25.2 MB 2s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7602176,\"total\":25199104,\"start\":1414620054},\"progress\":\"[===============\\u003e
591
- \ ] 7.602 MB/25.2 MB 2s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7864320,\"total\":25199104,\"start\":1414620054},\"progress\":\"[===============\\u003e
592
- \ ] 7.864 MB/25.2 MB 2s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8126464,\"total\":25199104,\"start\":1414620054},\"progress\":\"[================\\u003e
593
- \ ] 8.126 MB/25.2 MB 2s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8388608,\"total\":25199104,\"start\":1414620054},\"progress\":\"[================\\u003e
594
- \ ] 8.389 MB/25.2 MB 2s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8650752,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=================\\u003e
595
- \ ] 8.651 MB/25.2 MB 1s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8912896,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=================\\u003e
596
- \ ] 8.913 MB/25.2 MB 1s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9175040,\"total\":25199104,\"start\":1414620054},\"progress\":\"[==================\\u003e
597
- \ ] 9.175 MB/25.2 MB 1s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9437184,\"total\":25199104,\"start\":1414620054},\"progress\":\"[==================\\u003e
598
- \ ] 9.437 MB/25.2 MB 1s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9699328,\"total\":25199104,\"start\":1414620054},\"progress\":\"[===================\\u003e
599
- \ ] 9.699 MB/25.2 MB 1s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9961472,\"total\":25199104,\"start\":1414620054},\"progress\":\"[===================\\u003e
600
- \ ] 9.961 MB/25.2 MB 1s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":10223616,\"total\":25199104,\"start\":1414620054},\"progress\":\"[====================\\u003e
601
- \ ] 10.22 MB/25.2 MB 1s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":10485760,\"total\":25199104,\"start\":1414620054},\"progress\":\"[====================\\u003e
602
- \ ] 10.49 MB/25.2 MB 1s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":10747904,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=====================\\u003e
603
- \ ] 10.75 MB/25.2 MB 1s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11010048,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=====================\\u003e
604
- \ ] 11.01 MB/25.2 MB 1s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11272192,\"total\":25199104,\"start\":1414620054},\"progress\":\"[======================\\u003e
605
- \ ] 11.27 MB/25.2 MB 1s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11534336,\"total\":25199104,\"start\":1414620054},\"progress\":\"[======================\\u003e
606
- \ ] 11.53 MB/25.2 MB 1s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11796480,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=======================\\u003e
607
- \ ] 11.8 MB/25.2 MB 1s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12058624,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=======================\\u003e
608
- \ ] 12.06 MB/25.2 MB 1s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12320768,\"total\":25199104,\"start\":1414620054},\"progress\":\"[========================\\u003e
609
- \ ] 12.32 MB/25.2 MB 1s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12582912,\"total\":25199104,\"start\":1414620054},\"progress\":\"[========================\\u003e
610
- \ ] 12.58 MB/25.2 MB 1s\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12845056,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=========================\\u003e
611
- \ ] 12.85 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":13107200,\"total\":25199104,\"start\":1414620054},\"progress\":\"[==========================\\u003e
612
- \ ] 13.11 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":13369344,\"total\":25199104,\"start\":1414620054},\"progress\":\"[==========================\\u003e
613
- \ ] 13.37 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":13631488,\"total\":25199104,\"start\":1414620054},\"progress\":\"[===========================\\u003e
614
- \ ] 13.63 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":13893632,\"total\":25199104,\"start\":1414620054},\"progress\":\"[===========================\\u003e
615
- \ ] 13.89 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":14155776,\"total\":25199104,\"start\":1414620054},\"progress\":\"[============================\\u003e
616
- \ ] 14.16 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":14417920,\"total\":25199104,\"start\":1414620054},\"progress\":\"[============================\\u003e
617
- \ ] 14.42 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":14680064,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=============================\\u003e
618
- \ ] 14.68 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":14942208,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=============================\\u003e
619
- \ ] 14.94 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15204352,\"total\":25199104,\"start\":1414620054},\"progress\":\"[==============================\\u003e
620
- \ ] 15.2 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15466496,\"total\":25199104,\"start\":1414620054},\"progress\":\"[==============================\\u003e
621
- \ ] 15.47 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15728640,\"total\":25199104,\"start\":1414620054},\"progress\":\"[===============================\\u003e
622
- \ ] 15.73 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15990784,\"total\":25199104,\"start\":1414620054},\"progress\":\"[===============================\\u003e
623
- \ ] 15.99 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16252928,\"total\":25199104,\"start\":1414620054},\"progress\":\"[================================\\u003e
624
- \ ] 16.25 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16515072,\"total\":25199104,\"start\":1414620054},\"progress\":\"[================================\\u003e
625
- \ ] 16.52 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16777216,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=================================\\u003e
626
- \ ] 16.78 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17039360,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=================================\\u003e
627
- \ ] 17.04 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17301504,\"total\":25199104,\"start\":1414620054},\"progress\":\"[==================================\\u003e
628
- \ ] 17.3 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17563648,\"total\":25199104,\"start\":1414620054},\"progress\":\"[==================================\\u003e
629
- \ ] 17.56 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17825792,\"total\":25199104,\"start\":1414620054},\"progress\":\"[===================================\\u003e
630
- \ ] 17.83 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":18087936,\"total\":25199104,\"start\":1414620054},\"progress\":\"[===================================\\u003e
631
- \ ] 18.09 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":18350080,\"total\":25199104,\"start\":1414620054},\"progress\":\"[====================================\\u003e
632
- \ ] 18.35 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":18612224,\"total\":25199104,\"start\":1414620054},\"progress\":\"[====================================\\u003e
633
- \ ] 18.61 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":18874368,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=====================================\\u003e
634
- \ ] 18.87 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":19136512,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=====================================\\u003e
635
- \ ] 19.14 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":19398656,\"total\":25199104,\"start\":1414620054},\"progress\":\"[======================================\\u003e
636
- \ ] 19.4 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":19660800,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=======================================\\u003e
637
- \ ] 19.66 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":19922944,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=======================================\\u003e
638
- \ ] 19.92 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":20185088,\"total\":25199104,\"start\":1414620054},\"progress\":\"[========================================\\u003e
639
- \ ] 20.19 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":20447232,\"total\":25199104,\"start\":1414620054},\"progress\":\"[========================================\\u003e
640
- \ ] 20.45 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":20709376,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=========================================\\u003e
641
- \ ] 20.71 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":20971520,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=========================================\\u003e
642
- \ ] 20.97 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21233664,\"total\":25199104,\"start\":1414620054},\"progress\":\"[==========================================\\u003e
643
- \ ] 21.23 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21495808,\"total\":25199104,\"start\":1414620054},\"progress\":\"[==========================================\\u003e
644
- \ ] 21.5 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21757952,\"total\":25199104,\"start\":1414620054},\"progress\":\"[===========================================\\u003e
645
- \ ] 21.76 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22020096,\"total\":25199104,\"start\":1414620054},\"progress\":\"[===========================================\\u003e
646
- \ ] 22.02 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22282240,\"total\":25199104,\"start\":1414620054},\"progress\":\"[============================================\\u003e
647
- \ ] 22.28 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22544384,\"total\":25199104,\"start\":1414620054},\"progress\":\"[============================================\\u003e
648
- \ ] 22.54 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22806528,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=============================================\\u003e
649
- \ ] 22.81 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23068672,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=============================================\\u003e
650
- \ ] 23.07 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23330816,\"total\":25199104,\"start\":1414620054},\"progress\":\"[==============================================\\u003e
651
- \ ] 23.33 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23592960,\"total\":25199104,\"start\":1414620054},\"progress\":\"[==============================================\\u003e
652
- \ ] 23.59 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23855104,\"total\":25199104,\"start\":1414620054},\"progress\":\"[===============================================\\u003e
653
- \ ] 23.86 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24117248,\"total\":25199104,\"start\":1414620054},\"progress\":\"[===============================================\\u003e
654
- \ ] 24.12 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24379392,\"total\":25199104,\"start\":1414620054},\"progress\":\"[================================================\\u003e
655
- \ ] 24.38 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24641536,\"total\":25199104,\"start\":1414620054},\"progress\":\"[================================================\\u003e
656
- \ ] 24.64 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24903680,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=================================================\\u003e
657
- ] 24.9 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25165824,\"total\":25199104,\"start\":1414620054},\"progress\":\"[=================================================\\u003e
658
- ] 25.17 MB/25.2 MB 0\",\"id\":\"30868777f275\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"30868777f275\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3072,\"total\":3072,\"start\":1414620055},\"progress\":\"[==================================================\\u003e]
659
- 3.072 kB/3.072 kB\",\"id\":\"0b310e6bf058\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"0b310e6bf058\"}{\"status\":\"The
660
- image you are pulling has been verified\",\"id\":\"ubuntu:12.04.5\"}\r\n{\"status\":\"Already
661
- exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
662
- exists\",\"progressDetail\":{},\"id\":\"5f18d94c3eca\"}{\"status\":\"Already
663
- exists\",\"progressDetail\":{},\"id\":\"53db23c604fd\"}{\"status\":\"Already
664
- exists\",\"progressDetail\":{},\"id\":\"9f045ea36057\"}{\"status\":\"Already
665
- exists\",\"progressDetail\":{},\"id\":\"d03a1a9d7555\"}{\"status\":\"Already
666
- exists\",\"progressDetail\":{},\"id\":\"30868777f275\"}{\"status\":\"Already
667
- exists\",\"progressDetail\":{},\"id\":\"0b310e6bf058\"}{\"status\":\"The image
668
- you are pulling has been verified\",\"id\":\"ubuntu:14.04\"}\r\n{\"status\":\"Pulling
669
- fs layer\",\"progressDetail\":{},\"id\":\"d497ad3926c8\"}{\"status\":\"Pulling
670
- fs layer\",\"progressDetail\":{},\"id\":\"ccb62158e970\"}{\"status\":\"Pulling
671
- fs layer\",\"progressDetail\":{},\"id\":\"e791be0477f2\"}{\"status\":\"Pulling
672
- fs layer\",\"progressDetail\":{},\"id\":\"3680052c0f5c\"}{\"status\":\"Pulling
673
- fs layer\",\"progressDetail\":{},\"id\":\"22093c35d77b\"}{\"status\":\"Pulling
674
- fs layer\",\"progressDetail\":{},\"id\":\"5506de2b643b\"}{\"status\":\"Already
675
- exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":627,\"total\":3072,\"start\":1414620055},\"progress\":\"[==========\\u003e
676
- \ ] 627 B/3.072 kB 3s\",\"id\":\"5506de2b643b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3072,\"total\":3072,\"start\":1414620055},\"progress\":\"[==================================================\\u003e]
677
- 3.072 kB/3.072 kB\",\"id\":\"5506de2b643b\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"5506de2b643b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3645,\"total\":9216,\"start\":1414620055},\"progress\":\"[===================\\u003e
678
- \ ] 3.645 kB/9.216 kB 1s\",\"id\":\"e791be0477f2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6419,\"total\":9216,\"start\":1414620055},\"progress\":\"[==================================\\u003e
679
- \ ] 6.419 kB/9.216 kB 0\",\"id\":\"e791be0477f2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9216,\"total\":9216,\"start\":1414620055},\"progress\":\"[==================================================\\u003e]
680
- 9.216 kB/9.216 kB\",\"id\":\"e791be0477f2\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"e791be0477f2\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":627,\"total\":6656,\"start\":1414620055},\"progress\":\"[====\\u003e
681
- \ ] 627 B/6.656 kB 8s\",\"id\":\"3680052c0f5c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6656,\"total\":6656,\"start\":1414620055},\"progress\":\"[==================================================\\u003e]
682
- 6.656 kB/6.656 kB\",\"id\":\"3680052c0f5c\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"3680052c0f5c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3643,\"total\":211968,\"start\":1414620055},\"progress\":\"[\\u003e
683
- \ ] 3.643 kB/212 kB 56s\",\"id\":\"ccb62158e970\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15931,\"total\":211968,\"start\":1414620055},\"progress\":\"[===\\u003e
684
- \ ] 15.93 kB/212 kB 12s\",\"id\":\"ccb62158e970\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32315,\"total\":211968,\"start\":1414620055},\"progress\":\"[=======\\u003e
685
- \ ] 32.31 kB/212 kB 5s\",\"id\":\"ccb62158e970\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48699,\"total\":211968,\"start\":1414620055},\"progress\":\"[===========\\u003e
686
- \ ] 48.7 kB/212 kB 3s\",\"id\":\"ccb62158e970\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":97480,\"total\":8395264,\"start\":1414620055},\"progress\":\"[\\u003e
687
- \ ] 97.48 kB/8.395 MB 1m26s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66241,\"total\":211968,\"start\":1414620055},\"progress\":\"[===============\\u003e
688
- \ ] 66.24 kB/212 kB 2s\",\"id\":\"ccb62158e970\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81713,\"total\":211968,\"start\":1414620055},\"progress\":\"[===================\\u003e
689
- \ ] 81.71 kB/212 kB 1s\",\"id\":\"ccb62158e970\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":99009,\"total\":211968,\"start\":1414620055},\"progress\":\"[=======================\\u003e
690
- \ ] 99.01 kB/212 kB 1s\",\"id\":\"ccb62158e970\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":115393,\"total\":211968,\"start\":1414620055},\"progress\":\"[===========================\\u003e
691
- \ ] 115.4 kB/212 kB 0\",\"id\":\"ccb62158e970\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":131777,\"total\":211968,\"start\":1414620055},\"progress\":\"[===============================\\u003e
692
- \ ] 131.8 kB/212 kB 0\",\"id\":\"ccb62158e970\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":147249,\"total\":211968,\"start\":1414620055},\"progress\":\"[==================================\\u003e
693
- \ ] 147.2 kB/212 kB 0\",\"id\":\"ccb62158e970\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":195784,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=\\u003e
694
- \ ] 195.8 kB/8.395 MB 45s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":163633,\"total\":211968,\"start\":1414620055},\"progress\":\"[======================================\\u003e
695
- \ ] 163.6 kB/212 kB 0\",\"id\":\"ccb62158e970\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":180017,\"total\":211968,\"start\":1414620055},\"progress\":\"[==========================================\\u003e
696
- \ ] 180 kB/212 kB 0\",\"id\":\"ccb62158e970\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":196401,\"total\":211968,\"start\":1414620055},\"progress\":\"[==============================================\\u003e
697
- \ ] 196.4 kB/212 kB 0\",\"id\":\"ccb62158e970\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":211968,\"total\":211968,\"start\":1414620055},\"progress\":\"[==================================================\\u003e]
698
- \ 212 kB/212 kB\",\"id\":\"ccb62158e970\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"ccb62158e970\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":294088,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=\\u003e
699
- \ ] 294.1 kB/8.395 MB 31s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":392392,\"total\":8395264,\"start\":1414620055},\"progress\":\"[==\\u003e
700
- \ ] 392.4 kB/8.395 MB 23s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":490696,\"total\":8395264,\"start\":1414620055},\"progress\":\"[==\\u003e
701
- \ ] 490.7 kB/8.395 MB 19s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":539469,\"total\":201599488,\"start\":1414620055},\"progress\":\"[\\u003e
702
- \ ] 539.5 kB/201.6 MB 7m23s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":589000,\"total\":8395264,\"start\":1414620055},\"progress\":\"[===\\u003e
703
- \ ] 589 kB/8.395 MB 16s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":687304,\"total\":8395264,\"start\":1414620055},\"progress\":\"[====\\u003e
704
- \ ] 687.3 kB/8.395 MB 13s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":785608,\"total\":8395264,\"start\":1414620055},\"progress\":\"[====\\u003e
705
- \ ] 785.6 kB/8.395 MB 12s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":883912,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=====\\u003e
706
- \ ] 883.9 kB/8.395 MB 10s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":982216,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=====\\u003e
707
- \ ] 982.2 kB/8.395 MB 9s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1080141,\"total\":201599488,\"start\":1414620055},\"progress\":\"[\\u003e
708
- \ ] 1.08 MB/201.6 MB 4m2s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1080520,\"total\":8395264,\"start\":1414620055},\"progress\":\"[======\\u003e
709
- \ ] 1.081 MB/8.395 MB 8s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1178824,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=======\\u003e
710
- \ ] 1.179 MB/8.395 MB 8s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1277128,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=======\\u003e
711
- \ ] 1.277 MB/8.395 MB 7s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1375432,\"total\":8395264,\"start\":1414620055},\"progress\":\"[========\\u003e
712
- \ ] 1.375 MB/8.395 MB 7s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1473736,\"total\":8395264,\"start\":1414620055},\"progress\":\"[========\\u003e
713
- \ ] 1.474 MB/8.395 MB 7s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1620813,\"total\":201599488,\"start\":1414620055},\"progress\":\"[\\u003e
714
- \ ] 1.621 MB/201.6 MB 3m34s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1572040,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=========\\u003e
715
- \ ] 1.572 MB/8.395 MB 7s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1670344,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=========\\u003e
716
- \ ] 1.67 MB/8.395 MB 7s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1768648,\"total\":8395264,\"start\":1414620055},\"progress\":\"[==========\\u003e
717
- \ ] 1.769 MB/8.395 MB 7s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1866952,\"total\":8395264,\"start\":1414620055},\"progress\":\"[===========\\u003e
718
- \ ] 1.867 MB/8.395 MB 7s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1965256,\"total\":8395264,\"start\":1414620055},\"progress\":\"[===========\\u003e
719
- \ ] 1.965 MB/8.395 MB 6s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2063560,\"total\":8395264,\"start\":1414620055},\"progress\":\"[============\\u003e
720
- \ ] 2.064 MB/8.395 MB 6s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2161485,\"total\":201599488,\"start\":1414620055},\"progress\":\"[\\u003e
721
- \ ] 2.161 MB/201.6 MB 3m29s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2161864,\"total\":8395264,\"start\":1414620055},\"progress\":\"[============\\u003e
722
- \ ] 2.162 MB/8.395 MB 6s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2260168,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=============\\u003e
723
- \ ] 2.26 MB/8.395 MB 6s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2358472,\"total\":8395264,\"start\":1414620055},\"progress\":\"[==============\\u003e
724
- \ ] 2.358 MB/8.395 MB 6s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2456776,\"total\":8395264,\"start\":1414620055},\"progress\":\"[==============\\u003e
725
- \ ] 2.457 MB/8.395 MB 6s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2553928,\"total\":8395264,\"start\":1414620055},\"progress\":\"[===============\\u003e
726
- \ ] 2.554 MB/8.395 MB 5s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2652232,\"total\":8395264,\"start\":1414620055},\"progress\":\"[===============\\u003e
727
- \ ] 2.652 MB/8.395 MB 5s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2702157,\"total\":201599488,\"start\":1414620055},\"progress\":\"[\\u003e
728
- \ ] 2.702 MB/201.6 MB 3m21s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2750536,\"total\":8395264,\"start\":1414620055},\"progress\":\"[================\\u003e
729
- \ ] 2.751 MB/8.395 MB 5s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2848840,\"total\":8395264,\"start\":1414620055},\"progress\":\"[================\\u003e
730
- \ ] 2.849 MB/8.395 MB 5s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2948296,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=================\\u003e
731
- \ ] 2.948 MB/8.395 MB 5s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3046600,\"total\":8395264,\"start\":1414620055},\"progress\":\"[==================\\u003e
732
- \ ] 3.047 MB/8.395 MB 5s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3144904,\"total\":8395264,\"start\":1414620055},\"progress\":\"[==================\\u003e
733
- \ ] 3.145 MB/8.395 MB 5s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3243208,\"total\":8395264,\"start\":1414620055},\"progress\":\"[===================\\u003e
734
- \ ] 3.243 MB/8.395 MB 4s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3242829,\"total\":201599488,\"start\":1414620055},\"progress\":\"[\\u003e
735
- \ ] 3.243 MB/201.6 MB 3m10s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3341512,\"total\":8395264,\"start\":1414620055},\"progress\":\"[===================\\u003e
736
- \ ] 3.342 MB/8.395 MB 4s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3439816,\"total\":8395264,\"start\":1414620055},\"progress\":\"[====================\\u003e
737
- \ ] 3.44 MB/8.395 MB 4s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3538120,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=====================\\u003e
738
- \ ] 3.538 MB/8.395 MB 4s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3636424,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=====================\\u003e
739
- \ ] 3.636 MB/8.395 MB 4s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3734728,\"total\":8395264,\"start\":1414620055},\"progress\":\"[======================\\u003e
740
- \ ] 3.735 MB/8.395 MB 4s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3833032,\"total\":8395264,\"start\":1414620055},\"progress\":\"[======================\\u003e
741
- \ ] 3.833 MB/8.395 MB 4s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3783501,\"total\":201599488,\"start\":1414620055},\"progress\":\"[\\u003e
742
- \ ] 3.784 MB/201.6 MB 3m3s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3931336,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=======================\\u003e
743
- \ ] 3.931 MB/8.395 MB 4s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4029640,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=======================\\u003e
744
- \ ] 4.03 MB/8.395 MB 3s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4127944,\"total\":8395264,\"start\":1414620055},\"progress\":\"[========================\\u003e
745
- \ ] 4.128 MB/8.395 MB 3s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4226248,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=========================\\u003e
746
- \ ] 4.226 MB/8.395 MB 3s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4324552,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=========================\\u003e
747
- \ ] 4.325 MB/8.395 MB 3s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4422856,\"total\":8395264,\"start\":1414620055},\"progress\":\"[==========================\\u003e
748
- \ ] 4.423 MB/8.395 MB 3s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4324173,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=\\u003e
749
- \ ] 4.324 MB/201.6 MB 2m54s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4521160,\"total\":8395264,\"start\":1414620055},\"progress\":\"[==========================\\u003e
750
- \ ] 4.521 MB/8.395 MB 3s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4619464,\"total\":8395264,\"start\":1414620055},\"progress\":\"[===========================\\u003e
751
- \ ] 4.619 MB/8.395 MB 3s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4717768,\"total\":8395264,\"start\":1414620055},\"progress\":\"[============================\\u003e
752
- \ ] 4.718 MB/8.395 MB 3s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4816072,\"total\":8395264,\"start\":1414620055},\"progress\":\"[============================\\u003e
753
- \ ] 4.816 MB/8.395 MB 2s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4914376,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=============================\\u003e
754
- \ ] 4.914 MB/8.395 MB 2s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5012680,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=============================\\u003e
755
- \ ] 5.013 MB/8.395 MB 2s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4864845,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=\\u003e
756
- \ ] 4.865 MB/201.6 MB 2m46s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5110984,\"total\":8395264,\"start\":1414620055},\"progress\":\"[==============================\\u003e
757
- \ ] 5.111 MB/8.395 MB 2s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5209288,\"total\":8395264,\"start\":1414620055},\"progress\":\"[===============================\\u003e
758
- \ ] 5.209 MB/8.395 MB 2s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5307592,\"total\":8395264,\"start\":1414620055},\"progress\":\"[===============================\\u003e
759
- \ ] 5.308 MB/8.395 MB 2s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5405896,\"total\":8395264,\"start\":1414620055},\"progress\":\"[================================\\u003e
760
- \ ] 5.406 MB/8.395 MB 2s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5504200,\"total\":8395264,\"start\":1414620055},\"progress\":\"[================================\\u003e
761
- \ ] 5.504 MB/8.395 MB 2s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5405517,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=\\u003e
762
- \ ] 5.406 MB/201.6 MB 2m39s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5602504,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=================================\\u003e
763
- \ ] 5.603 MB/8.395 MB 2s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5700808,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=================================\\u003e
764
- \ ] 5.701 MB/8.395 MB 2s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5799112,\"total\":8395264,\"start\":1414620055},\"progress\":\"[==================================\\u003e
765
- \ ] 5.799 MB/8.395 MB 2s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5897416,\"total\":8395264,\"start\":1414620055},\"progress\":\"[===================================\\u003e
766
- \ ] 5.897 MB/8.395 MB 1s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5995720,\"total\":8395264,\"start\":1414620055},\"progress\":\"[===================================\\u003e
767
- \ ] 5.996 MB/8.395 MB 1s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5946189,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=\\u003e
768
- \ ] 5.946 MB/201.6 MB 2m33s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6094024,\"total\":8395264,\"start\":1414620055},\"progress\":\"[====================================\\u003e
769
- \ ] 6.094 MB/8.395 MB 1s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6192328,\"total\":8395264,\"start\":1414620055},\"progress\":\"[====================================\\u003e
770
- \ ] 6.192 MB/8.395 MB 1s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6290632,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=====================================\\u003e
771
- \ ] 6.291 MB/8.395 MB 1s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6388936,\"total\":8395264,\"start\":1414620055},\"progress\":\"[======================================\\u003e
772
- \ ] 6.389 MB/8.395 MB 1s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6487240,\"total\":8395264,\"start\":1414620055},\"progress\":\"[======================================\\u003e
773
- \ ] 6.487 MB/8.395 MB 1s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6585544,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=======================================\\u003e
774
- \ ] 6.586 MB/8.395 MB 1s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6486861,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=\\u003e
775
- \ ] 6.487 MB/201.6 MB 2m28s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6683848,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=======================================\\u003e
776
- \ ] 6.684 MB/8.395 MB 1s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6782152,\"total\":8395264,\"start\":1414620055},\"progress\":\"[========================================\\u003e
777
- \ ] 6.782 MB/8.395 MB 1s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6880456,\"total\":8395264,\"start\":1414620055},\"progress\":\"[========================================\\u003e
778
- \ ] 6.88 MB/8.395 MB 1s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6978760,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=========================================\\u003e
779
- \ ] 6.979 MB/8.395 MB 1s\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7077064,\"total\":8395264,\"start\":1414620055},\"progress\":\"[==========================================\\u003e
780
- \ ] 7.077 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7027533,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=\\u003e
781
- \ ] 7.028 MB/201.6 MB 2m24s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7175368,\"total\":8395264,\"start\":1414620055},\"progress\":\"[==========================================\\u003e
782
- \ ] 7.175 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7273672,\"total\":8395264,\"start\":1414620055},\"progress\":\"[===========================================\\u003e
783
- \ ] 7.274 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7371976,\"total\":8395264,\"start\":1414620055},\"progress\":\"[===========================================\\u003e
784
- \ ] 7.372 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7470280,\"total\":8395264,\"start\":1414620055},\"progress\":\"[============================================\\u003e
785
- \ ] 7.47 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7568584,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=============================================\\u003e
786
- \ ] 7.569 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7666888,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=============================================\\u003e
787
- \ ] 7.667 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7765192,\"total\":8395264,\"start\":1414620055},\"progress\":\"[==============================================\\u003e
788
- \ ] 7.765 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7568205,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=\\u003e
789
- \ ] 7.568 MB/201.6 MB 2m21s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7863496,\"total\":8395264,\"start\":1414620055},\"progress\":\"[==============================================\\u003e
790
- \ ] 7.863 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7961800,\"total\":8395264,\"start\":1414620055},\"progress\":\"[===============================================\\u003e
791
- \ ] 7.962 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8060104,\"total\":8395264,\"start\":1414620055},\"progress\":\"[================================================\\u003e
792
- \ ] 8.06 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8158408,\"total\":8395264,\"start\":1414620055},\"progress\":\"[================================================\\u003e
793
- \ ] 8.158 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8256712,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=================================================\\u003e
794
- ] 8.257 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8355016,\"total\":8395264,\"start\":1414620055},\"progress\":\"[=================================================\\u003e
795
- ] 8.355 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8395264,\"total\":8395264,\"start\":1414620055},\"progress\":\"[==================================================\\u003e]
796
- 8.395 MB/8.395 MB\",\"id\":\"22093c35d77b\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"22093c35d77b\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8108877,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==\\u003e
797
- \ ] 8.109 MB/201.6 MB 2m20s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8649549,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==\\u003e
798
- \ ] 8.65 MB/201.6 MB 2m19s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9190221,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==\\u003e
799
- \ ] 9.19 MB/201.6 MB 2m16s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9730893,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==\\u003e
800
- \ ] 9.731 MB/201.6 MB 2m14s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10271565,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==\\u003e
801
- \ ] 10.27 MB/201.6 MB 2m12s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10812237,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==\\u003e
802
- \ ] 10.81 MB/201.6 MB 2m10s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11352909,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==\\u003e
803
- \ ] 11.35 MB/201.6 MB 2m8s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11893581,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==\\u003e
804
- \ ] 11.89 MB/201.6 MB 2m6s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12434253,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===\\u003e
805
- \ ] 12.43 MB/201.6 MB 2m4s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12974925,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===\\u003e
806
- \ ] 12.97 MB/201.6 MB 2m1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13515597,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===\\u003e
807
- \ ] 13.52 MB/201.6 MB 1m59s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14056269,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===\\u003e
808
- \ ] 14.06 MB/201.6 MB 1m56s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14596941,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===\\u003e
809
- \ ] 14.6 MB/201.6 MB 1m54s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15137613,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===\\u003e
810
- \ ] 15.14 MB/201.6 MB 1m53s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15678285,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===\\u003e
811
- \ ] 15.68 MB/201.6 MB 1m52s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16218957,\"total\":201599488,\"start\":1414620055},\"progress\":\"[====\\u003e
812
- \ ] 16.22 MB/201.6 MB 1m51s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16759629,\"total\":201599488,\"start\":1414620055},\"progress\":\"[====\\u003e
813
- \ ] 16.76 MB/201.6 MB 1m50s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17300301,\"total\":201599488,\"start\":1414620055},\"progress\":\"[====\\u003e
814
- \ ] 17.3 MB/201.6 MB 1m50s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17840973,\"total\":201599488,\"start\":1414620055},\"progress\":\"[====\\u003e
815
- \ ] 17.84 MB/201.6 MB 1m49s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18381645,\"total\":201599488,\"start\":1414620055},\"progress\":\"[====\\u003e
816
- \ ] 18.38 MB/201.6 MB 1m47s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18922317,\"total\":201599488,\"start\":1414620055},\"progress\":\"[====\\u003e
817
- \ ] 18.92 MB/201.6 MB 1m46s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19462989,\"total\":201599488,\"start\":1414620055},\"progress\":\"[====\\u003e
818
- \ ] 19.46 MB/201.6 MB 1m44s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20003661,\"total\":201599488,\"start\":1414620055},\"progress\":\"[====\\u003e
819
- \ ] 20 MB/201.6 MB 1m43s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20544333,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=====\\u003e
820
- \ ] 20.54 MB/201.6 MB 1m42s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21085005,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=====\\u003e
821
- \ ] 21.09 MB/201.6 MB 1m41s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21625677,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=====\\u003e
822
- \ ] 21.63 MB/201.6 MB 1m39s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22166349,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=====\\u003e
823
- \ ] 22.17 MB/201.6 MB 1m38s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22707021,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=====\\u003e
824
- \ ] 22.71 MB/201.6 MB 1m37s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23247693,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=====\\u003e
825
- \ ] 23.25 MB/201.6 MB 1m36s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23788365,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=====\\u003e
826
- \ ] 23.79 MB/201.6 MB 1m34s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24329037,\"total\":201599488,\"start\":1414620055},\"progress\":\"[======\\u003e
827
- \ ] 24.33 MB/201.6 MB 1m33s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24869709,\"total\":201599488,\"start\":1414620055},\"progress\":\"[======\\u003e
828
- \ ] 24.87 MB/201.6 MB 1m32s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25410381,\"total\":201599488,\"start\":1414620055},\"progress\":\"[======\\u003e
829
- \ ] 25.41 MB/201.6 MB 1m31s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25951053,\"total\":201599488,\"start\":1414620055},\"progress\":\"[======\\u003e
830
- \ ] 25.95 MB/201.6 MB 1m29s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26491725,\"total\":201599488,\"start\":1414620055},\"progress\":\"[======\\u003e
831
- \ ] 26.49 MB/201.6 MB 1m28s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27032397,\"total\":201599488,\"start\":1414620055},\"progress\":\"[======\\u003e
832
- \ ] 27.03 MB/201.6 MB 1m27s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27573069,\"total\":201599488,\"start\":1414620055},\"progress\":\"[======\\u003e
833
- \ ] 27.57 MB/201.6 MB 1m26s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28113741,\"total\":201599488,\"start\":1414620055},\"progress\":\"[======\\u003e
834
- \ ] 28.11 MB/201.6 MB 1m25s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28654413,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=======\\u003e
835
- \ ] 28.65 MB/201.6 MB 1m24s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29195085,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=======\\u003e
836
- \ ] 29.2 MB/201.6 MB 1m23s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29735757,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=======\\u003e
837
- \ ] 29.74 MB/201.6 MB 1m22s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30276429,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=======\\u003e
838
- \ ] 30.28 MB/201.6 MB 1m21s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30817101,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=======\\u003e
839
- \ ] 30.82 MB/201.6 MB 1m20s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31357773,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=======\\u003e
840
- \ ] 31.36 MB/201.6 MB 1m20s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31898445,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=======\\u003e
841
- \ ] 31.9 MB/201.6 MB 1m19s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32439117,\"total\":201599488,\"start\":1414620055},\"progress\":\"[========\\u003e
842
- \ ] 32.44 MB/201.6 MB 1m18s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32979789,\"total\":201599488,\"start\":1414620055},\"progress\":\"[========\\u003e
843
- \ ] 32.98 MB/201.6 MB 1m17s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33520461,\"total\":201599488,\"start\":1414620055},\"progress\":\"[========\\u003e
844
- \ ] 33.52 MB/201.6 MB 1m16s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34061133,\"total\":201599488,\"start\":1414620055},\"progress\":\"[========\\u003e
845
- \ ] 34.06 MB/201.6 MB 1m15s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34601805,\"total\":201599488,\"start\":1414620055},\"progress\":\"[========\\u003e
846
- \ ] 34.6 MB/201.6 MB 1m15s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35142477,\"total\":201599488,\"start\":1414620055},\"progress\":\"[========\\u003e
847
- \ ] 35.14 MB/201.6 MB 1m14s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35683149,\"total\":201599488,\"start\":1414620055},\"progress\":\"[========\\u003e
848
- \ ] 35.68 MB/201.6 MB 1m13s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36223821,\"total\":201599488,\"start\":1414620055},\"progress\":\"[========\\u003e
849
- \ ] 36.22 MB/201.6 MB 1m13s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36764493,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=========\\u003e
850
- \ ] 36.76 MB/201.6 MB 1m12s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37305165,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=========\\u003e
851
- \ ] 37.31 MB/201.6 MB 1m11s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37845837,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=========\\u003e
852
- \ ] 37.85 MB/201.6 MB 1m11s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38386509,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=========\\u003e
853
- \ ] 38.39 MB/201.6 MB 1m10s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38927181,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=========\\u003e
854
- \ ] 38.93 MB/201.6 MB 1m9s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39467853,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=========\\u003e
855
- \ ] 39.47 MB/201.6 MB 1m8s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40008525,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=========\\u003e
856
- \ ] 40.01 MB/201.6 MB 1m8s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40549197,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==========\\u003e
857
- \ ] 40.55 MB/201.6 MB 1m7s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41089869,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==========\\u003e
858
- \ ] 41.09 MB/201.6 MB 1m6s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41630541,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==========\\u003e
859
- \ ] 41.63 MB/201.6 MB 1m6s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42171213,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==========\\u003e
860
- \ ] 42.17 MB/201.6 MB 1m6s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42711885,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==========\\u003e
861
- \ ] 42.71 MB/201.6 MB 1m5s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43252557,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==========\\u003e
862
- \ ] 43.25 MB/201.6 MB 1m4s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43793229,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==========\\u003e
863
- \ ] 43.79 MB/201.6 MB 1m4s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44333901,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==========\\u003e
864
- \ ] 44.33 MB/201.6 MB 1m4s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44874573,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===========\\u003e
865
- \ ] 44.87 MB/201.6 MB 1m3s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45415245,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===========\\u003e
866
- \ ] 45.42 MB/201.6 MB 1m3s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45955917,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===========\\u003e
867
- \ ] 45.96 MB/201.6 MB 1m2s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46496589,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===========\\u003e
868
- \ ] 46.5 MB/201.6 MB 1m2s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47037261,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===========\\u003e
869
- \ ] 47.04 MB/201.6 MB 1m1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47577933,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===========\\u003e
870
- \ ] 47.58 MB/201.6 MB 1m1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48118605,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===========\\u003e
871
- \ ] 48.12 MB/201.6 MB 1m0s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48659277,\"total\":201599488,\"start\":1414620055},\"progress\":\"[============\\u003e
872
- \ ] 48.66 MB/201.6 MB 1m0s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49199949,\"total\":201599488,\"start\":1414620055},\"progress\":\"[============\\u003e
873
- \ ] 49.2 MB/201.6 MB 59s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49740621,\"total\":201599488,\"start\":1414620055},\"progress\":\"[============\\u003e
874
- \ ] 49.74 MB/201.6 MB 59s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50265318,\"total\":201599488,\"start\":1414620055},\"progress\":\"[============\\u003e
875
- \ ] 50.27 MB/201.6 MB 59s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50805990,\"total\":201599488,\"start\":1414620055},\"progress\":\"[============\\u003e
876
- \ ] 50.81 MB/201.6 MB 59s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51336686,\"total\":201599488,\"start\":1414620055},\"progress\":\"[============\\u003e
877
- \ ] 51.34 MB/201.6 MB 59s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51876766,\"total\":201599488,\"start\":1414620055},\"progress\":\"[============\\u003e
878
- \ ] 51.88 MB/201.6 MB 58s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52417438,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=============\\u003e
879
- \ ] 52.42 MB/201.6 MB 58s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52958110,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=============\\u003e
880
- \ ] 52.96 MB/201.6 MB 57s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53498782,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=============\\u003e
881
- \ ] 53.5 MB/201.6 MB 57s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54039454,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=============\\u003e
882
- \ ] 54.04 MB/201.6 MB 57s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54580126,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=============\\u003e
883
- \ ] 54.58 MB/201.6 MB 56s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55120798,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=============\\u003e
884
- \ ] 55.12 MB/201.6 MB 56s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55661470,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=============\\u003e
885
- \ ] 55.66 MB/201.6 MB 56s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56202142,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=============\\u003e
886
- \ ] 56.2 MB/201.6 MB 55s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56742814,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==============\\u003e
887
- \ ] 56.74 MB/201.6 MB 55s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57283486,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==============\\u003e
888
- \ ] 57.28 MB/201.6 MB 54s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57824158,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==============\\u003e
889
- \ ] 57.82 MB/201.6 MB 54s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58364830,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==============\\u003e
890
- \ ] 58.36 MB/201.6 MB 54s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58905502,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==============\\u003e
891
- \ ] 58.91 MB/201.6 MB 53s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59446174,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==============\\u003e
892
- \ ] 59.45 MB/201.6 MB 53s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59986846,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==============\\u003e
893
- \ ] 59.99 MB/201.6 MB 53s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60511710,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===============\\u003e
894
- \ ] 60.51 MB/201.6 MB 52s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61052382,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===============\\u003e
895
- \ ] 61.05 MB/201.6 MB 52s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61593054,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===============\\u003e
896
- \ ] 61.59 MB/201.6 MB 52s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62133726,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===============\\u003e
897
- \ ] 62.13 MB/201.6 MB 51s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62674398,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===============\\u003e
898
- \ ] 62.67 MB/201.6 MB 51s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63215070,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===============\\u003e
899
- \ ] 63.22 MB/201.6 MB 51s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63755742,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===============\\u003e
900
- \ ] 63.76 MB/201.6 MB 50s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64296414,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===============\\u003e
901
- \ ] 64.3 MB/201.6 MB 50s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64837086,\"total\":201599488,\"start\":1414620055},\"progress\":\"[================\\u003e
902
- \ ] 64.84 MB/201.6 MB 50s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65377758,\"total\":201599488,\"start\":1414620055},\"progress\":\"[================\\u003e
903
- \ ] 65.38 MB/201.6 MB 49s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65918430,\"total\":201599488,\"start\":1414620055},\"progress\":\"[================\\u003e
904
- \ ] 65.92 MB/201.6 MB 49s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66459102,\"total\":201599488,\"start\":1414620055},\"progress\":\"[================\\u003e
905
- \ ] 66.46 MB/201.6 MB 49s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66999774,\"total\":201599488,\"start\":1414620055},\"progress\":\"[================\\u003e
906
- \ ] 67 MB/201.6 MB 48s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67540446,\"total\":201599488,\"start\":1414620055},\"progress\":\"[================\\u003e
907
- \ ] 67.54 MB/201.6 MB 48s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68081118,\"total\":201599488,\"start\":1414620055},\"progress\":\"[================\\u003e
908
- \ ] 68.08 MB/201.6 MB 47s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68621790,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=================\\u003e
909
- \ ] 68.62 MB/201.6 MB 47s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69162462,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=================\\u003e
910
- \ ] 69.16 MB/201.6 MB 47s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69703134,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=================\\u003e
911
- \ ] 69.7 MB/201.6 MB 46s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70243806,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=================\\u003e
912
- \ ] 70.24 MB/201.6 MB 46s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70784478,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=================\\u003e
913
- \ ] 70.78 MB/201.6 MB 46s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71325150,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=================\\u003e
914
- \ ] 71.33 MB/201.6 MB 45s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71865822,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=================\\u003e
915
- \ ] 71.87 MB/201.6 MB 45s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72406494,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=================\\u003e
916
- \ ] 72.41 MB/201.6 MB 45s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72947166,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==================\\u003e
917
- \ ] 72.95 MB/201.6 MB 44s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73487838,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==================\\u003e
918
- \ ] 73.49 MB/201.6 MB 44s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74028510,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==================\\u003e
919
- \ ] 74.03 MB/201.6 MB 44s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74569182,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==================\\u003e
920
- \ ] 74.57 MB/201.6 MB 43s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75109854,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==================\\u003e
921
- \ ] 75.11 MB/201.6 MB 43s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75650526,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==================\\u003e
922
- \ ] 75.65 MB/201.6 MB 43s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76191198,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==================\\u003e
923
- \ ] 76.19 MB/201.6 MB 42s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76731870,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===================\\u003e
924
- \ ] 76.73 MB/201.6 MB 42s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77272542,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===================\\u003e
925
- \ ] 77.27 MB/201.6 MB 42s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77813214,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===================\\u003e
926
- \ ] 77.81 MB/201.6 MB 41s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78353886,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===================\\u003e
927
- \ ] 78.35 MB/201.6 MB 41s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78894558,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===================\\u003e
928
- \ ] 78.89 MB/201.6 MB 41s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79435230,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===================\\u003e
929
- \ ] 79.44 MB/201.6 MB 40s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79975902,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===================\\u003e
930
- \ ] 79.98 MB/201.6 MB 40s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80516574,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===================\\u003e
931
- \ ] 80.52 MB/201.6 MB 40s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81057246,\"total\":201599488,\"start\":1414620055},\"progress\":\"[====================\\u003e
932
- \ ] 81.06 MB/201.6 MB 39s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81597918,\"total\":201599488,\"start\":1414620055},\"progress\":\"[====================\\u003e
933
- \ ] 81.6 MB/201.6 MB 39s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82138590,\"total\":201599488,\"start\":1414620055},\"progress\":\"[====================\\u003e
934
- \ ] 82.14 MB/201.6 MB 39s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82679262,\"total\":201599488,\"start\":1414620055},\"progress\":\"[====================\\u003e
935
- \ ] 82.68 MB/201.6 MB 39s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83219934,\"total\":201599488,\"start\":1414620055},\"progress\":\"[====================\\u003e
936
- \ ] 83.22 MB/201.6 MB 38s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83760606,\"total\":201599488,\"start\":1414620055},\"progress\":\"[====================\\u003e
937
- \ ] 83.76 MB/201.6 MB 38s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84301278,\"total\":201599488,\"start\":1414620055},\"progress\":\"[====================\\u003e
938
- \ ] 84.3 MB/201.6 MB 38s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84841950,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=====================\\u003e
939
- \ ] 84.84 MB/201.6 MB 37s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85382622,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=====================\\u003e
940
- \ ] 85.38 MB/201.6 MB 37s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85923294,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=====================\\u003e
941
- \ ] 85.92 MB/201.6 MB 37s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86463966,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=====================\\u003e
942
- \ ] 86.46 MB/201.6 MB 36s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87004638,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=====================\\u003e
943
- \ ] 87 MB/201.6 MB 36s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87545310,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=====================\\u003e
944
- \ ] 87.55 MB/201.6 MB 36s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88085982,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=====================\\u003e
945
- \ ] 88.09 MB/201.6 MB 36s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88626654,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=====================\\u003e
946
- \ ] 88.63 MB/201.6 MB 35s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89167326,\"total\":201599488,\"start\":1414620055},\"progress\":\"[======================\\u003e
947
- \ ] 89.17 MB/201.6 MB 35s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89707998,\"total\":201599488,\"start\":1414620055},\"progress\":\"[======================\\u003e
948
- \ ] 89.71 MB/201.6 MB 35s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90248670,\"total\":201599488,\"start\":1414620055},\"progress\":\"[======================\\u003e
949
- \ ] 90.25 MB/201.6 MB 35s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90789342,\"total\":201599488,\"start\":1414620055},\"progress\":\"[======================\\u003e
950
- \ ] 90.79 MB/201.6 MB 35s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91330014,\"total\":201599488,\"start\":1414620055},\"progress\":\"[======================\\u003e
951
- \ ] 91.33 MB/201.6 MB 34s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91870686,\"total\":201599488,\"start\":1414620055},\"progress\":\"[======================\\u003e
952
- \ ] 91.87 MB/201.6 MB 34s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92411358,\"total\":201599488,\"start\":1414620055},\"progress\":\"[======================\\u003e
953
- \ ] 92.41 MB/201.6 MB 34s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92952030,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=======================\\u003e
954
- \ ] 92.95 MB/201.6 MB 34s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93492702,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=======================\\u003e
955
- \ ] 93.49 MB/201.6 MB 34s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94033374,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=======================\\u003e
956
- \ ] 94.03 MB/201.6 MB 33s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94574046,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=======================\\u003e
957
- \ ] 94.57 MB/201.6 MB 33s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":95114718,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=======================\\u003e
958
- \ ] 95.11 MB/201.6 MB 33s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":95655390,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=======================\\u003e
959
- \ ] 95.66 MB/201.6 MB 33s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":96196062,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=======================\\u003e
960
- \ ] 96.2 MB/201.6 MB 32s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":96736734,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=======================\\u003e
961
- \ ] 96.74 MB/201.6 MB 32s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":97277406,\"total\":201599488,\"start\":1414620055},\"progress\":\"[========================\\u003e
962
- \ ] 97.28 MB/201.6 MB 32s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":97818078,\"total\":201599488,\"start\":1414620055},\"progress\":\"[========================\\u003e
963
- \ ] 97.82 MB/201.6 MB 32s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":98358750,\"total\":201599488,\"start\":1414620055},\"progress\":\"[========================\\u003e
964
- \ ] 98.36 MB/201.6 MB 32s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":98899422,\"total\":201599488,\"start\":1414620055},\"progress\":\"[========================\\u003e
965
- \ ] 98.9 MB/201.6 MB 32s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":99440094,\"total\":201599488,\"start\":1414620055},\"progress\":\"[========================\\u003e
966
- \ ] 99.44 MB/201.6 MB 31s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":99980766,\"total\":201599488,\"start\":1414620055},\"progress\":\"[========================\\u003e
967
- \ ] 99.98 MB/201.6 MB 31s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":100521438,\"total\":201599488,\"start\":1414620055},\"progress\":\"[========================\\u003e
968
- \ ] 100.5 MB/201.6 MB 31s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":101062110,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=========================\\u003e
969
- \ ] 101.1 MB/201.6 MB 31s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":101602782,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=========================\\u003e
970
- \ ] 101.6 MB/201.6 MB 30s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":102133181,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=========================\\u003e
971
- \ ] 102.1 MB/201.6 MB 30s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":102673853,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=========================\\u003e
972
- \ ] 102.7 MB/201.6 MB 30s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":103214525,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=========================\\u003e
973
- \ ] 103.2 MB/201.6 MB 30s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":103755197,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=========================\\u003e
974
- \ ] 103.8 MB/201.6 MB 30s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":104295869,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=========================\\u003e
975
- \ ] 104.3 MB/201.6 MB 30s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":104836541,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==========================\\u003e
976
- \ ] 104.8 MB/201.6 MB 29s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":105377213,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==========================\\u003e
977
- \ ] 105.4 MB/201.6 MB 29s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":105917885,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==========================\\u003e
978
- \ ] 105.9 MB/201.6 MB 29s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":106458557,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==========================\\u003e
979
- \ ] 106.5 MB/201.6 MB 29s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":106999229,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==========================\\u003e
980
- \ ] 107 MB/201.6 MB 28s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":107539901,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==========================\\u003e
981
- \ ] 107.5 MB/201.6 MB 28s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":108080573,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==========================\\u003e
982
- \ ] 108.1 MB/201.6 MB 28s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":108621245,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==========================\\u003e
983
- \ ] 108.6 MB/201.6 MB 28s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":109161917,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===========================\\u003e
984
- \ ] 109.2 MB/201.6 MB 28s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":109702589,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===========================\\u003e
985
- \ ] 109.7 MB/201.6 MB 27s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":110243261,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===========================\\u003e
986
- \ ] 110.2 MB/201.6 MB 27s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":110783933,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===========================\\u003e
987
- \ ] 110.8 MB/201.6 MB 27s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":111324605,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===========================\\u003e
988
- \ ] 111.3 MB/201.6 MB 27s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":111865277,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===========================\\u003e
989
- \ ] 111.9 MB/201.6 MB 27s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":112405949,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===========================\\u003e
990
- \ ] 112.4 MB/201.6 MB 26s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":112946621,\"total\":201599488,\"start\":1414620055},\"progress\":\"[============================\\u003e
991
- \ ] 112.9 MB/201.6 MB 26s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":113487293,\"total\":201599488,\"start\":1414620055},\"progress\":\"[============================\\u003e
992
- \ ] 113.5 MB/201.6 MB 26s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":114027965,\"total\":201599488,\"start\":1414620055},\"progress\":\"[============================\\u003e
993
- \ ] 114 MB/201.6 MB 26s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":114568637,\"total\":201599488,\"start\":1414620055},\"progress\":\"[============================\\u003e
994
- \ ] 114.6 MB/201.6 MB 26s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":115109309,\"total\":201599488,\"start\":1414620055},\"progress\":\"[============================\\u003e
995
- \ ] 115.1 MB/201.6 MB 25s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":115649981,\"total\":201599488,\"start\":1414620055},\"progress\":\"[============================\\u003e
996
- \ ] 115.6 MB/201.6 MB 25s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":116190653,\"total\":201599488,\"start\":1414620055},\"progress\":\"[============================\\u003e
997
- \ ] 116.2 MB/201.6 MB 25s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":116731325,\"total\":201599488,\"start\":1414620055},\"progress\":\"[============================\\u003e
998
- \ ] 116.7 MB/201.6 MB 25s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":117271997,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=============================\\u003e
999
- \ ] 117.3 MB/201.6 MB 24s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":117812669,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=============================\\u003e
1000
- \ ] 117.8 MB/201.6 MB 24s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":118353341,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=============================\\u003e
1001
- \ ] 118.4 MB/201.6 MB 24s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":118894013,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=============================\\u003e
1002
- \ ] 118.9 MB/201.6 MB 24s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":119434685,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=============================\\u003e
1003
- \ ] 119.4 MB/201.6 MB 24s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":119975357,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=============================\\u003e
1004
- \ ] 120 MB/201.6 MB 23s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":120516029,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=============================\\u003e
1005
- \ ] 120.5 MB/201.6 MB 23s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":121056701,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==============================\\u003e
1006
- \ ] 121.1 MB/201.6 MB 23s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":121597373,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==============================\\u003e
1007
- \ ] 121.6 MB/201.6 MB 23s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":122138045,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==============================\\u003e
1008
- \ ] 122.1 MB/201.6 MB 23s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":122678717,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==============================\\u003e
1009
- \ ] 122.7 MB/201.6 MB 22s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":123219389,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==============================\\u003e
1010
- \ ] 123.2 MB/201.6 MB 22s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":123760061,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==============================\\u003e
1011
- \ ] 123.8 MB/201.6 MB 22s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":124300733,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==============================\\u003e
1012
- \ ] 124.3 MB/201.6 MB 22s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":124841405,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==============================\\u003e
1013
- \ ] 124.8 MB/201.6 MB 22s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":125382077,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===============================\\u003e
1014
- \ ] 125.4 MB/201.6 MB 21s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":125922749,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===============================\\u003e
1015
- \ ] 125.9 MB/201.6 MB 21s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":126463421,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===============================\\u003e
1016
- \ ] 126.5 MB/201.6 MB 21s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":127004093,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===============================\\u003e
1017
- \ ] 127 MB/201.6 MB 21s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":127544765,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===============================\\u003e
1018
- \ ] 127.5 MB/201.6 MB 21s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":128085437,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===============================\\u003e
1019
- \ ] 128.1 MB/201.6 MB 20s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":128626109,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===============================\\u003e
1020
- \ ] 128.6 MB/201.6 MB 20s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":129166781,\"total\":201599488,\"start\":1414620055},\"progress\":\"[================================\\u003e
1021
- \ ] 129.2 MB/201.6 MB 20s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":129707453,\"total\":201599488,\"start\":1414620055},\"progress\":\"[================================\\u003e
1022
- \ ] 129.7 MB/201.6 MB 20s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":130248125,\"total\":201599488,\"start\":1414620055},\"progress\":\"[================================\\u003e
1023
- \ ] 130.2 MB/201.6 MB 20s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":130788797,\"total\":201599488,\"start\":1414620055},\"progress\":\"[================================\\u003e
1024
- \ ] 130.8 MB/201.6 MB 19s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":131329469,\"total\":201599488,\"start\":1414620055},\"progress\":\"[================================\\u003e
1025
- \ ] 131.3 MB/201.6 MB 19s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":131870141,\"total\":201599488,\"start\":1414620055},\"progress\":\"[================================\\u003e
1026
- \ ] 131.9 MB/201.6 MB 19s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":132410813,\"total\":201599488,\"start\":1414620055},\"progress\":\"[================================\\u003e
1027
- \ ] 132.4 MB/201.6 MB 19s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":132951485,\"total\":201599488,\"start\":1414620055},\"progress\":\"[================================\\u003e
1028
- \ ] 133 MB/201.6 MB 19s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":133492157,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=================================\\u003e
1029
- \ ] 133.5 MB/201.6 MB 19s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":134032829,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=================================\\u003e
1030
- \ ] 134 MB/201.6 MB 18s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":134573501,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=================================\\u003e
1031
- \ ] 134.6 MB/201.6 MB 18s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":135114173,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=================================\\u003e
1032
- \ ] 135.1 MB/201.6 MB 18s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":135654845,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=================================\\u003e
1033
- \ ] 135.7 MB/201.6 MB 18s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":136195517,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=================================\\u003e
1034
- \ ] 136.2 MB/201.6 MB 18s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":136736189,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=================================\\u003e
1035
- \ ] 136.7 MB/201.6 MB 18s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":137276861,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==================================\\u003e
1036
- \ ] 137.3 MB/201.6 MB 17s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":137817533,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==================================\\u003e
1037
- \ ] 137.8 MB/201.6 MB 17s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":138358205,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==================================\\u003e
1038
- \ ] 138.4 MB/201.6 MB 17s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":138898877,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==================================\\u003e
1039
- \ ] 138.9 MB/201.6 MB 17s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":139439549,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==================================\\u003e
1040
- \ ] 139.4 MB/201.6 MB 17s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":139980221,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==================================\\u003e
1041
- \ ] 140 MB/201.6 MB 17s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":140520893,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==================================\\u003e
1042
- \ ] 140.5 MB/201.6 MB 16s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":141061565,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==================================\\u003e
1043
- \ ] 141.1 MB/201.6 MB 16s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":141602237,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===================================\\u003e
1044
- \ ] 141.6 MB/201.6 MB 16s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":142142909,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===================================\\u003e
1045
- \ ] 142.1 MB/201.6 MB 16s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":142683581,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===================================\\u003e
1046
- \ ] 142.7 MB/201.6 MB 16s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":143224253,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===================================\\u003e
1047
- \ ] 143.2 MB/201.6 MB 15s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":143764925,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===================================\\u003e
1048
- \ ] 143.8 MB/201.6 MB 15s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":144305597,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===================================\\u003e
1049
- \ ] 144.3 MB/201.6 MB 15s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":144846269,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===================================\\u003e
1050
- \ ] 144.8 MB/201.6 MB 15s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":145386941,\"total\":201599488,\"start\":1414620055},\"progress\":\"[====================================\\u003e
1051
- \ ] 145.4 MB/201.6 MB 15s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":145927613,\"total\":201599488,\"start\":1414620055},\"progress\":\"[====================================\\u003e
1052
- \ ] 145.9 MB/201.6 MB 15s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":146468285,\"total\":201599488,\"start\":1414620055},\"progress\":\"[====================================\\u003e
1053
- \ ] 146.5 MB/201.6 MB 14s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":147008957,\"total\":201599488,\"start\":1414620055},\"progress\":\"[====================================\\u003e
1054
- \ ] 147 MB/201.6 MB 14s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":147549629,\"total\":201599488,\"start\":1414620055},\"progress\":\"[====================================\\u003e
1055
- \ ] 147.5 MB/201.6 MB 14s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":148090301,\"total\":201599488,\"start\":1414620055},\"progress\":\"[====================================\\u003e
1056
- \ ] 148.1 MB/201.6 MB 14s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":148630973,\"total\":201599488,\"start\":1414620055},\"progress\":\"[====================================\\u003e
1057
- \ ] 148.6 MB/201.6 MB 14s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":149171645,\"total\":201599488,\"start\":1414620055},\"progress\":\"[====================================\\u003e
1058
- \ ] 149.2 MB/201.6 MB 14s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":149712317,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=====================================\\u003e
1059
- \ ] 149.7 MB/201.6 MB 14s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":150252989,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=====================================\\u003e
1060
- \ ] 150.3 MB/201.6 MB 13s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":150793661,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=====================================\\u003e
1061
- \ ] 150.8 MB/201.6 MB 13s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":151334333,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=====================================\\u003e
1062
- \ ] 151.3 MB/201.6 MB 13s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":151875005,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=====================================\\u003e
1063
- \ ] 151.9 MB/201.6 MB 13s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":152415677,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=====================================\\u003e
1064
- \ ] 152.4 MB/201.6 MB 13s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":152956349,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=====================================\\u003e
1065
- \ ] 153 MB/201.6 MB 13s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":153497021,\"total\":201599488,\"start\":1414620055},\"progress\":\"[======================================\\u003e
1066
- \ ] 153.5 MB/201.6 MB 12s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":154037693,\"total\":201599488,\"start\":1414620055},\"progress\":\"[======================================\\u003e
1067
- \ ] 154 MB/201.6 MB 12s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":154578365,\"total\":201599488,\"start\":1414620055},\"progress\":\"[======================================\\u003e
1068
- \ ] 154.6 MB/201.6 MB 12s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":155119037,\"total\":201599488,\"start\":1414620055},\"progress\":\"[======================================\\u003e
1069
- \ ] 155.1 MB/201.6 MB 12s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":155659709,\"total\":201599488,\"start\":1414620055},\"progress\":\"[======================================\\u003e
1070
- \ ] 155.7 MB/201.6 MB 12s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":156200381,\"total\":201599488,\"start\":1414620055},\"progress\":\"[======================================\\u003e
1071
- \ ] 156.2 MB/201.6 MB 12s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":156741053,\"total\":201599488,\"start\":1414620055},\"progress\":\"[======================================\\u003e
1072
- \ ] 156.7 MB/201.6 MB 11s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":157281725,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=======================================\\u003e
1073
- \ ] 157.3 MB/201.6 MB 11s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":157822397,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=======================================\\u003e
1074
- \ ] 157.8 MB/201.6 MB 11s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":158363069,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=======================================\\u003e
1075
- \ ] 158.4 MB/201.6 MB 11s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":158903741,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=======================================\\u003e
1076
- \ ] 158.9 MB/201.6 MB 11s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":159444413,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=======================================\\u003e
1077
- \ ] 159.4 MB/201.6 MB 11s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":159985085,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=======================================\\u003e
1078
- \ ] 160 MB/201.6 MB 11s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":160525757,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=======================================\\u003e
1079
- \ ] 160.5 MB/201.6 MB 10s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":161066429,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=======================================\\u003e
1080
- \ ] 161.1 MB/201.6 MB 10s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":161607101,\"total\":201599488,\"start\":1414620055},\"progress\":\"[========================================\\u003e
1081
- \ ] 161.6 MB/201.6 MB 10s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":162147773,\"total\":201599488,\"start\":1414620055},\"progress\":\"[========================================\\u003e
1082
- \ ] 162.1 MB/201.6 MB 10s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":162688445,\"total\":201599488,\"start\":1414620055},\"progress\":\"[========================================\\u003e
1083
- \ ] 162.7 MB/201.6 MB 10s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":163229117,\"total\":201599488,\"start\":1414620055},\"progress\":\"[========================================\\u003e
1084
- \ ] 163.2 MB/201.6 MB 10s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":163769789,\"total\":201599488,\"start\":1414620055},\"progress\":\"[========================================\\u003e
1085
- \ ] 163.8 MB/201.6 MB 10s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":164310461,\"total\":201599488,\"start\":1414620055},\"progress\":\"[========================================\\u003e
1086
- \ ] 164.3 MB/201.6 MB 9s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":164851133,\"total\":201599488,\"start\":1414620055},\"progress\":\"[========================================\\u003e
1087
- \ ] 164.9 MB/201.6 MB 9s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":165391805,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=========================================\\u003e
1088
- \ ] 165.4 MB/201.6 MB 9s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":165932477,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=========================================\\u003e
1089
- \ ] 165.9 MB/201.6 MB 9s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":166473149,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=========================================\\u003e
1090
- \ ] 166.5 MB/201.6 MB 9s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":167013821,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=========================================\\u003e
1091
- \ ] 167 MB/201.6 MB 9s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":167554493,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=========================================\\u003e
1092
- \ ] 167.6 MB/201.6 MB 8s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":168095165,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=========================================\\u003e
1093
- \ ] 168.1 MB/201.6 MB 8s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":168635837,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=========================================\\u003e
1094
- \ ] 168.6 MB/201.6 MB 8s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":169176509,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=========================================\\u003e
1095
- \ ] 169.2 MB/201.6 MB 8s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":169717181,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==========================================\\u003e
1096
- \ ] 169.7 MB/201.6 MB 8s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":170257853,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==========================================\\u003e
1097
- \ ] 170.3 MB/201.6 MB 8s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":170798525,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==========================================\\u003e
1098
- \ ] 170.8 MB/201.6 MB 8s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":171339197,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==========================================\\u003e
1099
- \ ] 171.3 MB/201.6 MB 7s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":171866806,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==========================================\\u003e
1100
- \ ] 171.9 MB/201.6 MB 7s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":172407478,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==========================================\\u003e
1101
- \ ] 172.4 MB/201.6 MB 7s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":172948150,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==========================================\\u003e
1102
- \ ] 172.9 MB/201.6 MB 7s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":173488822,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===========================================\\u003e
1103
- \ ] 173.5 MB/201.6 MB 7s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":174029494,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===========================================\\u003e
1104
- \ ] 174 MB/201.6 MB 7s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":174570166,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===========================================\\u003e
1105
- \ ] 174.6 MB/201.6 MB 7s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":175110838,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===========================================\\u003e
1106
- \ ] 175.1 MB/201.6 MB 6s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":175651510,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===========================================\\u003e
1107
- \ ] 175.7 MB/201.6 MB 6s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":176192182,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===========================================\\u003e
1108
- \ ] 176.2 MB/201.6 MB 6s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":176732854,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===========================================\\u003e
1109
- \ ] 176.7 MB/201.6 MB 6s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":177273526,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===========================================\\u003e
1110
- \ ] 177.3 MB/201.6 MB 6s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":177814198,\"total\":201599488,\"start\":1414620055},\"progress\":\"[============================================\\u003e
1111
- \ ] 177.8 MB/201.6 MB 6s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":178354870,\"total\":201599488,\"start\":1414620055},\"progress\":\"[============================================\\u003e
1112
- \ ] 178.4 MB/201.6 MB 6s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":178895542,\"total\":201599488,\"start\":1414620055},\"progress\":\"[============================================\\u003e
1113
- \ ] 178.9 MB/201.6 MB 5s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":179436214,\"total\":201599488,\"start\":1414620055},\"progress\":\"[============================================\\u003e
1114
- \ ] 179.4 MB/201.6 MB 5s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":179976886,\"total\":201599488,\"start\":1414620055},\"progress\":\"[============================================\\u003e
1115
- \ ] 180 MB/201.6 MB 5s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":180517558,\"total\":201599488,\"start\":1414620055},\"progress\":\"[============================================\\u003e
1116
- \ ] 180.5 MB/201.6 MB 5s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":181058230,\"total\":201599488,\"start\":1414620055},\"progress\":\"[============================================\\u003e
1117
- \ ] 181.1 MB/201.6 MB 5s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":181598902,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=============================================\\u003e
1118
- \ ] 181.6 MB/201.6 MB 5s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":182139574,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=============================================\\u003e
1119
- \ ] 182.1 MB/201.6 MB 5s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":182680246,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=============================================\\u003e
1120
- \ ] 182.7 MB/201.6 MB 4s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":183220918,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=============================================\\u003e
1121
- \ ] 183.2 MB/201.6 MB 4s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":183761590,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=============================================\\u003e
1122
- \ ] 183.8 MB/201.6 MB 4s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":184302262,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=============================================\\u003e
1123
- \ ] 184.3 MB/201.6 MB 4s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":184842934,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=============================================\\u003e
1124
- \ ] 184.8 MB/201.6 MB 4s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":185383606,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=============================================\\u003e
1125
- \ ] 185.4 MB/201.6 MB 4s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":185924278,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==============================================\\u003e
1126
- \ ] 185.9 MB/201.6 MB 4s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":186464950,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==============================================\\u003e
1127
- \ ] 186.5 MB/201.6 MB 3s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":187005622,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==============================================\\u003e
1128
- \ ] 187 MB/201.6 MB 3s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":187546294,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==============================================\\u003e
1129
- \ ] 187.5 MB/201.6 MB 3s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":188086966,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==============================================\\u003e
1130
- \ ] 188.1 MB/201.6 MB 3s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":188627638,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==============================================\\u003e
1131
- \ ] 188.6 MB/201.6 MB 3s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":189154630,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==============================================\\u003e
1132
- \ ] 189.2 MB/201.6 MB 3s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":189695302,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===============================================\\u003e
1133
- \ ] 189.7 MB/201.6 MB 3s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":190235974,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===============================================\\u003e
1134
- \ ] 190.2 MB/201.6 MB 2s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":190776646,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===============================================\\u003e
1135
- \ ] 190.8 MB/201.6 MB 2s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":191317318,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===============================================\\u003e
1136
- \ ] 191.3 MB/201.6 MB 2s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":191857990,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===============================================\\u003e
1137
- \ ] 191.9 MB/201.6 MB 2s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":192398662,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===============================================\\u003e
1138
- \ ] 192.4 MB/201.6 MB 2s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":192939334,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===============================================\\u003e
1139
- \ ] 192.9 MB/201.6 MB 2s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":193480006,\"total\":201599488,\"start\":1414620055},\"progress\":\"[===============================================\\u003e
1140
- \ ] 193.5 MB/201.6 MB 2s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":194020678,\"total\":201599488,\"start\":1414620055},\"progress\":\"[================================================\\u003e
1141
- \ ] 194 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":194561350,\"total\":201599488,\"start\":1414620055},\"progress\":\"[================================================\\u003e
1142
- \ ] 194.6 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":195102022,\"total\":201599488,\"start\":1414620055},\"progress\":\"[================================================\\u003e
1143
- \ ] 195.1 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":195642694,\"total\":201599488,\"start\":1414620055},\"progress\":\"[================================================\\u003e
1144
- \ ] 195.6 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":196183366,\"total\":201599488,\"start\":1414620055},\"progress\":\"[================================================\\u003e
1145
- \ ] 196.2 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":196724038,\"total\":201599488,\"start\":1414620055},\"progress\":\"[================================================\\u003e
1146
- \ ] 196.7 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":197264710,\"total\":201599488,\"start\":1414620055},\"progress\":\"[================================================\\u003e
1147
- \ ] 197.3 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":197805382,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=================================================\\u003e
1148
- ] 197.8 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":198346054,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=================================================\\u003e
1149
- ] 198.3 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":198886726,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=================================================\\u003e
1150
- ] 198.9 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":199427398,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=================================================\\u003e
1151
- ] 199.4 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":199968070,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=================================================\\u003e
1152
- ] 200 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":200508742,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=================================================\\u003e
1153
- ] 200.5 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":201049414,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=================================================\\u003e
1154
- ] 201 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":201590086,\"total\":201599488,\"start\":1414620055},\"progress\":\"[=================================================\\u003e
1155
- ] 201.6 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":201599488,\"total\":201599488,\"start\":1414620055},\"progress\":\"[==================================================\\u003e]
1156
- 201.6 MB/201.6 MB\",\"id\":\"d497ad3926c8\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":557056,\"total\":201599488,\"start\":1414620106},\"progress\":\"[\\u003e
1157
- \ ] 557.1 kB/201.6 MB 1m8s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1114112,\"total\":201599488,\"start\":1414620106},\"progress\":\"[\\u003e
1158
- \ ] 1.114 MB/201.6 MB 34s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1671168,\"total\":201599488,\"start\":1414620106},\"progress\":\"[\\u003e
1159
- \ ] 1.671 MB/201.6 MB 22s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2228224,\"total\":201599488,\"start\":1414620106},\"progress\":\"[\\u003e
1160
- \ ] 2.228 MB/201.6 MB 17s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2785280,\"total\":201599488,\"start\":1414620106},\"progress\":\"[\\u003e
1161
- \ ] 2.785 MB/201.6 MB 13s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3342336,\"total\":201599488,\"start\":1414620106},\"progress\":\"[\\u003e
1162
- \ ] 3.342 MB/201.6 MB 11s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3899392,\"total\":201599488,\"start\":1414620106},\"progress\":\"[\\u003e
1163
- \ ] 3.899 MB/201.6 MB 9s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4456448,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=\\u003e
1164
- \ ] 4.456 MB/201.6 MB 8s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5013504,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=\\u003e
1165
- \ ] 5.014 MB/201.6 MB 7s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5570560,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=\\u003e
1166
- \ ] 5.571 MB/201.6 MB 6s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6127616,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=\\u003e
1167
- \ ] 6.128 MB/201.6 MB 6s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6684672,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=\\u003e
1168
- \ ] 6.685 MB/201.6 MB 5s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7241728,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=\\u003e
1169
- \ ] 7.242 MB/201.6 MB 5s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7798784,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=\\u003e
1170
- \ ] 7.799 MB/201.6 MB 5s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8355840,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==\\u003e
1171
- \ ] 8.356 MB/201.6 MB 5s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8912896,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==\\u003e
1172
- \ ] 8.913 MB/201.6 MB 4s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9469952,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==\\u003e
1173
- \ ] 9.47 MB/201.6 MB 4s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":10027008,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==\\u003e
1174
- \ ] 10.03 MB/201.6 MB 4s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":10584064,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==\\u003e
1175
- \ ] 10.58 MB/201.6 MB 3s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11141120,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==\\u003e
1176
- \ ] 11.14 MB/201.6 MB 3s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11698176,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==\\u003e
1177
- \ ] 11.7 MB/201.6 MB 3s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12255232,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===\\u003e
1178
- \ ] 12.26 MB/201.6 MB 3s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12812288,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===\\u003e
1179
- \ ] 12.81 MB/201.6 MB 3s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":13369344,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===\\u003e
1180
- \ ] 13.37 MB/201.6 MB 3s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":13926400,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===\\u003e
1181
- \ ] 13.93 MB/201.6 MB 2s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":14483456,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===\\u003e
1182
- \ ] 14.48 MB/201.6 MB 2s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15040512,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===\\u003e
1183
- \ ] 15.04 MB/201.6 MB 2s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15597568,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===\\u003e
1184
- \ ] 15.6 MB/201.6 MB 2s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16154624,\"total\":201599488,\"start\":1414620106},\"progress\":\"[====\\u003e
1185
- \ ] 16.15 MB/201.6 MB 2s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16711680,\"total\":201599488,\"start\":1414620106},\"progress\":\"[====\\u003e
1186
- \ ] 16.71 MB/201.6 MB 2s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17268736,\"total\":201599488,\"start\":1414620106},\"progress\":\"[====\\u003e
1187
- \ ] 17.27 MB/201.6 MB 2s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17825792,\"total\":201599488,\"start\":1414620106},\"progress\":\"[====\\u003e
1188
- \ ] 17.83 MB/201.6 MB 2s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":18382848,\"total\":201599488,\"start\":1414620106},\"progress\":\"[====\\u003e
1189
- \ ] 18.38 MB/201.6 MB 2s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":18939904,\"total\":201599488,\"start\":1414620106},\"progress\":\"[====\\u003e
1190
- \ ] 18.94 MB/201.6 MB 2s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":19496960,\"total\":201599488,\"start\":1414620106},\"progress\":\"[====\\u003e
1191
- \ ] 19.5 MB/201.6 MB 2s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":20054016,\"total\":201599488,\"start\":1414620106},\"progress\":\"[====\\u003e
1192
- \ ] 20.05 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":20611072,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=====\\u003e
1193
- \ ] 20.61 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21168128,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=====\\u003e
1194
- \ ] 21.17 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21725184,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=====\\u003e
1195
- \ ] 21.73 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22282240,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=====\\u003e
1196
- \ ] 22.28 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22839296,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=====\\u003e
1197
- \ ] 22.84 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23396352,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=====\\u003e
1198
- \ ] 23.4 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23953408,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=====\\u003e
1199
- \ ] 23.95 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24510464,\"total\":201599488,\"start\":1414620106},\"progress\":\"[======\\u003e
1200
- \ ] 24.51 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25067520,\"total\":201599488,\"start\":1414620106},\"progress\":\"[======\\u003e
1201
- \ ] 25.07 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25624576,\"total\":201599488,\"start\":1414620106},\"progress\":\"[======\\u003e
1202
- \ ] 25.62 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26181632,\"total\":201599488,\"start\":1414620106},\"progress\":\"[======\\u003e
1203
- \ ] 26.18 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26738688,\"total\":201599488,\"start\":1414620106},\"progress\":\"[======\\u003e
1204
- \ ] 26.74 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":27295744,\"total\":201599488,\"start\":1414620106},\"progress\":\"[======\\u003e
1205
- \ ] 27.3 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":27852800,\"total\":201599488,\"start\":1414620106},\"progress\":\"[======\\u003e
1206
- \ ] 27.85 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":28409856,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=======\\u003e
1207
- \ ] 28.41 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":28966912,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=======\\u003e
1208
- \ ] 28.97 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":29523968,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=======\\u003e
1209
- \ ] 29.52 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30081024,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=======\\u003e
1210
- \ ] 30.08 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30638080,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=======\\u003e
1211
- \ ] 30.64 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":31195136,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=======\\u003e
1212
- \ ] 31.2 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":31752192,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=======\\u003e
1213
- \ ] 31.75 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32309248,\"total\":201599488,\"start\":1414620106},\"progress\":\"[========\\u003e
1214
- \ ] 32.31 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32866304,\"total\":201599488,\"start\":1414620106},\"progress\":\"[========\\u003e
1215
- \ ] 32.87 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":33423360,\"total\":201599488,\"start\":1414620106},\"progress\":\"[========\\u003e
1216
- \ ] 33.42 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":33980416,\"total\":201599488,\"start\":1414620106},\"progress\":\"[========\\u003e
1217
- \ ] 33.98 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":34537472,\"total\":201599488,\"start\":1414620106},\"progress\":\"[========\\u003e
1218
- \ ] 34.54 MB/201.6 MB 1s\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":35094528,\"total\":201599488,\"start\":1414620106},\"progress\":\"[========\\u003e
1219
- \ ] 35.09 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":35651584,\"total\":201599488,\"start\":1414620106},\"progress\":\"[========\\u003e
1220
- \ ] 35.65 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":36208640,\"total\":201599488,\"start\":1414620106},\"progress\":\"[========\\u003e
1221
- \ ] 36.21 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":36765696,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=========\\u003e
1222
- \ ] 36.77 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":37322752,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=========\\u003e
1223
- \ ] 37.32 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":37879808,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=========\\u003e
1224
- \ ] 37.88 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":38436864,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=========\\u003e
1225
- \ ] 38.44 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":38993920,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=========\\u003e
1226
- \ ] 38.99 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":39550976,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=========\\u003e
1227
- \ ] 39.55 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":40108032,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=========\\u003e
1228
- \ ] 40.11 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":40665088,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==========\\u003e
1229
- \ ] 40.67 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":41222144,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==========\\u003e
1230
- \ ] 41.22 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":41779200,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==========\\u003e
1231
- \ ] 41.78 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":42336256,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==========\\u003e
1232
- \ ] 42.34 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":42893312,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==========\\u003e
1233
- \ ] 42.89 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":43450368,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==========\\u003e
1234
- \ ] 43.45 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":44007424,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==========\\u003e
1235
- \ ] 44.01 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":44564480,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===========\\u003e
1236
- \ ] 44.56 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":45121536,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===========\\u003e
1237
- \ ] 45.12 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":45678592,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===========\\u003e
1238
- \ ] 45.68 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":46235648,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===========\\u003e
1239
- \ ] 46.24 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":46792704,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===========\\u003e
1240
- \ ] 46.79 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":47349760,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===========\\u003e
1241
- \ ] 47.35 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":47906816,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===========\\u003e
1242
- \ ] 47.91 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":48463872,\"total\":201599488,\"start\":1414620106},\"progress\":\"[============\\u003e
1243
- \ ] 48.46 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":49020928,\"total\":201599488,\"start\":1414620106},\"progress\":\"[============\\u003e
1244
- \ ] 49.02 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":49577984,\"total\":201599488,\"start\":1414620106},\"progress\":\"[============\\u003e
1245
- \ ] 49.58 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":50135040,\"total\":201599488,\"start\":1414620106},\"progress\":\"[============\\u003e
1246
- \ ] 50.14 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":50692096,\"total\":201599488,\"start\":1414620106},\"progress\":\"[============\\u003e
1247
- \ ] 50.69 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":51249152,\"total\":201599488,\"start\":1414620106},\"progress\":\"[============\\u003e
1248
- \ ] 51.25 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":51806208,\"total\":201599488,\"start\":1414620106},\"progress\":\"[============\\u003e
1249
- \ ] 51.81 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":52363264,\"total\":201599488,\"start\":1414620106},\"progress\":\"[============\\u003e
1250
- \ ] 52.36 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":52920320,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=============\\u003e
1251
- \ ] 52.92 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":53477376,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=============\\u003e
1252
- \ ] 53.48 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":54034432,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=============\\u003e
1253
- \ ] 54.03 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":54591488,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=============\\u003e
1254
- \ ] 54.59 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":55148544,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=============\\u003e
1255
- \ ] 55.15 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":55705600,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=============\\u003e
1256
- \ ] 55.71 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":56262656,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=============\\u003e
1257
- \ ] 56.26 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":56819712,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==============\\u003e
1258
- \ ] 56.82 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":57376768,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==============\\u003e
1259
- \ ] 57.38 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":57933824,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==============\\u003e
1260
- \ ] 57.93 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":58490880,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==============\\u003e
1261
- \ ] 58.49 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":59047936,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==============\\u003e
1262
- \ ] 59.05 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":59604992,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==============\\u003e
1263
- \ ] 59.6 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":60162048,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==============\\u003e
1264
- \ ] 60.16 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":60719104,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===============\\u003e
1265
- \ ] 60.72 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":61276160,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===============\\u003e
1266
- \ ] 61.28 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":61833216,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===============\\u003e
1267
- \ ] 61.83 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":62390272,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===============\\u003e
1268
- \ ] 62.39 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":62947328,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===============\\u003e
1269
- \ ] 62.95 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":63504384,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===============\\u003e
1270
- \ ] 63.5 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":64061440,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===============\\u003e
1271
- \ ] 64.06 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":64618496,\"total\":201599488,\"start\":1414620106},\"progress\":\"[================\\u003e
1272
- \ ] 64.62 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65175552,\"total\":201599488,\"start\":1414620106},\"progress\":\"[================\\u003e
1273
- \ ] 65.18 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65732608,\"total\":201599488,\"start\":1414620106},\"progress\":\"[================\\u003e
1274
- \ ] 65.73 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":66289664,\"total\":201599488,\"start\":1414620106},\"progress\":\"[================\\u003e
1275
- \ ] 66.29 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":66846720,\"total\":201599488,\"start\":1414620106},\"progress\":\"[================\\u003e
1276
- \ ] 66.85 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":67403776,\"total\":201599488,\"start\":1414620106},\"progress\":\"[================\\u003e
1277
- \ ] 67.4 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":67960832,\"total\":201599488,\"start\":1414620106},\"progress\":\"[================\\u003e
1278
- \ ] 67.96 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":68517888,\"total\":201599488,\"start\":1414620106},\"progress\":\"[================\\u003e
1279
- \ ] 68.52 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":69074944,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=================\\u003e
1280
- \ ] 69.07 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":69632000,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=================\\u003e
1281
- \ ] 69.63 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":70189056,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=================\\u003e
1282
- \ ] 70.19 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":70746112,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=================\\u003e
1283
- \ ] 70.75 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":71303168,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=================\\u003e
1284
- \ ] 71.3 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":71860224,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=================\\u003e
1285
- \ ] 71.86 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":72417280,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=================\\u003e
1286
- \ ] 72.42 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":72974336,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==================\\u003e
1287
- \ ] 72.97 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":73531392,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==================\\u003e
1288
- \ ] 73.53 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":74088448,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==================\\u003e
1289
- \ ] 74.09 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":74645504,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==================\\u003e
1290
- \ ] 74.65 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":75202560,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==================\\u003e
1291
- \ ] 75.2 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":75759616,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==================\\u003e
1292
- \ ] 75.76 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":76316672,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==================\\u003e
1293
- \ ] 76.32 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":76873728,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===================\\u003e
1294
- \ ] 76.87 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":77430784,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===================\\u003e
1295
- \ ] 77.43 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":77987840,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===================\\u003e
1296
- \ ] 77.99 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":78544896,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===================\\u003e
1297
- \ ] 78.54 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":79101952,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===================\\u003e
1298
- \ ] 79.1 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":79659008,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===================\\u003e
1299
- \ ] 79.66 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":80216064,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===================\\u003e
1300
- \ ] 80.22 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":80773120,\"total\":201599488,\"start\":1414620106},\"progress\":\"[====================\\u003e
1301
- \ ] 80.77 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":81330176,\"total\":201599488,\"start\":1414620106},\"progress\":\"[====================\\u003e
1302
- \ ] 81.33 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":81887232,\"total\":201599488,\"start\":1414620106},\"progress\":\"[====================\\u003e
1303
- \ ] 81.89 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":82444288,\"total\":201599488,\"start\":1414620106},\"progress\":\"[====================\\u003e
1304
- \ ] 82.44 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":83001344,\"total\":201599488,\"start\":1414620106},\"progress\":\"[====================\\u003e
1305
- \ ] 83 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":83558400,\"total\":201599488,\"start\":1414620106},\"progress\":\"[====================\\u003e
1306
- \ ] 83.56 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":84115456,\"total\":201599488,\"start\":1414620106},\"progress\":\"[====================\\u003e
1307
- \ ] 84.12 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":84672512,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=====================\\u003e
1308
- \ ] 84.67 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":85229568,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=====================\\u003e
1309
- \ ] 85.23 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":85786624,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=====================\\u003e
1310
- \ ] 85.79 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":86343680,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=====================\\u003e
1311
- \ ] 86.34 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":86900736,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=====================\\u003e
1312
- \ ] 86.9 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":87457792,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=====================\\u003e
1313
- \ ] 87.46 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":88014848,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=====================\\u003e
1314
- \ ] 88.01 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":88571904,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=====================\\u003e
1315
- \ ] 88.57 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":89128960,\"total\":201599488,\"start\":1414620106},\"progress\":\"[======================\\u003e
1316
- \ ] 89.13 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":89686016,\"total\":201599488,\"start\":1414620106},\"progress\":\"[======================\\u003e
1317
- \ ] 89.69 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":90243072,\"total\":201599488,\"start\":1414620106},\"progress\":\"[======================\\u003e
1318
- \ ] 90.24 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":90800128,\"total\":201599488,\"start\":1414620106},\"progress\":\"[======================\\u003e
1319
- \ ] 90.8 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":91357184,\"total\":201599488,\"start\":1414620106},\"progress\":\"[======================\\u003e
1320
- \ ] 91.36 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":91914240,\"total\":201599488,\"start\":1414620106},\"progress\":\"[======================\\u003e
1321
- \ ] 91.91 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":92471296,\"total\":201599488,\"start\":1414620106},\"progress\":\"[======================\\u003e
1322
- \ ] 92.47 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":93028352,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=======================\\u003e
1323
- \ ] 93.03 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":93585408,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=======================\\u003e
1324
- \ ] 93.59 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":94142464,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=======================\\u003e
1325
- \ ] 94.14 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":94699520,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=======================\\u003e
1326
- \ ] 94.7 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":95256576,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=======================\\u003e
1327
- \ ] 95.26 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":95813632,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=======================\\u003e
1328
- \ ] 95.81 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":96370688,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=======================\\u003e
1329
- \ ] 96.37 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":96927744,\"total\":201599488,\"start\":1414620106},\"progress\":\"[========================\\u003e
1330
- \ ] 96.93 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":97484800,\"total\":201599488,\"start\":1414620106},\"progress\":\"[========================\\u003e
1331
- \ ] 97.48 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":98041856,\"total\":201599488,\"start\":1414620106},\"progress\":\"[========================\\u003e
1332
- \ ] 98.04 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":98598912,\"total\":201599488,\"start\":1414620106},\"progress\":\"[========================\\u003e
1333
- \ ] 98.6 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":99155968,\"total\":201599488,\"start\":1414620106},\"progress\":\"[========================\\u003e
1334
- \ ] 99.16 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":99713024,\"total\":201599488,\"start\":1414620106},\"progress\":\"[========================\\u003e
1335
- \ ] 99.71 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":100270080,\"total\":201599488,\"start\":1414620106},\"progress\":\"[========================\\u003e
1336
- \ ] 100.3 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":100827136,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=========================\\u003e
1337
- \ ] 100.8 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":101384192,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=========================\\u003e
1338
- \ ] 101.4 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":101941248,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=========================\\u003e
1339
- \ ] 101.9 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":102498304,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=========================\\u003e
1340
- \ ] 102.5 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":103055360,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=========================\\u003e
1341
- \ ] 103.1 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":103612416,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=========================\\u003e
1342
- \ ] 103.6 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":104169472,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=========================\\u003e
1343
- \ ] 104.2 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":104726528,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=========================\\u003e
1344
- \ ] 104.7 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":105283584,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==========================\\u003e
1345
- \ ] 105.3 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":105840640,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==========================\\u003e
1346
- \ ] 105.8 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":106397696,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==========================\\u003e
1347
- \ ] 106.4 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":106954752,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==========================\\u003e
1348
- \ ] 107 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":107511808,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==========================\\u003e
1349
- \ ] 107.5 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":108068864,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==========================\\u003e
1350
- \ ] 108.1 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":108625920,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==========================\\u003e
1351
- \ ] 108.6 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":109182976,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===========================\\u003e
1352
- \ ] 109.2 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":109740032,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===========================\\u003e
1353
- \ ] 109.7 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":110297088,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===========================\\u003e
1354
- \ ] 110.3 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":110854144,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===========================\\u003e
1355
- \ ] 110.9 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":111411200,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===========================\\u003e
1356
- \ ] 111.4 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":111968256,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===========================\\u003e
1357
- \ ] 112 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":112525312,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===========================\\u003e
1358
- \ ] 112.5 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":113082368,\"total\":201599488,\"start\":1414620106},\"progress\":\"[============================\\u003e
1359
- \ ] 113.1 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":113639424,\"total\":201599488,\"start\":1414620106},\"progress\":\"[============================\\u003e
1360
- \ ] 113.6 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":114196480,\"total\":201599488,\"start\":1414620106},\"progress\":\"[============================\\u003e
1361
- \ ] 114.2 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":114753536,\"total\":201599488,\"start\":1414620106},\"progress\":\"[============================\\u003e
1362
- \ ] 114.8 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":115310592,\"total\":201599488,\"start\":1414620106},\"progress\":\"[============================\\u003e
1363
- \ ] 115.3 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":115867648,\"total\":201599488,\"start\":1414620106},\"progress\":\"[============================\\u003e
1364
- \ ] 115.9 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":116424704,\"total\":201599488,\"start\":1414620106},\"progress\":\"[============================\\u003e
1365
- \ ] 116.4 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":116981760,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=============================\\u003e
1366
- \ ] 117 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":117538816,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=============================\\u003e
1367
- \ ] 117.5 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":118095872,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=============================\\u003e
1368
- \ ] 118.1 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":118652928,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=============================\\u003e
1369
- \ ] 118.7 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":119209984,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=============================\\u003e
1370
- \ ] 119.2 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":119767040,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=============================\\u003e
1371
- \ ] 119.8 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":120324096,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=============================\\u003e
1372
- \ ] 120.3 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":120881152,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=============================\\u003e
1373
- \ ] 120.9 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":121438208,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==============================\\u003e
1374
- \ ] 121.4 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":121995264,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==============================\\u003e
1375
- \ ] 122 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":122552320,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==============================\\u003e
1376
- \ ] 122.6 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":123109376,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==============================\\u003e
1377
- \ ] 123.1 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":123666432,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==============================\\u003e
1378
- \ ] 123.7 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":124223488,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==============================\\u003e
1379
- \ ] 124.2 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":124780544,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==============================\\u003e
1380
- \ ] 124.8 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":125337600,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===============================\\u003e
1381
- \ ] 125.3 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":125894656,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===============================\\u003e
1382
- \ ] 125.9 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":126451712,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===============================\\u003e
1383
- \ ] 126.5 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":127008768,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===============================\\u003e
1384
- \ ] 127 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":127565824,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===============================\\u003e
1385
- \ ] 127.6 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":128122880,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===============================\\u003e
1386
- \ ] 128.1 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":128679936,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===============================\\u003e
1387
- \ ] 128.7 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":129236992,\"total\":201599488,\"start\":1414620106},\"progress\":\"[================================\\u003e
1388
- \ ] 129.2 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":129794048,\"total\":201599488,\"start\":1414620106},\"progress\":\"[================================\\u003e
1389
- \ ] 129.8 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":130351104,\"total\":201599488,\"start\":1414620106},\"progress\":\"[================================\\u003e
1390
- \ ] 130.4 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":130908160,\"total\":201599488,\"start\":1414620106},\"progress\":\"[================================\\u003e
1391
- \ ] 130.9 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":131465216,\"total\":201599488,\"start\":1414620106},\"progress\":\"[================================\\u003e
1392
- \ ] 131.5 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":132022272,\"total\":201599488,\"start\":1414620106},\"progress\":\"[================================\\u003e
1393
- \ ] 132 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":132579328,\"total\":201599488,\"start\":1414620106},\"progress\":\"[================================\\u003e
1394
- \ ] 132.6 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":133136384,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=================================\\u003e
1395
- \ ] 133.1 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":133693440,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=================================\\u003e
1396
- \ ] 133.7 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":134250496,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=================================\\u003e
1397
- \ ] 134.3 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":134807552,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=================================\\u003e
1398
- \ ] 134.8 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":135364608,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=================================\\u003e
1399
- \ ] 135.4 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":135921664,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=================================\\u003e
1400
- \ ] 135.9 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":136478720,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=================================\\u003e
1401
- \ ] 136.5 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":137035776,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=================================\\u003e
1402
- \ ] 137 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":137592832,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==================================\\u003e
1403
- \ ] 137.6 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":138149888,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==================================\\u003e
1404
- \ ] 138.1 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":138706944,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==================================\\u003e
1405
- \ ] 138.7 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":139264000,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==================================\\u003e
1406
- \ ] 139.3 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":139821056,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==================================\\u003e
1407
- \ ] 139.8 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":140378112,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==================================\\u003e
1408
- \ ] 140.4 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":140935168,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==================================\\u003e
1409
- \ ] 140.9 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":141492224,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===================================\\u003e
1410
- \ ] 141.5 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":142049280,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===================================\\u003e
1411
- \ ] 142 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":142606336,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===================================\\u003e
1412
- \ ] 142.6 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":143163392,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===================================\\u003e
1413
- \ ] 143.2 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":143720448,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===================================\\u003e
1414
- \ ] 143.7 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":144277504,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===================================\\u003e
1415
- \ ] 144.3 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":144834560,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===================================\\u003e
1416
- \ ] 144.8 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":145391616,\"total\":201599488,\"start\":1414620106},\"progress\":\"[====================================\\u003e
1417
- \ ] 145.4 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":145948672,\"total\":201599488,\"start\":1414620106},\"progress\":\"[====================================\\u003e
1418
- \ ] 145.9 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":146505728,\"total\":201599488,\"start\":1414620106},\"progress\":\"[====================================\\u003e
1419
- \ ] 146.5 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":147062784,\"total\":201599488,\"start\":1414620106},\"progress\":\"[====================================\\u003e
1420
- \ ] 147.1 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":147619840,\"total\":201599488,\"start\":1414620106},\"progress\":\"[====================================\\u003e
1421
- \ ] 147.6 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":148176896,\"total\":201599488,\"start\":1414620106},\"progress\":\"[====================================\\u003e
1422
- \ ] 148.2 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":148733952,\"total\":201599488,\"start\":1414620106},\"progress\":\"[====================================\\u003e
1423
- \ ] 148.7 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":149291008,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=====================================\\u003e
1424
- \ ] 149.3 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":149848064,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=====================================\\u003e
1425
- \ ] 149.8 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":150405120,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=====================================\\u003e
1426
- \ ] 150.4 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":150962176,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=====================================\\u003e
1427
- \ ] 151 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":151519232,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=====================================\\u003e
1428
- \ ] 151.5 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":152076288,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=====================================\\u003e
1429
- \ ] 152.1 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":152633344,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=====================================\\u003e
1430
- \ ] 152.6 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":153190400,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=====================================\\u003e
1431
- \ ] 153.2 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":153747456,\"total\":201599488,\"start\":1414620106},\"progress\":\"[======================================\\u003e
1432
- \ ] 153.7 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":154304512,\"total\":201599488,\"start\":1414620106},\"progress\":\"[======================================\\u003e
1433
- \ ] 154.3 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":154861568,\"total\":201599488,\"start\":1414620106},\"progress\":\"[======================================\\u003e
1434
- \ ] 154.9 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":155418624,\"total\":201599488,\"start\":1414620106},\"progress\":\"[======================================\\u003e
1435
- \ ] 155.4 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":155975680,\"total\":201599488,\"start\":1414620106},\"progress\":\"[======================================\\u003e
1436
- \ ] 156 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":156532736,\"total\":201599488,\"start\":1414620106},\"progress\":\"[======================================\\u003e
1437
- \ ] 156.5 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":157089792,\"total\":201599488,\"start\":1414620106},\"progress\":\"[======================================\\u003e
1438
- \ ] 157.1 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":157646848,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=======================================\\u003e
1439
- \ ] 157.6 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":158203904,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=======================================\\u003e
1440
- \ ] 158.2 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":158760960,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=======================================\\u003e
1441
- \ ] 158.8 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":159318016,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=======================================\\u003e
1442
- \ ] 159.3 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":159875072,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=======================================\\u003e
1443
- \ ] 159.9 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":160432128,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=======================================\\u003e
1444
- \ ] 160.4 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":160989184,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=======================================\\u003e
1445
- \ ] 161 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":161546240,\"total\":201599488,\"start\":1414620106},\"progress\":\"[========================================\\u003e
1446
- \ ] 161.5 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":162103296,\"total\":201599488,\"start\":1414620106},\"progress\":\"[========================================\\u003e
1447
- \ ] 162.1 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":162660352,\"total\":201599488,\"start\":1414620106},\"progress\":\"[========================================\\u003e
1448
- \ ] 162.7 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":163217408,\"total\":201599488,\"start\":1414620106},\"progress\":\"[========================================\\u003e
1449
- \ ] 163.2 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":163774464,\"total\":201599488,\"start\":1414620106},\"progress\":\"[========================================\\u003e
1450
- \ ] 163.8 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":164331520,\"total\":201599488,\"start\":1414620106},\"progress\":\"[========================================\\u003e
1451
- \ ] 164.3 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":164888576,\"total\":201599488,\"start\":1414620106},\"progress\":\"[========================================\\u003e
1452
- \ ] 164.9 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":165445632,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=========================================\\u003e
1453
- \ ] 165.4 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":166002688,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=========================================\\u003e
1454
- \ ] 166 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":166559744,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=========================================\\u003e
1455
- \ ] 166.6 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":167116800,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=========================================\\u003e
1456
- \ ] 167.1 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":167673856,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=========================================\\u003e
1457
- \ ] 167.7 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":168230912,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=========================================\\u003e
1458
- \ ] 168.2 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":168787968,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=========================================\\u003e
1459
- \ ] 168.8 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":169345024,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==========================================\\u003e
1460
- \ ] 169.3 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":169902080,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==========================================\\u003e
1461
- \ ] 169.9 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":170459136,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==========================================\\u003e
1462
- \ ] 170.5 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":171016192,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==========================================\\u003e
1463
- \ ] 171 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":171573248,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==========================================\\u003e
1464
- \ ] 171.6 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":172130304,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==========================================\\u003e
1465
- \ ] 172.1 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":172687360,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==========================================\\u003e
1466
- \ ] 172.7 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":173244416,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==========================================\\u003e
1467
- \ ] 173.2 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":173801472,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===========================================\\u003e
1468
- \ ] 173.8 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":174358528,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===========================================\\u003e
1469
- \ ] 174.4 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":174915584,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===========================================\\u003e
1470
- \ ] 174.9 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":175472640,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===========================================\\u003e
1471
- \ ] 175.5 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":176029696,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===========================================\\u003e
1472
- \ ] 176 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":176586752,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===========================================\\u003e
1473
- \ ] 176.6 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":177143808,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===========================================\\u003e
1474
- \ ] 177.1 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":177700864,\"total\":201599488,\"start\":1414620106},\"progress\":\"[============================================\\u003e
1475
- \ ] 177.7 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":178257920,\"total\":201599488,\"start\":1414620106},\"progress\":\"[============================================\\u003e
1476
- \ ] 178.3 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":178814976,\"total\":201599488,\"start\":1414620106},\"progress\":\"[============================================\\u003e
1477
- \ ] 178.8 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":179372032,\"total\":201599488,\"start\":1414620106},\"progress\":\"[============================================\\u003e
1478
- \ ] 179.4 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":179929088,\"total\":201599488,\"start\":1414620106},\"progress\":\"[============================================\\u003e
1479
- \ ] 179.9 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":180486144,\"total\":201599488,\"start\":1414620106},\"progress\":\"[============================================\\u003e
1480
- \ ] 180.5 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":181043200,\"total\":201599488,\"start\":1414620106},\"progress\":\"[============================================\\u003e
1481
- \ ] 181 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":181600256,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=============================================\\u003e
1482
- \ ] 181.6 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":182157312,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=============================================\\u003e
1483
- \ ] 182.2 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":182714368,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=============================================\\u003e
1484
- \ ] 182.7 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":183271424,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=============================================\\u003e
1485
- \ ] 183.3 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":183828480,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=============================================\\u003e
1486
- \ ] 183.8 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":184385536,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=============================================\\u003e
1487
- \ ] 184.4 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":184942592,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=============================================\\u003e
1488
- \ ] 184.9 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":185499648,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==============================================\\u003e
1489
- \ ] 185.5 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":186056704,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==============================================\\u003e
1490
- \ ] 186.1 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":186613760,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==============================================\\u003e
1491
- \ ] 186.6 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":187170816,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==============================================\\u003e
1492
- \ ] 187.2 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":187727872,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==============================================\\u003e
1493
- \ ] 187.7 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":188284928,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==============================================\\u003e
1494
- \ ] 188.3 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":188841984,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==============================================\\u003e
1495
- \ ] 188.8 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":189399040,\"total\":201599488,\"start\":1414620106},\"progress\":\"[==============================================\\u003e
1496
- \ ] 189.4 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":189956096,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===============================================\\u003e
1497
- \ ] 190 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":190513152,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===============================================\\u003e
1498
- \ ] 190.5 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":191070208,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===============================================\\u003e
1499
- \ ] 191.1 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":191627264,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===============================================\\u003e
1500
- \ ] 191.6 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":192184320,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===============================================\\u003e
1501
- \ ] 192.2 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":192741376,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===============================================\\u003e
1502
- \ ] 192.7 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":193298432,\"total\":201599488,\"start\":1414620106},\"progress\":\"[===============================================\\u003e
1503
- \ ] 193.3 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":193855488,\"total\":201599488,\"start\":1414620106},\"progress\":\"[================================================\\u003e
1504
- \ ] 193.9 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":194412544,\"total\":201599488,\"start\":1414620106},\"progress\":\"[================================================\\u003e
1505
- \ ] 194.4 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":194969600,\"total\":201599488,\"start\":1414620106},\"progress\":\"[================================================\\u003e
1506
- \ ] 195 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":195526656,\"total\":201599488,\"start\":1414620106},\"progress\":\"[================================================\\u003e
1507
- \ ] 195.5 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":196083712,\"total\":201599488,\"start\":1414620106},\"progress\":\"[================================================\\u003e
1508
- \ ] 196.1 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":196640768,\"total\":201599488,\"start\":1414620106},\"progress\":\"[================================================\\u003e
1509
- \ ] 196.6 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":197197824,\"total\":201599488,\"start\":1414620106},\"progress\":\"[================================================\\u003e
1510
- \ ] 197.2 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":197754880,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=================================================\\u003e
1511
- ] 197.8 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":198311936,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=================================================\\u003e
1512
- ] 198.3 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":198868992,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=================================================\\u003e
1513
- ] 198.9 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":199426048,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=================================================\\u003e
1514
- ] 199.4 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":199983104,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=================================================\\u003e
1515
- ] 200 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":200540160,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=================================================\\u003e
1516
- ] 200.5 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":201097216,\"total\":201599488,\"start\":1414620106},\"progress\":\"[=================================================\\u003e
1517
- ] 201.1 MB/201.6 MB 0\",\"id\":\"d497ad3926c8\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"d497ad3926c8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":211968,\"start\":1414620106},\"progress\":\"[=======\\u003e
1518
- \ ] 32.77 kB/212 kB 5s\",\"id\":\"ccb62158e970\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":211968,\"start\":1414620106},\"progress\":\"[===============\\u003e
1519
- \ ] 65.54 kB/212 kB 2s\",\"id\":\"ccb62158e970\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":98304,\"total\":211968,\"start\":1414620106},\"progress\":\"[=======================\\u003e
1520
- \ ] 98.3 kB/212 kB 1s\",\"id\":\"ccb62158e970\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":131072,\"total\":211968,\"start\":1414620106},\"progress\":\"[==============================\\u003e
1521
- \ ] 131.1 kB/212 kB 0\",\"id\":\"ccb62158e970\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":163840,\"total\":211968,\"start\":1414620106},\"progress\":\"[======================================\\u003e
1522
- \ ] 163.8 kB/212 kB 0\",\"id\":\"ccb62158e970\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":196608,\"total\":211968,\"start\":1414620106},\"progress\":\"[==============================================\\u003e
1523
- \ ] 196.6 kB/212 kB 0\",\"id\":\"ccb62158e970\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":211968,\"total\":211968,\"start\":1414620106},\"progress\":\"[==================================================\\u003e]
1524
- \ 212 kB/212 kB\",\"id\":\"ccb62158e970\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"ccb62158e970\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9216,\"total\":9216,\"start\":1414620106},\"progress\":\"[==================================================\\u003e]
1525
- 9.216 kB/9.216 kB\",\"id\":\"e791be0477f2\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"e791be0477f2\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6656,\"total\":6656,\"start\":1414620106},\"progress\":\"[==================================================\\u003e]
1526
- 6.656 kB/6.656 kB\",\"id\":\"3680052c0f5c\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"3680052c0f5c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":98304,\"total\":8395264,\"start\":1414620106},\"progress\":\"[\\u003e
1527
- \ ] 98.3 kB/8.395 MB 1m19s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":196608,\"total\":8395264,\"start\":1414620106},\"progress\":\"[=\\u003e
1528
- \ ] 196.6 kB/8.395 MB 39s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":294912,\"total\":8395264,\"start\":1414620106},\"progress\":\"[=\\u003e
1529
- \ ] 294.9 kB/8.395 MB 25s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":393216,\"total\":8395264,\"start\":1414620106},\"progress\":\"[==\\u003e
1530
- \ ] 393.2 kB/8.395 MB 19s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":491520,\"total\":8395264,\"start\":1414620106},\"progress\":\"[==\\u003e
1531
- \ ] 491.5 kB/8.395 MB 15s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":589824,\"total\":8395264,\"start\":1414620106},\"progress\":\"[===\\u003e
1532
- \ ] 589.8 kB/8.395 MB 12s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":688128,\"total\":8395264,\"start\":1414620106},\"progress\":\"[====\\u003e
1533
- \ ] 688.1 kB/8.395 MB 10s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":786432,\"total\":8395264,\"start\":1414620106},\"progress\":\"[====\\u003e
1534
- \ ] 786.4 kB/8.395 MB 9s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":884736,\"total\":8395264,\"start\":1414620106},\"progress\":\"[=====\\u003e
1535
- \ ] 884.7 kB/8.395 MB 8s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":983040,\"total\":8395264,\"start\":1414620106},\"progress\":\"[=====\\u003e
1536
- \ ] 983 kB/8.395 MB 7s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1081344,\"total\":8395264,\"start\":1414620106},\"progress\":\"[======\\u003e
1537
- \ ] 1.081 MB/8.395 MB 6s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1179648,\"total\":8395264,\"start\":1414620106},\"progress\":\"[=======\\u003e
1538
- \ ] 1.18 MB/8.395 MB 5s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1277952,\"total\":8395264,\"start\":1414620106},\"progress\":\"[=======\\u003e
1539
- \ ] 1.278 MB/8.395 MB 5s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1376256,\"total\":8395264,\"start\":1414620106},\"progress\":\"[========\\u003e
1540
- \ ] 1.376 MB/8.395 MB 4s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1474560,\"total\":8395264,\"start\":1414620106},\"progress\":\"[========\\u003e
1541
- \ ] 1.475 MB/8.395 MB 4s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1572864,\"total\":8395264,\"start\":1414620106},\"progress\":\"[=========\\u003e
1542
- \ ] 1.573 MB/8.395 MB 4s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1671168,\"total\":8395264,\"start\":1414620106},\"progress\":\"[=========\\u003e
1543
- \ ] 1.671 MB/8.395 MB 3s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1769472,\"total\":8395264,\"start\":1414620106},\"progress\":\"[==========\\u003e
1544
- \ ] 1.769 MB/8.395 MB 3s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1867776,\"total\":8395264,\"start\":1414620106},\"progress\":\"[===========\\u003e
1545
- \ ] 1.868 MB/8.395 MB 3s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1966080,\"total\":8395264,\"start\":1414620106},\"progress\":\"[===========\\u003e
1546
- \ ] 1.966 MB/8.395 MB 3s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2064384,\"total\":8395264,\"start\":1414620106},\"progress\":\"[============\\u003e
1547
- \ ] 2.064 MB/8.395 MB 2s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2162688,\"total\":8395264,\"start\":1414620106},\"progress\":\"[============\\u003e
1548
- \ ] 2.163 MB/8.395 MB 2s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2260992,\"total\":8395264,\"start\":1414620106},\"progress\":\"[=============\\u003e
1549
- \ ] 2.261 MB/8.395 MB 2s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2359296,\"total\":8395264,\"start\":1414620106},\"progress\":\"[==============\\u003e
1550
- \ ] 2.359 MB/8.395 MB 2s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2457600,\"total\":8395264,\"start\":1414620106},\"progress\":\"[==============\\u003e
1551
- \ ] 2.458 MB/8.395 MB 2s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2555904,\"total\":8395264,\"start\":1414620106},\"progress\":\"[===============\\u003e
1552
- \ ] 2.556 MB/8.395 MB 2s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2654208,\"total\":8395264,\"start\":1414620106},\"progress\":\"[===============\\u003e
1553
- \ ] 2.654 MB/8.395 MB 2s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2752512,\"total\":8395264,\"start\":1414620106},\"progress\":\"[================\\u003e
1554
- \ ] 2.753 MB/8.395 MB 1s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2850816,\"total\":8395264,\"start\":1414620106},\"progress\":\"[================\\u003e
1555
- \ ] 2.851 MB/8.395 MB 1s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2949120,\"total\":8395264,\"start\":1414620106},\"progress\":\"[=================\\u003e
1556
- \ ] 2.949 MB/8.395 MB 1s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3047424,\"total\":8395264,\"start\":1414620106},\"progress\":\"[==================\\u003e
1557
- \ ] 3.047 MB/8.395 MB 1s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3145728,\"total\":8395264,\"start\":1414620106},\"progress\":\"[==================\\u003e
1558
- \ ] 3.146 MB/8.395 MB 1s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3244032,\"total\":8395264,\"start\":1414620106},\"progress\":\"[===================\\u003e
1559
- \ ] 3.244 MB/8.395 MB 1s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3342336,\"total\":8395264,\"start\":1414620106},\"progress\":\"[===================\\u003e
1560
- \ ] 3.342 MB/8.395 MB 1s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3440640,\"total\":8395264,\"start\":1414620106},\"progress\":\"[====================\\u003e
1561
- \ ] 3.441 MB/8.395 MB 1s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3538944,\"total\":8395264,\"start\":1414620106},\"progress\":\"[=====================\\u003e
1562
- \ ] 3.539 MB/8.395 MB 1s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3637248,\"total\":8395264,\"start\":1414620106},\"progress\":\"[=====================\\u003e
1563
- \ ] 3.637 MB/8.395 MB 1s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3735552,\"total\":8395264,\"start\":1414620106},\"progress\":\"[======================\\u003e
1564
- \ ] 3.736 MB/8.395 MB 1s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3833856,\"total\":8395264,\"start\":1414620106},\"progress\":\"[======================\\u003e
1565
- \ ] 3.834 MB/8.395 MB 1s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3932160,\"total\":8395264,\"start\":1414620106},\"progress\":\"[=======================\\u003e
1566
- \ ] 3.932 MB/8.395 MB 1s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4030464,\"total\":8395264,\"start\":1414620106},\"progress\":\"[========================\\u003e
1567
- \ ] 4.03 MB/8.395 MB 1s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4128768,\"total\":8395264,\"start\":1414620106},\"progress\":\"[========================\\u003e
1568
- \ ] 4.129 MB/8.395 MB 1s\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4227072,\"total\":8395264,\"start\":1414620106},\"progress\":\"[=========================\\u003e
1569
- \ ] 4.227 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4325376,\"total\":8395264,\"start\":1414620106},\"progress\":\"[=========================\\u003e
1570
- \ ] 4.325 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4423680,\"total\":8395264,\"start\":1414620106},\"progress\":\"[==========================\\u003e
1571
- \ ] 4.424 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4521984,\"total\":8395264,\"start\":1414620106},\"progress\":\"[==========================\\u003e
1572
- \ ] 4.522 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4620288,\"total\":8395264,\"start\":1414620106},\"progress\":\"[===========================\\u003e
1573
- \ ] 4.62 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4718592,\"total\":8395264,\"start\":1414620106},\"progress\":\"[============================\\u003e
1574
- \ ] 4.719 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4816896,\"total\":8395264,\"start\":1414620106},\"progress\":\"[============================\\u003e
1575
- \ ] 4.817 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4915200,\"total\":8395264,\"start\":1414620106},\"progress\":\"[=============================\\u003e
1576
- \ ] 4.915 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5013504,\"total\":8395264,\"start\":1414620106},\"progress\":\"[=============================\\u003e
1577
- \ ] 5.014 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5111808,\"total\":8395264,\"start\":1414620106},\"progress\":\"[==============================\\u003e
1578
- \ ] 5.112 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5210112,\"total\":8395264,\"start\":1414620106},\"progress\":\"[===============================\\u003e
1579
- \ ] 5.21 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5308416,\"total\":8395264,\"start\":1414620106},\"progress\":\"[===============================\\u003e
1580
- \ ] 5.308 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5406720,\"total\":8395264,\"start\":1414620106},\"progress\":\"[================================\\u003e
1581
- \ ] 5.407 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5505024,\"total\":8395264,\"start\":1414620106},\"progress\":\"[================================\\u003e
1582
- \ ] 5.505 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5603328,\"total\":8395264,\"start\":1414620106},\"progress\":\"[=================================\\u003e
1583
- \ ] 5.603 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5701632,\"total\":8395264,\"start\":1414620106},\"progress\":\"[=================================\\u003e
1584
- \ ] 5.702 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5799936,\"total\":8395264,\"start\":1414620106},\"progress\":\"[==================================\\u003e
1585
- \ ] 5.8 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5898240,\"total\":8395264,\"start\":1414620106},\"progress\":\"[===================================\\u003e
1586
- \ ] 5.898 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5996544,\"total\":8395264,\"start\":1414620106},\"progress\":\"[===================================\\u003e
1587
- \ ] 5.997 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6094848,\"total\":8395264,\"start\":1414620106},\"progress\":\"[====================================\\u003e
1588
- \ ] 6.095 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6193152,\"total\":8395264,\"start\":1414620106},\"progress\":\"[====================================\\u003e
1589
- \ ] 6.193 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6291456,\"total\":8395264,\"start\":1414620106},\"progress\":\"[=====================================\\u003e
1590
- \ ] 6.291 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6389760,\"total\":8395264,\"start\":1414620106},\"progress\":\"[======================================\\u003e
1591
- \ ] 6.39 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6488064,\"total\":8395264,\"start\":1414620106},\"progress\":\"[======================================\\u003e
1592
- \ ] 6.488 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6586368,\"total\":8395264,\"start\":1414620106},\"progress\":\"[=======================================\\u003e
1593
- \ ] 6.586 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6684672,\"total\":8395264,\"start\":1414620106},\"progress\":\"[=======================================\\u003e
1594
- \ ] 6.685 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6782976,\"total\":8395264,\"start\":1414620106},\"progress\":\"[========================================\\u003e
1595
- \ ] 6.783 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6881280,\"total\":8395264,\"start\":1414620106},\"progress\":\"[========================================\\u003e
1596
- \ ] 6.881 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6979584,\"total\":8395264,\"start\":1414620106},\"progress\":\"[=========================================\\u003e
1597
- \ ] 6.98 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7077888,\"total\":8395264,\"start\":1414620106},\"progress\":\"[==========================================\\u003e
1598
- \ ] 7.078 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7176192,\"total\":8395264,\"start\":1414620106},\"progress\":\"[==========================================\\u003e
1599
- \ ] 7.176 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7274496,\"total\":8395264,\"start\":1414620106},\"progress\":\"[===========================================\\u003e
1600
- \ ] 7.274 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7372800,\"total\":8395264,\"start\":1414620106},\"progress\":\"[===========================================\\u003e
1601
- \ ] 7.373 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7471104,\"total\":8395264,\"start\":1414620106},\"progress\":\"[============================================\\u003e
1602
- \ ] 7.471 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7569408,\"total\":8395264,\"start\":1414620106},\"progress\":\"[=============================================\\u003e
1603
- \ ] 7.569 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7667712,\"total\":8395264,\"start\":1414620106},\"progress\":\"[=============================================\\u003e
1604
- \ ] 7.668 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7766016,\"total\":8395264,\"start\":1414620106},\"progress\":\"[==============================================\\u003e
1605
- \ ] 7.766 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7864320,\"total\":8395264,\"start\":1414620106},\"progress\":\"[==============================================\\u003e
1606
- \ ] 7.864 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7962624,\"total\":8395264,\"start\":1414620106},\"progress\":\"[===============================================\\u003e
1607
- \ ] 7.963 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8060928,\"total\":8395264,\"start\":1414620106},\"progress\":\"[================================================\\u003e
1608
- \ ] 8.061 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8159232,\"total\":8395264,\"start\":1414620106},\"progress\":\"[================================================\\u003e
1609
- \ ] 8.159 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8257536,\"total\":8395264,\"start\":1414620106},\"progress\":\"[=================================================\\u003e
1610
- ] 8.258 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8355840,\"total\":8395264,\"start\":1414620106},\"progress\":\"[=================================================\\u003e
1611
- ] 8.356 MB/8.395 MB 0\",\"id\":\"22093c35d77b\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"22093c35d77b\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3072,\"total\":3072,\"start\":1414620107},\"progress\":\"[==================================================\\u003e]
1612
- 3.072 kB/3.072 kB\",\"id\":\"5506de2b643b\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"5506de2b643b\"}{\"status\":\"The
1613
- image you are pulling has been verified\",\"id\":\"ubuntu:14.04.1\"}\r\n{\"status\":\"Already
1614
- exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
1615
- exists\",\"progressDetail\":{},\"id\":\"d497ad3926c8\"}{\"status\":\"Already
1616
- exists\",\"progressDetail\":{},\"id\":\"ccb62158e970\"}{\"status\":\"Already
1617
- exists\",\"progressDetail\":{},\"id\":\"e791be0477f2\"}{\"status\":\"Already
1618
- exists\",\"progressDetail\":{},\"id\":\"3680052c0f5c\"}{\"status\":\"Already
1619
- exists\",\"progressDetail\":{},\"id\":\"22093c35d77b\"}{\"status\":\"Already
1620
- exists\",\"progressDetail\":{},\"id\":\"5506de2b643b\"}{\"status\":\"The image
1621
- you are pulling has been verified\",\"id\":\"ubuntu:14.10\"}\r\n{\"status\":\"Pulling
1622
- fs layer\",\"progressDetail\":{},\"id\":\"e12c576ad8a1\"}{\"status\":\"Pulling
1623
- fs layer\",\"progressDetail\":{},\"id\":\"102eb2a101b8\"}{\"status\":\"Pulling
1624
- fs layer\",\"progressDetail\":{},\"id\":\"530dbbae98a0\"}{\"status\":\"Pulling
1625
- fs layer\",\"progressDetail\":{},\"id\":\"37dde56c3a42\"}{\"status\":\"Pulling
1626
- fs layer\",\"progressDetail\":{},\"id\":\"8f118367086c\"}{\"status\":\"Pulling
1627
- fs layer\",\"progressDetail\":{},\"id\":\"277eb4304907\"}{\"status\":\"Already
1628
- exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3646,\"total\":9216,\"start\":1414620107},\"progress\":\"[===================\\u003e
1629
- \ ] 3.646 kB/9.216 kB 1s\",\"id\":\"530dbbae98a0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6409,\"total\":9216,\"start\":1414620107},\"progress\":\"[==================================\\u003e
1630
- \ ] 6.409 kB/9.216 kB 0\",\"id\":\"530dbbae98a0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9216,\"total\":9216,\"start\":1414620107},\"progress\":\"[==================================================\\u003e]
1631
- 9.216 kB/9.216 kB\",\"id\":\"530dbbae98a0\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"530dbbae98a0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3072,\"total\":3072,\"start\":1414620107},\"progress\":\"[==================================================\\u003e]
1632
- 3.072 kB/3.072 kB\",\"id\":\"277eb4304907\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"277eb4304907\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3646,\"total\":6656,\"start\":1414620107},\"progress\":\"[===========================\\u003e
1633
- \ ] 3.646 kB/6.656 kB 0\",\"id\":\"37dde56c3a42\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6656,\"total\":6656,\"start\":1414620107},\"progress\":\"[==================================================\\u003e]
1634
- 6.656 kB/6.656 kB\",\"id\":\"37dde56c3a42\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"37dde56c3a42\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3644,\"total\":232960,\"start\":1414620107},\"progress\":\"[\\u003e
1635
- \ ] 3.644 kB/233 kB 52s\",\"id\":\"102eb2a101b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13647,\"total\":232960,\"start\":1414620107},\"progress\":\"[==\\u003e
1636
- \ ] 13.65 kB/233 kB 13s\",\"id\":\"102eb2a101b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26679,\"total\":232960,\"start\":1414620107},\"progress\":\"[=====\\u003e
1637
- \ ] 26.68 kB/233 kB 6s\",\"id\":\"102eb2a101b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32471,\"total\":232960,\"start\":1414620107},\"progress\":\"[======\\u003e
1638
- \ ] 32.47 kB/233 kB 5s\",\"id\":\"102eb2a101b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41159,\"total\":232960,\"start\":1414620107},\"progress\":\"[========\\u003e
1639
- \ ] 41.16 kB/233 kB 4s\",\"id\":\"102eb2a101b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51295,\"total\":232960,\"start\":1414620107},\"progress\":\"[===========\\u003e
1640
- \ ] 51.3 kB/233 kB 3s\",\"id\":\"102eb2a101b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59983,\"total\":232960,\"start\":1414620107},\"progress\":\"[============\\u003e
1641
- \ ] 59.98 kB/233 kB 2s\",\"id\":\"102eb2a101b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65775,\"total\":232960,\"start\":1414620107},\"progress\":\"[==============\\u003e
1642
- \ ] 65.78 kB/233 kB 2s\",\"id\":\"102eb2a101b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74463,\"total\":232960,\"start\":1414620107},\"progress\":\"[===============\\u003e
1643
- \ ] 74.46 kB/233 kB 1s\",\"id\":\"102eb2a101b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88943,\"total\":232960,\"start\":1414620107},\"progress\":\"[===================\\u003e
1644
- \ ] 88.94 kB/233 kB 1s\",\"id\":\"102eb2a101b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":107231,\"total\":232960,\"start\":1414620107},\"progress\":\"[=======================\\u003e
1645
- \ ] 107.2 kB/233 kB 1s\",\"id\":\"102eb2a101b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":123615,\"total\":232960,\"start\":1414620107},\"progress\":\"[==========================\\u003e
1646
- \ ] 123.6 kB/233 kB 0\",\"id\":\"102eb2a101b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":139999,\"total\":232960,\"start\":1414620107},\"progress\":\"[==============================\\u003e
1647
- \ ] 140 kB/233 kB 0\",\"id\":\"102eb2a101b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":154479,\"total\":232960,\"start\":1414620107},\"progress\":\"[=================================\\u003e
1648
- \ ] 154.5 kB/233 kB 0\",\"id\":\"102eb2a101b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":170863,\"total\":232960,\"start\":1414620107},\"progress\":\"[====================================\\u003e
1649
- \ ] 170.9 kB/233 kB 0\",\"id\":\"102eb2a101b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":187247,\"total\":232960,\"start\":1414620107},\"progress\":\"[========================================\\u003e
1650
- \ ] 187.2 kB/233 kB 0\",\"id\":\"102eb2a101b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":203631,\"total\":232960,\"start\":1414620107},\"progress\":\"[===========================================\\u003e
1651
- \ ] 203.6 kB/233 kB 0\",\"id\":\"102eb2a101b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":220015,\"total\":232960,\"start\":1414620107},\"progress\":\"[===============================================\\u003e
1652
- \ ] 220 kB/233 kB 0\",\"id\":\"102eb2a101b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":232960,\"total\":232960,\"start\":1414620107},\"progress\":\"[==================================================\\u003e]
1653
- \ 233 kB/233 kB\",\"id\":\"102eb2a101b8\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"102eb2a101b8\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":338472,\"total\":32357376,\"start\":1414620107},\"progress\":\"[\\u003e
1654
- \ ] 338.5 kB/32.36 MB 1m37s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":666152,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=\\u003e
1655
- \ ] 666.2 kB/32.36 MB 52s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":528867,\"total\":207827456,\"start\":1414620107},\"progress\":\"[\\u003e
1656
- \ ] 528.9 kB/207.8 MB 7m20s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":993832,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=\\u003e
1657
- \ ] 993.8 kB/32.36 MB 35s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1321512,\"total\":32357376,\"start\":1414620107},\"progress\":\"[==\\u003e
1658
- \ ] 1.322 MB/32.36 MB 28s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1649192,\"total\":32357376,\"start\":1414620107},\"progress\":\"[==\\u003e
1659
- \ ] 1.649 MB/32.36 MB 23s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1976872,\"total\":32357376,\"start\":1414620107},\"progress\":\"[===\\u003e
1660
- \ ] 1.977 MB/32.36 MB 23s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1069539,\"total\":207827456,\"start\":1414620107},\"progress\":\"[\\u003e
1661
- \ ] 1.07 MB/207.8 MB 5m27s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2304552,\"total\":32357376,\"start\":1414620107},\"progress\":\"[===\\u003e
1662
- \ ] 2.305 MB/32.36 MB 25s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2632232,\"total\":32357376,\"start\":1414620107},\"progress\":\"[====\\u003e
1663
- \ ] 2.632 MB/32.36 MB 25s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1610211,\"total\":207827456,\"start\":1414620107},\"progress\":\"[\\u003e
1664
- \ ] 1.61 MB/207.8 MB 5m10s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2959912,\"total\":32357376,\"start\":1414620107},\"progress\":\"[====\\u003e
1665
- \ ] 2.96 MB/32.36 MB 25s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3287592,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=====\\u003e
1666
- \ ] 3.288 MB/32.36 MB 24s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2150883,\"total\":207827456,\"start\":1414620107},\"progress\":\"[\\u003e
1667
- \ ] 2.151 MB/207.8 MB 4m44s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3615272,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=====\\u003e
1668
- \ ] 3.615 MB/32.36 MB 24s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3942952,\"total\":32357376,\"start\":1414620107},\"progress\":\"[======\\u003e
1669
- \ ] 3.943 MB/32.36 MB 23s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2691555,\"total\":207827456,\"start\":1414620107},\"progress\":\"[\\u003e
1670
- \ ] 2.692 MB/207.8 MB 4m22s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4270632,\"total\":32357376,\"start\":1414620107},\"progress\":\"[======\\u003e
1671
- \ ] 4.271 MB/32.36 MB 23s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4598312,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=======\\u003e
1672
- \ ] 4.598 MB/32.36 MB 22s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3232227,\"total\":207827456,\"start\":1414620107},\"progress\":\"[\\u003e
1673
- \ ] 3.232 MB/207.8 MB 4m3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4925992,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=======\\u003e
1674
- \ ] 4.926 MB/32.36 MB 21s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5253672,\"total\":32357376,\"start\":1414620107},\"progress\":\"[========\\u003e
1675
- \ ] 5.254 MB/32.36 MB 20s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5581352,\"total\":32357376,\"start\":1414620107},\"progress\":\"[========\\u003e
1676
- \ ] 5.581 MB/32.36 MB 20s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3772899,\"total\":207827456,\"start\":1414620107},\"progress\":\"[\\u003e
1677
- \ ] 3.773 MB/207.8 MB 3m49s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5909032,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=========\\u003e
1678
- \ ] 5.909 MB/32.36 MB 19s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6236712,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=========\\u003e
1679
- \ ] 6.237 MB/32.36 MB 19s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4313571,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=\\u003e
1680
- \ ] 4.314 MB/207.8 MB 3m34s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6564392,\"total\":32357376,\"start\":1414620107},\"progress\":\"[==========\\u003e
1681
- \ ] 6.564 MB/32.36 MB 18s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4854243,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=\\u003e
1682
- \ ] 4.854 MB/207.8 MB 3m21s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6892072,\"total\":32357376,\"start\":1414620107},\"progress\":\"[==========\\u003e
1683
- \ ] 6.892 MB/32.36 MB 18s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7219752,\"total\":32357376,\"start\":1414620107},\"progress\":\"[===========\\u003e
1684
- \ ] 7.22 MB/32.36 MB 17s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5394915,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=\\u003e
1685
- \ ] 5.395 MB/207.8 MB 3m12s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7547432,\"total\":32357376,\"start\":1414620107},\"progress\":\"[===========\\u003e
1686
- \ ] 7.547 MB/32.36 MB 17s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5935587,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=\\u003e
1687
- \ ] 5.936 MB/207.8 MB 3m3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7875112,\"total\":32357376,\"start\":1414620107},\"progress\":\"[============\\u003e
1688
- \ ] 7.875 MB/32.36 MB 16s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8202792,\"total\":32357376,\"start\":1414620107},\"progress\":\"[============\\u003e
1689
- \ ] 8.203 MB/32.36 MB 16s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8530472,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=============\\u003e
1690
- \ ] 8.53 MB/32.36 MB 15s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6476259,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=\\u003e
1691
- \ ] 6.476 MB/207.8 MB 2m56s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8858152,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=============\\u003e
1692
- \ ] 8.858 MB/32.36 MB 15s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9185832,\"total\":32357376,\"start\":1414620107},\"progress\":\"[==============\\u003e
1693
- \ ] 9.186 MB/32.36 MB 14s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7016931,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=\\u003e
1694
- \ ] 7.017 MB/207.8 MB 2m51s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9513512,\"total\":32357376,\"start\":1414620107},\"progress\":\"[==============\\u003e
1695
- \ ] 9.514 MB/32.36 MB 14s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9841192,\"total\":32357376,\"start\":1414620107},\"progress\":\"[===============\\u003e
1696
- \ ] 9.841 MB/32.36 MB 14s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7557603,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=\\u003e
1697
- \ ] 7.558 MB/207.8 MB 2m46s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10168872,\"total\":32357376,\"start\":1414620107},\"progress\":\"[===============\\u003e
1698
- \ ] 10.17 MB/32.36 MB 13s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10496552,\"total\":32357376,\"start\":1414620107},\"progress\":\"[================\\u003e
1699
- \ ] 10.5 MB/32.36 MB 13s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8098275,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=\\u003e
1700
- \ ] 8.098 MB/207.8 MB 2m40s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10824232,\"total\":32357376,\"start\":1414620107},\"progress\":\"[================\\u003e
1701
- \ ] 10.82 MB/32.36 MB 12s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11151912,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=================\\u003e
1702
- \ ] 11.15 MB/32.36 MB 12s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8638947,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==\\u003e
1703
- \ ] 8.639 MB/207.8 MB 2m33s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11479592,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=================\\u003e
1704
- \ ] 11.48 MB/32.36 MB 12s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9179619,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==\\u003e
1705
- \ ] 9.18 MB/207.8 MB 2m28s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11807272,\"total\":32357376,\"start\":1414620107},\"progress\":\"[==================\\u003e
1706
- \ ] 11.81 MB/32.36 MB 12s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12134952,\"total\":32357376,\"start\":1414620107},\"progress\":\"[==================\\u003e
1707
- \ ] 12.13 MB/32.36 MB 11s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9720291,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==\\u003e
1708
- \ ] 9.72 MB/207.8 MB 2m24s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12462632,\"total\":32357376,\"start\":1414620107},\"progress\":\"[===================\\u003e
1709
- \ ] 12.46 MB/32.36 MB 11s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12790312,\"total\":32357376,\"start\":1414620107},\"progress\":\"[===================\\u003e
1710
- \ ] 12.79 MB/32.36 MB 11s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10260963,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==\\u003e
1711
- \ ] 10.26 MB/207.8 MB 2m20s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13117992,\"total\":32357376,\"start\":1414620107},\"progress\":\"[====================\\u003e
1712
- \ ] 13.12 MB/32.36 MB 10s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13445672,\"total\":32357376,\"start\":1414620107},\"progress\":\"[====================\\u003e
1713
- \ ] 13.45 MB/32.36 MB 10s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10801635,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==\\u003e
1714
- \ ] 10.8 MB/207.8 MB 2m16s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13773352,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=====================\\u003e
1715
- \ ] 13.77 MB/32.36 MB 10s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11342307,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==\\u003e
1716
- \ ] 11.34 MB/207.8 MB 2m12s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14101032,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=====================\\u003e
1717
- \ ] 14.1 MB/32.36 MB 9s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14428712,\"total\":32357376,\"start\":1414620107},\"progress\":\"[======================\\u003e
1718
- \ ] 14.43 MB/32.36 MB 9s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14756392,\"total\":32357376,\"start\":1414620107},\"progress\":\"[======================\\u003e
1719
- \ ] 14.76 MB/32.36 MB 9s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11882979,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==\\u003e
1720
- \ ] 11.88 MB/207.8 MB 2m9s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15084072,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=======================\\u003e
1721
- \ ] 15.08 MB/32.36 MB 9s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15411752,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=======================\\u003e
1722
- \ ] 15.41 MB/32.36 MB 8s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12423651,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==\\u003e
1723
- \ ] 12.42 MB/207.8 MB 2m6s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15739432,\"total\":32357376,\"start\":1414620107},\"progress\":\"[========================\\u003e
1724
- \ ] 15.74 MB/32.36 MB 8s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16067112,\"total\":32357376,\"start\":1414620107},\"progress\":\"[========================\\u003e
1725
- \ ] 16.07 MB/32.36 MB 8s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12964323,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===\\u003e
1726
- \ ] 12.96 MB/207.8 MB 2m3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16394792,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=========================\\u003e
1727
- \ ] 16.39 MB/32.36 MB 8s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16722472,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=========================\\u003e
1728
- \ ] 16.72 MB/32.36 MB 7s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13504995,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===\\u003e
1729
- \ ] 13.5 MB/207.8 MB 2m1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17050152,\"total\":32357376,\"start\":1414620107},\"progress\":\"[==========================\\u003e
1730
- \ ] 17.05 MB/32.36 MB 7s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17377832,\"total\":32357376,\"start\":1414620107},\"progress\":\"[==========================\\u003e
1731
- \ ] 17.38 MB/32.36 MB 7s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14045667,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===\\u003e
1732
- \ ] 14.05 MB/207.8 MB 1m58s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17705512,\"total\":32357376,\"start\":1414620107},\"progress\":\"[===========================\\u003e
1733
- \ ] 17.71 MB/32.36 MB 7s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14586339,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===\\u003e
1734
- \ ] 14.59 MB/207.8 MB 1m55s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18033192,\"total\":32357376,\"start\":1414620107},\"progress\":\"[===========================\\u003e
1735
- \ ] 18.03 MB/32.36 MB 6s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18360872,\"total\":32357376,\"start\":1414620107},\"progress\":\"[============================\\u003e
1736
- \ ] 18.36 MB/32.36 MB 6s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15127011,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===\\u003e
1737
- \ ] 15.13 MB/207.8 MB 1m53s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18688552,\"total\":32357376,\"start\":1414620107},\"progress\":\"[============================\\u003e
1738
- \ ] 18.69 MB/32.36 MB 6s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19016232,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=============================\\u003e
1739
- \ ] 19.02 MB/32.36 MB 6s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15667683,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===\\u003e
1740
- \ ] 15.67 MB/207.8 MB 1m50s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19343912,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=============================\\u003e
1741
- \ ] 19.34 MB/32.36 MB 6s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16208355,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===\\u003e
1742
- \ ] 16.21 MB/207.8 MB 1m48s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19671592,\"total\":32357376,\"start\":1414620107},\"progress\":\"[==============================\\u003e
1743
- \ ] 19.67 MB/32.36 MB 5s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16749027,\"total\":207827456,\"start\":1414620107},\"progress\":\"[====\\u003e
1744
- \ ] 16.75 MB/207.8 MB 1m46s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19999272,\"total\":32357376,\"start\":1414620107},\"progress\":\"[==============================\\u003e
1745
- \ ] 20 MB/32.36 MB 5s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17289699,\"total\":207827456,\"start\":1414620107},\"progress\":\"[====\\u003e
1746
- \ ] 17.29 MB/207.8 MB 1m44s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20326952,\"total\":32357376,\"start\":1414620107},\"progress\":\"[===============================\\u003e
1747
- \ ] 20.33 MB/32.36 MB 5s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20654632,\"total\":32357376,\"start\":1414620107},\"progress\":\"[===============================\\u003e
1748
- \ ] 20.65 MB/32.36 MB 5s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17830371,\"total\":207827456,\"start\":1414620107},\"progress\":\"[====\\u003e
1749
- \ ] 17.83 MB/207.8 MB 1m42s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20982312,\"total\":32357376,\"start\":1414620107},\"progress\":\"[================================\\u003e
1750
- \ ] 20.98 MB/32.36 MB 5s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18371043,\"total\":207827456,\"start\":1414620107},\"progress\":\"[====\\u003e
1751
- \ ] 18.37 MB/207.8 MB 1m40s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21309992,\"total\":32357376,\"start\":1414620107},\"progress\":\"[================================\\u003e
1752
- \ ] 21.31 MB/32.36 MB 5s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18911715,\"total\":207827456,\"start\":1414620107},\"progress\":\"[====\\u003e
1753
- \ ] 18.91 MB/207.8 MB 1m38s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21637672,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=================================\\u003e
1754
- \ ] 21.64 MB/32.36 MB 4s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19452387,\"total\":207827456,\"start\":1414620107},\"progress\":\"[====\\u003e
1755
- \ ] 19.45 MB/207.8 MB 1m37s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21965352,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=================================\\u003e
1756
- \ ] 21.97 MB/32.36 MB 4s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19993059,\"total\":207827456,\"start\":1414620107},\"progress\":\"[====\\u003e
1757
- \ ] 19.99 MB/207.8 MB 1m35s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22293032,\"total\":32357376,\"start\":1414620107},\"progress\":\"[==================================\\u003e
1758
- \ ] 22.29 MB/32.36 MB 4s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22620712,\"total\":32357376,\"start\":1414620107},\"progress\":\"[==================================\\u003e
1759
- \ ] 22.62 MB/32.36 MB 4s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20533731,\"total\":207827456,\"start\":1414620107},\"progress\":\"[====\\u003e
1760
- \ ] 20.53 MB/207.8 MB 1m34s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22948392,\"total\":32357376,\"start\":1414620107},\"progress\":\"[===================================\\u003e
1761
- \ ] 22.95 MB/32.36 MB 4s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21074403,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=====\\u003e
1762
- \ ] 21.07 MB/207.8 MB 1m33s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23276072,\"total\":32357376,\"start\":1414620107},\"progress\":\"[===================================\\u003e
1763
- \ ] 23.28 MB/32.36 MB 4s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21615075,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=====\\u003e
1764
- \ ] 21.62 MB/207.8 MB 1m31s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23603752,\"total\":32357376,\"start\":1414620107},\"progress\":\"[====================================\\u003e
1765
- \ ] 23.6 MB/32.36 MB 3s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22155747,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=====\\u003e
1766
- \ ] 22.16 MB/207.8 MB 1m30s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23931432,\"total\":32357376,\"start\":1414620107},\"progress\":\"[====================================\\u003e
1767
- \ ] 23.93 MB/32.36 MB 3s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22696419,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=====\\u003e
1768
- \ ] 22.7 MB/207.8 MB 1m29s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24259112,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=====================================\\u003e
1769
- \ ] 24.26 MB/32.36 MB 3s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23237091,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=====\\u003e
1770
- \ ] 23.24 MB/207.8 MB 1m27s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24586792,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=====================================\\u003e
1771
- \ ] 24.59 MB/32.36 MB 3s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23777763,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=====\\u003e
1772
- \ ] 23.78 MB/207.8 MB 1m26s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24914472,\"total\":32357376,\"start\":1414620107},\"progress\":\"[======================================\\u003e
1773
- \ ] 24.91 MB/32.36 MB 3s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24318435,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=====\\u003e
1774
- \ ] 24.32 MB/207.8 MB 1m25s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25242152,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=======================================\\u003e
1775
- \ ] 25.24 MB/32.36 MB 3s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24859107,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=====\\u003e
1776
- \ ] 24.86 MB/207.8 MB 1m24s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25569832,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=======================================\\u003e
1777
- \ ] 25.57 MB/32.36 MB 3s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25399779,\"total\":207827456,\"start\":1414620107},\"progress\":\"[======\\u003e
1778
- \ ] 25.4 MB/207.8 MB 1m23s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25897512,\"total\":32357376,\"start\":1414620107},\"progress\":\"[========================================\\u003e
1779
- \ ] 25.9 MB/32.36 MB 2s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25940451,\"total\":207827456,\"start\":1414620107},\"progress\":\"[======\\u003e
1780
- \ ] 25.94 MB/207.8 MB 1m22s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26225192,\"total\":32357376,\"start\":1414620107},\"progress\":\"[========================================\\u003e
1781
- \ ] 26.23 MB/32.36 MB 2s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26481123,\"total\":207827456,\"start\":1414620107},\"progress\":\"[======\\u003e
1782
- \ ] 26.48 MB/207.8 MB 1m21s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26552872,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=========================================\\u003e
1783
- \ ] 26.55 MB/32.36 MB 2s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27021795,\"total\":207827456,\"start\":1414620107},\"progress\":\"[======\\u003e
1784
- \ ] 27.02 MB/207.8 MB 1m20s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26880552,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=========================================\\u003e
1785
- \ ] 26.88 MB/32.36 MB 2s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27208232,\"total\":32357376,\"start\":1414620107},\"progress\":\"[==========================================\\u003e
1786
- \ ] 27.21 MB/32.36 MB 2s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27562467,\"total\":207827456,\"start\":1414620107},\"progress\":\"[======\\u003e
1787
- \ ] 27.56 MB/207.8 MB 1m19s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27535912,\"total\":32357376,\"start\":1414620107},\"progress\":\"[==========================================\\u003e
1788
- \ ] 27.54 MB/32.36 MB 2s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28103139,\"total\":207827456,\"start\":1414620107},\"progress\":\"[======\\u003e
1789
- \ ] 28.1 MB/207.8 MB 1m18s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27863592,\"total\":32357376,\"start\":1414620107},\"progress\":\"[===========================================\\u003e
1790
- \ ] 27.86 MB/32.36 MB 2s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28643811,\"total\":207827456,\"start\":1414620107},\"progress\":\"[======\\u003e
1791
- \ ] 28.64 MB/207.8 MB 1m17s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28191272,\"total\":32357376,\"start\":1414620107},\"progress\":\"[===========================================\\u003e
1792
- \ ] 28.19 MB/32.36 MB 1s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29184483,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=======\\u003e
1793
- \ ] 29.18 MB/207.8 MB 1m16s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28518952,\"total\":32357376,\"start\":1414620107},\"progress\":\"[============================================\\u003e
1794
- \ ] 28.52 MB/32.36 MB 1s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29725155,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=======\\u003e
1795
- \ ] 29.73 MB/207.8 MB 1m15s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30265827,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=======\\u003e
1796
- \ ] 30.27 MB/207.8 MB 1m14s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28846632,\"total\":32357376,\"start\":1414620107},\"progress\":\"[============================================\\u003e
1797
- \ ] 28.85 MB/32.36 MB 1s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30806499,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=======\\u003e
1798
- \ ] 30.81 MB/207.8 MB 1m13s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29174312,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=============================================\\u003e
1799
- \ ] 29.17 MB/32.36 MB 1s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31347171,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=======\\u003e
1800
- \ ] 31.35 MB/207.8 MB 1m13s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29501992,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=============================================\\u003e
1801
- \ ] 29.5 MB/32.36 MB 1s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31887843,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=======\\u003e
1802
- \ ] 31.89 MB/207.8 MB 1m12s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29829672,\"total\":32357376,\"start\":1414620107},\"progress\":\"[==============================================\\u003e
1803
- \ ] 29.83 MB/32.36 MB 1s\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32428515,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=======\\u003e
1804
- \ ] 32.43 MB/207.8 MB 1m11s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30157352,\"total\":32357376,\"start\":1414620107},\"progress\":\"[==============================================\\u003e
1805
- \ ] 30.16 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32969187,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=======\\u003e
1806
- \ ] 32.97 MB/207.8 MB 1m10s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30485032,\"total\":32357376,\"start\":1414620107},\"progress\":\"[===============================================\\u003e
1807
- \ ] 30.49 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33509859,\"total\":207827456,\"start\":1414620107},\"progress\":\"[========\\u003e
1808
- \ ] 33.51 MB/207.8 MB 1m9s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30812712,\"total\":32357376,\"start\":1414620107},\"progress\":\"[===============================================\\u003e
1809
- \ ] 30.81 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34050531,\"total\":207827456,\"start\":1414620107},\"progress\":\"[========\\u003e
1810
- \ ] 34.05 MB/207.8 MB 1m8s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31140392,\"total\":32357376,\"start\":1414620107},\"progress\":\"[================================================\\u003e
1811
- \ ] 31.14 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34591203,\"total\":207827456,\"start\":1414620107},\"progress\":\"[========\\u003e
1812
- \ ] 34.59 MB/207.8 MB 1m8s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31468072,\"total\":32357376,\"start\":1414620107},\"progress\":\"[================================================\\u003e
1813
- \ ] 31.47 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35131875,\"total\":207827456,\"start\":1414620107},\"progress\":\"[========\\u003e
1814
- \ ] 35.13 MB/207.8 MB 1m7s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31795752,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=================================================\\u003e
1815
- ] 31.8 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35672547,\"total\":207827456,\"start\":1414620107},\"progress\":\"[========\\u003e
1816
- \ ] 35.67 MB/207.8 MB 1m6s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32123432,\"total\":32357376,\"start\":1414620107},\"progress\":\"[=================================================\\u003e
1817
- ] 32.12 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36213219,\"total\":207827456,\"start\":1414620107},\"progress\":\"[========\\u003e
1818
- \ ] 36.21 MB/207.8 MB 1m5s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32357376,\"total\":32357376,\"start\":1414620107},\"progress\":\"[==================================================\\u003e]
1819
- 32.36 MB/32.36 MB\",\"id\":\"8f118367086c\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"8f118367086c\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36753891,\"total\":207827456,\"start\":1414620107},\"progress\":\"[========\\u003e
1820
- \ ] 36.75 MB/207.8 MB 1m5s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37294563,\"total\":207827456,\"start\":1414620107},\"progress\":\"[========\\u003e
1821
- \ ] 37.29 MB/207.8 MB 1m4s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37835235,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=========\\u003e
1822
- \ ] 37.84 MB/207.8 MB 1m3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38375907,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=========\\u003e
1823
- \ ] 38.38 MB/207.8 MB 1m3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38916579,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=========\\u003e
1824
- \ ] 38.92 MB/207.8 MB 1m2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39457251,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=========\\u003e
1825
- \ ] 39.46 MB/207.8 MB 1m1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39997923,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=========\\u003e
1826
- \ ] 40 MB/207.8 MB 1m1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40538595,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=========\\u003e
1827
- \ ] 40.54 MB/207.8 MB 1m0s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41079267,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=========\\u003e
1828
- \ ] 41.08 MB/207.8 MB 1m0s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41619939,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==========\\u003e
1829
- \ ] 41.62 MB/207.8 MB 59s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42160611,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==========\\u003e
1830
- \ ] 42.16 MB/207.8 MB 58s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42701283,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==========\\u003e
1831
- \ ] 42.7 MB/207.8 MB 58s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43241955,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==========\\u003e
1832
- \ ] 43.24 MB/207.8 MB 57s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43782627,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==========\\u003e
1833
- \ ] 43.78 MB/207.8 MB 57s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44323299,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==========\\u003e
1834
- \ ] 44.32 MB/207.8 MB 56s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44863971,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==========\\u003e
1835
- \ ] 44.86 MB/207.8 MB 56s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45404643,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==========\\u003e
1836
- \ ] 45.4 MB/207.8 MB 55s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45945315,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===========\\u003e
1837
- \ ] 45.95 MB/207.8 MB 55s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46485987,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===========\\u003e
1838
- \ ] 46.49 MB/207.8 MB 54s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47026659,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===========\\u003e
1839
- \ ] 47.03 MB/207.8 MB 54s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47567331,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===========\\u003e
1840
- \ ] 47.57 MB/207.8 MB 53s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48108003,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===========\\u003e
1841
- \ ] 48.11 MB/207.8 MB 53s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48648675,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===========\\u003e
1842
- \ ] 48.65 MB/207.8 MB 52s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49189347,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===========\\u003e
1843
- \ ] 49.19 MB/207.8 MB 52s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49730019,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===========\\u003e
1844
- \ ] 49.73 MB/207.8 MB 51s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50270691,\"total\":207827456,\"start\":1414620107},\"progress\":\"[============\\u003e
1845
- \ ] 50.27 MB/207.8 MB 51s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50811363,\"total\":207827456,\"start\":1414620107},\"progress\":\"[============\\u003e
1846
- \ ] 50.81 MB/207.8 MB 50s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51352035,\"total\":207827456,\"start\":1414620107},\"progress\":\"[============\\u003e
1847
- \ ] 51.35 MB/207.8 MB 50s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51892707,\"total\":207827456,\"start\":1414620107},\"progress\":\"[============\\u003e
1848
- \ ] 51.89 MB/207.8 MB 49s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52433379,\"total\":207827456,\"start\":1414620107},\"progress\":\"[============\\u003e
1849
- \ ] 52.43 MB/207.8 MB 49s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52974051,\"total\":207827456,\"start\":1414620107},\"progress\":\"[============\\u003e
1850
- \ ] 52.97 MB/207.8 MB 49s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53514723,\"total\":207827456,\"start\":1414620107},\"progress\":\"[============\\u003e
1851
- \ ] 53.51 MB/207.8 MB 48s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54055395,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=============\\u003e
1852
- \ ] 54.06 MB/207.8 MB 48s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54596067,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=============\\u003e
1853
- \ ] 54.6 MB/207.8 MB 47s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55136739,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=============\\u003e
1854
- \ ] 55.14 MB/207.8 MB 47s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55677411,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=============\\u003e
1855
- \ ] 55.68 MB/207.8 MB 47s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56218083,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=============\\u003e
1856
- \ ] 56.22 MB/207.8 MB 46s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56758755,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=============\\u003e
1857
- \ ] 56.76 MB/207.8 MB 46s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57299427,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=============\\u003e
1858
- \ ] 57.3 MB/207.8 MB 46s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57840099,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=============\\u003e
1859
- \ ] 57.84 MB/207.8 MB 45s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58380771,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==============\\u003e
1860
- \ ] 58.38 MB/207.8 MB 45s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58921443,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==============\\u003e
1861
- \ ] 58.92 MB/207.8 MB 45s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59462115,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==============\\u003e
1862
- \ ] 59.46 MB/207.8 MB 45s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60002787,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==============\\u003e
1863
- \ ] 60 MB/207.8 MB 44s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60543459,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==============\\u003e
1864
- \ ] 60.54 MB/207.8 MB 44s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61084131,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==============\\u003e
1865
- \ ] 61.08 MB/207.8 MB 44s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61624803,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==============\\u003e
1866
- \ ] 61.62 MB/207.8 MB 44s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62165475,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==============\\u003e
1867
- \ ] 62.17 MB/207.8 MB 43s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62706147,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===============\\u003e
1868
- \ ] 62.71 MB/207.8 MB 43s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63246819,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===============\\u003e
1869
- \ ] 63.25 MB/207.8 MB 43s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63787491,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===============\\u003e
1870
- \ ] 63.79 MB/207.8 MB 42s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64328163,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===============\\u003e
1871
- \ ] 64.33 MB/207.8 MB 42s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64868835,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===============\\u003e
1872
- \ ] 64.87 MB/207.8 MB 42s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65409507,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===============\\u003e
1873
- \ ] 65.41 MB/207.8 MB 41s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65950179,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===============\\u003e
1874
- \ ] 65.95 MB/207.8 MB 41s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66490851,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===============\\u003e
1875
- \ ] 66.49 MB/207.8 MB 41s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67031523,\"total\":207827456,\"start\":1414620107},\"progress\":\"[================\\u003e
1876
- \ ] 67.03 MB/207.8 MB 40s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67572195,\"total\":207827456,\"start\":1414620107},\"progress\":\"[================\\u003e
1877
- \ ] 67.57 MB/207.8 MB 40s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68112867,\"total\":207827456,\"start\":1414620107},\"progress\":\"[================\\u003e
1878
- \ ] 68.11 MB/207.8 MB 40s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68653539,\"total\":207827456,\"start\":1414620107},\"progress\":\"[================\\u003e
1879
- \ ] 68.65 MB/207.8 MB 40s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69194211,\"total\":207827456,\"start\":1414620107},\"progress\":\"[================\\u003e
1880
- \ ] 69.19 MB/207.8 MB 39s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69734883,\"total\":207827456,\"start\":1414620107},\"progress\":\"[================\\u003e
1881
- \ ] 69.73 MB/207.8 MB 39s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70275555,\"total\":207827456,\"start\":1414620107},\"progress\":\"[================\\u003e
1882
- \ ] 70.28 MB/207.8 MB 39s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70816227,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=================\\u003e
1883
- \ ] 70.82 MB/207.8 MB 39s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71356899,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=================\\u003e
1884
- \ ] 71.36 MB/207.8 MB 38s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71897571,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=================\\u003e
1885
- \ ] 71.9 MB/207.8 MB 38s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72438243,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=================\\u003e
1886
- \ ] 72.44 MB/207.8 MB 38s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72978915,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=================\\u003e
1887
- \ ] 72.98 MB/207.8 MB 38s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73511842,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=================\\u003e
1888
- \ ] 73.51 MB/207.8 MB 37s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74044226,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=================\\u003e
1889
- \ ] 74.04 MB/207.8 MB 37s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74584898,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=================\\u003e
1890
- \ ] 74.58 MB/207.8 MB 37s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75125570,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==================\\u003e
1891
- \ ] 75.13 MB/207.8 MB 37s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75666242,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==================\\u003e
1892
- \ ] 75.67 MB/207.8 MB 36s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76206914,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==================\\u003e
1893
- \ ] 76.21 MB/207.8 MB 36s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76747586,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==================\\u003e
1894
- \ ] 76.75 MB/207.8 MB 36s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77288258,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==================\\u003e
1895
- \ ] 77.29 MB/207.8 MB 36s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77828930,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==================\\u003e
1896
- \ ] 77.83 MB/207.8 MB 36s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78369602,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==================\\u003e
1897
- \ ] 78.37 MB/207.8 MB 35s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78910274,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==================\\u003e
1898
- \ ] 78.91 MB/207.8 MB 35s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79450946,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===================\\u003e
1899
- \ ] 79.45 MB/207.8 MB 35s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79991618,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===================\\u003e
1900
- \ ] 79.99 MB/207.8 MB 35s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80532290,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===================\\u003e
1901
- \ ] 80.53 MB/207.8 MB 35s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81072962,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===================\\u003e
1902
- \ ] 81.07 MB/207.8 MB 34s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81613634,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===================\\u003e
1903
- \ ] 81.61 MB/207.8 MB 34s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82154306,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===================\\u003e
1904
- \ ] 82.15 MB/207.8 MB 34s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82694978,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===================\\u003e
1905
- \ ] 82.69 MB/207.8 MB 34s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83235650,\"total\":207827456,\"start\":1414620107},\"progress\":\"[====================\\u003e
1906
- \ ] 83.24 MB/207.8 MB 34s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83776322,\"total\":207827456,\"start\":1414620107},\"progress\":\"[====================\\u003e
1907
- \ ] 83.78 MB/207.8 MB 34s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84316994,\"total\":207827456,\"start\":1414620107},\"progress\":\"[====================\\u003e
1908
- \ ] 84.32 MB/207.8 MB 33s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84857666,\"total\":207827456,\"start\":1414620107},\"progress\":\"[====================\\u003e
1909
- \ ] 84.86 MB/207.8 MB 33s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85398338,\"total\":207827456,\"start\":1414620107},\"progress\":\"[====================\\u003e
1910
- \ ] 85.4 MB/207.8 MB 33s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85939010,\"total\":207827456,\"start\":1414620107},\"progress\":\"[====================\\u003e
1911
- \ ] 85.94 MB/207.8 MB 33s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86479682,\"total\":207827456,\"start\":1414620107},\"progress\":\"[====================\\u003e
1912
- \ ] 86.48 MB/207.8 MB 33s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87020354,\"total\":207827456,\"start\":1414620107},\"progress\":\"[====================\\u003e
1913
- \ ] 87.02 MB/207.8 MB 32s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87561026,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=====================\\u003e
1914
- \ ] 87.56 MB/207.8 MB 32s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88101698,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=====================\\u003e
1915
- \ ] 88.1 MB/207.8 MB 32s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88642370,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=====================\\u003e
1916
- \ ] 88.64 MB/207.8 MB 32s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89183042,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=====================\\u003e
1917
- \ ] 89.18 MB/207.8 MB 32s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89723714,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=====================\\u003e
1918
- \ ] 89.72 MB/207.8 MB 31s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90264386,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=====================\\u003e
1919
- \ ] 90.26 MB/207.8 MB 31s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90805058,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=====================\\u003e
1920
- \ ] 90.81 MB/207.8 MB 31s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91345730,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=====================\\u003e
1921
- \ ] 91.35 MB/207.8 MB 31s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91886402,\"total\":207827456,\"start\":1414620107},\"progress\":\"[======================\\u003e
1922
- \ ] 91.89 MB/207.8 MB 31s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92427074,\"total\":207827456,\"start\":1414620107},\"progress\":\"[======================\\u003e
1923
- \ ] 92.43 MB/207.8 MB 30s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92967746,\"total\":207827456,\"start\":1414620107},\"progress\":\"[======================\\u003e
1924
- \ ] 92.97 MB/207.8 MB 30s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93508418,\"total\":207827456,\"start\":1414620107},\"progress\":\"[======================\\u003e
1925
- \ ] 93.51 MB/207.8 MB 30s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94049090,\"total\":207827456,\"start\":1414620107},\"progress\":\"[======================\\u003e
1926
- \ ] 94.05 MB/207.8 MB 30s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94589762,\"total\":207827456,\"start\":1414620107},\"progress\":\"[======================\\u003e
1927
- \ ] 94.59 MB/207.8 MB 30s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":95130434,\"total\":207827456,\"start\":1414620107},\"progress\":\"[======================\\u003e
1928
- \ ] 95.13 MB/207.8 MB 29s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":95671106,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=======================\\u003e
1929
- \ ] 95.67 MB/207.8 MB 29s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":96211778,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=======================\\u003e
1930
- \ ] 96.21 MB/207.8 MB 29s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":96752450,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=======================\\u003e
1931
- \ ] 96.75 MB/207.8 MB 29s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":97293122,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=======================\\u003e
1932
- \ ] 97.29 MB/207.8 MB 29s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":97833794,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=======================\\u003e
1933
- \ ] 97.83 MB/207.8 MB 28s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":98374466,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=======================\\u003e
1934
- \ ] 98.37 MB/207.8 MB 28s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":98915138,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=======================\\u003e
1935
- \ ] 98.92 MB/207.8 MB 28s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":99455810,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=======================\\u003e
1936
- \ ] 99.46 MB/207.8 MB 28s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":99996482,\"total\":207827456,\"start\":1414620107},\"progress\":\"[========================\\u003e
1937
- \ ] 100 MB/207.8 MB 28s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":100537154,\"total\":207827456,\"start\":1414620107},\"progress\":\"[========================\\u003e
1938
- \ ] 100.5 MB/207.8 MB 27s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":101077826,\"total\":207827456,\"start\":1414620107},\"progress\":\"[========================\\u003e
1939
- \ ] 101.1 MB/207.8 MB 27s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":101618498,\"total\":207827456,\"start\":1414620107},\"progress\":\"[========================\\u003e
1940
- \ ] 101.6 MB/207.8 MB 27s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":102159170,\"total\":207827456,\"start\":1414620107},\"progress\":\"[========================\\u003e
1941
- \ ] 102.2 MB/207.8 MB 27s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":102699842,\"total\":207827456,\"start\":1414620107},\"progress\":\"[========================\\u003e
1942
- \ ] 102.7 MB/207.8 MB 27s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":103240514,\"total\":207827456,\"start\":1414620107},\"progress\":\"[========================\\u003e
1943
- \ ] 103.2 MB/207.8 MB 26s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":103781186,\"total\":207827456,\"start\":1414620107},\"progress\":\"[========================\\u003e
1944
- \ ] 103.8 MB/207.8 MB 26s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":104321858,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=========================\\u003e
1945
- \ ] 104.3 MB/207.8 MB 26s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":104862530,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=========================\\u003e
1946
- \ ] 104.9 MB/207.8 MB 26s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":105403202,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=========================\\u003e
1947
- \ ] 105.4 MB/207.8 MB 26s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":105943874,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=========================\\u003e
1948
- \ ] 105.9 MB/207.8 MB 26s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":106484546,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=========================\\u003e
1949
- \ ] 106.5 MB/207.8 MB 25s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":107025218,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=========================\\u003e
1950
- \ ] 107 MB/207.8 MB 25s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":107565890,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=========================\\u003e
1951
- \ ] 107.6 MB/207.8 MB 25s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":108106562,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==========================\\u003e
1952
- \ ] 108.1 MB/207.8 MB 25s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":108647234,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==========================\\u003e
1953
- \ ] 108.6 MB/207.8 MB 25s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":109187906,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==========================\\u003e
1954
- \ ] 109.2 MB/207.8 MB 24s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":109728578,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==========================\\u003e
1955
- \ ] 109.7 MB/207.8 MB 24s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":110269250,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==========================\\u003e
1956
- \ ] 110.3 MB/207.8 MB 24s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":110809922,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==========================\\u003e
1957
- \ ] 110.8 MB/207.8 MB 24s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":111350594,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==========================\\u003e
1958
- \ ] 111.4 MB/207.8 MB 24s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":111891266,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==========================\\u003e
1959
- \ ] 111.9 MB/207.8 MB 23s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":112431938,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===========================\\u003e
1960
- \ ] 112.4 MB/207.8 MB 23s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":112972610,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===========================\\u003e
1961
- \ ] 113 MB/207.8 MB 23s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":113513282,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===========================\\u003e
1962
- \ ] 113.5 MB/207.8 MB 23s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":114053954,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===========================\\u003e
1963
- \ ] 114.1 MB/207.8 MB 23s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":114594626,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===========================\\u003e
1964
- \ ] 114.6 MB/207.8 MB 23s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":115135298,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===========================\\u003e
1965
- \ ] 115.1 MB/207.8 MB 22s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":115675970,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===========================\\u003e
1966
- \ ] 115.7 MB/207.8 MB 22s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":116216642,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===========================\\u003e
1967
- \ ] 116.2 MB/207.8 MB 22s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":116757314,\"total\":207827456,\"start\":1414620107},\"progress\":\"[============================\\u003e
1968
- \ ] 116.8 MB/207.8 MB 22s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":117297986,\"total\":207827456,\"start\":1414620107},\"progress\":\"[============================\\u003e
1969
- \ ] 117.3 MB/207.8 MB 22s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":117838658,\"total\":207827456,\"start\":1414620107},\"progress\":\"[============================\\u003e
1970
- \ ] 117.8 MB/207.8 MB 21s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":118379330,\"total\":207827456,\"start\":1414620107},\"progress\":\"[============================\\u003e
1971
- \ ] 118.4 MB/207.8 MB 21s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":118920002,\"total\":207827456,\"start\":1414620107},\"progress\":\"[============================\\u003e
1972
- \ ] 118.9 MB/207.8 MB 21s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":119450298,\"total\":207827456,\"start\":1414620107},\"progress\":\"[============================\\u003e
1973
- \ ] 119.5 MB/207.8 MB 21s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":119979762,\"total\":207827456,\"start\":1414620107},\"progress\":\"[============================\\u003e
1974
- \ ] 120 MB/207.8 MB 21s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":120506946,\"total\":207827456,\"start\":1414620107},\"progress\":\"[============================\\u003e
1975
- \ ] 120.5 MB/207.8 MB 21s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":121039866,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=============================\\u003e
1976
- \ ] 121 MB/207.8 MB 21s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":121569546,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=============================\\u003e
1977
- \ ] 121.6 MB/207.8 MB 20s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":122099626,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=============================\\u003e
1978
- \ ] 122.1 MB/207.8 MB 20s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":122625362,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=============================\\u003e
1979
- \ ] 122.6 MB/207.8 MB 20s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":123164962,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=============================\\u003e
1980
- \ ] 123.2 MB/207.8 MB 20s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":123696034,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=============================\\u003e
1981
- \ ] 123.7 MB/207.8 MB 20s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":124236706,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=============================\\u003e
1982
- \ ] 124.2 MB/207.8 MB 20s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":124774026,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==============================\\u003e
1983
- \ ] 124.8 MB/207.8 MB 19s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":125304026,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==============================\\u003e
1984
- \ ] 125.3 MB/207.8 MB 19s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":125841586,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==============================\\u003e
1985
- \ ] 125.8 MB/207.8 MB 19s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":126382258,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==============================\\u003e
1986
- \ ] 126.4 MB/207.8 MB 19s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":126922930,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==============================\\u003e
1987
- \ ] 126.9 MB/207.8 MB 19s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":127463602,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==============================\\u003e
1988
- \ ] 127.5 MB/207.8 MB 19s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":128004274,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==============================\\u003e
1989
- \ ] 128 MB/207.8 MB 19s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":128544946,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==============================\\u003e
1990
- \ ] 128.5 MB/207.8 MB 18s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":129085618,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===============================\\u003e
1991
- \ ] 129.1 MB/207.8 MB 18s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":129626290,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===============================\\u003e
1992
- \ ] 129.6 MB/207.8 MB 18s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":130166962,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===============================\\u003e
1993
- \ ] 130.2 MB/207.8 MB 18s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":130707634,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===============================\\u003e
1994
- \ ] 130.7 MB/207.8 MB 18s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":131248306,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===============================\\u003e
1995
- \ ] 131.2 MB/207.8 MB 18s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":131788978,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===============================\\u003e
1996
- \ ] 131.8 MB/207.8 MB 18s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":132329650,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===============================\\u003e
1997
- \ ] 132.3 MB/207.8 MB 17s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":132870322,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===============================\\u003e
1998
- \ ] 132.9 MB/207.8 MB 17s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":133410994,\"total\":207827456,\"start\":1414620107},\"progress\":\"[================================\\u003e
1999
- \ ] 133.4 MB/207.8 MB 17s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":133951666,\"total\":207827456,\"start\":1414620107},\"progress\":\"[================================\\u003e
2000
- \ ] 134 MB/207.8 MB 17s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":134492338,\"total\":207827456,\"start\":1414620107},\"progress\":\"[================================\\u003e
2001
- \ ] 134.5 MB/207.8 MB 17s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":135033010,\"total\":207827456,\"start\":1414620107},\"progress\":\"[================================\\u003e
2002
- \ ] 135 MB/207.8 MB 17s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":135573682,\"total\":207827456,\"start\":1414620107},\"progress\":\"[================================\\u003e
2003
- \ ] 135.6 MB/207.8 MB 16s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":136114354,\"total\":207827456,\"start\":1414620107},\"progress\":\"[================================\\u003e
2004
- \ ] 136.1 MB/207.8 MB 16s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":136655026,\"total\":207827456,\"start\":1414620107},\"progress\":\"[================================\\u003e
2005
- \ ] 136.7 MB/207.8 MB 16s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":137195698,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=================================\\u003e
2006
- \ ] 137.2 MB/207.8 MB 16s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":137736370,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=================================\\u003e
2007
- \ ] 137.7 MB/207.8 MB 16s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":138277042,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=================================\\u003e
2008
- \ ] 138.3 MB/207.8 MB 16s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":138817714,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=================================\\u003e
2009
- \ ] 138.8 MB/207.8 MB 16s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":139358386,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=================================\\u003e
2010
- \ ] 139.4 MB/207.8 MB 15s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":139899058,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=================================\\u003e
2011
- \ ] 139.9 MB/207.8 MB 15s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":140439730,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=================================\\u003e
2012
- \ ] 140.4 MB/207.8 MB 15s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":140980402,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=================================\\u003e
2013
- \ ] 141 MB/207.8 MB 15s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":141521074,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==================================\\u003e
2014
- \ ] 141.5 MB/207.8 MB 15s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":142061746,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==================================\\u003e
2015
- \ ] 142.1 MB/207.8 MB 15s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":142602418,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==================================\\u003e
2016
- \ ] 142.6 MB/207.8 MB 15s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":143143090,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==================================\\u003e
2017
- \ ] 143.1 MB/207.8 MB 14s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":143683762,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==================================\\u003e
2018
- \ ] 143.7 MB/207.8 MB 14s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":144224434,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==================================\\u003e
2019
- \ ] 144.2 MB/207.8 MB 14s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":144765106,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==================================\\u003e
2020
- \ ] 144.8 MB/207.8 MB 14s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":145305778,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==================================\\u003e
2021
- \ ] 145.3 MB/207.8 MB 14s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":145846450,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===================================\\u003e
2022
- \ ] 145.8 MB/207.8 MB 14s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":146387122,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===================================\\u003e
2023
- \ ] 146.4 MB/207.8 MB 14s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":146927794,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===================================\\u003e
2024
- \ ] 146.9 MB/207.8 MB 13s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":147468466,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===================================\\u003e
2025
- \ ] 147.5 MB/207.8 MB 13s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":148009138,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===================================\\u003e
2026
- \ ] 148 MB/207.8 MB 13s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":148549810,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===================================\\u003e
2027
- \ ] 148.5 MB/207.8 MB 13s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":149090482,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===================================\\u003e
2028
- \ ] 149.1 MB/207.8 MB 13s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":149631154,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===================================\\u003e
2029
- \ ] 149.6 MB/207.8 MB 13s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":150171826,\"total\":207827456,\"start\":1414620107},\"progress\":\"[====================================\\u003e
2030
- \ ] 150.2 MB/207.8 MB 13s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":150712498,\"total\":207827456,\"start\":1414620107},\"progress\":\"[====================================\\u003e
2031
- \ ] 150.7 MB/207.8 MB 13s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":151253170,\"total\":207827456,\"start\":1414620107},\"progress\":\"[====================================\\u003e
2032
- \ ] 151.3 MB/207.8 MB 12s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":151793842,\"total\":207827456,\"start\":1414620107},\"progress\":\"[====================================\\u003e
2033
- \ ] 151.8 MB/207.8 MB 12s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":152334514,\"total\":207827456,\"start\":1414620107},\"progress\":\"[====================================\\u003e
2034
- \ ] 152.3 MB/207.8 MB 12s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":152875186,\"total\":207827456,\"start\":1414620107},\"progress\":\"[====================================\\u003e
2035
- \ ] 152.9 MB/207.8 MB 12s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":153415858,\"total\":207827456,\"start\":1414620107},\"progress\":\"[====================================\\u003e
2036
- \ ] 153.4 MB/207.8 MB 12s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":153956530,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=====================================\\u003e
2037
- \ ] 154 MB/207.8 MB 12s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":154497202,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=====================================\\u003e
2038
- \ ] 154.5 MB/207.8 MB 12s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":155037874,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=====================================\\u003e
2039
- \ ] 155 MB/207.8 MB 11s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":155578546,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=====================================\\u003e
2040
- \ ] 155.6 MB/207.8 MB 11s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":156119218,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=====================================\\u003e
2041
- \ ] 156.1 MB/207.8 MB 11s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":156659890,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=====================================\\u003e
2042
- \ ] 156.7 MB/207.8 MB 11s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":157200562,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=====================================\\u003e
2043
- \ ] 157.2 MB/207.8 MB 11s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":157741234,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=====================================\\u003e
2044
- \ ] 157.7 MB/207.8 MB 11s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":158281906,\"total\":207827456,\"start\":1414620107},\"progress\":\"[======================================\\u003e
2045
- \ ] 158.3 MB/207.8 MB 11s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":158822578,\"total\":207827456,\"start\":1414620107},\"progress\":\"[======================================\\u003e
2046
- \ ] 158.8 MB/207.8 MB 11s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":159363250,\"total\":207827456,\"start\":1414620107},\"progress\":\"[======================================\\u003e
2047
- \ ] 159.4 MB/207.8 MB 10s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":159903922,\"total\":207827456,\"start\":1414620107},\"progress\":\"[======================================\\u003e
2048
- \ ] 159.9 MB/207.8 MB 10s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":160444594,\"total\":207827456,\"start\":1414620107},\"progress\":\"[======================================\\u003e
2049
- \ ] 160.4 MB/207.8 MB 10s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":160985266,\"total\":207827456,\"start\":1414620107},\"progress\":\"[======================================\\u003e
2050
- \ ] 161 MB/207.8 MB 10s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":161525938,\"total\":207827456,\"start\":1414620107},\"progress\":\"[======================================\\u003e
2051
- \ ] 161.5 MB/207.8 MB 10s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":162066610,\"total\":207827456,\"start\":1414620107},\"progress\":\"[======================================\\u003e
2052
- \ ] 162.1 MB/207.8 MB 10s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":162607282,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=======================================\\u003e
2053
- \ ] 162.6 MB/207.8 MB 10s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":163147954,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=======================================\\u003e
2054
- \ ] 163.1 MB/207.8 MB 10s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":163688626,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=======================================\\u003e
2055
- \ ] 163.7 MB/207.8 MB 9s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":164229298,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=======================================\\u003e
2056
- \ ] 164.2 MB/207.8 MB 9s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":164769970,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=======================================\\u003e
2057
- \ ] 164.8 MB/207.8 MB 9s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":165310642,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=======================================\\u003e
2058
- \ ] 165.3 MB/207.8 MB 9s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":165851314,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=======================================\\u003e
2059
- \ ] 165.9 MB/207.8 MB 9s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":166391986,\"total\":207827456,\"start\":1414620107},\"progress\":\"[========================================\\u003e
2060
- \ ] 166.4 MB/207.8 MB 9s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":166932658,\"total\":207827456,\"start\":1414620107},\"progress\":\"[========================================\\u003e
2061
- \ ] 166.9 MB/207.8 MB 9s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":167473330,\"total\":207827456,\"start\":1414620107},\"progress\":\"[========================================\\u003e
2062
- \ ] 167.5 MB/207.8 MB 9s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":168014002,\"total\":207827456,\"start\":1414620107},\"progress\":\"[========================================\\u003e
2063
- \ ] 168 MB/207.8 MB 8s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":168554674,\"total\":207827456,\"start\":1414620107},\"progress\":\"[========================================\\u003e
2064
- \ ] 168.6 MB/207.8 MB 8s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":169095346,\"total\":207827456,\"start\":1414620107},\"progress\":\"[========================================\\u003e
2065
- \ ] 169.1 MB/207.8 MB 8s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":169636018,\"total\":207827456,\"start\":1414620107},\"progress\":\"[========================================\\u003e
2066
- \ ] 169.6 MB/207.8 MB 8s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":170176690,\"total\":207827456,\"start\":1414620107},\"progress\":\"[========================================\\u003e
2067
- \ ] 170.2 MB/207.8 MB 8s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":170717362,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=========================================\\u003e
2068
- \ ] 170.7 MB/207.8 MB 8s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":171258034,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=========================================\\u003e
2069
- \ ] 171.3 MB/207.8 MB 8s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":171798706,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=========================================\\u003e
2070
- \ ] 171.8 MB/207.8 MB 8s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":172339378,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=========================================\\u003e
2071
- \ ] 172.3 MB/207.8 MB 7s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":172880050,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=========================================\\u003e
2072
- \ ] 172.9 MB/207.8 MB 7s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":173420722,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=========================================\\u003e
2073
- \ ] 173.4 MB/207.8 MB 7s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":173961394,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=========================================\\u003e
2074
- \ ] 174 MB/207.8 MB 7s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":174502066,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=========================================\\u003e
2075
- \ ] 174.5 MB/207.8 MB 7s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":175042738,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==========================================\\u003e
2076
- \ ] 175 MB/207.8 MB 7s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":175583410,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==========================================\\u003e
2077
- \ ] 175.6 MB/207.8 MB 7s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":176124082,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==========================================\\u003e
2078
- \ ] 176.1 MB/207.8 MB 7s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":176664754,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==========================================\\u003e
2079
- \ ] 176.7 MB/207.8 MB 6s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":177205426,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==========================================\\u003e
2080
- \ ] 177.2 MB/207.8 MB 6s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":177746098,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==========================================\\u003e
2081
- \ ] 177.7 MB/207.8 MB 6s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":178286770,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==========================================\\u003e
2082
- \ ] 178.3 MB/207.8 MB 6s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":178827442,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===========================================\\u003e
2083
- \ ] 178.8 MB/207.8 MB 6s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":179368114,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===========================================\\u003e
2084
- \ ] 179.4 MB/207.8 MB 6s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":179908786,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===========================================\\u003e
2085
- \ ] 179.9 MB/207.8 MB 6s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":180449458,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===========================================\\u003e
2086
- \ ] 180.4 MB/207.8 MB 6s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":180990130,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===========================================\\u003e
2087
- \ ] 181 MB/207.8 MB 5s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":181530802,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===========================================\\u003e
2088
- \ ] 181.5 MB/207.8 MB 5s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":182071474,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===========================================\\u003e
2089
- \ ] 182.1 MB/207.8 MB 5s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":182612146,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===========================================\\u003e
2090
- \ ] 182.6 MB/207.8 MB 5s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":183152818,\"total\":207827456,\"start\":1414620107},\"progress\":\"[============================================\\u003e
2091
- \ ] 183.2 MB/207.8 MB 5s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":183693490,\"total\":207827456,\"start\":1414620107},\"progress\":\"[============================================\\u003e
2092
- \ ] 183.7 MB/207.8 MB 5s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":184234162,\"total\":207827456,\"start\":1414620107},\"progress\":\"[============================================\\u003e
2093
- \ ] 184.2 MB/207.8 MB 5s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":184774834,\"total\":207827456,\"start\":1414620107},\"progress\":\"[============================================\\u003e
2094
- \ ] 184.8 MB/207.8 MB 5s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":185315506,\"total\":207827456,\"start\":1414620107},\"progress\":\"[============================================\\u003e
2095
- \ ] 185.3 MB/207.8 MB 4s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":185856178,\"total\":207827456,\"start\":1414620107},\"progress\":\"[============================================\\u003e
2096
- \ ] 185.9 MB/207.8 MB 4s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":186396850,\"total\":207827456,\"start\":1414620107},\"progress\":\"[============================================\\u003e
2097
- \ ] 186.4 MB/207.8 MB 4s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":186937522,\"total\":207827456,\"start\":1414620107},\"progress\":\"[============================================\\u003e
2098
- \ ] 186.9 MB/207.8 MB 4s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":187478194,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=============================================\\u003e
2099
- \ ] 187.5 MB/207.8 MB 4s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":188018866,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=============================================\\u003e
2100
- \ ] 188 MB/207.8 MB 4s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":188559538,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=============================================\\u003e
2101
- \ ] 188.6 MB/207.8 MB 4s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":189100210,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=============================================\\u003e
2102
- \ ] 189.1 MB/207.8 MB 4s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":189640882,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=============================================\\u003e
2103
- \ ] 189.6 MB/207.8 MB 4s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":190181554,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=============================================\\u003e
2104
- \ ] 190.2 MB/207.8 MB 3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":190722226,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=============================================\\u003e
2105
- \ ] 190.7 MB/207.8 MB 3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":191262898,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==============================================\\u003e
2106
- \ ] 191.3 MB/207.8 MB 3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":191803570,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==============================================\\u003e
2107
- \ ] 191.8 MB/207.8 MB 3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":192344242,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==============================================\\u003e
2108
- \ ] 192.3 MB/207.8 MB 3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":192884914,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==============================================\\u003e
2109
- \ ] 192.9 MB/207.8 MB 3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":193425586,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==============================================\\u003e
2110
- \ ] 193.4 MB/207.8 MB 3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":193966258,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==============================================\\u003e
2111
- \ ] 194 MB/207.8 MB 3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":194506930,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==============================================\\u003e
2112
- \ ] 194.5 MB/207.8 MB 3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":195047602,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==============================================\\u003e
2113
- \ ] 195 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":195588274,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===============================================\\u003e
2114
- \ ] 195.6 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":196128946,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===============================================\\u003e
2115
- \ ] 196.1 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":196669618,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===============================================\\u003e
2116
- \ ] 196.7 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":197210290,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===============================================\\u003e
2117
- \ ] 197.2 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":197750962,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===============================================\\u003e
2118
- \ ] 197.8 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":198291634,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===============================================\\u003e
2119
- \ ] 198.3 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":198832306,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===============================================\\u003e
2120
- \ ] 198.8 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":199372978,\"total\":207827456,\"start\":1414620107},\"progress\":\"[===============================================\\u003e
2121
- \ ] 199.4 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":199913650,\"total\":207827456,\"start\":1414620107},\"progress\":\"[================================================\\u003e
2122
- \ ] 199.9 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":200454322,\"total\":207827456,\"start\":1414620107},\"progress\":\"[================================================\\u003e
2123
- \ ] 200.5 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":200994994,\"total\":207827456,\"start\":1414620107},\"progress\":\"[================================================\\u003e
2124
- \ ] 201 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":201535666,\"total\":207827456,\"start\":1414620107},\"progress\":\"[================================================\\u003e
2125
- \ ] 201.5 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":202076338,\"total\":207827456,\"start\":1414620107},\"progress\":\"[================================================\\u003e
2126
- \ ] 202.1 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":202617010,\"total\":207827456,\"start\":1414620107},\"progress\":\"[================================================\\u003e
2127
- \ ] 202.6 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":203157682,\"total\":207827456,\"start\":1414620107},\"progress\":\"[================================================\\u003e
2128
- \ ] 203.2 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":203698354,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=================================================\\u003e
2129
- ] 203.7 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":204239026,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=================================================\\u003e
2130
- ] 204.2 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":204779698,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=================================================\\u003e
2131
- ] 204.8 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":205320370,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=================================================\\u003e
2132
- ] 205.3 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":205861042,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=================================================\\u003e
2133
- ] 205.9 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":206401714,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=================================================\\u003e
2134
- ] 206.4 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":206942386,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=================================================\\u003e
2135
- ] 206.9 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":207483058,\"total\":207827456,\"start\":1414620107},\"progress\":\"[=================================================\\u003e
2136
- ] 207.5 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":207827456,\"total\":207827456,\"start\":1414620107},\"progress\":\"[==================================================\\u003e]
2137
- 207.8 MB/207.8 MB\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":557056,\"total\":207827456,\"start\":1414620154},\"progress\":\"[\\u003e
2138
- \ ] 557.1 kB/207.8 MB 4m57s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1114112,\"total\":207827456,\"start\":1414620154},\"progress\":\"[\\u003e
2139
- \ ] 1.114 MB/207.8 MB 2m28s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1671168,\"total\":207827456,\"start\":1414620154},\"progress\":\"[\\u003e
2140
- \ ] 1.671 MB/207.8 MB 1m38s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2228224,\"total\":207827456,\"start\":1414620154},\"progress\":\"[\\u003e
2141
- \ ] 2.228 MB/207.8 MB 1m14s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2785280,\"total\":207827456,\"start\":1414620154},\"progress\":\"[\\u003e
2142
- \ ] 2.785 MB/207.8 MB 59s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3342336,\"total\":207827456,\"start\":1414620154},\"progress\":\"[\\u003e
2143
- \ ] 3.342 MB/207.8 MB 49s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3899392,\"total\":207827456,\"start\":1414620154},\"progress\":\"[\\u003e
2144
- \ ] 3.899 MB/207.8 MB 42s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4456448,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=\\u003e
2145
- \ ] 4.456 MB/207.8 MB 36s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5013504,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=\\u003e
2146
- \ ] 5.014 MB/207.8 MB 32s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5570560,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=\\u003e
2147
- \ ] 5.571 MB/207.8 MB 29s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6127616,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=\\u003e
2148
- \ ] 6.128 MB/207.8 MB 26s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6684672,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=\\u003e
2149
- \ ] 6.685 MB/207.8 MB 24s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7241728,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=\\u003e
2150
- \ ] 7.242 MB/207.8 MB 22s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7798784,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=\\u003e
2151
- \ ] 7.799 MB/207.8 MB 21s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8355840,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==\\u003e
2152
- \ ] 8.356 MB/207.8 MB 19s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8912896,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==\\u003e
2153
- \ ] 8.913 MB/207.8 MB 18s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9469952,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==\\u003e
2154
- \ ] 9.47 MB/207.8 MB 17s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":10027008,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==\\u003e
2155
- \ ] 10.03 MB/207.8 MB 16s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":10584064,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==\\u003e
2156
- \ ] 10.58 MB/207.8 MB 15s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11141120,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==\\u003e
2157
- \ ] 11.14 MB/207.8 MB 14s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11698176,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==\\u003e
2158
- \ ] 11.7 MB/207.8 MB 13s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12255232,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==\\u003e
2159
- \ ] 12.26 MB/207.8 MB 13s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12812288,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===\\u003e
2160
- \ ] 12.81 MB/207.8 MB 12s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":13369344,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===\\u003e
2161
- \ ] 13.37 MB/207.8 MB 12s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":13926400,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===\\u003e
2162
- \ ] 13.93 MB/207.8 MB 11s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":14483456,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===\\u003e
2163
- \ ] 14.48 MB/207.8 MB 11s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15040512,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===\\u003e
2164
- \ ] 15.04 MB/207.8 MB 10s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15597568,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===\\u003e
2165
- \ ] 15.6 MB/207.8 MB 10s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16154624,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===\\u003e
2166
- \ ] 16.15 MB/207.8 MB 9s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16711680,\"total\":207827456,\"start\":1414620154},\"progress\":\"[====\\u003e
2167
- \ ] 16.71 MB/207.8 MB 9s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17268736,\"total\":207827456,\"start\":1414620154},\"progress\":\"[====\\u003e
2168
- \ ] 17.27 MB/207.8 MB 9s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17825792,\"total\":207827456,\"start\":1414620154},\"progress\":\"[====\\u003e
2169
- \ ] 17.83 MB/207.8 MB 8s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":18382848,\"total\":207827456,\"start\":1414620154},\"progress\":\"[====\\u003e
2170
- \ ] 18.38 MB/207.8 MB 8s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":18939904,\"total\":207827456,\"start\":1414620154},\"progress\":\"[====\\u003e
2171
- \ ] 18.94 MB/207.8 MB 8s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":19496960,\"total\":207827456,\"start\":1414620154},\"progress\":\"[====\\u003e
2172
- \ ] 19.5 MB/207.8 MB 8s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":20054016,\"total\":207827456,\"start\":1414620154},\"progress\":\"[====\\u003e
2173
- \ ] 20.05 MB/207.8 MB 7s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":20611072,\"total\":207827456,\"start\":1414620154},\"progress\":\"[====\\u003e
2174
- \ ] 20.61 MB/207.8 MB 7s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21168128,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=====\\u003e
2175
- \ ] 21.17 MB/207.8 MB 7s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21725184,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=====\\u003e
2176
- \ ] 21.73 MB/207.8 MB 7s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22282240,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=====\\u003e
2177
- \ ] 22.28 MB/207.8 MB 7s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22839296,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=====\\u003e
2178
- \ ] 22.84 MB/207.8 MB 6s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23396352,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=====\\u003e
2179
- \ ] 23.4 MB/207.8 MB 6s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23953408,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=====\\u003e
2180
- \ ] 23.95 MB/207.8 MB 6s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24510464,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=====\\u003e
2181
- \ ] 24.51 MB/207.8 MB 6s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25067520,\"total\":207827456,\"start\":1414620154},\"progress\":\"[======\\u003e
2182
- \ ] 25.07 MB/207.8 MB 6s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25624576,\"total\":207827456,\"start\":1414620154},\"progress\":\"[======\\u003e
2183
- \ ] 25.62 MB/207.8 MB 6s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26181632,\"total\":207827456,\"start\":1414620154},\"progress\":\"[======\\u003e
2184
- \ ] 26.18 MB/207.8 MB 5s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26738688,\"total\":207827456,\"start\":1414620154},\"progress\":\"[======\\u003e
2185
- \ ] 26.74 MB/207.8 MB 5s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":27295744,\"total\":207827456,\"start\":1414620154},\"progress\":\"[======\\u003e
2186
- \ ] 27.3 MB/207.8 MB 5s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":27852800,\"total\":207827456,\"start\":1414620154},\"progress\":\"[======\\u003e
2187
- \ ] 27.85 MB/207.8 MB 5s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":28409856,\"total\":207827456,\"start\":1414620154},\"progress\":\"[======\\u003e
2188
- \ ] 28.41 MB/207.8 MB 5s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":28966912,\"total\":207827456,\"start\":1414620154},\"progress\":\"[======\\u003e
2189
- \ ] 28.97 MB/207.8 MB 5s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":29523968,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=======\\u003e
2190
- \ ] 29.52 MB/207.8 MB 4s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30081024,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=======\\u003e
2191
- \ ] 30.08 MB/207.8 MB 4s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30638080,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=======\\u003e
2192
- \ ] 30.64 MB/207.8 MB 4s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":31195136,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=======\\u003e
2193
- \ ] 31.2 MB/207.8 MB 4s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":31752192,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=======\\u003e
2194
- \ ] 31.75 MB/207.8 MB 4s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32309248,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=======\\u003e
2195
- \ ] 32.31 MB/207.8 MB 4s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32866304,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=======\\u003e
2196
- \ ] 32.87 MB/207.8 MB 4s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":33423360,\"total\":207827456,\"start\":1414620154},\"progress\":\"[========\\u003e
2197
- \ ] 33.42 MB/207.8 MB 4s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":33980416,\"total\":207827456,\"start\":1414620154},\"progress\":\"[========\\u003e
2198
- \ ] 33.98 MB/207.8 MB 4s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":34537472,\"total\":207827456,\"start\":1414620154},\"progress\":\"[========\\u003e
2199
- \ ] 34.54 MB/207.8 MB 4s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":35094528,\"total\":207827456,\"start\":1414620154},\"progress\":\"[========\\u003e
2200
- \ ] 35.09 MB/207.8 MB 4s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":35651584,\"total\":207827456,\"start\":1414620154},\"progress\":\"[========\\u003e
2201
- \ ] 35.65 MB/207.8 MB 4s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":36208640,\"total\":207827456,\"start\":1414620154},\"progress\":\"[========\\u003e
2202
- \ ] 36.21 MB/207.8 MB 3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":36765696,\"total\":207827456,\"start\":1414620154},\"progress\":\"[========\\u003e
2203
- \ ] 36.77 MB/207.8 MB 3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":37322752,\"total\":207827456,\"start\":1414620154},\"progress\":\"[========\\u003e
2204
- \ ] 37.32 MB/207.8 MB 3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":37879808,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=========\\u003e
2205
- \ ] 37.88 MB/207.8 MB 3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":38436864,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=========\\u003e
2206
- \ ] 38.44 MB/207.8 MB 3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":38993920,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=========\\u003e
2207
- \ ] 38.99 MB/207.8 MB 3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":39550976,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=========\\u003e
2208
- \ ] 39.55 MB/207.8 MB 3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":40108032,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=========\\u003e
2209
- \ ] 40.11 MB/207.8 MB 3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":40665088,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=========\\u003e
2210
- \ ] 40.67 MB/207.8 MB 3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":41222144,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=========\\u003e
2211
- \ ] 41.22 MB/207.8 MB 3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":41779200,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==========\\u003e
2212
- \ ] 41.78 MB/207.8 MB 3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":42336256,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==========\\u003e
2213
- \ ] 42.34 MB/207.8 MB 3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":42893312,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==========\\u003e
2214
- \ ] 42.89 MB/207.8 MB 3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":43450368,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==========\\u003e
2215
- \ ] 43.45 MB/207.8 MB 3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":44007424,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==========\\u003e
2216
- \ ] 44.01 MB/207.8 MB 3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":44564480,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==========\\u003e
2217
- \ ] 44.56 MB/207.8 MB 3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":45121536,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==========\\u003e
2218
- \ ] 45.12 MB/207.8 MB 3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":45678592,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==========\\u003e
2219
- \ ] 45.68 MB/207.8 MB 3s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":46235648,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===========\\u003e
2220
- \ ] 46.24 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":46792704,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===========\\u003e
2221
- \ ] 46.79 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":47349760,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===========\\u003e
2222
- \ ] 47.35 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":47906816,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===========\\u003e
2223
- \ ] 47.91 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":48463872,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===========\\u003e
2224
- \ ] 48.46 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":49020928,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===========\\u003e
2225
- \ ] 49.02 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":49577984,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===========\\u003e
2226
- \ ] 49.58 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":50135040,\"total\":207827456,\"start\":1414620154},\"progress\":\"[============\\u003e
2227
- \ ] 50.14 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":50692096,\"total\":207827456,\"start\":1414620154},\"progress\":\"[============\\u003e
2228
- \ ] 50.69 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":51249152,\"total\":207827456,\"start\":1414620154},\"progress\":\"[============\\u003e
2229
- \ ] 51.25 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":51806208,\"total\":207827456,\"start\":1414620154},\"progress\":\"[============\\u003e
2230
- \ ] 51.81 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":52363264,\"total\":207827456,\"start\":1414620154},\"progress\":\"[============\\u003e
2231
- \ ] 52.36 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":52920320,\"total\":207827456,\"start\":1414620154},\"progress\":\"[============\\u003e
2232
- \ ] 52.92 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":53477376,\"total\":207827456,\"start\":1414620154},\"progress\":\"[============\\u003e
2233
- \ ] 53.48 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":54034432,\"total\":207827456,\"start\":1414620154},\"progress\":\"[============\\u003e
2234
- \ ] 54.03 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":54591488,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=============\\u003e
2235
- \ ] 54.59 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":55148544,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=============\\u003e
2236
- \ ] 55.15 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":55705600,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=============\\u003e
2237
- \ ] 55.71 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":56262656,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=============\\u003e
2238
- \ ] 56.26 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":56819712,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=============\\u003e
2239
- \ ] 56.82 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":57376768,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=============\\u003e
2240
- \ ] 57.38 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":57933824,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=============\\u003e
2241
- \ ] 57.93 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":58490880,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==============\\u003e
2242
- \ ] 58.49 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":59047936,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==============\\u003e
2243
- \ ] 59.05 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":59604992,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==============\\u003e
2244
- \ ] 59.6 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":60162048,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==============\\u003e
2245
- \ ] 60.16 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":60719104,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==============\\u003e
2246
- \ ] 60.72 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":61276160,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==============\\u003e
2247
- \ ] 61.28 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":61833216,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==============\\u003e
2248
- \ ] 61.83 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":62390272,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===============\\u003e
2249
- \ ] 62.39 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":62947328,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===============\\u003e
2250
- \ ] 62.95 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":63504384,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===============\\u003e
2251
- \ ] 63.5 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":64061440,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===============\\u003e
2252
- \ ] 64.06 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":64618496,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===============\\u003e
2253
- \ ] 64.62 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65175552,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===============\\u003e
2254
- \ ] 65.18 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65732608,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===============\\u003e
2255
- \ ] 65.73 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":66289664,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===============\\u003e
2256
- \ ] 66.29 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":66846720,\"total\":207827456,\"start\":1414620154},\"progress\":\"[================\\u003e
2257
- \ ] 66.85 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":67403776,\"total\":207827456,\"start\":1414620154},\"progress\":\"[================\\u003e
2258
- \ ] 67.4 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":67960832,\"total\":207827456,\"start\":1414620154},\"progress\":\"[================\\u003e
2259
- \ ] 67.96 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":68517888,\"total\":207827456,\"start\":1414620154},\"progress\":\"[================\\u003e
2260
- \ ] 68.52 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":69074944,\"total\":207827456,\"start\":1414620154},\"progress\":\"[================\\u003e
2261
- \ ] 69.07 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":69632000,\"total\":207827456,\"start\":1414620154},\"progress\":\"[================\\u003e
2262
- \ ] 69.63 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":70189056,\"total\":207827456,\"start\":1414620154},\"progress\":\"[================\\u003e
2263
- \ ] 70.19 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":70746112,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=================\\u003e
2264
- \ ] 70.75 MB/207.8 MB 2s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":71303168,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=================\\u003e
2265
- \ ] 71.3 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":71860224,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=================\\u003e
2266
- \ ] 71.86 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":72417280,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=================\\u003e
2267
- \ ] 72.42 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":72974336,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=================\\u003e
2268
- \ ] 72.97 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":73531392,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=================\\u003e
2269
- \ ] 73.53 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":74088448,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=================\\u003e
2270
- \ ] 74.09 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":74645504,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=================\\u003e
2271
- \ ] 74.65 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":75202560,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==================\\u003e
2272
- \ ] 75.2 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":75759616,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==================\\u003e
2273
- \ ] 75.76 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":76316672,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==================\\u003e
2274
- \ ] 76.32 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":76873728,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==================\\u003e
2275
- \ ] 76.87 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":77430784,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==================\\u003e
2276
- \ ] 77.43 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":77987840,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==================\\u003e
2277
- \ ] 77.99 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":78544896,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==================\\u003e
2278
- \ ] 78.54 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":79101952,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===================\\u003e
2279
- \ ] 79.1 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":79659008,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===================\\u003e
2280
- \ ] 79.66 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":80216064,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===================\\u003e
2281
- \ ] 80.22 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":80773120,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===================\\u003e
2282
- \ ] 80.77 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":81330176,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===================\\u003e
2283
- \ ] 81.33 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":81887232,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===================\\u003e
2284
- \ ] 81.89 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":82444288,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===================\\u003e
2285
- \ ] 82.44 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":83001344,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===================\\u003e
2286
- \ ] 83 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":83558400,\"total\":207827456,\"start\":1414620154},\"progress\":\"[====================\\u003e
2287
- \ ] 83.56 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":84115456,\"total\":207827456,\"start\":1414620154},\"progress\":\"[====================\\u003e
2288
- \ ] 84.12 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":84672512,\"total\":207827456,\"start\":1414620154},\"progress\":\"[====================\\u003e
2289
- \ ] 84.67 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":85229568,\"total\":207827456,\"start\":1414620154},\"progress\":\"[====================\\u003e
2290
- \ ] 85.23 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":85786624,\"total\":207827456,\"start\":1414620154},\"progress\":\"[====================\\u003e
2291
- \ ] 85.79 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":86343680,\"total\":207827456,\"start\":1414620154},\"progress\":\"[====================\\u003e
2292
- \ ] 86.34 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":86900736,\"total\":207827456,\"start\":1414620154},\"progress\":\"[====================\\u003e
2293
- \ ] 86.9 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":87457792,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=====================\\u003e
2294
- \ ] 87.46 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":88014848,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=====================\\u003e
2295
- \ ] 88.01 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":88571904,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=====================\\u003e
2296
- \ ] 88.57 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":89128960,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=====================\\u003e
2297
- \ ] 89.13 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":89686016,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=====================\\u003e
2298
- \ ] 89.69 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":90243072,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=====================\\u003e
2299
- \ ] 90.24 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":90800128,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=====================\\u003e
2300
- \ ] 90.8 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":91357184,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=====================\\u003e
2301
- \ ] 91.36 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":91914240,\"total\":207827456,\"start\":1414620154},\"progress\":\"[======================\\u003e
2302
- \ ] 91.91 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":92471296,\"total\":207827456,\"start\":1414620154},\"progress\":\"[======================\\u003e
2303
- \ ] 92.47 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":93028352,\"total\":207827456,\"start\":1414620154},\"progress\":\"[======================\\u003e
2304
- \ ] 93.03 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":93585408,\"total\":207827456,\"start\":1414620154},\"progress\":\"[======================\\u003e
2305
- \ ] 93.59 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":94142464,\"total\":207827456,\"start\":1414620154},\"progress\":\"[======================\\u003e
2306
- \ ] 94.14 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":94699520,\"total\":207827456,\"start\":1414620154},\"progress\":\"[======================\\u003e
2307
- \ ] 94.7 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":95256576,\"total\":207827456,\"start\":1414620154},\"progress\":\"[======================\\u003e
2308
- \ ] 95.26 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":95813632,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=======================\\u003e
2309
- \ ] 95.81 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":96370688,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=======================\\u003e
2310
- \ ] 96.37 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":96927744,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=======================\\u003e
2311
- \ ] 96.93 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":97484800,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=======================\\u003e
2312
- \ ] 97.48 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":98041856,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=======================\\u003e
2313
- \ ] 98.04 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":98598912,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=======================\\u003e
2314
- \ ] 98.6 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":99155968,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=======================\\u003e
2315
- \ ] 99.16 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":99713024,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=======================\\u003e
2316
- \ ] 99.71 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":100270080,\"total\":207827456,\"start\":1414620154},\"progress\":\"[========================\\u003e
2317
- \ ] 100.3 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":100827136,\"total\":207827456,\"start\":1414620154},\"progress\":\"[========================\\u003e
2318
- \ ] 100.8 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":101384192,\"total\":207827456,\"start\":1414620154},\"progress\":\"[========================\\u003e
2319
- \ ] 101.4 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":101941248,\"total\":207827456,\"start\":1414620154},\"progress\":\"[========================\\u003e
2320
- \ ] 101.9 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":102498304,\"total\":207827456,\"start\":1414620154},\"progress\":\"[========================\\u003e
2321
- \ ] 102.5 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":103055360,\"total\":207827456,\"start\":1414620154},\"progress\":\"[========================\\u003e
2322
- \ ] 103.1 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":103612416,\"total\":207827456,\"start\":1414620154},\"progress\":\"[========================\\u003e
2323
- \ ] 103.6 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":104169472,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=========================\\u003e
2324
- \ ] 104.2 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":104726528,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=========================\\u003e
2325
- \ ] 104.7 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":105283584,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=========================\\u003e
2326
- \ ] 105.3 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":105840640,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=========================\\u003e
2327
- \ ] 105.8 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":106397696,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=========================\\u003e
2328
- \ ] 106.4 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":106954752,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=========================\\u003e
2329
- \ ] 107 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":107511808,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=========================\\u003e
2330
- \ ] 107.5 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":108068864,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=========================\\u003e
2331
- \ ] 108.1 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":108625920,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==========================\\u003e
2332
- \ ] 108.6 MB/207.8 MB 1s\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":109182976,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==========================\\u003e
2333
- \ ] 109.2 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":109740032,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==========================\\u003e
2334
- \ ] 109.7 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":110297088,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==========================\\u003e
2335
- \ ] 110.3 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":110854144,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==========================\\u003e
2336
- \ ] 110.9 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":111411200,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==========================\\u003e
2337
- \ ] 111.4 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":111968256,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==========================\\u003e
2338
- \ ] 112 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":112525312,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===========================\\u003e
2339
- \ ] 112.5 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":113082368,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===========================\\u003e
2340
- \ ] 113.1 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":113639424,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===========================\\u003e
2341
- \ ] 113.6 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":114196480,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===========================\\u003e
2342
- \ ] 114.2 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":114753536,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===========================\\u003e
2343
- \ ] 114.8 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":115310592,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===========================\\u003e
2344
- \ ] 115.3 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":115867648,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===========================\\u003e
2345
- \ ] 115.9 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":116424704,\"total\":207827456,\"start\":1414620154},\"progress\":\"[============================\\u003e
2346
- \ ] 116.4 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":116981760,\"total\":207827456,\"start\":1414620154},\"progress\":\"[============================\\u003e
2347
- \ ] 117 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":117538816,\"total\":207827456,\"start\":1414620154},\"progress\":\"[============================\\u003e
2348
- \ ] 117.5 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":118095872,\"total\":207827456,\"start\":1414620154},\"progress\":\"[============================\\u003e
2349
- \ ] 118.1 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":118652928,\"total\":207827456,\"start\":1414620154},\"progress\":\"[============================\\u003e
2350
- \ ] 118.7 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":119209984,\"total\":207827456,\"start\":1414620154},\"progress\":\"[============================\\u003e
2351
- \ ] 119.2 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":119767040,\"total\":207827456,\"start\":1414620154},\"progress\":\"[============================\\u003e
2352
- \ ] 119.8 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":120324096,\"total\":207827456,\"start\":1414620154},\"progress\":\"[============================\\u003e
2353
- \ ] 120.3 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":120881152,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=============================\\u003e
2354
- \ ] 120.9 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":121438208,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=============================\\u003e
2355
- \ ] 121.4 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":121995264,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=============================\\u003e
2356
- \ ] 122 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":122552320,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=============================\\u003e
2357
- \ ] 122.6 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":123109376,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=============================\\u003e
2358
- \ ] 123.1 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":123666432,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=============================\\u003e
2359
- \ ] 123.7 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":124223488,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=============================\\u003e
2360
- \ ] 124.2 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":124780544,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==============================\\u003e
2361
- \ ] 124.8 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":125337600,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==============================\\u003e
2362
- \ ] 125.3 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":125894656,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==============================\\u003e
2363
- \ ] 125.9 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":126451712,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==============================\\u003e
2364
- \ ] 126.5 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":127008768,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==============================\\u003e
2365
- \ ] 127 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":127565824,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==============================\\u003e
2366
- \ ] 127.6 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":128122880,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==============================\\u003e
2367
- \ ] 128.1 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":128679936,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==============================\\u003e
2368
- \ ] 128.7 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":129236992,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===============================\\u003e
2369
- \ ] 129.2 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":129794048,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===============================\\u003e
2370
- \ ] 129.8 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":130351104,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===============================\\u003e
2371
- \ ] 130.4 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":130908160,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===============================\\u003e
2372
- \ ] 130.9 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":131465216,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===============================\\u003e
2373
- \ ] 131.5 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":132022272,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===============================\\u003e
2374
- \ ] 132 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":132579328,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===============================\\u003e
2375
- \ ] 132.6 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":133136384,\"total\":207827456,\"start\":1414620154},\"progress\":\"[================================\\u003e
2376
- \ ] 133.1 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":133693440,\"total\":207827456,\"start\":1414620154},\"progress\":\"[================================\\u003e
2377
- \ ] 133.7 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":134250496,\"total\":207827456,\"start\":1414620154},\"progress\":\"[================================\\u003e
2378
- \ ] 134.3 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":134807552,\"total\":207827456,\"start\":1414620154},\"progress\":\"[================================\\u003e
2379
- \ ] 134.8 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":135364608,\"total\":207827456,\"start\":1414620154},\"progress\":\"[================================\\u003e
2380
- \ ] 135.4 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":135921664,\"total\":207827456,\"start\":1414620154},\"progress\":\"[================================\\u003e
2381
- \ ] 135.9 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":136478720,\"total\":207827456,\"start\":1414620154},\"progress\":\"[================================\\u003e
2382
- \ ] 136.5 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":137035776,\"total\":207827456,\"start\":1414620154},\"progress\":\"[================================\\u003e
2383
- \ ] 137 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":137592832,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=================================\\u003e
2384
- \ ] 137.6 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":138149888,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=================================\\u003e
2385
- \ ] 138.1 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":138706944,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=================================\\u003e
2386
- \ ] 138.7 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":139264000,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=================================\\u003e
2387
- \ ] 139.3 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":139821056,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=================================\\u003e
2388
- \ ] 139.8 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":140378112,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=================================\\u003e
2389
- \ ] 140.4 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":140935168,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=================================\\u003e
2390
- \ ] 140.9 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":141492224,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==================================\\u003e
2391
- \ ] 141.5 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":142049280,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==================================\\u003e
2392
- \ ] 142 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":142606336,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==================================\\u003e
2393
- \ ] 142.6 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":143163392,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==================================\\u003e
2394
- \ ] 143.2 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":143720448,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==================================\\u003e
2395
- \ ] 143.7 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":144277504,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==================================\\u003e
2396
- \ ] 144.3 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":144834560,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==================================\\u003e
2397
- \ ] 144.8 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":145391616,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==================================\\u003e
2398
- \ ] 145.4 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":145948672,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===================================\\u003e
2399
- \ ] 145.9 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":146505728,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===================================\\u003e
2400
- \ ] 146.5 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":147062784,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===================================\\u003e
2401
- \ ] 147.1 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":147619840,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===================================\\u003e
2402
- \ ] 147.6 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":148176896,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===================================\\u003e
2403
- \ ] 148.2 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":148733952,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===================================\\u003e
2404
- \ ] 148.7 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":149291008,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===================================\\u003e
2405
- \ ] 149.3 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":149848064,\"total\":207827456,\"start\":1414620154},\"progress\":\"[====================================\\u003e
2406
- \ ] 149.8 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":150405120,\"total\":207827456,\"start\":1414620154},\"progress\":\"[====================================\\u003e
2407
- \ ] 150.4 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":150962176,\"total\":207827456,\"start\":1414620154},\"progress\":\"[====================================\\u003e
2408
- \ ] 151 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":151519232,\"total\":207827456,\"start\":1414620154},\"progress\":\"[====================================\\u003e
2409
- \ ] 151.5 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":152076288,\"total\":207827456,\"start\":1414620154},\"progress\":\"[====================================\\u003e
2410
- \ ] 152.1 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":152633344,\"total\":207827456,\"start\":1414620154},\"progress\":\"[====================================\\u003e
2411
- \ ] 152.6 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":153190400,\"total\":207827456,\"start\":1414620154},\"progress\":\"[====================================\\u003e
2412
- \ ] 153.2 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":153747456,\"total\":207827456,\"start\":1414620154},\"progress\":\"[====================================\\u003e
2413
- \ ] 153.7 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":154304512,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=====================================\\u003e
2414
- \ ] 154.3 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":154861568,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=====================================\\u003e
2415
- \ ] 154.9 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":155418624,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=====================================\\u003e
2416
- \ ] 155.4 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":155975680,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=====================================\\u003e
2417
- \ ] 156 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":156532736,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=====================================\\u003e
2418
- \ ] 156.5 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":157089792,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=====================================\\u003e
2419
- \ ] 157.1 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":157646848,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=====================================\\u003e
2420
- \ ] 157.6 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":158203904,\"total\":207827456,\"start\":1414620154},\"progress\":\"[======================================\\u003e
2421
- \ ] 158.2 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":158760960,\"total\":207827456,\"start\":1414620154},\"progress\":\"[======================================\\u003e
2422
- \ ] 158.8 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":159318016,\"total\":207827456,\"start\":1414620154},\"progress\":\"[======================================\\u003e
2423
- \ ] 159.3 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":159875072,\"total\":207827456,\"start\":1414620154},\"progress\":\"[======================================\\u003e
2424
- \ ] 159.9 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":160432128,\"total\":207827456,\"start\":1414620154},\"progress\":\"[======================================\\u003e
2425
- \ ] 160.4 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":160989184,\"total\":207827456,\"start\":1414620154},\"progress\":\"[======================================\\u003e
2426
- \ ] 161 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":161546240,\"total\":207827456,\"start\":1414620154},\"progress\":\"[======================================\\u003e
2427
- \ ] 161.5 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":162103296,\"total\":207827456,\"start\":1414620154},\"progress\":\"[======================================\\u003e
2428
- \ ] 162.1 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":162660352,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=======================================\\u003e
2429
- \ ] 162.7 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":163217408,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=======================================\\u003e
2430
- \ ] 163.2 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":163774464,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=======================================\\u003e
2431
- \ ] 163.8 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":164331520,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=======================================\\u003e
2432
- \ ] 164.3 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":164888576,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=======================================\\u003e
2433
- \ ] 164.9 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":165445632,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=======================================\\u003e
2434
- \ ] 165.4 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":166002688,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=======================================\\u003e
2435
- \ ] 166 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":166559744,\"total\":207827456,\"start\":1414620154},\"progress\":\"[========================================\\u003e
2436
- \ ] 166.6 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":167116800,\"total\":207827456,\"start\":1414620154},\"progress\":\"[========================================\\u003e
2437
- \ ] 167.1 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":167673856,\"total\":207827456,\"start\":1414620154},\"progress\":\"[========================================\\u003e
2438
- \ ] 167.7 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":168230912,\"total\":207827456,\"start\":1414620154},\"progress\":\"[========================================\\u003e
2439
- \ ] 168.2 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":168787968,\"total\":207827456,\"start\":1414620154},\"progress\":\"[========================================\\u003e
2440
- \ ] 168.8 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":169345024,\"total\":207827456,\"start\":1414620154},\"progress\":\"[========================================\\u003e
2441
- \ ] 169.3 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":169902080,\"total\":207827456,\"start\":1414620154},\"progress\":\"[========================================\\u003e
2442
- \ ] 169.9 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":170459136,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=========================================\\u003e
2443
- \ ] 170.5 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":171016192,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=========================================\\u003e
2444
- \ ] 171 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":171573248,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=========================================\\u003e
2445
- \ ] 171.6 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":172130304,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=========================================\\u003e
2446
- \ ] 172.1 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":172687360,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=========================================\\u003e
2447
- \ ] 172.7 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":173244416,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=========================================\\u003e
2448
- \ ] 173.2 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":173801472,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=========================================\\u003e
2449
- \ ] 173.8 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":174358528,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=========================================\\u003e
2450
- \ ] 174.4 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":174915584,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==========================================\\u003e
2451
- \ ] 174.9 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":175472640,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==========================================\\u003e
2452
- \ ] 175.5 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":176029696,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==========================================\\u003e
2453
- \ ] 176 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":176586752,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==========================================\\u003e
2454
- \ ] 176.6 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":177143808,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==========================================\\u003e
2455
- \ ] 177.1 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":177700864,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==========================================\\u003e
2456
- \ ] 177.7 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":178257920,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==========================================\\u003e
2457
- \ ] 178.3 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":178814976,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===========================================\\u003e
2458
- \ ] 178.8 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":179372032,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===========================================\\u003e
2459
- \ ] 179.4 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":179929088,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===========================================\\u003e
2460
- \ ] 179.9 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":180486144,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===========================================\\u003e
2461
- \ ] 180.5 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":181043200,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===========================================\\u003e
2462
- \ ] 181 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":181600256,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===========================================\\u003e
2463
- \ ] 181.6 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":182157312,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===========================================\\u003e
2464
- \ ] 182.2 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":182714368,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===========================================\\u003e
2465
- \ ] 182.7 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":183271424,\"total\":207827456,\"start\":1414620154},\"progress\":\"[============================================\\u003e
2466
- \ ] 183.3 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":183828480,\"total\":207827456,\"start\":1414620154},\"progress\":\"[============================================\\u003e
2467
- \ ] 183.8 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":184385536,\"total\":207827456,\"start\":1414620154},\"progress\":\"[============================================\\u003e
2468
- \ ] 184.4 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":184942592,\"total\":207827456,\"start\":1414620154},\"progress\":\"[============================================\\u003e
2469
- \ ] 184.9 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":185499648,\"total\":207827456,\"start\":1414620154},\"progress\":\"[============================================\\u003e
2470
- \ ] 185.5 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":186056704,\"total\":207827456,\"start\":1414620154},\"progress\":\"[============================================\\u003e
2471
- \ ] 186.1 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":186613760,\"total\":207827456,\"start\":1414620154},\"progress\":\"[============================================\\u003e
2472
- \ ] 186.6 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":187170816,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=============================================\\u003e
2473
- \ ] 187.2 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":187727872,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=============================================\\u003e
2474
- \ ] 187.7 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":188284928,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=============================================\\u003e
2475
- \ ] 188.3 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":188841984,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=============================================\\u003e
2476
- \ ] 188.8 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":189399040,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=============================================\\u003e
2477
- \ ] 189.4 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":189956096,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=============================================\\u003e
2478
- \ ] 190 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":190513152,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=============================================\\u003e
2479
- \ ] 190.5 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":191070208,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=============================================\\u003e
2480
- \ ] 191.1 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":191627264,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==============================================\\u003e
2481
- \ ] 191.6 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":192184320,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==============================================\\u003e
2482
- \ ] 192.2 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":192741376,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==============================================\\u003e
2483
- \ ] 192.7 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":193298432,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==============================================\\u003e
2484
- \ ] 193.3 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":193855488,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==============================================\\u003e
2485
- \ ] 193.9 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":194412544,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==============================================\\u003e
2486
- \ ] 194.4 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":194969600,\"total\":207827456,\"start\":1414620154},\"progress\":\"[==============================================\\u003e
2487
- \ ] 195 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":195526656,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===============================================\\u003e
2488
- \ ] 195.5 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":196083712,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===============================================\\u003e
2489
- \ ] 196.1 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":196640768,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===============================================\\u003e
2490
- \ ] 196.6 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":197197824,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===============================================\\u003e
2491
- \ ] 197.2 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":197754880,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===============================================\\u003e
2492
- \ ] 197.8 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":198311936,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===============================================\\u003e
2493
- \ ] 198.3 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":198868992,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===============================================\\u003e
2494
- \ ] 198.9 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":199426048,\"total\":207827456,\"start\":1414620154},\"progress\":\"[===============================================\\u003e
2495
- \ ] 199.4 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":199983104,\"total\":207827456,\"start\":1414620154},\"progress\":\"[================================================\\u003e
2496
- \ ] 200 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":200540160,\"total\":207827456,\"start\":1414620154},\"progress\":\"[================================================\\u003e
2497
- \ ] 200.5 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":201097216,\"total\":207827456,\"start\":1414620154},\"progress\":\"[================================================\\u003e
2498
- \ ] 201.1 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":201654272,\"total\":207827456,\"start\":1414620154},\"progress\":\"[================================================\\u003e
2499
- \ ] 201.7 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":202211328,\"total\":207827456,\"start\":1414620154},\"progress\":\"[================================================\\u003e
2500
- \ ] 202.2 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":202768384,\"total\":207827456,\"start\":1414620154},\"progress\":\"[================================================\\u003e
2501
- \ ] 202.8 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":203325440,\"total\":207827456,\"start\":1414620154},\"progress\":\"[================================================\\u003e
2502
- \ ] 203.3 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":203882496,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=================================================\\u003e
2503
- ] 203.9 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":204439552,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=================================================\\u003e
2504
- ] 204.4 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":204996608,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=================================================\\u003e
2505
- ] 205 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":205553664,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=================================================\\u003e
2506
- ] 205.6 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":206110720,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=================================================\\u003e
2507
- ] 206.1 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":206667776,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=================================================\\u003e
2508
- ] 206.7 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":207224832,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=================================================\\u003e
2509
- ] 207.2 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":207781888,\"total\":207827456,\"start\":1414620154},\"progress\":\"[=================================================\\u003e
2510
- ] 207.8 MB/207.8 MB 0\",\"id\":\"e12c576ad8a1\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"e12c576ad8a1\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":232960,\"start\":1414620155},\"progress\":\"[=======\\u003e
2511
- \ ] 32.77 kB/233 kB 5s\",\"id\":\"102eb2a101b8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":232960,\"start\":1414620155},\"progress\":\"[==============\\u003e
2512
- \ ] 65.54 kB/233 kB 2s\",\"id\":\"102eb2a101b8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":98304,\"total\":232960,\"start\":1414620155},\"progress\":\"[=====================\\u003e
2513
- \ ] 98.3 kB/233 kB 1s\",\"id\":\"102eb2a101b8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":131072,\"total\":232960,\"start\":1414620155},\"progress\":\"[============================\\u003e
2514
- \ ] 131.1 kB/233 kB 0\",\"id\":\"102eb2a101b8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":163840,\"total\":232960,\"start\":1414620155},\"progress\":\"[===================================\\u003e
2515
- \ ] 163.8 kB/233 kB 0\",\"id\":\"102eb2a101b8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":196608,\"total\":232960,\"start\":1414620155},\"progress\":\"[==========================================\\u003e
2516
- \ ] 196.6 kB/233 kB 0\",\"id\":\"102eb2a101b8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":229376,\"total\":232960,\"start\":1414620155},\"progress\":\"[=================================================\\u003e
2517
- ] 229.4 kB/233 kB 0\",\"id\":\"102eb2a101b8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":232960,\"total\":232960,\"start\":1414620155},\"progress\":\"[==================================================\\u003e]
2518
- \ 233 kB/233 kB\",\"id\":\"102eb2a101b8\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"102eb2a101b8\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9216,\"total\":9216,\"start\":1414620155},\"progress\":\"[==================================================\\u003e]
2519
- 9.216 kB/9.216 kB\",\"id\":\"530dbbae98a0\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"530dbbae98a0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6656,\"total\":6656,\"start\":1414620155},\"progress\":\"[==================================================\\u003e]
2520
- 6.656 kB/6.656 kB\",\"id\":\"37dde56c3a42\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"37dde56c3a42\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":32357376,\"start\":1414620155},\"progress\":\"[\\u003e
2521
- \ ] 327.7 kB/32.36 MB 1m23s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":655360,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=\\u003e
2522
- \ ] 655.4 kB/32.36 MB 41s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":983040,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=\\u003e
2523
- \ ] 983 kB/32.36 MB 27s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1310720,\"total\":32357376,\"start\":1414620155},\"progress\":\"[==\\u003e
2524
- \ ] 1.311 MB/32.36 MB 20s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1638400,\"total\":32357376,\"start\":1414620155},\"progress\":\"[==\\u003e
2525
- \ ] 1.638 MB/32.36 MB 16s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1966080,\"total\":32357376,\"start\":1414620155},\"progress\":\"[===\\u003e
2526
- \ ] 1.966 MB/32.36 MB 13s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2293760,\"total\":32357376,\"start\":1414620155},\"progress\":\"[===\\u003e
2527
- \ ] 2.294 MB/32.36 MB 11s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2621440,\"total\":32357376,\"start\":1414620155},\"progress\":\"[====\\u003e
2528
- \ ] 2.621 MB/32.36 MB 9s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2949120,\"total\":32357376,\"start\":1414620155},\"progress\":\"[====\\u003e
2529
- \ ] 2.949 MB/32.36 MB 8s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3276800,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=====\\u003e
2530
- \ ] 3.277 MB/32.36 MB 7s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3604480,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=====\\u003e
2531
- \ ] 3.604 MB/32.36 MB 6s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3932160,\"total\":32357376,\"start\":1414620155},\"progress\":\"[======\\u003e
2532
- \ ] 3.932 MB/32.36 MB 6s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4259840,\"total\":32357376,\"start\":1414620155},\"progress\":\"[======\\u003e
2533
- \ ] 4.26 MB/32.36 MB 5s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4587520,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=======\\u003e
2534
- \ ] 4.588 MB/32.36 MB 5s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4915200,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=======\\u003e
2535
- \ ] 4.915 MB/32.36 MB 4s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5242880,\"total\":32357376,\"start\":1414620155},\"progress\":\"[========\\u003e
2536
- \ ] 5.243 MB/32.36 MB 4s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5570560,\"total\":32357376,\"start\":1414620155},\"progress\":\"[========\\u003e
2537
- \ ] 5.571 MB/32.36 MB 4s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5898240,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=========\\u003e
2538
- \ ] 5.898 MB/32.36 MB 3s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6225920,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=========\\u003e
2539
- \ ] 6.226 MB/32.36 MB 3s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6553600,\"total\":32357376,\"start\":1414620155},\"progress\":\"[==========\\u003e
2540
- \ ] 6.554 MB/32.36 MB 3s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":6881280,\"total\":32357376,\"start\":1414620155},\"progress\":\"[==========\\u003e
2541
- \ ] 6.881 MB/32.36 MB 3s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7208960,\"total\":32357376,\"start\":1414620155},\"progress\":\"[===========\\u003e
2542
- \ ] 7.209 MB/32.36 MB 3s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7536640,\"total\":32357376,\"start\":1414620155},\"progress\":\"[===========\\u003e
2543
- \ ] 7.537 MB/32.36 MB 2s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":7864320,\"total\":32357376,\"start\":1414620155},\"progress\":\"[============\\u003e
2544
- \ ] 7.864 MB/32.36 MB 2s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8192000,\"total\":32357376,\"start\":1414620155},\"progress\":\"[============\\u003e
2545
- \ ] 8.192 MB/32.36 MB 2s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8519680,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=============\\u003e
2546
- \ ] 8.52 MB/32.36 MB 2s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":8847360,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=============\\u003e
2547
- \ ] 8.847 MB/32.36 MB 2s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9175040,\"total\":32357376,\"start\":1414620155},\"progress\":\"[==============\\u003e
2548
- \ ] 9.175 MB/32.36 MB 2s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9502720,\"total\":32357376,\"start\":1414620155},\"progress\":\"[==============\\u003e
2549
- \ ] 9.503 MB/32.36 MB 2s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":9830400,\"total\":32357376,\"start\":1414620155},\"progress\":\"[===============\\u003e
2550
- \ ] 9.83 MB/32.36 MB 2s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":10158080,\"total\":32357376,\"start\":1414620155},\"progress\":\"[===============\\u003e
2551
- \ ] 10.16 MB/32.36 MB 1s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":10485760,\"total\":32357376,\"start\":1414620155},\"progress\":\"[================\\u003e
2552
- \ ] 10.49 MB/32.36 MB 1s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":10813440,\"total\":32357376,\"start\":1414620155},\"progress\":\"[================\\u003e
2553
- \ ] 10.81 MB/32.36 MB 1s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11141120,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=================\\u003e
2554
- \ ] 11.14 MB/32.36 MB 1s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11468800,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=================\\u003e
2555
- \ ] 11.47 MB/32.36 MB 1s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":11796480,\"total\":32357376,\"start\":1414620155},\"progress\":\"[==================\\u003e
2556
- \ ] 11.8 MB/32.36 MB 1s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12124160,\"total\":32357376,\"start\":1414620155},\"progress\":\"[==================\\u003e
2557
- \ ] 12.12 MB/32.36 MB 1s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12451840,\"total\":32357376,\"start\":1414620155},\"progress\":\"[===================\\u003e
2558
- \ ] 12.45 MB/32.36 MB 1s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":12779520,\"total\":32357376,\"start\":1414620155},\"progress\":\"[===================\\u003e
2559
- \ ] 12.78 MB/32.36 MB 1s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":13107200,\"total\":32357376,\"start\":1414620155},\"progress\":\"[====================\\u003e
2560
- \ ] 13.11 MB/32.36 MB 1s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":13434880,\"total\":32357376,\"start\":1414620155},\"progress\":\"[====================\\u003e
2561
- \ ] 13.43 MB/32.36 MB 1s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":13762560,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=====================\\u003e
2562
- \ ] 13.76 MB/32.36 MB 1s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":14090240,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=====================\\u003e
2563
- \ ] 14.09 MB/32.36 MB 1s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":14417920,\"total\":32357376,\"start\":1414620155},\"progress\":\"[======================\\u003e
2564
- \ ] 14.42 MB/32.36 MB 1s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":14745600,\"total\":32357376,\"start\":1414620155},\"progress\":\"[======================\\u003e
2565
- \ ] 14.75 MB/32.36 MB 1s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15073280,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=======================\\u003e
2566
- \ ] 15.07 MB/32.36 MB 1s\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15400960,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=======================\\u003e
2567
- \ ] 15.4 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":15728640,\"total\":32357376,\"start\":1414620155},\"progress\":\"[========================\\u003e
2568
- \ ] 15.73 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16056320,\"total\":32357376,\"start\":1414620155},\"progress\":\"[========================\\u003e
2569
- \ ] 16.06 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16384000,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=========================\\u003e
2570
- \ ] 16.38 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":16711680,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=========================\\u003e
2571
- \ ] 16.71 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17039360,\"total\":32357376,\"start\":1414620155},\"progress\":\"[==========================\\u003e
2572
- \ ] 17.04 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17367040,\"total\":32357376,\"start\":1414620155},\"progress\":\"[==========================\\u003e
2573
- \ ] 17.37 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":17694720,\"total\":32357376,\"start\":1414620155},\"progress\":\"[===========================\\u003e
2574
- \ ] 17.69 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":18022400,\"total\":32357376,\"start\":1414620155},\"progress\":\"[===========================\\u003e
2575
- \ ] 18.02 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":18350080,\"total\":32357376,\"start\":1414620155},\"progress\":\"[============================\\u003e
2576
- \ ] 18.35 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":18677760,\"total\":32357376,\"start\":1414620155},\"progress\":\"[============================\\u003e
2577
- \ ] 18.68 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":19005440,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=============================\\u003e
2578
- \ ] 19.01 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":19333120,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=============================\\u003e
2579
- \ ] 19.33 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":19660800,\"total\":32357376,\"start\":1414620155},\"progress\":\"[==============================\\u003e
2580
- \ ] 19.66 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":19988480,\"total\":32357376,\"start\":1414620155},\"progress\":\"[==============================\\u003e
2581
- \ ] 19.99 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":20316160,\"total\":32357376,\"start\":1414620155},\"progress\":\"[===============================\\u003e
2582
- \ ] 20.32 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":20643840,\"total\":32357376,\"start\":1414620155},\"progress\":\"[===============================\\u003e
2583
- \ ] 20.64 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":20971520,\"total\":32357376,\"start\":1414620155},\"progress\":\"[================================\\u003e
2584
- \ ] 20.97 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21299200,\"total\":32357376,\"start\":1414620155},\"progress\":\"[================================\\u003e
2585
- \ ] 21.3 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21626880,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=================================\\u003e
2586
- \ ] 21.63 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":21954560,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=================================\\u003e
2587
- \ ] 21.95 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22282240,\"total\":32357376,\"start\":1414620155},\"progress\":\"[==================================\\u003e
2588
- \ ] 22.28 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22609920,\"total\":32357376,\"start\":1414620155},\"progress\":\"[==================================\\u003e
2589
- \ ] 22.61 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":22937600,\"total\":32357376,\"start\":1414620155},\"progress\":\"[===================================\\u003e
2590
- \ ] 22.94 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23265280,\"total\":32357376,\"start\":1414620155},\"progress\":\"[===================================\\u003e
2591
- \ ] 23.27 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23592960,\"total\":32357376,\"start\":1414620155},\"progress\":\"[====================================\\u003e
2592
- \ ] 23.59 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":23920640,\"total\":32357376,\"start\":1414620155},\"progress\":\"[====================================\\u003e
2593
- \ ] 23.92 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24248320,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=====================================\\u003e
2594
- \ ] 24.25 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24576000,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=====================================\\u003e
2595
- \ ] 24.58 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":24903680,\"total\":32357376,\"start\":1414620155},\"progress\":\"[======================================\\u003e
2596
- \ ] 24.9 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25231360,\"total\":32357376,\"start\":1414620155},\"progress\":\"[======================================\\u003e
2597
- \ ] 25.23 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25559040,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=======================================\\u003e
2598
- \ ] 25.56 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":25886720,\"total\":32357376,\"start\":1414620155},\"progress\":\"[========================================\\u003e
2599
- \ ] 25.89 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26214400,\"total\":32357376,\"start\":1414620155},\"progress\":\"[========================================\\u003e
2600
- \ ] 26.21 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26542080,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=========================================\\u003e
2601
- \ ] 26.54 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":26869760,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=========================================\\u003e
2602
- \ ] 26.87 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":27197440,\"total\":32357376,\"start\":1414620155},\"progress\":\"[==========================================\\u003e
2603
- \ ] 27.2 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":27525120,\"total\":32357376,\"start\":1414620155},\"progress\":\"[==========================================\\u003e
2604
- \ ] 27.53 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":27852800,\"total\":32357376,\"start\":1414620155},\"progress\":\"[===========================================\\u003e
2605
- \ ] 27.85 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":28180480,\"total\":32357376,\"start\":1414620155},\"progress\":\"[===========================================\\u003e
2606
- \ ] 28.18 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":28508160,\"total\":32357376,\"start\":1414620155},\"progress\":\"[============================================\\u003e
2607
- \ ] 28.51 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":28835840,\"total\":32357376,\"start\":1414620155},\"progress\":\"[============================================\\u003e
2608
- \ ] 28.84 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":29163520,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=============================================\\u003e
2609
- \ ] 29.16 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":29491200,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=============================================\\u003e
2610
- \ ] 29.49 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":29818880,\"total\":32357376,\"start\":1414620155},\"progress\":\"[==============================================\\u003e
2611
- \ ] 29.82 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30146560,\"total\":32357376,\"start\":1414620155},\"progress\":\"[==============================================\\u003e
2612
- \ ] 30.15 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30474240,\"total\":32357376,\"start\":1414620155},\"progress\":\"[===============================================\\u003e
2613
- \ ] 30.47 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":30801920,\"total\":32357376,\"start\":1414620155},\"progress\":\"[===============================================\\u003e
2614
- \ ] 30.8 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":31129600,\"total\":32357376,\"start\":1414620155},\"progress\":\"[================================================\\u003e
2615
- \ ] 31.13 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":31457280,\"total\":32357376,\"start\":1414620155},\"progress\":\"[================================================\\u003e
2616
- \ ] 31.46 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":31784960,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=================================================\\u003e
2617
- ] 31.78 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32112640,\"total\":32357376,\"start\":1414620155},\"progress\":\"[=================================================\\u003e
2618
- ] 32.11 MB/32.36 MB 0\",\"id\":\"8f118367086c\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"8f118367086c\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3072,\"total\":3072,\"start\":1414620155},\"progress\":\"[==================================================\\u003e]
2619
- 3.072 kB/3.072 kB\",\"id\":\"277eb4304907\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"277eb4304907\"}{\"status\":\"The
2620
- image you are pulling has been verified\",\"id\":\"ubuntu:latest\"}\r\n{\"status\":\"Already
2621
- exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
2622
- exists\",\"progressDetail\":{},\"id\":\"d497ad3926c8\"}{\"status\":\"Already
2623
- exists\",\"progressDetail\":{},\"id\":\"ccb62158e970\"}{\"status\":\"Already
2624
- exists\",\"progressDetail\":{},\"id\":\"e791be0477f2\"}{\"status\":\"Already
2625
- exists\",\"progressDetail\":{},\"id\":\"3680052c0f5c\"}{\"status\":\"Already
2626
- exists\",\"progressDetail\":{},\"id\":\"22093c35d77b\"}{\"status\":\"Already
2627
- exists\",\"progressDetail\":{},\"id\":\"5506de2b643b\"}{\"status\":\"The image
2628
- you are pulling has been verified\",\"id\":\"ubuntu:precise\"}\r\n{\"status\":\"Already
2629
- exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
2630
- exists\",\"progressDetail\":{},\"id\":\"5f18d94c3eca\"}{\"status\":\"Already
2631
- exists\",\"progressDetail\":{},\"id\":\"53db23c604fd\"}{\"status\":\"Already
2632
- exists\",\"progressDetail\":{},\"id\":\"9f045ea36057\"}{\"status\":\"Already
2633
- exists\",\"progressDetail\":{},\"id\":\"d03a1a9d7555\"}{\"status\":\"Already
2634
- exists\",\"progressDetail\":{},\"id\":\"30868777f275\"}{\"status\":\"Already
2635
- exists\",\"progressDetail\":{},\"id\":\"0b310e6bf058\"}{\"status\":\"The image
2636
- you are pulling has been verified\",\"id\":\"ubuntu:trusty\"}\r\n{\"status\":\"Already
2637
- exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
2638
- exists\",\"progressDetail\":{},\"id\":\"d497ad3926c8\"}{\"status\":\"Already
2639
- exists\",\"progressDetail\":{},\"id\":\"ccb62158e970\"}{\"status\":\"Already
2640
- exists\",\"progressDetail\":{},\"id\":\"e791be0477f2\"}{\"status\":\"Already
2641
- exists\",\"progressDetail\":{},\"id\":\"3680052c0f5c\"}{\"status\":\"Already
2642
- exists\",\"progressDetail\":{},\"id\":\"22093c35d77b\"}{\"status\":\"Already
2643
- exists\",\"progressDetail\":{},\"id\":\"5506de2b643b\"}{\"status\":\"The image
2644
- you are pulling has been verified\",\"id\":\"ubuntu:utopic\"}\r\n{\"status\":\"Already
2645
- exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
2646
- exists\",\"progressDetail\":{},\"id\":\"e12c576ad8a1\"}{\"status\":\"Already
2647
- exists\",\"progressDetail\":{},\"id\":\"102eb2a101b8\"}{\"status\":\"Already
2648
- exists\",\"progressDetail\":{},\"id\":\"530dbbae98a0\"}{\"status\":\"Already
2649
- exists\",\"progressDetail\":{},\"id\":\"37dde56c3a42\"}{\"status\":\"Already
2650
- exists\",\"progressDetail\":{},\"id\":\"8f118367086c\"}{\"status\":\"Already
2651
- exists\",\"progressDetail\":{},\"id\":\"277eb4304907\"}{\"status\":\"Status:
2652
- Downloaded newer image for ubuntu\"}\r\n"
27
+ string: "{\"status\":\"Pulling repository swipely/scratch\"}\r\n{\"status\":\"Pulling
28
+ image (latest) from swipely/scratch\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Pulling
29
+ image (latest) from swipely/scratch, endpoint: https://registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Pulling
30
+ dependent layers\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Download
31
+ complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Download
32
+ complete\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Status:
33
+ Image is up to date for swipely/scratch\"}\r\n"
2653
34
  http_version:
2654
- recorded_at: Wed, 29 Oct 2014 22:02:36 GMT
35
+ recorded_at: Mon, 01 Dec 2014 18:08:54 GMT
36
+ - request:
37
+ method: delete
38
+ uri: "<DOCKER_HOST>/v1.15/images/swipely/scratch?noprune=true"
39
+ body:
40
+ encoding: US-ASCII
41
+ string: ''
42
+ headers:
43
+ User-Agent:
44
+ - Swipely/Docker-API 1.15.0
45
+ Content-Type:
46
+ - text/plain
47
+ response:
48
+ status:
49
+ code: 200
50
+ message:
51
+ headers:
52
+ Content-Type:
53
+ - application/json
54
+ Date:
55
+ - Mon, 01 Dec 2014 18:08:54 GMT
56
+ Content-Length:
57
+ - '40'
58
+ body:
59
+ encoding: UTF-8
60
+ string: |-
61
+ [{"Untagged":"swipely/scratch:latest"}
62
+ ]
63
+ http_version:
64
+ recorded_at: Mon, 01 Dec 2014 18:08:54 GMT
2655
65
  recorded_with: VCR 2.9.3