docker-api 1.13.6 → 1.13.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (21) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +22 -0
  3. data/README.md +6 -0
  4. data/lib/docker/image.rb +1 -1
  5. data/lib/docker/version.rb +1 -1
  6. data/spec/docker/image_spec.rb +9 -0
  7. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +209 -42
  8. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +209 -40
  9. data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +194 -19
  10. 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 +2630 -74
  11. data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +195 -21
  12. data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +194 -19
  13. data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +214 -52
  14. data/spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml +4558 -73
  15. data/spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml +200 -47
  16. data/spec/vcr/Docker_Image/_remove/removes_the_Image.yml +201 -63
  17. data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +202 -29
  18. data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +202 -29
  19. 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 +193 -18
  20. data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +192 -17
  21. metadata +33 -31
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e7a513bb37076427aa529f9879cadc9c68c93c48
4
- data.tar.gz: 86e82d505b484718a22d3c37c8b2824160db567c
3
+ metadata.gz: 45f70da35419949c901a1b2b750ec2e454201be4
4
+ data.tar.gz: 8da9bae0e32e3aae975e63c043678ed3e824b87f
5
5
  SHA512:
6
- metadata.gz: 7f58f25e75a0766ecefe194ad1c099f103cf18ea27f53fc86156fe73da4796f329842cbf06049b76d4821f7be5dd701331dc903c1efa64bc2be648f6831710d9
7
- data.tar.gz: e874ddfd40347f8aeffd99795879cd50869895f51cf63a8661841de7b25ebc45341a9b3c6c2394274baa41ffb3ef938da63ad575866ab7f9cd88cfab0b4d6563
6
+ metadata.gz: 081982c62e160210bf203751eb83076d4216a6dee0d89ebcf68a4c503a4d27f217052e7d0550083fa35f02a83a55e6b74d69b449149a33e6a7e0da1a99623640
7
+ data.tar.gz: 36549b9513b512fd8c2d0ed4d00d5ebfb07977158e57ed6abc84e58165cdfacab6987137df2f85fe6e0da8be733914472060d3857947f81adec77af16955387f
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2014 Swipely, Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
22
+
data/README.md CHANGED
@@ -335,3 +335,9 @@ end
335
335
 
336
336
  * Generating a tarball of images and metadata for a repository specified by a name: https://docs.docker.com/reference/api/docker_remote_api_v1.12/#get-a-tarball-containing-all-images-and-tags-in-a-repository
337
337
  * Load a tarball generated from docker that contains all the images and metadata of a repository: https://docs.docker.com/reference/api/docker_remote_api_v1.12/#load-a-tarball-with-a-set-of-images-and-tags-into-docker
338
+
339
+ License
340
+ -----
341
+
342
+ This program is licensed under the MIT license. See LICENSE for details.
343
+
@@ -99,7 +99,7 @@ class Docker::Image
99
99
  headers = !credentials.nil? && Docker::Util.build_auth_header(credentials)
100
100
  headers ||= {}
101
101
  body = conn.post('/images/create', opts, :headers => headers)
102
- id = Docker::Util.fix_json(body).last['id']
102
+ id = Docker::Util.fix_json(body).select { |m| m['id'] }.last['id']
103
103
  new(conn, 'id' => id, :headers => headers)
104
104
  end
105
105
 
@@ -1,6 +1,6 @@
1
1
  module Docker
2
2
  # The version of the docker-api gem.
3
- VERSION = '1.13.6'
3
+ VERSION = '1.13.7'
4
4
 
5
5
  # The version of the compatible Docker remote API.
6
6
  API_VERSION = '1.12'
@@ -133,7 +133,16 @@ describe Docker::Image do
133
133
  Docker::Image.create('fromImage' => 'registry', 'tag' => 'latest')
134
134
  }
135
135
 
136
+ let(:container) { Docker::Container.create('Image' => image.id) }
137
+
136
138
  before do
139
+ opts = {
140
+ "PortBindings" => {
141
+ "5000/tcp" => [{"HostPort" => "5000"}]
142
+ }
143
+ }
144
+ container.start!(opts)
145
+ sleep 10 # for some reason the registry isn't ready right away
137
146
  image.tag('repo' => 'localhost:5000/registry', 'tag' => 'test')
138
147
  end
139
148
 
@@ -8,7 +8,7 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.11.2
11
+ - Swipely/Docker-API 1.13.6
12
12
  Content-Type:
13
13
  - text/plain
14
14
  response:
@@ -19,22 +19,199 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Thu, 26 Jun 2014 20:49:19 GMT
23
- Connection:
24
- - close
25
- Transfer-Encoding:
26
- - ''
22
+ - Mon, 27 Oct 2014 22:53:58 GMT
27
23
  body:
28
24
  encoding: UTF-8
29
25
  string: "{\"status\":\"Pulling repository base\"}\r\n{\"status\":\"Pulling image
30
- (latest) from base\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
31
- image (latest) from base, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
32
- dependent layers\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
33
- complete\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Download
26
+ (ubuntu-quantal) from base\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
27
+ image (ubuntu-quantal) from base, endpoint: https://registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
28
+ dependent layers\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
29
+ metadata\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Pulling
30
+ fs layer\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":525360,\"total\":94863360,\"start\":1414450440},\"progress\":\"[\\u003e
31
+ \ ] 525.4 kB/94.86 MB 2m28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1066032,\"total\":94863360,\"start\":1414450440},\"progress\":\"[\\u003e
32
+ \ ] 1.066 MB/94.86 MB 1m21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1606704,\"total\":94863360,\"start\":1414450440},\"progress\":\"[\\u003e
33
+ \ ] 1.607 MB/94.86 MB 56s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2142584,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=\\u003e
34
+ \ ] 2.143 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2683256,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=\\u003e
35
+ \ ] 2.683 MB/94.86 MB 37s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3223928,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=\\u003e
36
+ \ ] 3.224 MB/94.86 MB 40s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3764600,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=\\u003e
37
+ \ ] 3.765 MB/94.86 MB 43s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4305272,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==\\u003e
38
+ \ ] 4.305 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4845944,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==\\u003e
39
+ \ ] 4.846 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5386616,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==\\u003e
40
+ \ ] 5.387 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5927288,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===\\u003e
41
+ \ ] 5.927 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6467960,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===\\u003e
42
+ \ ] 6.468 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7008632,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===\\u003e
43
+ \ ] 7.009 MB/94.86 MB 44s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7549304,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===\\u003e
44
+ \ ] 7.549 MB/94.86 MB 44s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8089976,\"total\":94863360,\"start\":1414450440},\"progress\":\"[====\\u003e
45
+ \ ] 8.09 MB/94.86 MB 44s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8630648,\"total\":94863360,\"start\":1414450440},\"progress\":\"[====\\u003e
46
+ \ ] 8.631 MB/94.86 MB 43s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9171320,\"total\":94863360,\"start\":1414450440},\"progress\":\"[====\\u003e
47
+ \ ] 9.171 MB/94.86 MB 42s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9711992,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=====\\u003e
48
+ \ ] 9.712 MB/94.86 MB 41s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10252664,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=====\\u003e
49
+ \ ] 10.25 MB/94.86 MB 40s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10793336,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=====\\u003e
50
+ \ ] 10.79 MB/94.86 MB 39s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11334008,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=====\\u003e
51
+ \ ] 11.33 MB/94.86 MB 38s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11874680,\"total\":94863360,\"start\":1414450440},\"progress\":\"[======\\u003e
52
+ \ ] 11.87 MB/94.86 MB 38s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12415352,\"total\":94863360,\"start\":1414450440},\"progress\":\"[======\\u003e
53
+ \ ] 12.42 MB/94.86 MB 37s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12956024,\"total\":94863360,\"start\":1414450440},\"progress\":\"[======\\u003e
54
+ \ ] 12.96 MB/94.86 MB 36s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13496696,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=======\\u003e
55
+ \ ] 13.5 MB/94.86 MB 36s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14037368,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=======\\u003e
56
+ \ ] 14.04 MB/94.86 MB 35s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14578040,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=======\\u003e
57
+ \ ] 14.58 MB/94.86 MB 34s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15118712,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=======\\u003e
58
+ \ ] 15.12 MB/94.86 MB 34s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15659384,\"total\":94863360,\"start\":1414450440},\"progress\":\"[========\\u003e
59
+ \ ] 15.66 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16200056,\"total\":94863360,\"start\":1414450440},\"progress\":\"[========\\u003e
60
+ \ ] 16.2 MB/94.86 MB 32s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16740728,\"total\":94863360,\"start\":1414450440},\"progress\":\"[========\\u003e
61
+ \ ] 16.74 MB/94.86 MB 32s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17281400,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=========\\u003e
62
+ \ ] 17.28 MB/94.86 MB 31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17822072,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=========\\u003e
63
+ \ ] 17.82 MB/94.86 MB 31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18362744,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=========\\u003e
64
+ \ ] 18.36 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18903416,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=========\\u003e
65
+ \ ] 18.9 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19444088,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==========\\u003e
66
+ \ ] 19.44 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19984760,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==========\\u003e
67
+ \ ] 19.98 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20525432,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==========\\u003e
68
+ \ ] 20.53 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21066104,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===========\\u003e
69
+ \ ] 21.07 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21606776,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===========\\u003e
70
+ \ ] 21.61 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22147448,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===========\\u003e
71
+ \ ] 22.15 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22688120,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===========\\u003e
72
+ \ ] 22.69 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23228792,\"total\":94863360,\"start\":1414450440},\"progress\":\"[============\\u003e
73
+ \ ] 23.23 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23769464,\"total\":94863360,\"start\":1414450440},\"progress\":\"[============\\u003e
74
+ \ ] 23.77 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24310136,\"total\":94863360,\"start\":1414450440},\"progress\":\"[============\\u003e
75
+ \ ] 24.31 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24850808,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=============\\u003e
76
+ \ ] 24.85 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25391480,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=============\\u003e
77
+ \ ] 25.39 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25932152,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=============\\u003e
78
+ \ ] 25.93 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26462411,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=============\\u003e
79
+ \ ] 26.46 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27001259,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==============\\u003e
80
+ \ ] 27 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27541931,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==============\\u003e
81
+ \ ] 27.54 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28078755,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==============\\u003e
82
+ \ ] 28.08 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28606931,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===============\\u003e
83
+ \ ] 28.61 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29147603,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===============\\u003e
84
+ \ ] 29.15 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29688275,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===============\\u003e
85
+ \ ] 29.69 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30228947,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===============\\u003e
86
+ \ ] 30.23 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30758279,\"total\":94863360,\"start\":1414450440},\"progress\":\"[================\\u003e
87
+ \ ] 30.76 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31298951,\"total\":94863360,\"start\":1414450440},\"progress\":\"[================\\u003e
88
+ \ ] 31.3 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31839623,\"total\":94863360,\"start\":1414450440},\"progress\":\"[================\\u003e
89
+ \ ] 31.84 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32380295,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=================\\u003e
90
+ \ ] 32.38 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32914003,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=================\\u003e
91
+ \ ] 32.91 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33454675,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=================\\u003e
92
+ \ ] 33.45 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33995347,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=================\\u003e
93
+ \ ] 34 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34536019,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==================\\u003e
94
+ \ ] 34.54 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35076691,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==================\\u003e
95
+ \ ] 35.08 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35617363,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==================\\u003e
96
+ \ ] 35.62 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36158035,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===================\\u003e
97
+ \ ] 36.16 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36698707,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===================\\u003e
98
+ \ ] 36.7 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37239379,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===================\\u003e
99
+ \ ] 37.24 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37780051,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===================\\u003e
100
+ \ ] 37.78 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38320723,\"total\":94863360,\"start\":1414450440},\"progress\":\"[====================\\u003e
101
+ \ ] 38.32 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38848419,\"total\":94863360,\"start\":1414450440},\"progress\":\"[====================\\u003e
102
+ \ ] 38.85 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39389091,\"total\":94863360,\"start\":1414450440},\"progress\":\"[====================\\u003e
103
+ \ ] 39.39 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39929763,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=====================\\u003e
104
+ \ ] 39.93 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40470435,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=====================\\u003e
105
+ \ ] 40.47 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41011107,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=====================\\u003e
106
+ \ ] 41.01 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41551779,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=====================\\u003e
107
+ \ ] 41.55 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42092451,\"total\":94863360,\"start\":1414450440},\"progress\":\"[======================\\u003e
108
+ \ ] 42.09 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42633123,\"total\":94863360,\"start\":1414450440},\"progress\":\"[======================\\u003e
109
+ \ ] 42.63 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43173795,\"total\":94863360,\"start\":1414450440},\"progress\":\"[======================\\u003e
110
+ \ ] 43.17 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43714467,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=======================\\u003e
111
+ \ ] 43.71 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44255139,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=======================\\u003e
112
+ \ ] 44.26 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44795811,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=======================\\u003e
113
+ \ ] 44.8 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45336483,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=======================\\u003e
114
+ \ ] 45.34 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45861938,\"total\":94863360,\"start\":1414450440},\"progress\":\"[========================\\u003e
115
+ \ ] 45.86 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46402610,\"total\":94863360,\"start\":1414450440},\"progress\":\"[========================\\u003e
116
+ \ ] 46.4 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46943282,\"total\":94863360,\"start\":1414450440},\"progress\":\"[========================\\u003e
117
+ \ ] 46.94 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47483954,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=========================\\u003e
118
+ \ ] 47.48 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48024626,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=========================\\u003e
119
+ \ ] 48.02 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48565298,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=========================\\u003e
120
+ \ ] 48.57 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49105970,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=========================\\u003e
121
+ \ ] 49.11 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49646642,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==========================\\u003e
122
+ \ ] 49.65 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50187314,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==========================\\u003e
123
+ \ ] 50.19 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50727986,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==========================\\u003e
124
+ \ ] 50.73 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51268658,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===========================\\u003e
125
+ \ ] 51.27 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51809330,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===========================\\u003e
126
+ \ ] 51.81 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52350002,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===========================\\u003e
127
+ \ ] 52.35 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52885971,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===========================\\u003e
128
+ \ ] 52.89 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53426643,\"total\":94863360,\"start\":1414450440},\"progress\":\"[============================\\u003e
129
+ \ ] 53.43 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53967315,\"total\":94863360,\"start\":1414450440},\"progress\":\"[============================\\u003e
130
+ \ ] 53.97 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54493387,\"total\":94863360,\"start\":1414450440},\"progress\":\"[============================\\u003e
131
+ \ ] 54.49 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55034059,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=============================\\u003e
132
+ \ ] 55.03 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55574731,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=============================\\u003e
133
+ \ ] 55.57 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56115403,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=============================\\u003e
134
+ \ ] 56.12 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56656075,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=============================\\u003e
135
+ \ ] 56.66 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57196747,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==============================\\u003e
136
+ \ ] 57.2 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57737419,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==============================\\u003e
137
+ \ ] 57.74 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58278091,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==============================\\u003e
138
+ \ ] 58.28 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58818763,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===============================\\u003e
139
+ \ ] 58.82 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59355179,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===============================\\u003e
140
+ \ ] 59.36 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59884803,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===============================\\u003e
141
+ \ ] 59.88 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60425475,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===============================\\u003e
142
+ \ ] 60.43 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60966147,\"total\":94863360,\"start\":1414450440},\"progress\":\"[================================\\u003e
143
+ \ ] 60.97 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61506819,\"total\":94863360,\"start\":1414450440},\"progress\":\"[================================\\u003e
144
+ \ ] 61.51 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62047491,\"total\":94863360,\"start\":1414450440},\"progress\":\"[================================\\u003e
145
+ \ ] 62.05 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62588163,\"total\":94863360,\"start\":1414450440},\"progress\":\"[================================\\u003e
146
+ \ ] 62.59 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63126819,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=================================\\u003e
147
+ \ ] 63.13 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63667491,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=================================\\u003e
148
+ \ ] 63.67 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64208163,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=================================\\u003e
149
+ \ ] 64.21 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64748835,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==================================\\u003e
150
+ \ ] 64.75 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65289507,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==================================\\u003e
151
+ \ ] 65.29 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65830179,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==================================\\u003e
152
+ \ ] 65.83 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66370851,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==================================\\u003e
153
+ \ ] 66.37 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66911523,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===================================\\u003e
154
+ \ ] 66.91 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67452195,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===================================\\u003e
155
+ \ ] 67.45 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67992867,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===================================\\u003e
156
+ \ ] 67.99 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68533539,\"total\":94863360,\"start\":1414450440},\"progress\":\"[====================================\\u003e
157
+ \ ] 68.53 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69074211,\"total\":94863360,\"start\":1414450440},\"progress\":\"[====================================\\u003e
158
+ \ ] 69.07 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69614883,\"total\":94863360,\"start\":1414450440},\"progress\":\"[====================================\\u003e
159
+ \ ] 69.61 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70155555,\"total\":94863360,\"start\":1414450440},\"progress\":\"[====================================\\u003e
160
+ \ ] 70.16 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70696227,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=====================================\\u003e
161
+ \ ] 70.7 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71236899,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=====================================\\u003e
162
+ \ ] 71.24 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71777571,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=====================================\\u003e
163
+ \ ] 71.78 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72318243,\"total\":94863360,\"start\":1414450440},\"progress\":\"[======================================\\u003e
164
+ \ ] 72.32 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72858915,\"total\":94863360,\"start\":1414450440},\"progress\":\"[======================================\\u003e
165
+ \ ] 72.86 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73399587,\"total\":94863360,\"start\":1414450440},\"progress\":\"[======================================\\u003e
166
+ \ ] 73.4 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73940259,\"total\":94863360,\"start\":1414450440},\"progress\":\"[======================================\\u003e
167
+ \ ] 73.94 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74480931,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=======================================\\u003e
168
+ \ ] 74.48 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75021603,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=======================================\\u003e
169
+ \ ] 75.02 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75562275,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=======================================\\u003e
170
+ \ ] 75.56 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76090760,\"total\":94863360,\"start\":1414450440},\"progress\":\"[========================================\\u003e
171
+ \ ] 76.09 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76631431,\"total\":94863360,\"start\":1414450440},\"progress\":\"[========================================\\u003e
172
+ \ ] 76.63 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77172103,\"total\":94863360,\"start\":1414450440},\"progress\":\"[========================================\\u003e
173
+ \ ] 77.17 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77712775,\"total\":94863360,\"start\":1414450440},\"progress\":\"[========================================\\u003e
174
+ \ ] 77.71 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78253447,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=========================================\\u003e
175
+ \ ] 78.25 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78794119,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=========================================\\u003e
176
+ \ ] 78.79 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79334791,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=========================================\\u003e
177
+ \ ] 79.33 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79875463,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==========================================\\u003e
178
+ \ ] 79.88 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80416135,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==========================================\\u003e
179
+ \ ] 80.42 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80956807,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==========================================\\u003e
180
+ \ ] 80.96 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81497479,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==========================================\\u003e
181
+ \ ] 81.5 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82038151,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===========================================\\u003e
182
+ \ ] 82.04 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82578823,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===========================================\\u003e
183
+ \ ] 82.58 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83119495,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===========================================\\u003e
184
+ \ ] 83.12 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83660167,\"total\":94863360,\"start\":1414450440},\"progress\":\"[============================================\\u003e
185
+ \ ] 83.66 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84200839,\"total\":94863360,\"start\":1414450440},\"progress\":\"[============================================\\u003e
186
+ \ ] 84.2 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84741511,\"total\":94863360,\"start\":1414450440},\"progress\":\"[============================================\\u003e
187
+ \ ] 84.74 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85282183,\"total\":94863360,\"start\":1414450440},\"progress\":\"[============================================\\u003e
188
+ \ ] 85.28 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85822855,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=============================================\\u003e
189
+ \ ] 85.82 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86363527,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=============================================\\u003e
190
+ \ ] 86.36 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86904199,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=============================================\\u003e
191
+ \ ] 86.9 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87444871,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==============================================\\u003e
192
+ \ ] 87.44 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87985543,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==============================================\\u003e
193
+ \ ] 87.99 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88526215,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==============================================\\u003e
194
+ \ ] 88.53 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89066887,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==============================================\\u003e
195
+ \ ] 89.07 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89607559,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===============================================\\u003e
196
+ \ ] 89.61 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90148231,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===============================================\\u003e
197
+ \ ] 90.15 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90688903,\"total\":94863360,\"start\":1414450440},\"progress\":\"[===============================================\\u003e
198
+ \ ] 90.69 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91229575,\"total\":94863360,\"start\":1414450440},\"progress\":\"[================================================\\u003e
199
+ \ ] 91.23 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91770247,\"total\":94863360,\"start\":1414450440},\"progress\":\"[================================================\\u003e
200
+ \ ] 91.77 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92310919,\"total\":94863360,\"start\":1414450440},\"progress\":\"[================================================\\u003e
201
+ \ ] 92.31 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92851591,\"total\":94863360,\"start\":1414450440},\"progress\":\"[================================================\\u003e
202
+ \ ] 92.85 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93392263,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=================================================\\u003e
203
+ ] 93.39 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93932935,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=================================================\\u003e
204
+ ] 93.93 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94473607,\"total\":94863360,\"start\":1414450440},\"progress\":\"[=================================================\\u003e
205
+ ] 94.47 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94863360,\"total\":94863360,\"start\":1414450440},\"progress\":\"[==================================================\\u003e]
206
+ 94.86 MB/94.86 MB\",\"id\":\"27cf78414709\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Pulling
207
+ metadata\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
208
+ fs layer\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3646,\"total\":10240,\"start\":1414450461},\"progress\":\"[=================\\u003e
209
+ \ ] 3.646 kB/10.24 kB 0\",\"id\":\"b750fe79269d\"}{\"status\":\"Download
34
210
  complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
35
- complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}"
211
+ complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Status:
212
+ Downloaded newer image for base\"}\r\n"
36
213
  http_version:
37
- recorded_at: Thu, 26 Jun 2014 20:49:22 GMT
214
+ recorded_at: Mon, 27 Oct 2014 22:54:21 GMT
38
215
  - request:
39
216
  method: post
40
217
  uri: unix:///var/run/docker.sock/v1.12/containers/create
@@ -43,7 +220,7 @@ http_interactions:
43
220
  string: '{"Image":"b750fe79269d","Cmd":["touch","/test"]}'
44
221
  headers:
45
222
  User-Agent:
46
- - Swipely/Docker-API 1.11.2
223
+ - Swipely/Docker-API 1.13.6
47
224
  Content-Type:
48
225
  - application/json
49
226
  response:
@@ -54,26 +231,24 @@ http_interactions:
54
231
  Content-Type:
55
232
  - application/json
56
233
  Date:
57
- - Thu, 26 Jun 2014 20:49:22 GMT
234
+ - Mon, 27 Oct 2014 22:54:21 GMT
58
235
  Content-Length:
59
236
  - '90'
60
- Connection:
61
- - close
62
237
  body:
63
238
  encoding: UTF-8
64
239
  string: |
65
- {"Id":"09414329d7225cc05ad936c38cf0124b3ac9b697deacd6d36ff4b09a12739d70","Warnings":null}
240
+ {"Id":"b116c76037f029b8a319c0e0375fb1a5c83c9aa2aa95361386d1d9ac5af770ce","Warnings":null}
66
241
  http_version:
67
- recorded_at: Thu, 26 Jun 2014 20:49:22 GMT
242
+ recorded_at: Mon, 27 Oct 2014 22:54:21 GMT
68
243
  - request:
69
244
  method: post
70
- uri: unix:///var/run/docker.sock/v1.12/containers/09414329d7225cc05ad936c38cf0124b3ac9b697deacd6d36ff4b09a12739d70/start
245
+ uri: unix:///var/run/docker.sock/v1.12/containers/b116c76037f029b8a319c0e0375fb1a5c83c9aa2aa95361386d1d9ac5af770ce/start
71
246
  body:
72
247
  encoding: UTF-8
73
- string: '{}'
248
+ string: "{}"
74
249
  headers:
75
250
  User-Agent:
76
- - Swipely/Docker-API 1.11.2
251
+ - Swipely/Docker-API 1.13.6
77
252
  Content-Type:
78
253
  - application/json
79
254
  response:
@@ -82,23 +257,21 @@ http_interactions:
82
257
  message:
83
258
  headers:
84
259
  Date:
85
- - Thu, 26 Jun 2014 20:49:22 GMT
86
- Connection:
87
- - close
260
+ - Mon, 27 Oct 2014 22:54:21 GMT
88
261
  body:
89
262
  encoding: UTF-8
90
263
  string: ''
91
264
  http_version:
92
- recorded_at: Thu, 26 Jun 2014 20:49:22 GMT
265
+ recorded_at: Mon, 27 Oct 2014 22:54:21 GMT
93
266
  - request:
94
267
  method: post
95
- uri: unix:///var/run/docker.sock/v1.12/containers/09414329d7225cc05ad936c38cf0124b3ac9b697deacd6d36ff4b09a12739d70/wait
268
+ uri: unix:///var/run/docker.sock/v1.12/containers/b116c76037f029b8a319c0e0375fb1a5c83c9aa2aa95361386d1d9ac5af770ce/wait
96
269
  body:
97
270
  encoding: US-ASCII
98
271
  string: ''
99
272
  headers:
100
273
  User-Agent:
101
- - Swipely/Docker-API 1.11.2
274
+ - Swipely/Docker-API 1.13.6
102
275
  Content-Type:
103
276
  - text/plain
104
277
  response:
@@ -109,26 +282,24 @@ http_interactions:
109
282
  Content-Type:
110
283
  - application/json
111
284
  Date:
112
- - Thu, 26 Jun 2014 20:49:22 GMT
285
+ - Mon, 27 Oct 2014 22:54:21 GMT
113
286
  Content-Length:
114
287
  - '17'
115
- Connection:
116
- - close
117
288
  body:
118
289
  encoding: UTF-8
119
290
  string: |
120
291
  {"StatusCode":0}
121
292
  http_version:
122
- recorded_at: Thu, 26 Jun 2014 20:49:22 GMT
293
+ recorded_at: Mon, 27 Oct 2014 22:54:21 GMT
123
294
  - request:
124
295
  method: post
125
- uri: unix:///var/run/docker.sock/v1.12/containers/09414329d7225cc05ad936c38cf0124b3ac9b697deacd6d36ff4b09a12739d70/copy
296
+ uri: unix:///var/run/docker.sock/v1.12/containers/b116c76037f029b8a319c0e0375fb1a5c83c9aa2aa95361386d1d9ac5af770ce/copy
126
297
  body:
127
298
  encoding: UTF-8
128
299
  string: '{"Resource":"/etc/vim"}'
129
300
  headers:
130
301
  User-Agent:
131
- - Swipely/Docker-API 1.11.2
302
+ - Swipely/Docker-API 1.13.6
132
303
  Content-Type:
133
304
  - application/json
134
305
  response:
@@ -136,14 +307,10 @@ http_interactions:
136
307
  code: 200
137
308
  message:
138
309
  headers:
139
- Date:
140
- - Thu, 26 Jun 2014 20:49:23 GMT
141
310
  Content-Type:
142
- - application/octet-stream
143
- Connection:
144
- - close
145
- Transfer-Encoding:
146
- - ''
311
+ - application/x-tar
312
+ Date:
313
+ - Mon, 27 Oct 2014 22:54:21 GMT
147
314
  body:
148
315
  encoding: UTF-8
149
316
  string: !binary |-
@@ -285,5 +452,5 @@ http_interactions:
285
452
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
286
453
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
287
454
  http_version:
288
- recorded_at: Thu, 26 Jun 2014 20:49:23 GMT
289
- recorded_with: VCR 2.9.2
455
+ recorded_at: Mon, 27 Oct 2014 22:54:21 GMT
456
+ recorded_with: VCR 2.9.3
@@ -8,7 +8,7 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Swipely/Docker-API 1.11.2
11
+ - Swipely/Docker-API 1.13.6
12
12
  Content-Type:
13
13
  - text/plain
14
14
  response:
@@ -19,22 +19,199 @@ http_interactions:
19
19
  Content-Type:
20
20
  - application/json
21
21
  Date:
22
- - Thu, 26 Jun 2014 19:43:17 GMT
23
- Connection:
24
- - close
25
- Transfer-Encoding:
26
- - ''
22
+ - Mon, 27 Oct 2014 22:52:20 GMT
27
23
  body:
28
24
  encoding: UTF-8
29
25
  string: "{\"status\":\"Pulling repository base\"}\r\n{\"status\":\"Pulling image
30
26
  (ubuntu-quantl) from base\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
31
- image (ubuntu-quantl) from base, endpoint: https://cdn-registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
32
- dependent layers\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
33
- complete\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Download
27
+ image (ubuntu-quantl) from base, endpoint: https://registry-1.docker.io/v1/\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
28
+ dependent layers\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
29
+ metadata\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Pulling
30
+ fs layer\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":524993,\"total\":94863360,\"start\":1414450342},\"progress\":\"[\\u003e
31
+ \ ] 525 kB/94.86 MB 3m49s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1065665,\"total\":94863360,\"start\":1414450342},\"progress\":\"[\\u003e
32
+ \ ] 1.066 MB/94.86 MB 3m9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1606337,\"total\":94863360,\"start\":1414450342},\"progress\":\"[\\u003e
33
+ \ ] 1.606 MB/94.86 MB 2m46s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2147009,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=\\u003e
34
+ \ ] 2.147 MB/94.86 MB 2m28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2687681,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=\\u003e
35
+ \ ] 2.688 MB/94.86 MB 2m12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3228353,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=\\u003e
36
+ \ ] 3.228 MB/94.86 MB 2m1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3769025,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=\\u003e
37
+ \ ] 3.769 MB/94.86 MB 1m52s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4309697,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==\\u003e
38
+ \ ] 4.31 MB/94.86 MB 1m43s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4850369,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==\\u003e
39
+ \ ] 4.85 MB/94.86 MB 1m37s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5391041,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==\\u003e
40
+ \ ] 5.391 MB/94.86 MB 1m31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5931713,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===\\u003e
41
+ \ ] 5.932 MB/94.86 MB 1m27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":6472385,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===\\u003e
42
+ \ ] 6.472 MB/94.86 MB 1m23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7013057,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===\\u003e
43
+ \ ] 7.013 MB/94.86 MB 1m20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":7553729,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===\\u003e
44
+ \ ] 7.554 MB/94.86 MB 1m18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8094401,\"total\":94863360,\"start\":1414450342},\"progress\":\"[====\\u003e
45
+ \ ] 8.094 MB/94.86 MB 1m16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":8635073,\"total\":94863360,\"start\":1414450342},\"progress\":\"[====\\u003e
46
+ \ ] 8.635 MB/94.86 MB 1m15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9175745,\"total\":94863360,\"start\":1414450342},\"progress\":\"[====\\u003e
47
+ \ ] 9.176 MB/94.86 MB 1m14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":9716417,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=====\\u003e
48
+ \ ] 9.716 MB/94.86 MB 1m13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10257089,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=====\\u003e
49
+ \ ] 10.26 MB/94.86 MB 1m11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":10797761,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=====\\u003e
50
+ \ ] 10.8 MB/94.86 MB 1m9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11338433,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=====\\u003e
51
+ \ ] 11.34 MB/94.86 MB 1m7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":11879105,\"total\":94863360,\"start\":1414450342},\"progress\":\"[======\\u003e
52
+ \ ] 11.88 MB/94.86 MB 1m6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12419777,\"total\":94863360,\"start\":1414450342},\"progress\":\"[======\\u003e
53
+ \ ] 12.42 MB/94.86 MB 1m5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":12960449,\"total\":94863360,\"start\":1414450342},\"progress\":\"[======\\u003e
54
+ \ ] 12.96 MB/94.86 MB 1m3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":13501121,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=======\\u003e
55
+ \ ] 13.5 MB/94.86 MB 1m2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14041793,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=======\\u003e
56
+ \ ] 14.04 MB/94.86 MB 1m0s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":14582465,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=======\\u003e
57
+ \ ] 14.58 MB/94.86 MB 59s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15123137,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=======\\u003e
58
+ \ ] 15.12 MB/94.86 MB 59s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":15663809,\"total\":94863360,\"start\":1414450342},\"progress\":\"[========\\u003e
59
+ \ ] 15.66 MB/94.86 MB 58s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16204481,\"total\":94863360,\"start\":1414450342},\"progress\":\"[========\\u003e
60
+ \ ] 16.2 MB/94.86 MB 57s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":16745153,\"total\":94863360,\"start\":1414450342},\"progress\":\"[========\\u003e
61
+ \ ] 16.75 MB/94.86 MB 56s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17285825,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=========\\u003e
62
+ \ ] 17.29 MB/94.86 MB 55s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":17826497,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=========\\u003e
63
+ \ ] 17.83 MB/94.86 MB 55s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18367169,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=========\\u003e
64
+ \ ] 18.37 MB/94.86 MB 54s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":18907841,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=========\\u003e
65
+ \ ] 18.91 MB/94.86 MB 53s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19448513,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==========\\u003e
66
+ \ ] 19.45 MB/94.86 MB 53s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":19989185,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==========\\u003e
67
+ \ ] 19.99 MB/94.86 MB 52s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":20529857,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==========\\u003e
68
+ \ ] 20.53 MB/94.86 MB 51s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21070529,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===========\\u003e
69
+ \ ] 21.07 MB/94.86 MB 50s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":21611201,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===========\\u003e
70
+ \ ] 21.61 MB/94.86 MB 50s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22151873,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===========\\u003e
71
+ \ ] 22.15 MB/94.86 MB 49s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":22692545,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===========\\u003e
72
+ \ ] 22.69 MB/94.86 MB 49s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23233217,\"total\":94863360,\"start\":1414450342},\"progress\":\"[============\\u003e
73
+ \ ] 23.23 MB/94.86 MB 48s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":23773889,\"total\":94863360,\"start\":1414450342},\"progress\":\"[============\\u003e
74
+ \ ] 23.77 MB/94.86 MB 48s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24314561,\"total\":94863360,\"start\":1414450342},\"progress\":\"[============\\u003e
75
+ \ ] 24.31 MB/94.86 MB 48s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":24855233,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=============\\u003e
76
+ \ ] 24.86 MB/94.86 MB 47s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25395905,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=============\\u003e
77
+ \ ] 25.4 MB/94.86 MB 47s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":25936577,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=============\\u003e
78
+ \ ] 25.94 MB/94.86 MB 46s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":26477249,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=============\\u003e
79
+ \ ] 26.48 MB/94.86 MB 46s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27017921,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==============\\u003e
80
+ \ ] 27.02 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":27558593,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==============\\u003e
81
+ \ ] 27.56 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28099265,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==============\\u003e
82
+ \ ] 28.1 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":28639937,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===============\\u003e
83
+ \ ] 28.64 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29180609,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===============\\u003e
84
+ \ ] 29.18 MB/94.86 MB 45s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":29721281,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===============\\u003e
85
+ \ ] 29.72 MB/94.86 MB 44s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30261953,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===============\\u003e
86
+ \ ] 30.26 MB/94.86 MB 44s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":30802625,\"total\":94863360,\"start\":1414450342},\"progress\":\"[================\\u003e
87
+ \ ] 30.8 MB/94.86 MB 43s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31343297,\"total\":94863360,\"start\":1414450342},\"progress\":\"[================\\u003e
88
+ \ ] 31.34 MB/94.86 MB 42s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31883969,\"total\":94863360,\"start\":1414450342},\"progress\":\"[================\\u003e
89
+ \ ] 31.88 MB/94.86 MB 42s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32424641,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=================\\u003e
90
+ \ ] 32.42 MB/94.86 MB 42s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":32965313,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=================\\u003e
91
+ \ ] 32.97 MB/94.86 MB 41s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":33505985,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=================\\u003e
92
+ \ ] 33.51 MB/94.86 MB 41s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34046657,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=================\\u003e
93
+ \ ] 34.05 MB/94.86 MB 40s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":34587329,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==================\\u003e
94
+ \ ] 34.59 MB/94.86 MB 40s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35128001,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==================\\u003e
95
+ \ ] 35.13 MB/94.86 MB 40s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":35668673,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==================\\u003e
96
+ \ ] 35.67 MB/94.86 MB 39s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36209345,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===================\\u003e
97
+ \ ] 36.21 MB/94.86 MB 39s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":36750017,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===================\\u003e
98
+ \ ] 36.75 MB/94.86 MB 38s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37290689,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===================\\u003e
99
+ \ ] 37.29 MB/94.86 MB 38s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":37831361,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===================\\u003e
100
+ \ ] 37.83 MB/94.86 MB 38s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38372033,\"total\":94863360,\"start\":1414450342},\"progress\":\"[====================\\u003e
101
+ \ ] 38.37 MB/94.86 MB 37s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":38912705,\"total\":94863360,\"start\":1414450342},\"progress\":\"[====================\\u003e
102
+ \ ] 38.91 MB/94.86 MB 37s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39453377,\"total\":94863360,\"start\":1414450342},\"progress\":\"[====================\\u003e
103
+ \ ] 39.45 MB/94.86 MB 36s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":39994049,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=====================\\u003e
104
+ \ ] 39.99 MB/94.86 MB 36s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":40534721,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=====================\\u003e
105
+ \ ] 40.53 MB/94.86 MB 36s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41075393,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=====================\\u003e
106
+ \ ] 41.08 MB/94.86 MB 35s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":41616065,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=====================\\u003e
107
+ \ ] 41.62 MB/94.86 MB 35s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42156737,\"total\":94863360,\"start\":1414450342},\"progress\":\"[======================\\u003e
108
+ \ ] 42.16 MB/94.86 MB 34s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":42697409,\"total\":94863360,\"start\":1414450342},\"progress\":\"[======================\\u003e
109
+ \ ] 42.7 MB/94.86 MB 34s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43238081,\"total\":94863360,\"start\":1414450342},\"progress\":\"[======================\\u003e
110
+ \ ] 43.24 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":43778753,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=======================\\u003e
111
+ \ ] 43.78 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44319425,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=======================\\u003e
112
+ \ ] 44.32 MB/94.86 MB 33s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":44860097,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=======================\\u003e
113
+ \ ] 44.86 MB/94.86 MB 32s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45400769,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=======================\\u003e
114
+ \ ] 45.4 MB/94.86 MB 32s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":45941441,\"total\":94863360,\"start\":1414450342},\"progress\":\"[========================\\u003e
115
+ \ ] 45.94 MB/94.86 MB 31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":46482113,\"total\":94863360,\"start\":1414450342},\"progress\":\"[========================\\u003e
116
+ \ ] 46.48 MB/94.86 MB 31s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47022785,\"total\":94863360,\"start\":1414450342},\"progress\":\"[========================\\u003e
117
+ \ ] 47.02 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":47563457,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=========================\\u003e
118
+ \ ] 47.56 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48104129,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=========================\\u003e
119
+ \ ] 48.1 MB/94.86 MB 30s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":48644801,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=========================\\u003e
120
+ \ ] 48.64 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49185473,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=========================\\u003e
121
+ \ ] 49.19 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":49726145,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==========================\\u003e
122
+ \ ] 49.73 MB/94.86 MB 29s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50266817,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==========================\\u003e
123
+ \ ] 50.27 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":50807489,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==========================\\u003e
124
+ \ ] 50.81 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51348161,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===========================\\u003e
125
+ \ ] 51.35 MB/94.86 MB 28s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":51888833,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===========================\\u003e
126
+ \ ] 51.89 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52429505,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===========================\\u003e
127
+ \ ] 52.43 MB/94.86 MB 27s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":52970177,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===========================\\u003e
128
+ \ ] 52.97 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":53510849,\"total\":94863360,\"start\":1414450342},\"progress\":\"[============================\\u003e
129
+ \ ] 53.51 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54051521,\"total\":94863360,\"start\":1414450342},\"progress\":\"[============================\\u003e
130
+ \ ] 54.05 MB/94.86 MB 26s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":54592193,\"total\":94863360,\"start\":1414450342},\"progress\":\"[============================\\u003e
131
+ \ ] 54.59 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55132865,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=============================\\u003e
132
+ \ ] 55.13 MB/94.86 MB 25s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":55673537,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=============================\\u003e
133
+ \ ] 55.67 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56214209,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=============================\\u003e
134
+ \ ] 56.21 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":56754881,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=============================\\u003e
135
+ \ ] 56.75 MB/94.86 MB 24s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57295553,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==============================\\u003e
136
+ \ ] 57.3 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":57836225,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==============================\\u003e
137
+ \ ] 57.84 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58376897,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==============================\\u003e
138
+ \ ] 58.38 MB/94.86 MB 23s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":58917569,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===============================\\u003e
139
+ \ ] 58.92 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59458241,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===============================\\u003e
140
+ \ ] 59.46 MB/94.86 MB 22s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":59998913,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===============================\\u003e
141
+ \ ] 60 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":60539585,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===============================\\u003e
142
+ \ ] 60.54 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61080257,\"total\":94863360,\"start\":1414450342},\"progress\":\"[================================\\u003e
143
+ \ ] 61.08 MB/94.86 MB 21s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":61620929,\"total\":94863360,\"start\":1414450342},\"progress\":\"[================================\\u003e
144
+ \ ] 61.62 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62161601,\"total\":94863360,\"start\":1414450342},\"progress\":\"[================================\\u003e
145
+ \ ] 62.16 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62702273,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=================================\\u003e
146
+ \ ] 62.7 MB/94.86 MB 20s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63242945,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=================================\\u003e
147
+ \ ] 63.24 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":63783617,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=================================\\u003e
148
+ \ ] 63.78 MB/94.86 MB 19s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64324289,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=================================\\u003e
149
+ \ ] 64.32 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":64864961,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==================================\\u003e
150
+ \ ] 64.86 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65405633,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==================================\\u003e
151
+ \ ] 65.41 MB/94.86 MB 18s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":65946305,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==================================\\u003e
152
+ \ ] 65.95 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66486977,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===================================\\u003e
153
+ \ ] 66.49 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67027649,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===================================\\u003e
154
+ \ ] 67.03 MB/94.86 MB 17s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67568321,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===================================\\u003e
155
+ \ ] 67.57 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68108993,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===================================\\u003e
156
+ \ ] 68.11 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":68649665,\"total\":94863360,\"start\":1414450342},\"progress\":\"[====================================\\u003e
157
+ \ ] 68.65 MB/94.86 MB 16s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69190337,\"total\":94863360,\"start\":1414450342},\"progress\":\"[====================================\\u003e
158
+ \ ] 69.19 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":69731009,\"total\":94863360,\"start\":1414450342},\"progress\":\"[====================================\\u003e
159
+ \ ] 69.73 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70271681,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=====================================\\u003e
160
+ \ ] 70.27 MB/94.86 MB 15s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":70812353,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=====================================\\u003e
161
+ \ ] 70.81 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71353025,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=====================================\\u003e
162
+ \ ] 71.35 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":71893697,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=====================================\\u003e
163
+ \ ] 71.89 MB/94.86 MB 14s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72434369,\"total\":94863360,\"start\":1414450342},\"progress\":\"[======================================\\u003e
164
+ \ ] 72.43 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":72975041,\"total\":94863360,\"start\":1414450342},\"progress\":\"[======================================\\u003e
165
+ \ ] 72.98 MB/94.86 MB 13s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":73515713,\"total\":94863360,\"start\":1414450342},\"progress\":\"[======================================\\u003e
166
+ \ ] 73.52 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74056385,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=======================================\\u003e
167
+ \ ] 74.06 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":74597057,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=======================================\\u003e
168
+ \ ] 74.6 MB/94.86 MB 12s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75137729,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=======================================\\u003e
169
+ \ ] 75.14 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":75678401,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=======================================\\u003e
170
+ \ ] 75.68 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76219073,\"total\":94863360,\"start\":1414450342},\"progress\":\"[========================================\\u003e
171
+ \ ] 76.22 MB/94.86 MB 11s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":76759745,\"total\":94863360,\"start\":1414450342},\"progress\":\"[========================================\\u003e
172
+ \ ] 76.76 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77300417,\"total\":94863360,\"start\":1414450342},\"progress\":\"[========================================\\u003e
173
+ \ ] 77.3 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":77841089,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=========================================\\u003e
174
+ \ ] 77.84 MB/94.86 MB 10s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78381761,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=========================================\\u003e
175
+ \ ] 78.38 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":78922433,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=========================================\\u003e
176
+ \ ] 78.92 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":79463105,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=========================================\\u003e
177
+ \ ] 79.46 MB/94.86 MB 9s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80003777,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==========================================\\u003e
178
+ \ ] 80 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":80544449,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==========================================\\u003e
179
+ \ ] 80.54 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81085121,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==========================================\\u003e
180
+ \ ] 81.09 MB/94.86 MB 8s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":81625793,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===========================================\\u003e
181
+ \ ] 81.63 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82166465,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===========================================\\u003e
182
+ \ ] 82.17 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":82707137,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===========================================\\u003e
183
+ \ ] 82.71 MB/94.86 MB 7s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83247809,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===========================================\\u003e
184
+ \ ] 83.25 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":83788481,\"total\":94863360,\"start\":1414450342},\"progress\":\"[============================================\\u003e
185
+ \ ] 83.79 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84329153,\"total\":94863360,\"start\":1414450342},\"progress\":\"[============================================\\u003e
186
+ \ ] 84.33 MB/94.86 MB 6s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":84869825,\"total\":94863360,\"start\":1414450342},\"progress\":\"[============================================\\u003e
187
+ \ ] 84.87 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85410497,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=============================================\\u003e
188
+ \ ] 85.41 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":85951169,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=============================================\\u003e
189
+ \ ] 85.95 MB/94.86 MB 5s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":86491841,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=============================================\\u003e
190
+ \ ] 86.49 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87032513,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=============================================\\u003e
191
+ \ ] 87.03 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":87573185,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==============================================\\u003e
192
+ \ ] 87.57 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88113857,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==============================================\\u003e
193
+ \ ] 88.11 MB/94.86 MB 4s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":88654529,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==============================================\\u003e
194
+ \ ] 88.65 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89195201,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===============================================\\u003e
195
+ \ ] 89.2 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":89735873,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===============================================\\u003e
196
+ \ ] 89.74 MB/94.86 MB 3s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90276545,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===============================================\\u003e
197
+ \ ] 90.28 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":90817217,\"total\":94863360,\"start\":1414450342},\"progress\":\"[===============================================\\u003e
198
+ \ ] 90.82 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91357889,\"total\":94863360,\"start\":1414450342},\"progress\":\"[================================================\\u003e
199
+ \ ] 91.36 MB/94.86 MB 2s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":91898561,\"total\":94863360,\"start\":1414450342},\"progress\":\"[================================================\\u003e
200
+ \ ] 91.9 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92439233,\"total\":94863360,\"start\":1414450342},\"progress\":\"[================================================\\u003e
201
+ \ ] 92.44 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":92979905,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=================================================\\u003e
202
+ ] 92.98 MB/94.86 MB 1s\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":93520577,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=================================================\\u003e
203
+ ] 93.52 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94061249,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=================================================\\u003e
204
+ ] 94.06 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94601921,\"total\":94863360,\"start\":1414450342},\"progress\":\"[=================================================\\u003e
205
+ ] 94.6 MB/94.86 MB 0\",\"id\":\"27cf78414709\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":94863360,\"total\":94863360,\"start\":1414450342},\"progress\":\"[==================================================\\u003e]
206
+ 94.86 MB/94.86 MB\",\"id\":\"27cf78414709\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"27cf78414709\"}{\"status\":\"Pulling
207
+ metadata\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Pulling
208
+ fs layer\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3646,\"total\":10240,\"start\":1414450399},\"progress\":\"[=================\\u003e
209
+ \ ] 3.646 kB/10.24 kB 0\",\"id\":\"b750fe79269d\"}{\"status\":\"Download
34
210
  complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Download
35
- complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}"
211
+ complete\",\"progressDetail\":{},\"id\":\"b750fe79269d\"}{\"status\":\"Status:
212
+ Downloaded newer image for base\"}\r\n"
36
213
  http_version:
37
- recorded_at: Thu, 26 Jun 2014 19:43:18 GMT
214
+ recorded_at: Mon, 27 Oct 2014 22:53:19 GMT
38
215
  - request:
39
216
  method: post
40
217
  uri: unix:///var/run/docker.sock/v1.12/containers/create
@@ -43,7 +220,7 @@ http_interactions:
43
220
  string: '{"Image":"b750fe79269d","Cmd":["touch","/test"]}'
44
221
  headers:
45
222
  User-Agent:
46
- - Swipely/Docker-API 1.11.2
223
+ - Swipely/Docker-API 1.13.6
47
224
  Content-Type:
48
225
  - application/json
49
226
  response:
@@ -54,26 +231,24 @@ http_interactions:
54
231
  Content-Type:
55
232
  - application/json
56
233
  Date:
57
- - Thu, 26 Jun 2014 19:43:19 GMT
234
+ - Mon, 27 Oct 2014 22:53:19 GMT
58
235
  Content-Length:
59
236
  - '90'
60
- Connection:
61
- - close
62
237
  body:
63
238
  encoding: UTF-8
64
239
  string: |
65
- {"Id":"e36507d15801857e28153923c2968f77112a40aa5df02251ee7ef83d0db9097a","Warnings":null}
240
+ {"Id":"ff6b6cc0f98c59562967d3219a20bcaf4650f0ba4d17211d123c28daf3e56980","Warnings":null}
66
241
  http_version:
67
- recorded_at: Thu, 26 Jun 2014 19:43:19 GMT
242
+ recorded_at: Mon, 27 Oct 2014 22:53:19 GMT
68
243
  - request:
69
244
  method: post
70
- uri: unix:///var/run/docker.sock/v1.12/containers/e36507d15801857e28153923c2968f77112a40aa5df02251ee7ef83d0db9097a/start
245
+ uri: unix:///var/run/docker.sock/v1.12/containers/ff6b6cc0f98c59562967d3219a20bcaf4650f0ba4d17211d123c28daf3e56980/start
71
246
  body:
72
247
  encoding: UTF-8
73
- string: '{}'
248
+ string: "{}"
74
249
  headers:
75
250
  User-Agent:
76
- - Swipely/Docker-API 1.11.2
251
+ - Swipely/Docker-API 1.13.6
77
252
  Content-Type:
78
253
  - application/json
79
254
  response:
@@ -82,23 +257,21 @@ http_interactions:
82
257
  message:
83
258
  headers:
84
259
  Date:
85
- - Thu, 26 Jun 2014 19:43:19 GMT
86
- Connection:
87
- - close
260
+ - Mon, 27 Oct 2014 22:53:19 GMT
88
261
  body:
89
262
  encoding: UTF-8
90
263
  string: ''
91
264
  http_version:
92
- recorded_at: Thu, 26 Jun 2014 19:43:19 GMT
265
+ recorded_at: Mon, 27 Oct 2014 22:53:19 GMT
93
266
  - request:
94
267
  method: post
95
- uri: unix:///var/run/docker.sock/v1.12/containers/e36507d15801857e28153923c2968f77112a40aa5df02251ee7ef83d0db9097a/wait
268
+ uri: unix:///var/run/docker.sock/v1.12/containers/ff6b6cc0f98c59562967d3219a20bcaf4650f0ba4d17211d123c28daf3e56980/wait
96
269
  body:
97
270
  encoding: US-ASCII
98
271
  string: ''
99
272
  headers:
100
273
  User-Agent:
101
- - Swipely/Docker-API 1.11.2
274
+ - Swipely/Docker-API 1.13.6
102
275
  Content-Type:
103
276
  - text/plain
104
277
  response:
@@ -109,26 +282,24 @@ http_interactions:
109
282
  Content-Type:
110
283
  - application/json
111
284
  Date:
112
- - Thu, 26 Jun 2014 19:43:19 GMT
285
+ - Mon, 27 Oct 2014 22:53:19 GMT
113
286
  Content-Length:
114
287
  - '17'
115
- Connection:
116
- - close
117
288
  body:
118
289
  encoding: UTF-8
119
290
  string: |
120
291
  {"StatusCode":0}
121
292
  http_version:
122
- recorded_at: Thu, 26 Jun 2014 19:43:19 GMT
293
+ recorded_at: Mon, 27 Oct 2014 22:53:19 GMT
123
294
  - request:
124
295
  method: post
125
- uri: unix:///var/run/docker.sock/v1.12/containers/e36507d15801857e28153923c2968f77112a40aa5df02251ee7ef83d0db9097a/copy
296
+ uri: unix:///var/run/docker.sock/v1.12/containers/ff6b6cc0f98c59562967d3219a20bcaf4650f0ba4d17211d123c28daf3e56980/copy
126
297
  body:
127
298
  encoding: UTF-8
128
299
  string: '{"Resource":"/test"}'
129
300
  headers:
130
301
  User-Agent:
131
- - Swipely/Docker-API 1.11.2
302
+ - Swipely/Docker-API 1.13.6
132
303
  Content-Type:
133
304
  - application/json
134
305
  response:
@@ -136,21 +307,19 @@ http_interactions:
136
307
  code: 200
137
308
  message:
138
309
  headers:
310
+ Content-Type:
311
+ - application/x-tar
139
312
  Date:
140
- - Thu, 26 Jun 2014 19:43:19 GMT
313
+ - Mon, 27 Oct 2014 22:53:19 GMT
141
314
  Content-Length:
142
315
  - '1536'
143
- Content-Type:
144
- - application/octet-stream
145
- Connection:
146
- - close
147
316
  body:
148
317
  encoding: UTF-8
149
318
  string: !binary |-
150
319
  dGVzdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
151
320
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
152
321
  AAAAAAAAAAAAADAxMDA2NDQAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDAw
153
- ADEyMzUzMDczNzI3ADAxMDE0NgAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
322
+ ADEyNDIzNTQ2MzM3ADAxMDE0NgAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
154
323
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
155
324
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAwMAAAAAAA
156
325
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
@@ -183,5 +352,5 @@ http_interactions:
183
352
  AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
184
353
  AAAAAAAA
185
354
  http_version:
186
- recorded_at: Thu, 26 Jun 2014 19:43:19 GMT
187
- recorded_with: VCR 2.9.2
355
+ recorded_at: Mon, 27 Oct 2014 22:53:19 GMT
356
+ recorded_with: VCR 2.9.3