https://doi.org/10.5281/zenodo.19657478

Scripted Higher-Level Analyses in FSL using FEAT derivatives#

This notebook walks through a simple, novice-friendly workflow in Neurodesk EDU:

  1. set up one example project folder and download the FEAT templates used for higher-level modeling

  2. download a public OSF archive that contains the five run-level Level-1 .feat directories for sub-104 and the precomputed Level-2 .gfeat directories for the full sample

  3. render and run a fixed-effects Level-2 FEAT model for cope10 (reciprocate > defect) in sub-104

  4. review the Level-2 output, including quick NiiVue visualizations

  5. render and run an initial Level-3 one-group model focused on the same lower-level cope

  6. inspect the resulting mask before trusting the activation map, using a real teachable moment from this workflow

  7. download a refreshed Level-2 archive generated after rerunning preprocessing with fMRIPrep 25.2.5, rerender the same one-group Level-3 template, and rerun the group model

  8. review the refreshed Level-3 output and compare it with the original result

The main teaching goal is to show how higher-level FEAT analyses can still go wrong even when the commands run cleanly — and why it is so important to check the mask before interpreting the activation.

Author:

Date: April 18, 2026

License:

Provenance: This notebook adapts course materials and selected logic from the Fareri trust-game workflow code, but rewrites the steps so they can be followed directly in notebook cells. Full workflow repository: tubric/fareri-2022-neuroimage.

Acknowledgments: This notebook was generated with assistance from ChatGPT-5 across several iterations and then revised by the instructor. The instructor reviewed the final content and takes responsibility for it.

Citation and Resources#

Study-specific references#

  • Fareri et al. (2022): Fareri, D. S., Hackett, K., Tepfer, L. J., Kelly, V., Henninger, N., Reeck, C., Giovannetti, T., & Smith, D. V. (2022). Age-related differences in ventral striatal and default mode network function during reciprocated trust. NeuroImage, 256, 119267. DOI

  • Smith et al. (2024): Smith, D. V., Ludwig, R. M., Dennison, J. B., Reeck, C., & Fareri, D. S. (2024). An fMRI Dataset on Social Reward Processing and Decision Making in Younger and Older Adults. Scientific Data, 11(1), 158. DOI

Full workflow repository#

Public archives for this notebook#

Table of content#

1. Load software tools and import python libraries
2. Project setup
3. Download the FEAT derivatives from OSF
4. Check the downloaded inputs
5. Render the Level-2 FEAT template
6. Run the Level-2 FEAT model
7. Review the Level-2 output
8. Render and run the initial Level-3 FEAT model
9. Review the initial Level-3 output and check the mask
10. Refresh the Level-3 inputs and rerun the group model
11. Review the refreshed Level-3 output
12. Dependencies in Jupyter/Python

1. Load software tools and import python libraries#

import module
await module.load('fsl/6.0.7.16')
await module.list()
['fsl/6.0.7.16']
%%capture
!pip install nibabel numpy osfclient
from pathlib import Path
import os
import numpy as np
import nibabel as nib
from IPython.display import display, Markdown, Image

HOME = Path.home()
EXAMPLE_DIR = HOME / "trust_example_higherlevel"

DOWNLOAD_DIR = EXAMPLE_DIR / "downloads"
DERIV_ROOT = EXAMPLE_DIR / "derivatives" / "fsl"
TEMPLATE_ROOT = EXAMPLE_DIR / "templates"

for d in [DOWNLOAD_DIR, DERIV_ROOT, TEMPLATE_ROOT]:
    d.mkdir(parents=True, exist_ok=True)

sub = "104"
task = "trust"
model_type = "act"
sm = 6
nruns = 5
cope_num = 10

print("Example directory:", EXAMPLE_DIR)
print("Downloads:", DOWNLOAD_DIR)
print("Derivative root:", DERIV_ROOT)
print("Template root:", TEMPLATE_ROOT)
Example directory: /home/jovyan/trust_example_higherlevel
Downloads: /home/jovyan/trust_example_higherlevel/downloads
Derivative root: /home/jovyan/trust_example_higherlevel/derivatives/fsl
Template root: /home/jovyan/trust_example_higherlevel/templates

2. Project setup#

We will keep everything for this example in one folder directly under the home directory:

~/trust_example_higherlevel

This notebook is designed to be rerun safely. To make that possible, we keep the downloaded archive, the shared derivatives, and the notebook-generated FEAT outputs in separate subfolders.

For this notebook, we need:

  • one Level-2 fixed-effects template for rerunning sub-104

  • one Level-3 one-group template for the initial and refreshed group analyses

We will use three subfolders with different roles:

  • ~/trust_example_higherlevel/templates for the downloaded .fsf templates

  • ~/trust_example_higherlevel/downloads for the raw OSF archive and its unpacked contents

  • ~/trust_example_higherlevel/derivatives/fsl for the shared FEAT derivatives and the new notebook-generated higher-level outputs

%%bash
set -e

EXAMPLE_DIR="$HOME/trust_example_higherlevel"

mkdir -p "$EXAMPLE_DIR/templates"
mkdir -p "$EXAMPLE_DIR/downloads"
mkdir -p "$EXAMPLE_DIR/derivatives/fsl/sub-104"

# Copy the FEAT templates we need for this notebook.
curl -L \
  https://raw.githubusercontent.com/tubric/fareri-2022-neuroimage/main/templates/L2_task-trust_model-01_type-act_nruns-5.fsf \
  -o "$EXAMPLE_DIR/templates/L2_task-trust_model-01_type-act_nruns-5.fsf"

curl -L \
  https://raw.githubusercontent.com/tubric/fareri-2022-neuroimage/main/templates/L3_template_n48_trust_onegroup.fsf \
  -o "$EXAMPLE_DIR/templates/L3_template_n48_trust_onegroup.fsf"

echo "Templates copied to:"
ls -1 "$EXAMPLE_DIR/templates"
Templates copied to:
L2_task-trust_model-01_type-act_nruns-5.fsf
L3_template_n48_trust_onegroup.fsf
  % Total    % Received % Xferd  Average Speed   Time    Time     T
ime  Current
               Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0
     0 --:--:-- --:--:-- --:--:--     0
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--
:--     0
  0     0    0     0    0     0      0      0 --:--:--  0:00:01 --:--:--     0
100  9228  100  9228    0     0   3839      0  0:00:02  0:00:02 --:--:--  3841
  % Total    % Received % Xferd  Average Speed   Time    T
ime     Time  Current
                             Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0
     0      0      0 --:--:-- --:--:-- --:--:--     0
100 21483  100 21483    0     0  60345      0 --:--:-- --:--
100 21483
100 21483    0     0  60310      0 --:--:-- --:--:-- --:--:-- 60345
!find ~/trust_example_higherlevel/templates -maxdepth 1 -type f | sort
/home/jovyan/trust_example_higherlevel/templates/L2_task-trust_model-01_type-act_nruns-5.fsf
/home/jovyan/trust_example_higherlevel/templates/L3_template_n48_trust_onegroup.fsf

The original shell scripts automate higher-level FEAT across many participants, models, and contrasts. Here we narrow that logic to one concrete teaching case.

The OSF archive used below contains two kinds of material that matter for this notebook:

  • the five run-level Level-1 .feat directories for sub-104, which let us rerun the Level-2 model from scratch

  • the precomputed Level-2 .gfeat directories for the full sample, which let us build Level-3 group analyses without first rerunning every participant

That combination keeps the notebook compact while still showing the full higher-level workflow end to end.

3. Download the FEAT derivatives from OSF#

For this notebook, assume the completed FEAT derivatives have already been shared through the public OSF project:

The first command below lists the files visible in that OSF project. In this case, the archive path reported by osf ls is:

osfstorage/fareri-2022-neuroimage_example-activation.tar.gz

The cell is written so that it can be rerun safely. If the archive already exists locally, it will be reused rather than downloaded again. The unpacked archive contents will still be refreshed, and the archived FEAT derivatives will be copied into the notebook’s derivatives/fsl/ folder.

%%bash
set -e

EXAMPLE_DIR="$HOME/trust_example_higherlevel"
PROJECT="ktxug"

REMOTE_ARCHIVE="osfstorage/fareri-2022-neuroimage_example-activation.tar.gz"
LOCAL_ARCHIVE="$EXAMPLE_DIR/downloads/fareri-2022-neuroimage_example-activation.tar.gz"

DOWNLOAD_DIR="$EXAMPLE_DIR/downloads"
DERIV_DIR="$EXAMPLE_DIR/derivatives/fsl"

mkdir -p "$DOWNLOAD_DIR"
mkdir -p "$DERIV_DIR"

echo "Files visible in OSF project $PROJECT:"
osf -p "$PROJECT" ls

echo
if [ ! -f "$LOCAL_ARCHIVE" ]; then
    echo "Downloading archive from OSF ..."
    osf -p "$PROJECT" fetch "$REMOTE_ARCHIVE" "$LOCAL_ARCHIVE"
else
    echo "Archive already exists locally. Reusing it:"
    echo "  $LOCAL_ARCHIVE"
fi

echo
echo "Refreshing unpacked archive contents ..."
rm -rf "$DOWNLOAD_DIR/__forOSF"
tar -xzf "$LOCAL_ARCHIVE" -C "$DOWNLOAD_DIR"

echo
echo "Copying archived FEAT derivatives into the teaching directory ..."
cp -r "$DOWNLOAD_DIR/__forOSF/." "$DERIV_DIR/"

echo
echo "Example derivatives are now here:"
echo "  $DERIV_DIR"
find "$DERIV_DIR" -maxdepth 2 -type d | sort | head -60
Files visible in OSF project ktxug:
osfstorage/revised-fsl-activation.tar.gz
osfstorage/fareri-2022-neuroimage_example-activation.tar.gz
Downloading archive from OSF ...
Refreshing unpacked archive contents ...
Copying archived FEAT derivatives into the teaching directory ...

Example derivatives are now here:
  /home/jovyan/trust_example_higherlevel/derivatives/fsl
/home/jovyan/trust_example_higherlevel/derivatives/fsl
/home/jovyan/trust_example_higherlevel/deriva
tives/fsl/sub-104
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust_model
-01_type-act_run-01_sm-6.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task
-trust_model-01_type-act_run-02_sm-6.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub
-104/L1_task-trust_model-01_type-act_run-03_sm-6.feat
/home/jovyan/trust_example_higherlevel/derivat
ives/fsl/sub-104/L1_task-trust_model-01_type-act_run-04_sm-6.feat
/home/jovyan/trust_example_higherl
evel/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-05_sm-6.feat
/home/jovyan/trust_exa
mple_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/tru
st_example_higherlevel/derivatives/fsl/sub-105
/home/jovyan/trust_example_higherlevel/derivatives/fs
l/sub-105/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivati
ves/fsl/sub-106
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-106/L2_task-trust_model-0
1_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-107
/home/jovyan/tr
ust_example_higherlevel/derivatives/fsl/sub-107/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jov
yan/trust_example_higherlevel/derivatives/fsl/sub-108
/home/jovyan/trust_example_higherlevel/derivat
ives/fsl/sub-108/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/d
erivatives/fsl/sub-109
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-109/L2_task-trust_
model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-110
/home/jo
vyan/trust_example_higherlevel/derivatives/fsl/sub-110/L2_task-trust_model-01_type-act_sm-6.gfeat
/h
ome/jovyan/trust_example_higherlevel/derivatives/fsl/sub-111
/home/jovyan/trust_example_higherlevel/
derivatives/fsl/sub-111/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higher
level/derivatives/fsl/sub-112
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-112/L2_task
-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-113
/
home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-113/L2_task-trust_model-01_type-act_sm-6.g
feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-115
/home/jovyan/trust_example_highe
rlevel/derivatives/fsl/sub-115/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example
_higherlevel/derivatives/fsl/sub-116
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-116/
L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/su
b-117
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-117/L2_task-trust_model-01_type-act
_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-118
/home/jovyan/trust_exampl
e_higherlevel/derivatives/fsl/sub-118/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_
example_higherlevel/derivatives/fsl/sub-120
/home/jovyan/trust_example_higherlevel/derivatives/fsl/s
ub-120/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives
/fsl/sub-121
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-121/L2_task-trust_model-01_t
ype-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-122
/home/jovyan/trust
_example_higherlevel/derivatives/fsl/sub-122/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan
/trust_example_higherlevel/derivatives/fsl/sub-124
/home/jovyan/trust_example_higherlevel/derivative
s/fsl/sub-124/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/deri
vatives/fsl/sub-125
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-125/L2_task-trust_mod
el-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-126
/home/jovya
n/trust_example_higherlevel/derivatives/fsl/sub-126/L2_task-trust_model-01_type-act_sm-6.gfeat
/home
/jovyan/trust_example_higherlevel/derivatives/fsl/sub-127
/home/jovyan/trust_example_higherlevel/der
ivatives/fsl/sub-127/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlev
el/derivatives/fsl/sub-128
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-128/L2_task-tr
ust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-129
/hom
e/jovyan/trust_example_higherlevel/derivatives/fsl/sub-129/L2_task-trust_model-01_type-act_sm-6.gfea
t
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-130
/home/jovyan/trust_example_higherle
vel/derivatives/fsl/sub-130/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_hi
gherlevel/derivatives/fsl/sub-131
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-131/L2_
task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-1
32
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-132/L2_task-trust_model-01_type-act_sm
-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-133
/home/jovyan/trust_example_h
igherlevel/derivatives/fsl/sub-133/L2_task-trust_model-01_type-act_sm-6.gfeat
  0%|          | 0.00/3.30G [00:00<?, ?bytes/s]
  0%|          | 16.4k/3.30G [00:00<9:23:04, 97.8kbytes/s]
  0%|          | 49.2k/3.30G [00:00<7:40:17, 120kbytes/s]
  0%|          | 81.9k/3.30G [00:00<7:17:21, 126kbytes/s]
  0%|          | 131k/3.30G [00:00<4:41:11, 196kbytes/s]
  0%|          | 164k/3.30G [00:00<4:04:20, 225kbytes/s]
  0%|          | 213k/3.30G [00:00<3:10:57, 288kbytes/s]
  0%|          | 295k/3.30G [00:01<2:12:36, 415kbytes/s]
  0%|          | 393k/3.30G [00:01<1:37:25, 565kbytes/s]
  0%|          | 508k/3.30G [00:01<1:16:06, 723kbytes/s]
  0%|          | 705k/3.30G [00:01<51:40, 1.07Mbytes/s]
  0%|          | 950k/3.30G [00:01<37:47, 1.46Mbytes/s]
  0%|          | 1.29M/3.30G [00:01<27:26, 2.01Mbytes/s]
  0%|          | 1.79M/3.30G [00:01<19:22, 2.84Mbytes/s]
  0%|          | 2.46M/3.30G [00:01<13:51, 3.97Mbytes/s]
  0%|          | 3.36M/3.30G [00:01<10:05, 5.45Mbytes/s]
  0%|          | 4.42M/3.30G [00:02<08:06, 6.79Mbytes/s]
  0%|          | 5.32M/3.30G [00:02<07:24, 7.43Mbytes/s]
  0%|          | 6.46M/3.30G [00:02<06:46, 8.10Mbytes/s]
  0%|          | 7.44M/3.30G [00:02<06:23, 8.59Mbytes/s]
  0%|          | 8.49M/3.30G [00:02<06:15, 8.79Mbytes/s]
  0%|          | 9.47M/3.30G [00:02<06:03, 9.07Mbytes/s]
  0%|          | 10.5M/3.30G [00:02<06:03, 9.05Mbytes/s]
  0%|          | 11.4M/3.30G [00:02<06:05, 9.01Mbytes/s]
  0%|          | 12.5M/3.30G [00:02<05:53, 9.30Mbytes/s]
  0%|          | 13.4M/3.30G [00:02<05:56, 9.23Mbytes/s]
  0%|          | 14.5M/3.30G [00:03<05:45, 9.51Mbytes/s]
  0%|          | 15.5M/3.30G [00:03<05:50, 9.39Mbytes/s]
  1%|          | 16.6M/3.30G [00:03<05:45, 9.51Mbytes/s]
  1%|          | 17.5M/3.30G [00:03<05:49, 9.42Mbytes/s]
  1%|          | 18.6M/3.30G [00:03<05:44, 9.54Mbytes/s]
  1%|          | 19.6M/3.30G [00:03<05:48, 9.42Mbytes/s]
  1%|          | 20.6M/3.30G [00:03<05:46, 9.48Mbytes/s]
  1%|          | 21.6M/3.30G [00:03<05:50, 9.36Mbytes/s]
  1%|          | 22.6M/3.30G [00:03<05:46, 9.46Mbytes/s]
  1%|          | 23.6M/3.30G [00:04<05:51, 9.34Mbytes/s]
  1%|          | 24.6M/3.30G [00:04<05:47, 9.44Mbytes/s]
  1%|          | 25.6M/3.30G [00:04<05:53, 9.29Mbytes/s]
  1%|          | 26.6M/3.30G [00:04<05:47, 9.42Mbytes/s]
  1%|          | 27.6M/3.30G [00:04<05:52, 9.29Mbytes/s]
  1%|          | 28.6M/3.30G [00:04<05:49, 9.37Mbytes/s]
  1%|          | 29.6M/3.30G [00:04<05:55, 9.20Mbytes/s]
  1%|          | 30.6M/3.30G [00:04<05:43, 9.53Mbytes/s]
  1%|          | 31.6M/3.30G [00:04<05:48, 9.38Mbytes/s]
  1%|          | 32.7M/3.30G [00:05<05:40, 9.61Mbytes/s]
  1%|          | 33.7M/3.30G [00:05<05:47, 9.40Mbytes/s]
  1%|          | 34.7M/3.30G [00:05<05:39, 9.62Mbytes/s]
  1%|          | 35.7M/3.30G [00:05<05:45, 9.45Mbytes/s]
  1%|          | 36.8M/3.30G [00:05<05:39, 9.64Mbytes/s]
  1%|          | 37.7M/3.30G [00:05<05:45, 9.47Mbytes/s]
  1%|          | 38.8M/3.30G [00:05<05:38, 9.65Mbytes/s]
  1%|          | 39.8M/3.30G [00:05<05:44, 9.47Mbytes/s]
  1%|          | 40.9M/3.30G [00:05<05:39, 9.61Mbytes/s]
  1%|▏         | 41.9M/3.30G [00:05<05:45, 9.44Mbytes/s]
  1%|▏         | 42.9M/3.30G [00:06<05:40, 9.59Mbytes/s]
  1%|▏         | 43.9M/3.30G [00:06<05:49, 9.33Mbytes/s]
  1%|▏         | 44.9M/3.30G [00:06<05:42, 9.52Mbytes/s]
  1%|▏         | 45.8M/3.30G [00:06<05:49, 9.32Mbytes/s]
  1%|▏         | 46.9M/3.30G [00:06<05:46, 9.41Mbytes/s]
  1%|▏         | 47.8M/3.30G [00:06<05:50, 9.28Mbytes/s]
  1%|▏         | 48.9M/3.30G [00:06<07:31, 7.22Mbytes/s]
  2%|▏         | 49.9M/3.30G [00:07<08:34, 6.32Mbytes/s]
  2%|▏         | 52.0M/3.30G [00:07<07:10, 7.55Mbytes/s]
  2%|▏         | 54.0M/3.30G [00:07<06:35, 8.21Mbytes/s]
  2%|▏         | 56.0M/3.30G [00:07<06:17, 8.61Mbytes/s]
  2%|▏         | 58.0M/3.30G [00:07<06:02, 8.97Mbytes/s]
  2%|▏         | 60.1M/3.30G [00:08<05:53, 9.17Mbytes/s]
  2%|▏         | 62.1M/3.30G [00:08<05:49, 9.27Mbytes/s]
  2%|▏         | 64.2M/3.30G [00:08<05:45, 9.38Mbytes/s]
  2%|▏         | 66.2M/3.30G [00:08<05:42, 9.45Mbytes/s]
  2%|▏         | 68.3M/3.30G [00:08<05:41, 9.47Mbytes/s]
  2%|▏         | 70.3M/3.30G [00:09<05:40, 9.50Mbytes/s]
  2%|▏         | 72.3M/3.30G [00:09<05:43, 9.42Mbytes/s]
  2%|▏         | 74.3M/3.30G [00:09<05:46, 9.33Mbytes/s]
  2%|▏         | 76.3M/3.30G [00:09<05:45, 9.34Mbytes/s]
  2%|▏         | 78.3M/3.30G [00:10<05:45, 9.34Mbytes/s]
  2%|▏         | 80.3M/3.30G [00:10<05:44, 9.36Mbytes/s]
  2%|▏         | 82.3M/3.30G [00:10<05:44, 9.34Mbytes/s]
  3%|▎         | 84.3M/3.30G [00:10<05:43, 9.37Mbytes/s]
  3%|▎         | 86.3M/3.30G [00:10<05:44, 9.34Mbytes/s]
  3%|▎         | 88.3M/3.30G [00:11<05:43, 9.37Mbytes/s]
  3%|▎         | 90.3M/3.30G [00:11<05:43, 9.36Mbytes/s]
  3%|▎         | 92.3M/3.30G [00:11<05:43, 9.34Mbytes/s]
  3%|▎         | 94.3M/3.30G [00:11<05:44, 9.31Mbytes/s]
  3%|▎         | 96.2M/3.30G [00:11<05:44, 9.31Mbytes/s]
  3%|▎         | 98.2M/3.30G [00:12<05:43, 9.33Mbytes/s]
  3%|▎         | 100M/3.30G [00:12<05:43, 9.34Mbytes/s]
  3%|▎         | 102M/3.30G [00:12<05:41, 9.37Mbytes/s]
  3%|▎         | 104M/3.30G [00:12<05:41, 9.38Mbytes/s]
  3%|▎         | 106M/3.30G [00:13<05:41, 9.37Mbytes/s]
  3%|▎         | 108M/3.30G [00:13<05:45, 9.24Mbytes/s]
  3%|▎         | 110M/3.30G [00:13<05:43, 9.30Mbytes/s]
  3%|▎         | 112M/3.30G [00:13<05:43, 9.29Mbytes/s]
  3%|▎         | 114M/3.30G [00:13<05:42, 9.31Mbytes/s]
  4%|▎         | 116M/3.30G [00:14<05:41, 9.33Mbytes/s]
  4%|▎         | 118M/3.30G [00:14<05:41, 9.33Mbytes/s]
  4%|▎         | 120M/3.30G [00:14<05:43, 9.27Mbytes/s]
  4%|▎         | 122M/3.30G [00:14<05:43, 9.27Mbytes/s]
  4%|▍         | 124M/3.30G [00:14<05:43, 9.27Mbytes/s]
  4%|▍         | 126M/3.30G [00:15<05:43, 9.25Mbytes/s]
  4%|▍         | 128M/3.30G [00:15<05:42, 9.27Mbytes/s]
  4%|▍         | 130M/3.30G [00:15<05:46, 9.16Mbytes/s]
  4%|▍         | 132M/3.30G [00:15<05:47, 9.12Mbytes/s]
  4%|▍         | 134M/3.30G [00:16<05:46, 9.16Mbytes/s]
  4%|▍         | 136M/3.30G [00:16<05:48, 9.10Mbytes/s]
  4%|▍         | 138M/3.30G [00:16<05:45, 9.15Mbytes/s]
  4%|▍         | 140M/3.30G [00:16<05:49, 9.07Mbytes/s]
  4%|▍         | 142M/3.30G [00:16<05:46, 9.13Mbytes/s]
  4%|▍         | 144M/3.30G [00:17<05:46, 9.11Mbytes/s]
  4%|▍         | 146M/3.30G [00:17<05:46, 9.11Mbytes/s]
  4%|▍         | 147M/3.30G [00:17<05:46, 9.10Mbytes/s]
  5%|▍         | 149M/3.30G [00:17<05:45, 9.14Mbytes/s]
  5%|▍         | 151M/3.30G [00:17<05:46, 9.11Mbytes/s]
  5%|▍         | 153M/3.30G [00:18<05:47, 9.08Mbytes/s]
  5%|▍         | 155M/3.30G [00:18<05:50, 8.99Mbytes/s]
  5%|▍         | 157M/3.30G [00:18<05:52, 8.93Mbytes/s]
  5%|▍         | 159M/3.30G [00:18<05:51, 8.95Mbytes/s]
  5%|▍         | 161M/3.30G [00:19<05:55, 8.84Mbytes/s]
  5%|▍         | 163M/3.30G [00:19<05:58, 8.77Mbytes/s]
  5%|▍         | 165M/3.30G [00:19<05:52, 8.90Mbytes/s]
  5%|▌         | 167M/3.30G [00:19<06:09, 8.49Mbytes/s]
  5%|▌         | 168M/3.30G [00:19<07:00, 7.46Mbytes/s]
  5%|▌         | 170M/3.30G [00:20<06:37, 7.88Mbytes/s]
  5%|▌         | 171M/3.30G [00:20<06:26, 8.10Mbytes/s]
  5%|▌         | 173M/3.30G [00:20<06:15, 8.35Mbytes/s]
  5%|▌         | 175M/3.30G [00:20<06:05, 8.56Mbytes/s]
  5%|▌         | 177M/3.30G [00:20<06:00, 8.67Mbytes/s]
  5%|▌         | 179M/3.30G [00:21<05:57, 8.74Mbytes/s]
  5%|▌         | 181M/3.30G [00:21<05:54, 8.81Mbytes/s]
  6%|▌         | 183M/3.30G [00:21<05:51, 8.87Mbytes/s]
  6%|▌         | 185M/3.30G [00:21<05:50, 8.90Mbytes/s]
  6%|▌         | 187M/3.30G [00:22<05:50, 8.88Mbytes/s]
  6%|▌         | 188M/3.30G [00:22<05:50, 8.90Mbytes/s]
  6%|▌         | 190M/3.30G [00:22<05:47, 8.95Mbytes/s]
  6%|▌         | 192M/3.30G [00:22<05:47, 8.95Mbytes/s]
  6%|▌         | 194M/3.30G [00:22<05:48, 8.93Mbytes/s]
  6%|▌         | 196M/3.30G [00:23<05:47, 8.95Mbytes/s]
  6%|▌         | 198M/3.30G [00:23<05:48, 8.92Mbytes/s]
  6%|▌         | 200M/3.30G [00:23<05:47, 8.92Mbytes/s]
  6%|▌         | 202M/3.30G [00:23<05:48, 8.90Mbytes/s]
  6%|▌         | 204M/3.30G [00:23<05:49, 8.86Mbytes/s]
  6%|▌         | 206M/3.30G [00:24<05:47, 8.91Mbytes/s]
  6%|▋         | 207M/3.30G [00:24<05:48, 8.89Mbytes/s]
  6%|▋         | 209M/3.30G [00:24<05:48, 8.89Mbytes/s]
  6%|▋         | 211M/3.30G [00:24<05:47, 8.90Mbytes/s]
  6%|▋         | 213M/3.30G [00:25<06:09, 8.36Mbytes/s]
  7%|▋         | 215M/3.30G [00:25<06:13, 8.26Mbytes/s]
  7%|▋         | 217M/3.30G [00:25<06:04, 8.47Mbytes/s]
  7%|▋         | 219M/3.30G [00:25<05:59, 8.59Mbytes/s]
  7%|▋         | 221M/3.30G [00:25<05:56, 8.64Mbytes/s]
  7%|▋         | 222M/3.30G [00:26<05:51, 8.77Mbytes/s]
  7%|▋         | 224M/3.30G [00:26<05:48, 8.83Mbytes/s]
  7%|▋         | 226M/3.30G [00:26<05:45, 8.92Mbytes/s]
  7%|▋         | 228M/3.30G [00:26<05:43, 8.97Mbytes/s]
  7%|▋         | 230M/3.30G [00:26<05:39, 9.05Mbytes/s]
  7%|▋         | 232M/3.30G [00:27<05:41, 9.00Mbytes/s]
  7%|▋         | 234M/3.30G [00:27<05:33, 9.21Mbytes/s]
  7%|▋         | 236M/3.30G [00:27<05:34, 9.19Mbytes/s]
  7%|▋         | 238M/3.30G [00:27<05:51, 8.72Mbytes/s]
  7%|▋         | 239M/3.30G [00:28<06:41, 7.63Mbytes/s]
  7%|▋         | 241M/3.30G [00:28<06:22, 8.01Mbytes/s]
  7%|▋         | 243M/3.30G [00:28<06:01, 8.48Mbytes/s]
  7%|▋         | 245M/3.30G [00:28<05:51, 8.71Mbytes/s]
  7%|▋         | 247M/3.30G [00:28<05:46, 8.83Mbytes/s]
  8%|▊         | 249M/3.30G [00:29<05:40, 8.98Mbytes/s]
  8%|▊         | 251M/3.30G [00:29<05:36, 9.06Mbytes/s]
  8%|▊         | 253M/3.30G [00:29<05:34, 9.13Mbytes/s]
  8%|▊         | 255M/3.30G [00:29<05:34, 9.11Mbytes/s]
  8%|▊         | 257M/3.30G [00:29<05:33, 9.15Mbytes/s]
  8%|▊         | 259M/3.30G [00:30<05:28, 9.26Mbytes/s]
  8%|▊         | 261M/3.30G [00:30<05:26, 9.31Mbytes/s]
  8%|▊         | 263M/3.30G [00:30<05:24, 9.36Mbytes/s]
  8%|▊         | 265M/3.30G [00:30<05:22, 9.42Mbytes/s]
  8%|▊         | 267M/3.30G [00:31<05:19, 9.52Mbytes/s]
  8%|▊         | 269M/3.30G [00:31<05:18, 9.54Mbytes/s]
  8%|▊         | 271M/3.30G [00:31<05:18, 9.53Mbytes/s]
  8%|▊         | 273M/3.30G [00:31<05:19, 9.48Mbytes/s]
  8%|▊         | 275M/3.30G [00:31<05:16, 9.57Mbytes/s]
  8%|▊         | 277M/3.30G [00:32<05:17, 9.52Mbytes/s]
  8%|▊         | 279M/3.30G [00:32<05:18, 9.51Mbytes/s]
  9%|▊         | 281M/3.30G [00:32<05:18, 9.49Mbytes/s]
  9%|▊         | 283M/3.30G [00:32<05:33, 9.07Mbytes/s]
  9%|▊         | 285M/3.30G [00:33<05:39, 8.91Mbytes/s]
  9%|▊         | 287M/3.30G [00:33<05:32, 9.07Mbytes/s]
  9%|▊         | 289M/3.30G [00:33<05:27, 9.21Mbytes/s]
  9%|▉         | 291M/3.30G [00:33<05:23, 9.30Mbytes/s]
  9%|▉         | 293M/3.30G [00:33<05:18, 9.44Mbytes/s]
  9%|▉         | 295M/3.30G [00:34<05:16, 9.50Mbytes/s]
  9%|▉         | 297M/3.30G [00:34<05:15, 9.52Mbytes/s]
  9%|▉         | 299M/3.30G [00:34<05:15, 9.53Mbytes/s]
  9%|▉         | 301M/3.30G [00:34<05:15, 9.53Mbytes/s]
  9%|▉         | 303M/3.30G [00:34<05:15, 9.50Mbytes/s]
  9%|▉         | 305M/3.30G [00:35<05:16, 9.48Mbytes/s]
  9%|▉         | 308M/3.30G [00:35<05:15, 9.51Mbytes/s]
  9%|▉         | 310M/3.30G [00:35<05:15, 9.50Mbytes/s]
  9%|▉         | 312M/3.30G [00:35<05:16, 9.46Mbytes/s]
  9%|▉         | 314M/3.30G [00:36<05:17, 9.41Mbytes/s]
 10%|▉         | 316M/3.30G [00:36<05:17, 9.41Mbytes/s]
 10%|▉         | 318M/3.30G [00:36<05:15, 9.46Mbytes/s]
 10%|▉         | 320M/3.30G [00:36<05:19, 9.34Mbytes/s]
 10%|▉         | 321M/3.30G [00:36<05:20, 9.31Mbytes/s]
 10%|▉         | 323M/3.30G [00:37<05:21, 9.28Mbytes/s]
 10%|▉         | 325M/3.30G [00:37<05:21, 9.27Mbytes/s]
 10%|▉         | 327M/3.30G [00:37<06:04, 8.17Mbytes/s]
 10%|▉         | 328M/3.30G [00:37<06:51, 7.23Mbytes/s]
 10%|▉         | 330M/3.30G [00:37<06:23, 7.75Mbytes/s]
 10%|█         | 332M/3.30G [00:38<05:57, 8.31Mbytes/s]
 10%|█         | 334M/3.30G [00:38<05:44, 8.63Mbytes/s]
 10%|█         | 336M/3.30G [00:38<05:37, 8.79Mbytes/s]
 10%|█         | 338M/3.30G [00:38<05:30, 8.98Mbytes/s]
 10%|█         | 340M/3.30G [00:39<05:24, 9.13Mbytes/s]
 10%|█         | 342M/3.30G [00:39<05:23, 9.15Mbytes/s]
 10%|█         | 343M/3.30G [00:39<05:38, 8.74Mbytes/s]
 10%|█         | 345M/3.30G [00:39<05:30, 8.96Mbytes/s]
 11%|█         | 347M/3.30G [00:39<05:26, 9.06Mbytes/s]
 11%|█         | 349M/3.30G [00:40<05:25, 9.07Mbytes/s]
 11%|█         | 351M/3.30G [00:40<05:24, 9.11Mbytes/s]
 11%|█         | 353M/3.30G [00:40<05:21, 9.17Mbytes/s]
 11%|█         | 355M/3.30G [00:40<05:20, 9.20Mbytes/s]
 11%|█         | 357M/3.30G [00:40<05:22, 9.15Mbytes/s]
 11%|█         | 359M/3.30G [00:41<05:23, 9.09Mbytes/s]
 11%|█         | 361M/3.30G [00:41<05:20, 9.17Mbytes/s]
 11%|█         | 363M/3.30G [00:41<05:19, 9.22Mbytes/s]
 11%|█         | 365M/3.30G [00:41<05:20, 9.17Mbytes/s]
 11%|█         | 367M/3.30G [00:41<05:20, 9.17Mbytes/s]
 11%|█         | 369M/3.30G [00:42<05:20, 9.15Mbytes/s]
 11%|█         | 371M/3.30G [00:42<04:29, 10.9Mbytes/s]
 11%|█▏        | 372M/3.30G [00:42<05:07, 9.53Mbytes/s]
 11%|█▏        | 373M/3.30G [00:42<05:29, 8.89Mbytes/s]
 11%|█▏        | 375M/3.30G [00:42<05:36, 8.71Mbytes/s]
 11%|█▏        | 377M/3.30G [00:42<04:37, 10.6Mbytes/s]
 11%|█▏        | 378M/3.30G [00:43<05:18, 9.19Mbytes/s]
 11%|█▏        | 379M/3.30G [00:43<05:43, 8.51Mbytes/s]
 12%|█▏        | 380M/3.30G [00:43<05:49, 8.37Mbytes/s]
 12%|█▏        | 382M/3.30G [00:43<04:41, 10.4Mbytes/s]
 12%|█▏        | 384M/3.30G [00:43<05:22, 9.05Mbytes/s]
 12%|█▏        | 385M/3.30G [00:43<05:46, 8.42Mbytes/s]
 12%|█▏        | 386M/3.30G [00:44<05:42, 8.51Mbytes/s]
 12%|█▏        | 388M/3.30G [00:44<04:44, 10.2Mbytes/s]
 12%|█▏        | 389M/3.30G [00:44<05:24, 8.98Mbytes/s]
 12%|█▏        | 390M/3.30G [00:44<05:49, 8.33Mbytes/s]
 12%|█▏        | 392M/3.30G [00:44<04:41, 10.3Mbytes/s]
 12%|█▏        | 393M/3.30G [00:44<05:23, 9.00Mbytes/s]
 12%|█▏        | 394M/3.30G [00:44<05:51, 8.28Mbytes/s]
 12%|█▏        | 396M/3.30G [00:45<06:22, 7.60Mbytes/s]
 12%|█▏        | 397M/3.30G [00:45<07:09, 6.76Mbytes/s]
 12%|█▏        | 399M/3.30G [00:45<06:25, 7.54Mbytes/s]
 12%|█▏        | 401M/3.30G [00:45<06:01, 8.04Mbytes/s]
 12%|█▏        | 403M/3.30G [00:46<05:46, 8.38Mbytes/s]
 12%|█▏        | 405M/3.30G [00:46<04:52, 9.93Mbytes/s]
 12%|█▏        | 406M/3.30G [00:46<05:04, 9.51Mbytes/s]
 12%|█▏        | 407M/3.30G [00:46<05:48, 8.31Mbytes/s]
 12%|█▏        | 409M/3.30G [00:46<05:32, 8.70Mbytes/s]
 12%|█▏        | 411M/3.30G [00:46<05:27, 8.85Mbytes/s]
 12%|█▏        | 413M/3.30G [00:47<05:23, 8.94Mbytes/s]
 13%|█▎        | 415M/3.30G [00:47<05:19, 9.03Mbytes/s]
 13%|█▎        | 417M/3.30G [00:47<05:20, 9.01Mbytes/s]
 13%|█▎        | 419M/3.30G [00:47<05:18, 9.07Mbytes/s]
 13%|█▎        | 421M/3.30G [00:48<05:16, 9.11Mbytes/s]
 13%|█▎        | 423M/3.30G [00:48<05:17, 9.09Mbytes/s]
 13%|█▎        | 425M/3.30G [00:48<05:16, 9.10Mbytes/s]
 13%|█▎        | 426M/3.30G [00:48<05:13, 9.19Mbytes/s]
 13%|█▎        | 428M/3.30G [00:48<05:13, 9.18Mbytes/s]
 13%|█▎        | 430M/3.30G [00:49<05:10, 9.26Mbytes/s]
 13%|█▎        | 433M/3.30G [00:49<05:08, 9.30Mbytes/s]
 13%|█▎        | 434M/3.30G [00:49<05:10, 9.23Mbytes/s]
 13%|█▎        | 436M/3.30G [00:49<05:10, 9.23Mbytes/s]
 13%|█▎        | 438M/3.30G [00:49<05:12, 9.18Mbytes/s]
 13%|█▎        | 440M/3.30G [00:50<05:10, 9.22Mbytes/s]
 13%|█▎        | 442M/3.30G [00:50<05:12, 9.17Mbytes/s]
 13%|█▎        | 444M/3.30G [00:50<05:13, 9.14Mbytes/s]
 14%|█▎        | 446M/3.30G [00:50<05:14, 9.09Mbytes/s]
 14%|█▎        | 448M/3.30G [00:51<05:15, 9.05Mbytes/s]
 14%|█▎        | 450M/3.30G [00:51<05:15, 9.05Mbytes/s]
 14%|█▎        | 452M/3.30G [00:51<05:13, 9.10Mbytes/s]
 14%|█▎        | 454M/3.30G [00:51<05:13, 9.09Mbytes/s]
 14%|█▍        | 456M/3.30G [00:51<05:12, 9.10Mbytes/s]
 14%|█▍        | 458M/3.30G [00:52<05:13, 9.07Mbytes/s]
 14%|█▍        | 460M/3.30G [00:52<05:12, 9.11Mbytes/s]
 14%|█▍        | 462M/3.30G [00:52<05:10, 9.14Mbytes/s]
 14%|█▍        | 464M/3.30G [00:52<05:09, 9.17Mbytes/s]
 14%|█▍        | 466M/3.30G [00:52<05:10, 9.15Mbytes/s]
 14%|█▍        | 468M/3.30G [00:53<05:13, 9.04Mbytes/s]
 14%|█▍        | 469M/3.30G [00:53<05:14, 9.01Mbytes/s]
 14%|█▍        | 471M/3.30G [00:53<05:34, 8.46Mbytes/s]
 14%|█▍        | 473M/3.30G [00:53<05:37, 8.39Mbytes/s]
 14%|█▍        | 475M/3.30G [00:54<05:29, 8.58Mbytes/s]
 14%|█▍        | 477M/3.30G [00:54<05:24, 8.72Mbytes/s]
 14%|█▍        | 479M/3.30G [00:54<05:32, 8.50Mbytes/s]
 15%|█▍        | 480M/3.30G [00:54<06:17, 7.48Mbytes/s]
 15%|█▍        | 482M/3.30G [00:54<05:51, 8.03Mbytes/s]
 15%|█▍        | 484M/3.30G [00:55<05:37, 8.36Mbytes/s]
 15%|█▍        | 486M/3.30G [00:55<05:28, 8.58Mbytes/s]
 15%|█▍        | 488M/3.30G [00:55<05:22, 8.73Mbytes/s]
 15%|█▍        | 490M/3.30G [00:55<05:19, 8.82Mbytes/s]
 15%|█▍        | 492M/3.30G [00:55<05:16, 8.90Mbytes/s]
 15%|█▍        | 493M/3.30G [00:56<05:14, 8.93Mbytes/s]
 15%|█▍        | 495M/3.30G [00:56<05:13, 8.96Mbytes/s]
 15%|█▌        | 497M/3.30G [00:56<05:10, 9.03Mbytes/s]
 15%|█▌        | 499M/3.30G [00:56<05:09, 9.05Mbytes/s]
 15%|█▌        | 501M/3.30G [00:57<05:07, 9.12Mbytes/s]
 15%|█▌        | 503M/3.30G [00:57<05:08, 9.07Mbytes/s]
 15%|█▌        | 505M/3.30G [00:57<05:09, 9.05Mbytes/s]
 15%|█▌        | 507M/3.30G [00:57<05:08, 9.08Mbytes/s]
 15%|█▌        | 509M/3.30G [00:57<05:07, 9.09Mbytes/s]
 15%|█▌        | 511M/3.30G [00:58<05:05, 9.15Mbytes/s]
 16%|█▌        | 513M/3.30G [00:58<05:04, 9.16Mbytes/s]
 16%|█▌        | 515M/3.30G [00:58<05:04, 9.16Mbytes/s]
 16%|█▌        | 517M/3.30G [00:58<05:04, 9.14Mbytes/s]
 16%|█▌        | 519M/3.30G [00:58<05:02, 9.21Mbytes/s]
 16%|█▌        | 521M/3.30G [00:59<05:02, 9.21Mbytes/s]
 16%|█▌        | 523M/3.30G [00:59<05:02, 9.20Mbytes/s]
 16%|█▌        | 525M/3.30G [00:59<05:03, 9.16Mbytes/s]
 16%|█▌        | 526M/3.30G [00:59<05:26, 8.52Mbytes/s]
 16%|█▌        | 528M/3.30G [01:00<05:30, 8.40Mbytes/s]
 16%|█▌        | 530M/3.30G [01:00<05:22, 8.61Mbytes/s]
 16%|█▌        | 532M/3.30G [01:00<05:14, 8.80Mbytes/s]
 16%|█▌        | 534M/3.30G [01:00<05:09, 8.96Mbytes/s]
 16%|█▌        | 536M/3.30G [01:00<05:07, 9.01Mbytes/s]
 16%|█▋        | 538M/3.30G [01:01<05:06, 9.02Mbytes/s]
 16%|█▋        | 540M/3.30G [01:01<05:06, 9.01Mbytes/s]
 16%|█▋        | 542M/3.30G [01:01<05:04, 9.06Mbytes/s]
 16%|█▋        | 544M/3.30G [01:01<05:03, 9.08Mbytes/s]
 17%|█▋        | 546M/3.30G [01:02<05:01, 9.15Mbytes/s]
 17%|█▋        | 548M/3.30G [01:02<05:00, 9.17Mbytes/s]
 17%|█▋        | 550M/3.30G [01:02<05:00, 9.18Mbytes/s]
 17%|█▋        | 552M/3.30G [01:02<04:59, 9.20Mbytes/s]
 17%|█▋        | 554M/3.30G [01:02<04:59, 9.18Mbytes/s]
 17%|█▋        | 556M/3.30G [01:03<05:00, 9.16Mbytes/s]
 17%|█▋        | 558M/3.30G [01:03<05:01, 9.12Mbytes/s]
 17%|█▋        | 559M/3.30G [01:03<04:59, 9.15Mbytes/s]
 17%|█▋        | 561M/3.30G [01:03<04:59, 9.15Mbytes/s]
 17%|█▋        | 563M/3.30G [01:03<04:59, 9.15Mbytes/s]
 17%|█▋        | 565M/3.30G [01:04<04:59, 9.13Mbytes/s]
 17%|█▋        | 567M/3.30G [01:04<05:00, 9.10Mbytes/s]
 17%|█▋        | 569M/3.30G [01:04<05:00, 9.12Mbytes/s]
 17%|█▋        | 571M/3.30G [01:04<04:57, 9.20Mbytes/s]
 17%|█▋        | 573M/3.30G [01:04<04:56, 9.22Mbytes/s]
 17%|█▋        | 575M/3.30G [01:05<04:55, 9.24Mbytes/s]
 17%|█▋        | 577M/3.30G [01:05<04:54, 9.27Mbytes/s]
 18%|█▊        | 579M/3.30G [01:05<04:53, 9.30Mbytes/s]
 18%|█▊        | 581M/3.30G [01:05<04:54, 9.25Mbytes/s]
 18%|█▊        | 583M/3.30G [01:06<04:53, 9.27Mbytes/s]
 18%|█▊        | 585M/3.30G [01:06<04:08, 10.9Mbytes/s]
 18%|█▊        | 586M/3.30G [01:06<04:42, 9.63Mbytes/s]
 18%|█▊        | 587M/3.30G [01:06<05:08, 8.79Mbytes/s]
 18%|█▊        | 589M/3.30G [01:06<05:10, 8.74Mbytes/s]
 18%|█▊        | 591M/3.30G [01:06<05:07, 8.82Mbytes/s]
 18%|█▊        | 593M/3.30G [01:07<04:13, 10.7Mbytes/s]
 18%|█▊        | 594M/3.30G [01:07<04:49, 9.37Mbytes/s]
 18%|█▊        | 595M/3.30G [01:07<05:25, 8.32Mbytes/s]
 18%|█▊        | 597M/3.30G [01:07<05:07, 8.80Mbytes/s]
 18%|█▊        | 599M/3.30G [01:07<04:11, 10.8Mbytes/s]
 18%|█▊        | 600M/3.30G [01:07<04:49, 9.35Mbytes/s]
 18%|█▊        | 601M/3.30G [01:07<05:11, 8.68Mbytes/s]
 18%|█▊        | 603M/3.30G [01:08<05:11, 8.66Mbytes/s]
 18%|█▊        | 605M/3.30G [01:08<04:15, 10.5Mbytes/s]
 18%|█▊        | 606M/3.30G [01:08<04:54, 9.17Mbytes/s]
 18%|█▊        | 607M/3.30G [01:08<05:14, 8.58Mbytes/s]
 18%|█▊        | 609M/3.30G [01:08<04:17, 10.5Mbytes/s]
 18%|█▊        | 610M/3.30G [01:08<04:58, 9.04Mbytes/s]
 18%|█▊        | 611M/3.30G [01:09<05:18, 8.45Mbytes/s]
 19%|█▊        | 612M/3.30G [01:09<04:31, 9.91Mbytes/s]
 19%|█▊        | 613M/3.30G [01:09<05:07, 8.76Mbytes/s]
 19%|█▊        | 614M/3.30G [01:09<06:10, 7.26Mbytes/s]
 19%|█▊        | 616M/3.30G [01:09<05:59, 7.47Mbytes/s]
 19%|█▊        | 618M/3.30G [01:09<05:31, 8.10Mbytes/s]
 19%|█▉        | 620M/3.30G [01:10<05:15, 8.50Mbytes/s]
 19%|█▉        | 622M/3.30G [01:10<05:05, 8.77Mbytes/s]
 19%|█▉        | 624M/3.30G [01:10<05:01, 8.90Mbytes/s]
 19%|█▉        | 626M/3.30G [01:10<04:56, 9.03Mbytes/s]
 19%|█▉        | 628M/3.30G [01:11<04:52, 9.15Mbytes/s]
 19%|█▉        | 630M/3.30G [01:11<04:49, 9.24Mbytes/s]
 19%|█▉        | 632M/3.30G [01:11<04:47, 9.29Mbytes/s]
 19%|█▉        | 634M/3.30G [01:11<04:47, 9.30Mbytes/s]
 19%|█▉        | 636M/3.30G [01:11<04:46, 9.33Mbytes/s]
 19%|█▉        | 638M/3.30G [01:12<04:45, 9.35Mbytes/s]
 19%|█▉        | 640M/3.30G [01:12<04:46, 9.31Mbytes/s]
 19%|█▉        | 642M/3.30G [01:12<04:43, 9.38Mbytes/s]
 19%|█▉        | 644M/3.30G [01:12<05:00, 8.85Mbytes/s]
 20%|█▉        | 645M/3.30G [01:12<05:43, 7.74Mbytes/s]
 20%|█▉        | 647M/3.30G [01:13<05:18, 8.33Mbytes/s]
 20%|█▉        | 649M/3.30G [01:13<05:06, 8.67Mbytes/s]
 20%|█▉        | 651M/3.30G [01:13<04:59, 8.87Mbytes/s]
 20%|█▉        | 653M/3.30G [01:13<04:55, 8.97Mbytes/s]
 20%|█▉        | 655M/3.30G [01:14<04:51, 9.08Mbytes/s]
 20%|█▉        | 657M/3.30G [01:14<04:49, 9.13Mbytes/s]
 20%|█▉        | 659M/3.30G [01:14<04:47, 9.20Mbytes/s]
 20%|██        | 661M/3.30G [01:14<04:44, 9.30Mbytes/s]
 20%|██        | 663M/3.30G [01:14<04:43, 9.32Mbytes/s]
 20%|██        | 665M/3.30G [01:15<04:42, 9.33Mbytes/s]
 20%|██        | 667M/3.30G [01:15<04:41, 9.36Mbytes/s]
 20%|██        | 669M/3.30G [01:15<04:41, 9.35Mbytes/s]
 20%|██        | 671M/3.30G [01:15<04:40, 9.37Mbytes/s]
 20%|██        | 673M/3.30G [01:15<04:40, 9.38Mbytes/s]
 20%|██        | 675M/3.30G [01:16<05:09, 8.51Mbytes/s]
 20%|██        | 676M/3.30G [01:16<05:10, 8.45Mbytes/s]
 21%|██        | 678M/3.30G [01:16<05:03, 8.64Mbytes/s]
 21%|██        | 680M/3.30G [01:16<04:57, 8.81Mbytes/s]
 21%|██        | 682M/3.30G [01:17<04:52, 8.97Mbytes/s]
 21%|██        | 684M/3.30G [01:17<04:48, 9.07Mbytes/s]
 21%|██        | 686M/3.30G [01:17<04:46, 9.15Mbytes/s]
 21%|██        | 688M/3.30G [01:17<04:45, 9.17Mbytes/s]
 21%|██        | 690M/3.30G [01:17<04:43, 9.22Mbytes/s]
 21%|██        | 692M/3.30G [01:18<04:42, 9.25Mbytes/s]
 21%|██        | 694M/3.30G [01:18<04:42, 9.24Mbytes/s]
 21%|██        | 696M/3.30G [01:18<04:41, 9.27Mbytes/s]
 21%|██        | 698M/3.30G [01:18<04:40, 9.31Mbytes/s]
 21%|██        | 700M/3.30G [01:18<04:38, 9.35Mbytes/s]
 21%|██        | 702M/3.30G [01:19<04:53, 8.88Mbytes/s]
 21%|██▏       | 703M/3.30G [01:19<05:36, 7.74Mbytes/s]
 21%|██▏       | 705M/3.30G [01:19<05:15, 8.24Mbytes/s]
 21%|██▏       | 707M/3.30G [01:19<05:04, 8.52Mbytes/s]
 21%|██▏       | 709M/3.30G [01:20<04:56, 8.77Mbytes/s]
 22%|██▏       | 711M/3.30G [01:20<04:51, 8.90Mbytes/s]
 22%|██▏       | 713M/3.30G [01:20<04:46, 9.05Mbytes/s]
 22%|██▏       | 715M/3.30G [01:20<04:42, 9.16Mbytes/s]
 22%|██▏       | 717M/3.30G [01:20<04:41, 9.20Mbytes/s]
 22%|██▏       | 719M/3.30G [01:21<04:39, 9.24Mbytes/s]
 22%|██▏       | 721M/3.30G [01:21<04:38, 9.28Mbytes/s]
 22%|██▏       | 723M/3.30G [01:21<04:35, 9.37Mbytes/s]
 22%|██▏       | 725M/3.30G [01:21<04:34, 9.40Mbytes/s]
 22%|██▏       | 727M/3.30G [01:21<04:34, 9.38Mbytes/s]
 22%|██▏       | 729M/3.30G [01:22<04:35, 9.33Mbytes/s]
 22%|██▏       | 731M/3.30G [01:22<04:34, 9.37Mbytes/s]
 22%|██▏       | 733M/3.30G [01:22<04:34, 9.36Mbytes/s]
 22%|██▏       | 735M/3.30G [01:22<04:36, 9.30Mbytes/s]
 22%|██▏       | 737M/3.30G [01:23<04:33, 9.40Mbytes/s]
 22%|██▏       | 739M/3.30G [01:23<04:31, 9.45Mbytes/s]
 22%|██▏       | 741M/3.30G [01:23<04:31, 9.44Mbytes/s]
 22%|██▏       | 743M/3.30G [01:23<04:30, 9.45Mbytes/s]
 23%|██▎       | 745M/3.30G [01:23<04:33, 9.37Mbytes/s]
 23%|██▎       | 747M/3.30G [01:24<04:34, 9.30Mbytes/s]
 23%|██▎       | 749M/3.30G [01:24<04:33, 9.33Mbytes/s]
 23%|██▎       | 751M/3.30G [01:24<03:55, 10.9Mbytes/s]
 23%|██▎       | 752M/3.30G [01:24<04:24, 9.63Mbytes/s]
 23%|██▎       | 753M/3.30G [01:24<04:43, 9.00Mbytes/s]
 23%|██▎       | 755M/3.30G [01:25<05:16, 8.05Mbytes/s]
 23%|██▎       | 756M/3.30G [01:25<05:59, 7.09Mbytes/s]
 23%|██▎       | 758M/3.30G [01:25<05:19, 7.96Mbytes/s]
 23%|██▎       | 760M/3.30G [01:25<05:03, 8.39Mbytes/s]
 23%|██▎       | 762M/3.30G [01:25<04:53, 8.65Mbytes/s]
 23%|██▎       | 764M/3.30G [01:26<04:45, 8.88Mbytes/s]
 23%|██▎       | 766M/3.30G [01:26<04:39, 9.09Mbytes/s]
 23%|██▎       | 768M/3.30G [01:26<04:36, 9.19Mbytes/s]
 23%|██▎       | 770M/3.30G [01:26<04:36, 9.16Mbytes/s]
 23%|██▎       | 772M/3.30G [01:26<04:45, 8.88Mbytes/s]
 23%|██▎       | 774M/3.30G [01:27<04:51, 8.67Mbytes/s]
 23%|██▎       | 776M/3.30G [01:27<04:45, 8.87Mbytes/s]
 24%|██▎       | 778M/3.30G [01:27<04:38, 9.06Mbytes/s]
 24%|██▎       | 780M/3.30G [01:27<04:35, 9.17Mbytes/s]
 24%|██▎       | 782M/3.30G [01:28<04:31, 9.30Mbytes/s]
 24%|██▎       | 784M/3.30G [01:28<04:27, 9.42Mbytes/s]
 24%|██▍       | 786M/3.30G [01:28<04:26, 9.46Mbytes/s]
 24%|██▍       | 788M/3.30G [01:28<04:24, 9.51Mbytes/s]
 24%|██▍       | 790M/3.30G [01:28<04:21, 9.61Mbytes/s]
 24%|██▍       | 792M/3.30G [01:29<04:21, 9.62Mbytes/s]
 24%|██▍       | 795M/3.30G [01:29<04:20, 9.63Mbytes/s]
 24%|██▍       | 797M/3.30G [01:29<04:18, 9.69Mbytes/s]
 24%|██▍       | 799M/3.30G [01:29<04:19, 9.67Mbytes/s]
 24%|██▍       | 801M/3.30G [01:29<04:19, 9.64Mbytes/s]
 24%|██▍       | 803M/3.30G [01:30<04:19, 9.64Mbytes/s]
 24%|██▍       | 805M/3.30G [01:30<04:18, 9.66Mbytes/s]
 24%|██▍       | 807M/3.30G [01:30<04:19, 9.63Mbytes/s]
 24%|██▍       | 809M/3.30G [01:30<04:20, 9.59Mbytes/s]
 25%|██▍       | 811M/3.30G [01:31<04:34, 9.09Mbytes/s]
 25%|██▍       | 812M/3.30G [01:31<05:14, 7.93Mbytes/s]
 25%|██▍       | 814M/3.30G [01:31<04:53, 8.49Mbytes/s]
 25%|██▍       | 816M/3.30G [01:31<04:44, 8.76Mbytes/s]
 25%|██▍       | 818M/3.30G [01:31<04:36, 8.99Mbytes/s]
 25%|██▍       | 820M/3.30G [01:32<04:31, 9.14Mbytes/s]
 25%|██▍       | 822M/3.30G [01:32<04:28, 9.24Mbytes/s]
 25%|██▍       | 824M/3.30G [01:32<04:26, 9.31Mbytes/s]
 25%|██▌       | 826M/3.30G [01:32<04:22, 9.42Mbytes/s]
 25%|██▌       | 828M/3.30G [01:32<04:22, 9.42Mbytes/s]
 25%|██▌       | 830M/3.30G [01:33<04:21, 9.45Mbytes/s]
 25%|██▌       | 832M/3.30G [01:33<04:20, 9.49Mbytes/s]
 25%|██▌       | 834M/3.30G [01:33<04:18, 9.55Mbytes/s]
 25%|██▌       | 836M/3.30G [01:33<04:19, 9.51Mbytes/s]
 25%|██▌       | 838M/3.30G [01:34<04:21, 9.42Mbytes/s]
 25%|██▌       | 840M/3.30G [01:34<04:23, 9.36Mbytes/s]
 25%|██▌       | 842M/3.30G [01:34<04:22, 9.37Mbytes/s]
 26%|██▌       | 844M/3.30G [01:34<04:20, 9.46Mbytes/s]
 26%|██▌       | 847M/3.30G [01:34<04:20, 9.44Mbytes/s]
 26%|██▌       | 849M/3.30G [01:35<04:18, 9.50Mbytes/s]
 26%|██▌       | 851M/3.30G [01:35<04:18, 9.51Mbytes/s]
 26%|██▌       | 853M/3.30G [01:35<04:18, 9.50Mbytes/s]
 26%|██▌       | 855M/3.30G [01:35<04:18, 9.46Mbytes/s]
 26%|██▌       | 857M/3.30G [01:35<04:18, 9.46Mbytes/s]
 26%|██▌       | 859M/3.30G [01:36<04:20, 9.38Mbytes/s]
 26%|██▌       | 860M/3.30G [01:36<04:44, 8.60Mbytes/s]
 26%|██▌       | 861M/3.30G [01:36<05:24, 7.53Mbytes/s]
 26%|██▌       | 863M/3.30G [01:36<04:57, 8.20Mbytes/s]
 26%|██▌       | 865M/3.30G [01:37<04:44, 8.57Mbytes/s]
 26%|██▌       | 867M/3.30G [01:37<04:06, 9.88Mbytes/s]
 26%|██▋       | 868M/3.30G [01:37<04:15, 9.53Mbytes/s]
 26%|██▋       | 869M/3.30G [01:37<04:44, 8.55Mbytes/s]
 26%|██▋       | 871M/3.30G [01:37<04:32, 8.94Mbytes/s]
 26%|██▋       | 874M/3.30G [01:37<04:25, 9.17Mbytes/s]
 26%|██▋       | 876M/3.30G [01:38<04:21, 9.30Mbytes/s]
 27%|██▋       | 878M/3.30G [01:38<04:19, 9.34Mbytes/s]
 27%|██▋       | 880M/3.30G [01:38<04:16, 9.44Mbytes/s]
 27%|██▋       | 882M/3.30G [01:38<04:14, 9.51Mbytes/s]
 27%|██▋       | 884M/3.30G [01:38<04:13, 9.54Mbytes/s]
 27%|██▋       | 886M/3.30G [01:39<04:13, 9.55Mbytes/s]
 27%|██▋       | 888M/3.30G [01:39<04:12, 9.58Mbytes/s]
 27%|██▋       | 890M/3.30G [01:39<04:11, 9.62Mbytes/s]
 27%|██▋       | 892M/3.30G [01:39<04:09, 9.67Mbytes/s]
 27%|██▋       | 894M/3.30G [01:40<04:09, 9.65Mbytes/s]
 27%|██▋       | 896M/3.30G [01:40<04:10, 9.61Mbytes/s]
 27%|██▋       | 898M/3.30G [01:40<04:10, 9.61Mbytes/s]
 27%|██▋       | 900M/3.30G [01:40<04:12, 9.53Mbytes/s]
 27%|██▋       | 902M/3.30G [01:40<04:13, 9.49Mbytes/s]
 27%|██▋       | 904M/3.30G [01:41<04:14, 9.43Mbytes/s]
 27%|██▋       | 906M/3.30G [01:41<04:12, 9.48Mbytes/s]
 27%|██▋       | 908M/3.30G [01:41<04:12, 9.48Mbytes/s]
 28%|██▊       | 910M/3.30G [01:41<04:29, 8.90Mbytes/s]
 28%|██▊       | 912M/3.30G [01:42<04:29, 8.86Mbytes/s]
 28%|██▊       | 914M/3.30G [01:42<04:26, 8.99Mbytes/s]
 28%|██▊       | 916M/3.30G [01:42<04:21, 9.15Mbytes/s]
 28%|██▊       | 918M/3.30G [01:42<04:17, 9.26Mbytes/s]
 28%|██▊       | 920M/3.30G [01:42<04:16, 9.29Mbytes/s]
 28%|██▊       | 922M/3.30G [01:43<04:14, 9.35Mbytes/s]
 28%|██▊       | 924M/3.30G [01:43<04:13, 9.39Mbytes/s]
 28%|██▊       | 926M/3.30G [01:43<04:27, 8.88Mbytes/s]
 28%|██▊       | 927M/3.30G [01:43<05:06, 7.77Mbytes/s]
 28%|██▊       | 929M/3.30G [01:43<04:46, 8.29Mbytes/s]
 28%|██▊       | 931M/3.30G [01:44<04:35, 8.60Mbytes/s]
 28%|██▊       | 933M/3.30G [01:44<04:27, 8.85Mbytes/s]
 28%|██▊       | 935M/3.30G [01:44<04:22, 9.03Mbytes/s]
 28%|██▊       | 937M/3.30G [01:44<04:19, 9.14Mbytes/s]
 28%|██▊       | 939M/3.30G [01:45<04:15, 9.25Mbytes/s]
 28%|██▊       | 941M/3.30G [01:45<04:12, 9.35Mbytes/s]
 29%|██▊       | 943M/3.30G [01:45<04:13, 9.33Mbytes/s]
 29%|██▊       | 945M/3.30G [01:45<04:11, 9.37Mbytes/s]
 29%|██▊       | 947M/3.30G [01:45<04:11, 9.35Mbytes/s]
 29%|██▊       | 949M/3.30G [01:46<04:10, 9.39Mbytes/s]
 29%|██▉       | 952M/3.30G [01:46<04:09, 9.43Mbytes/s]
 29%|██▉       | 953M/3.30G [01:46<04:10, 9.40Mbytes/s]
 29%|██▉       | 955M/3.30G [01:46<04:09, 9.42Mbytes/s]
 29%|██▉       | 958M/3.30G [01:46<04:08, 9.44Mbytes/s]
 29%|██▉       | 960M/3.30G [01:47<04:07, 9.46Mbytes/s]
 29%|██▉       | 962M/3.30G [01:47<04:08, 9.45Mbytes/s]
 29%|██▉       | 964M/3.30G [01:47<04:08, 9.43Mbytes/s]
 29%|██▉       | 965M/3.30G [01:47<04:38, 8.39Mbytes/s]
 29%|██▉       | 967M/3.30G [01:48<04:37, 8.42Mbytes/s]
 29%|██▉       | 969M/3.30G [01:48<04:28, 8.71Mbytes/s]
 29%|██▉       | 971M/3.30G [01:48<04:21, 8.93Mbytes/s]
 29%|██▉       | 973M/3.30G [01:48<04:19, 8.98Mbytes/s]
 29%|██▉       | 975M/3.30G [01:48<04:18, 9.00Mbytes/s]
 30%|██▉       | 977M/3.30G [01:49<04:15, 9.12Mbytes/s]
 30%|██▉       | 979M/3.30G [01:49<04:14, 9.14Mbytes/s]
 30%|██▉       | 980M/3.30G [01:49<04:14, 9.13Mbytes/s]
 30%|██▉       | 982M/3.30G [01:49<04:15, 9.11Mbytes/s]
 30%|██▉       | 984M/3.30G [01:49<04:13, 9.17Mbytes/s]
 30%|██▉       | 986M/3.30G [01:50<04:11, 9.21Mbytes/s]
 30%|██▉       | 988M/3.30G [01:50<04:22, 8.81Mbytes/s]
 30%|██▉       | 989M/3.30G [01:50<05:00, 7.71Mbytes/s]
 30%|███       | 991M/3.30G [01:50<04:42, 8.19Mbytes/s]
 30%|███       | 993M/3.30G [01:51<04:32, 8.47Mbytes/s]
 30%|███       | 995M/3.30G [01:51<04:26, 8.67Mbytes/s]
 30%|███       | 997M/3.30G [01:51<04:20, 8.86Mbytes/s]
 30%|███       | 999M/3.30G [01:51<04:18, 8.92Mbytes/s]
 30%|███       | 1.00G/3.30G [01:51<04:15, 9.02Mbytes/s]
 30%|███       | 1.00G/3.30G [01:52<04:13, 9.09Mbytes/s]
 30%|███       | 1.01G/3.30G [01:52<04:13, 9.09Mbytes/s]
 30%|███       | 1.01G/3.30G [01:52<04:12, 9.11Mbytes/s]
 31%|███       | 1.01G/3.30G [01:52<04:11, 9.12Mbytes/s]
 31%|███       | 1.01G/3.30G [01:52<04:10, 9.16Mbytes/s]
 31%|███       | 1.01G/3.30G [01:53<04:09, 9.18Mbytes/s]
 31%|███       | 1.01G/3.30G [01:53<04:09, 9.17Mbytes/s]
 31%|███       | 1.02G/3.30G [01:53<04:09, 9.16Mbytes/s]
 31%|███       | 1.02G/3.30G [01:53<04:09, 9.15Mbytes/s]
 31%|███       | 1.02G/3.30G [01:54<04:08, 9.20Mbytes/s]
 31%|███       | 1.02G/3.30G [01:54<04:09, 9.13Mbytes/s]
 31%|███       | 1.02G/3.30G [01:54<03:38, 10.4Mbytes/s]
 31%|███       | 1.03G/3.30G [01:54<03:57, 9.59Mbytes/s]
 31%|███       | 1.03G/3.30G [01:54<04:27, 8.50Mbytes/s]
 31%|███       | 1.03G/3.30G [01:54<03:43, 10.2Mbytes/s]
 31%|███       | 1.03G/3.30G [01:54<04:02, 9.37Mbytes/s]
 31%|███       | 1.03G/3.30G [01:55<04:33, 8.30Mbytes/s]
 31%|███       | 1.03G/3.30G [01:55<03:45, 10.1Mbytes/s]
 31%|███▏      | 1.03G/3.30G [01:55<04:06, 9.22Mbytes/s]
 31%|███▏      | 1.03G/3.30G [01:55<04:40, 8.10Mbytes/s]
 31%|███▏      | 1.04G/3.30G [01:55<03:47, 9.96Mbytes/s]
 31%|███▏      | 1.04G/3.30G [01:55<04:09, 9.08Mbytes/s]
 31%|███▏      | 1.04G/3.30G [01:55<04:42, 8.02Mbytes/s]
 31%|███▏      | 1.04G/3.30G [01:56<03:47, 9.96Mbytes/s]
 32%|███▏      | 1.04G/3.30G [01:56<04:09, 9.08Mbytes/s]
 32%|███▏      | 1.04G/3.30G [01:56<04:40, 8.07Mbytes/s]
 32%|███▏      | 1.04G/3.30G [01:56<03:45, 10.0Mbytes/s]
 32%|███▏      | 1.05G/3.30G [01:56<04:08, 9.08Mbytes/s]
 32%|███▏      | 1.05G/3.30G [01:56<04:41, 8.02Mbytes/s]
 32%|███▏      | 1.05G/3.30G [01:56<03:48, 9.90Mbytes/s]
 32%|███▏      | 1.05G/3.30G [01:57<04:11, 8.97Mbytes/s]
 32%|███▏      | 1.05G/3.30G [01:57<04:39, 8.06Mbytes/s]
 32%|███▏      | 1.05G/3.30G [01:57<03:43, 10.1Mbytes/s]
 32%|███▏      | 1.05G/3.30G [01:57<04:04, 9.21Mbytes/s]
 32%|███▏      | 1.05G/3.30G [01:57<04:32, 8.27Mbytes/s]
 32%|███▏      | 1.06G/3.30G [01:57<03:39, 10.2Mbytes/s]
 32%|███▏      | 1.06G/3.30G [01:57<04:01, 9.31Mbytes/s]
 32%|███▏      | 1.06G/3.30G [01:58<04:53, 7.66Mbytes/s]
 32%|███▏      | 1.06G/3.30G [01:58<05:53, 6.36Mbytes/s]
 32%|███▏      | 1.06G/3.30G [01:58<05:14, 7.12Mbytes/s]
 32%|███▏      | 1.06G/3.30G [01:58<04:48, 7.78Mbytes/s]
 32%|███▏      | 1.06G/3.30G [01:59<04:30, 8.29Mbytes/s]
 32%|███▏      | 1.07G/3.30G [01:59<04:19, 8.64Mbytes/s]
 32%|███▏      | 1.07G/3.30G [01:59<04:13, 8.82Mbytes/s]
 32%|███▏      | 1.07G/3.30G [01:59<04:09, 8.95Mbytes/s]
 32%|███▏      | 1.07G/3.30G [01:59<04:05, 9.10Mbytes/s]
 33%|███▎      | 1.07G/3.30G [02:00<04:03, 9.15Mbytes/s]
 33%|███▎      | 1.08G/3.30G [02:00<04:02, 9.20Mbytes/s]
 33%|███▎      | 1.08G/3.30G [02:00<04:00, 9.25Mbytes/s]
 33%|███▎      | 1.08G/3.30G [02:00<04:00, 9.24Mbytes/s]
 33%|███▎      | 1.08G/3.30G [02:00<04:00, 9.24Mbytes/s]
 33%|███▎      | 1.08G/3.30G [02:01<04:01, 9.18Mbytes/s]
 33%|███▎      | 1.09G/3.30G [02:01<04:03, 9.12Mbytes/s]
 33%|███▎      | 1.09G/3.30G [02:01<04:02, 9.13Mbytes/s]
 33%|███▎      | 1.09G/3.30G [02:01<04:03, 9.11Mbytes/s]
 33%|███▎      | 1.09G/3.30G [02:01<04:00, 9.19Mbytes/s]
 33%|███▎      | 1.09G/3.30G [02:02<04:01, 9.17Mbytes/s]
 33%|███▎      | 1.10G/3.30G [02:02<03:59, 9.21Mbytes/s]
 33%|███▎      | 1.10G/3.30G [02:02<04:10, 8.80Mbytes/s]
 33%|███▎      | 1.10G/3.30G [02:02<04:45, 7.72Mbytes/s]
 33%|███▎      | 1.10G/3.30G [02:03<04:27, 8.25Mbytes/s]
 33%|███▎      | 1.10G/3.30G [02:03<04:17, 8.56Mbytes/s]
 33%|███▎      | 1.10G/3.30G [02:03<04:10, 8.79Mbytes/s]
 33%|███▎      | 1.11G/3.30G [02:03<04:08, 8.85Mbytes/s]
 34%|███▎      | 1.11G/3.30G [02:03<04:05, 8.95Mbytes/s]
 34%|███▎      | 1.11G/3.30G [02:04<04:02, 9.05Mbytes/s]
 34%|███▎      | 1.11G/3.30G [02:04<04:00, 9.11Mbytes/s]
 34%|███▎      | 1.11G/3.30G [02:04<03:59, 9.15Mbytes/s]
 34%|███▍      | 1.12G/3.30G [02:04<03:58, 9.18Mbytes/s]
 34%|███▍      | 1.12G/3.30G [02:05<03:57, 9.20Mbytes/s]
 34%|███▍      | 1.12G/3.30G [02:05<03:54, 9.30Mbytes/s]
 34%|███▍      | 1.12G/3.30G [02:05<03:54, 9.31Mbytes/s]
 34%|███▍      | 1.12G/3.30G [02:05<03:55, 9.26Mbytes/s]
 34%|███▍      | 1.13G/3.30G [02:05<03:56, 9.21Mbytes/s]
 34%|███▍      | 1.13G/3.30G [02:06<03:55, 9.23Mbytes/s]
 34%|███▍      | 1.13G/3.30G [02:06<03:53, 9.32Mbytes/s]
 34%|███▍      | 1.13G/3.30G [02:06<03:53, 9.32Mbytes/s]
 34%|███▍      | 1.13G/3.30G [02:06<03:50, 9.41Mbytes/s]
 34%|███▍      | 1.14G/3.30G [02:06<03:51, 9.36Mbytes/s]
 34%|███▍      | 1.14G/3.30G [02:07<03:51, 9.35Mbytes/s]
 35%|███▍      | 1.14G/3.30G [02:07<03:52, 9.32Mbytes/s]
 35%|███▍      | 1.14G/3.30G [02:07<03:50, 9.38Mbytes/s]
 35%|███▍      | 1.14G/3.30G [02:07<03:49, 9.39Mbytes/s]
 35%|███▍      | 1.15G/3.30G [02:08<03:47, 9.47Mbytes/s]
 35%|███▍      | 1.15G/3.30G [02:08<03:46, 9.52Mbytes/s]
 35%|███▍      | 1.15G/3.30G [02:08<04:02, 8.90Mbytes/s]
 35%|███▍      | 1.15G/3.30G [02:08<04:36, 7.78Mbytes/s]
 35%|███▍      | 1.15G/3.30G [02:08<04:16, 8.37Mbytes/s]
 35%|███▍      | 1.16G/3.30G [02:09<04:06, 8.73Mbytes/s]
 35%|███▌      | 1.16G/3.30G [02:09<03:59, 8.97Mbytes/s]
 35%|███▌      | 1.16G/3.30G [02:09<03:54, 9.16Mbytes/s]
 35%|███▌      | 1.16G/3.30G [02:09<03:50, 9.28Mbytes/s]
 35%|███▌      | 1.16G/3.30G [02:09<03:48, 9.36Mbytes/s]
 35%|███▌      | 1.17G/3.30G [02:10<03:47, 9.39Mbytes/s]
 35%|███▌      | 1.17G/3.30G [02:10<03:46, 9.41Mbytes/s]
 35%|███▌      | 1.17G/3.30G [02:10<03:45, 9.47Mbytes/s]
 35%|███▌      | 1.17G/3.30G [02:10<03:44, 9.48Mbytes/s]
 36%|███▌      | 1.17G/3.30G [02:11<03:45, 9.44Mbytes/s]
 36%|███▌      | 1.18G/3.30G [02:11<03:43, 9.52Mbytes/s]
 36%|███▌      | 1.18G/3.30G [02:11<03:42, 9.56Mbytes/s]
 36%|███▌      | 1.18G/3.30G [02:11<03:41, 9.58Mbytes/s]
 36%|███▌      | 1.18G/3.30G [02:11<03:39, 9.67Mbytes/s]
 36%|███▌      | 1.18G/3.30G [02:12<03:39, 9.68Mbytes/s]
 36%|███▌      | 1.19G/3.30G [02:12<03:39, 9.66Mbytes/s]
 36%|███▌      | 1.19G/3.30G [02:12<03:39, 9.63Mbytes/s]
 36%|███▌      | 1.19G/3.30G [02:12<03:39, 9.63Mbytes/s]
 36%|███▌      | 1.19G/3.30G [02:12<03:39, 9.61Mbytes/s]
 36%|███▌      | 1.19G/3.30G [02:13<03:41, 9.52Mbytes/s]
 36%|███▌      | 1.20G/3.30G [02:13<03:41, 9.50Mbytes/s]
 36%|███▋      | 1.20G/3.30G [02:13<03:43, 9.44Mbytes/s]
 36%|███▋      | 1.20G/3.30G [02:13<03:42, 9.44Mbytes/s]
 36%|███▋      | 1.20G/3.30G [02:14<03:43, 9.41Mbytes/s]
 36%|███▋      | 1.20G/3.30G [02:14<03:43, 9.40Mbytes/s]
 37%|███▋      | 1.21G/3.30G [02:14<03:44, 9.35Mbytes/s]
 37%|███▋      | 1.21G/3.30G [02:14<03:43, 9.36Mbytes/s]
 37%|███▋      | 1.21G/3.30G [02:14<03:43, 9.38Mbytes/s]
 37%|███▋      | 1.21G/3.30G [02:14<03:09, 11.0Mbytes/s]
 37%|███▋      | 1.21G/3.30G [02:15<03:32, 9.82Mbytes/s]
 37%|███▋      | 1.22G/3.30G [02:15<03:54, 8.91Mbytes/s]
 37%|███▋      | 1.22G/3.30G [02:15<03:55, 8.86Mbytes/s]
 37%|███▋      | 1.22G/3.30G [02:15<03:11, 10.9Mbytes/s]
 37%|███▋      | 1.22G/3.30G [02:15<03:35, 9.65Mbytes/s]
 37%|███▋      | 1.22G/3.30G [02:15<03:59, 8.70Mbytes/s]
 37%|███▋      | 1.22G/3.30G [02:16<03:59, 8.68Mbytes/s]
 37%|███▋      | 1.22G/3.30G [02:16<03:15, 10.6Mbytes/s]
 37%|███▋      | 1.23G/3.30G [02:16<03:50, 9.01Mbytes/s]
 37%|███▋      | 1.23G/3.30G [02:16<04:22, 7.91Mbytes/s]
 37%|███▋      | 1.23G/3.30G [02:16<04:20, 7.96Mbytes/s]
 37%|███▋      | 1.23G/3.30G [02:17<04:06, 8.40Mbytes/s]
 37%|███▋      | 1.23G/3.30G [02:17<03:57, 8.72Mbytes/s]
 37%|███▋      | 1.23G/3.30G [02:17<03:51, 8.94Mbytes/s]
 37%|███▋      | 1.24G/3.30G [02:17<03:57, 8.71Mbytes/s]
 37%|███▋      | 1.24G/3.30G [02:17<04:31, 7.62Mbytes/s]
 38%|███▊      | 1.24G/3.30G [02:18<04:12, 8.19Mbytes/s]
 38%|███▊      | 1.24G/3.30G [02:18<04:01, 8.56Mbytes/s]
 38%|███▊      | 1.24G/3.30G [02:18<03:53, 8.82Mbytes/s]
 38%|███▊      | 1.25G/3.30G [02:18<03:47, 9.03Mbytes/s]
 38%|███▊      | 1.25G/3.30G [02:19<03:44, 9.14Mbytes/s]
 38%|███▊      | 1.25G/3.30G [02:19<03:42, 9.23Mbytes/s]
 38%|███▊      | 1.25G/3.30G [02:19<03:41, 9.26Mbytes/s]
 38%|███▊      | 1.25G/3.30G [02:19<03:39, 9.35Mbytes/s]
 38%|███▊      | 1.26G/3.30G [02:19<03:38, 9.38Mbytes/s]
 38%|███▊      | 1.26G/3.30G [02:20<03:38, 9.38Mbytes/s]
 38%|███▊      | 1.26G/3.30G [02:20<03:38, 9.35Mbytes/s]
 38%|███▊      | 1.26G/3.30G [02:20<03:39, 9.29Mbytes/s]
 38%|███▊      | 1.26G/3.30G [02:20<03:41, 9.20Mbytes/s]
 38%|███▊      | 1.27G/3.30G [02:20<03:45, 9.05Mbytes/s]
 38%|███▊      | 1.27G/3.30G [02:21<03:44, 9.06Mbytes/s]
 38%|███▊      | 1.27G/3.30G [02:21<03:43, 9.09Mbytes/s]
 38%|███▊      | 1.27G/3.30G [02:21<03:42, 9.12Mbytes/s]
 39%|███▊      | 1.27G/3.30G [02:21<03:41, 9.19Mbytes/s]
 39%|███▊      | 1.28G/3.30G [02:22<03:41, 9.17Mbytes/s]
 39%|███▊      | 1.28G/3.30G [02:22<03:40, 9.21Mbytes/s]
 39%|███▊      | 1.28G/3.30G [02:22<03:40, 9.18Mbytes/s]
 39%|███▉      | 1.28G/3.30G [02:22<03:41, 9.13Mbytes/s]
 39%|███▉      | 1.28G/3.30G [02:22<03:39, 9.20Mbytes/s]
 39%|███▉      | 1.29G/3.30G [02:23<03:40, 9.16Mbytes/s]
 39%|███▉      | 1.29G/3.30G [02:23<03:40, 9.14Mbytes/s]
 39%|███▉      | 1.29G/3.30G [02:23<03:41, 9.09Mbytes/s]
 39%|███▉      | 1.29G/3.30G [02:23<03:42, 9.03Mbytes/s]
 39%|███▉      | 1.29G/3.30G [02:23<03:41, 9.10Mbytes/s]
 39%|███▉      | 1.30G/3.30G [02:24<03:40, 9.11Mbytes/s]
 39%|███▉      | 1.30G/3.30G [02:24<03:41, 9.07Mbytes/s]
 39%|███▉      | 1.30G/3.30G [02:24<03:41, 9.05Mbytes/s]
 39%|███▉      | 1.30G/3.30G [02:24<03:42, 9.02Mbytes/s]
 39%|███▉      | 1.30G/3.30G [02:25<03:40, 9.09Mbytes/s]
 39%|███▉      | 1.30G/3.30G [02:25<03:39, 9.09Mbytes/s]
 40%|███▉      | 1.31G/3.30G [02:25<03:38, 9.14Mbytes/s]
 40%|███▉      | 1.31G/3.30G [02:25<03:36, 9.20Mbytes/s]
 40%|███▉      | 1.31G/3.30G [02:25<03:37, 9.17Mbytes/s]
 40%|███▉      | 1.31G/3.30G [02:26<03:36, 9.21Mbytes/s]
 40%|███▉      | 1.31G/3.30G [02:26<03:36, 9.18Mbytes/s]
 40%|███▉      | 1.32G/3.30G [02:26<03:33, 9.30Mbytes/s]
 40%|███▉      | 1.32G/3.30G [02:26<03:33, 9.32Mbytes/s]
 40%|███▉      | 1.32G/3.30G [02:26<03:41, 8.96Mbytes/s]
 40%|████      | 1.32G/3.30G [02:27<03:45, 8.80Mbytes/s]
 40%|████      | 1.32G/3.30G [02:27<03:40, 8.99Mbytes/s]
 40%|████      | 1.33G/3.30G [02:27<03:38, 9.05Mbytes/s]
 40%|████      | 1.33G/3.30G [02:27<03:35, 9.15Mbytes/s]
 40%|████      | 1.33G/3.30G [02:28<03:34, 9.18Mbytes/s]
 40%|████      | 1.33G/3.30G [02:28<03:33, 9.24Mbytes/s]
 40%|████      | 1.33G/3.30G [02:28<03:32, 9.28Mbytes/s]
 40%|████      | 1.34G/3.30G [02:28<03:46, 8.71Mbytes/s]
 40%|████      | 1.34G/3.30G [02:28<04:17, 7.63Mbytes/s]
 41%|████      | 1.34G/3.30G [02:29<03:59, 8.19Mbytes/s]
 41%|████      | 1.34G/3.30G [02:29<03:48, 8.57Mbytes/s]
 41%|████      | 1.34G/3.30G [02:29<03:42, 8.82Mbytes/s]
 41%|████      | 1.35G/3.30G [02:29<03:37, 8.99Mbytes/s]
 41%|████      | 1.35G/3.30G [02:30<03:35, 9.08Mbytes/s]
 41%|████      | 1.35G/3.30G [02:30<03:32, 9.19Mbytes/s]
 41%|████      | 1.35G/3.30G [02:30<03:30, 9.29Mbytes/s]
 41%|████      | 1.35G/3.30G [02:30<03:29, 9.32Mbytes/s]
 41%|████      | 1.36G/3.30G [02:30<03:31, 9.23Mbytes/s]
 41%|████      | 1.36G/3.30G [02:31<03:30, 9.25Mbytes/s]
 41%|████      | 1.36G/3.30G [02:31<03:29, 9.27Mbytes/s]
 41%|████      | 1.36G/3.30G [02:31<03:29, 9.26Mbytes/s]
 41%|████▏     | 1.36G/3.30G [02:31<03:30, 9.21Mbytes/s]
 41%|████▏     | 1.37G/3.30G [02:31<03:32, 9.14Mbytes/s]
 41%|████▏     | 1.37G/3.30G [02:32<03:32, 9.10Mbytes/s]
 41%|████▏     | 1.37G/3.30G [02:32<03:33, 9.08Mbytes/s]
 41%|████▏     | 1.37G/3.30G [02:32<03:32, 9.10Mbytes/s]
 42%|████▏     | 1.37G/3.30G [02:32<03:31, 9.14Mbytes/s]
 42%|████▏     | 1.37G/3.30G [02:33<03:35, 8.97Mbytes/s]
 42%|████▏     | 1.38G/3.30G [02:33<03:35, 8.96Mbytes/s]
 42%|████▏     | 1.38G/3.30G [02:33<03:34, 8.97Mbytes/s]
 42%|████▏     | 1.38G/3.30G [02:33<03:34, 8.98Mbytes/s]
 42%|████▏     | 1.38G/3.30G [02:33<03:32, 9.03Mbytes/s]
 42%|████▏     | 1.38G/3.30G [02:34<03:32, 9.02Mbytes/s]
 42%|████▏     | 1.39G/3.30G [02:34<03:09, 10.1Mbytes/s]
 42%|████▏     | 1.39G/3.30G [02:34<03:30, 9.09Mbytes/s]
 42%|████▏     | 1.39G/3.30G [02:34<03:40, 8.68Mbytes/s]
 42%|████▏     | 1.39G/3.30G [02:34<03:07, 10.2Mbytes/s]
 42%|████▏     | 1.39G/3.30G [02:34<03:35, 8.88Mbytes/s]
 42%|████▏     | 1.39G/3.30G [02:34<03:44, 8.53Mbytes/s]
 42%|████▏     | 1.39G/3.30G [02:35<03:13, 9.89Mbytes/s]
 42%|████▏     | 1.39G/3.30G [02:35<03:38, 8.73Mbytes/s]
 42%|████▏     | 1.40G/3.30G [02:35<03:43, 8.55Mbytes/s]
 42%|████▏     | 1.40G/3.30G [02:35<03:44, 8.48Mbytes/s]
 42%|████▏     | 1.40G/3.30G [02:35<04:20, 7.32Mbytes/s]
 42%|████▏     | 1.40G/3.30G [02:35<04:21, 7.28Mbytes/s]
 42%|████▏     | 1.40G/3.30G [02:35<03:54, 8.13Mbytes/s]
 42%|████▏     | 1.40G/3.30G [02:36<03:59, 7.95Mbytes/s]
 42%|████▏     | 1.40G/3.30G [02:36<03:39, 8.65Mbytes/s]
 42%|████▏     | 1.40G/3.30G [02:36<03:47, 8.34Mbytes/s]
 42%|████▏     | 1.40G/3.30G [02:36<03:22, 9.37Mbytes/s]
 43%|████▎     | 1.41G/3.30G [02:36<03:34, 8.86Mbytes/s]
 43%|████▎     | 1.41G/3.30G [02:36<03:33, 8.88Mbytes/s]
 43%|████▎     | 1.41G/3.30G [02:36<03:27, 9.13Mbytes/s]
 43%|████▎     | 1.41G/3.30G [02:36<03:32, 8.94Mbytes/s]
 43%|████▎     | 1.41G/3.30G [02:36<03:28, 9.11Mbytes/s]
 43%|████▎     | 1.41G/3.30G [02:37<03:30, 9.01Mbytes/s]
 43%|████▎     | 1.41G/3.30G [02:37<03:31, 8.95Mbytes/s]
 43%|████▎     | 1.41G/3.30G [02:37<03:28, 9.06Mbytes/s]
 43%|████▎     | 1.41G/3.30G [02:37<03:30, 9.00Mbytes/s]
 43%|████▎     | 1.41G/3.30G [02:37<03:29, 9.03Mbytes/s]
 43%|████▎     | 1.42G/3.30G [02:37<03:31, 8.93Mbytes/s]
 43%|████▎     | 1.42G/3.30G [02:37<03:32, 8.89Mbytes/s]
 43%|████▎     | 1.42G/3.30G [02:37<03:34, 8.81Mbytes/s]
 43%|████▎     | 1.42G/3.30G [02:37<03:31, 8.94Mbytes/s]
 43%|████▎     | 1.42G/3.30G [02:37<03:32, 8.87Mbytes/s]
 43%|████▎     | 1.42G/3.30G [02:38<03:28, 9.04Mbytes/s]
 43%|████▎     | 1.42G/3.30G [02:38<03:29, 8.98Mbytes/s]
 43%|████▎     | 1.42G/3.30G [02:38<03:28, 9.02Mbytes/s]
 43%|████▎     | 1.42G/3.30G [02:38<03:27, 9.08Mbytes/s]
 43%|████▎     | 1.42G/3.30G [02:38<03:26, 9.12Mbytes/s]
 43%|████▎     | 1.42G/3.30G [02:38<03:27, 9.06Mbytes/s]
 43%|████▎     | 1.43G/3.30G [02:38<03:24, 9.21Mbytes/s]
 43%|████▎     | 1.43G/3.30G [02:38<03:25, 9.13Mbytes/s]
 43%|████▎     | 1.43G/3.30G [02:38<03:25, 9.14Mbytes/s]
 43%|████▎     | 1.43G/3.30G [02:39<03:27, 9.05Mbytes/s]
 43%|████▎     | 1.43G/3.30G [02:39<03:25, 9.11Mbytes/s]
 43%|████▎     | 1.43G/3.30G [02:39<03:25, 9.11Mbytes/s]
 43%|████▎     | 1.43G/3.30G [02:39<03:28, 8.99Mbytes/s]
 43%|████▎     | 1.43G/3.30G [02:39<03:27, 9.02Mbytes/s]
 43%|████▎     | 1.43G/3.30G [02:39<03:26, 9.04Mbytes/s]
 43%|████▎     | 1.43G/3.30G [02:39<03:27, 9.03Mbytes/s]
 43%|████▎     | 1.44G/3.30G [02:39<03:27, 9.02Mbytes/s]
 43%|████▎     | 1.44G/3.30G [02:39<03:27, 9.02Mbytes/s]
 43%|████▎     | 1.44G/3.30G [02:40<03:24, 9.12Mbytes/s]
 44%|████▎     | 1.44G/3.30G [02:40<03:26, 9.04Mbytes/s]
 44%|████▎     | 1.44G/3.30G [02:40<03:24, 9.12Mbytes/s]
 44%|████▎     | 1.44G/3.30G [02:40<03:26, 9.03Mbytes/s]
 44%|████▎     | 1.44G/3.30G [02:40<03:23, 9.14Mbytes/s]
 44%|████▎     | 1.44G/3.30G [02:40<03:26, 9.04Mbytes/s]
 44%|████▎     | 1.44G/3.30G [02:40<03:22, 9.20Mbytes/s]
 44%|████▎     | 1.44G/3.30G [02:40<03:25, 9.06Mbytes/s]
 44%|████▎     | 1.45G/3.30G [02:40<03:23, 9.15Mbytes/s]
 44%|████▍     | 1.45G/3.30G [02:40<03:26, 9.01Mbytes/s]
 44%|████▍     | 1.45G/3.30G [02:41<03:43, 8.32Mbytes/s]
 44%|████▍     | 1.45G/3.30G [02:41<03:16, 9.46Mbytes/s]
 44%|████▍     | 1.45G/3.30G [02:41<03:28, 8.89Mbytes/s]
 44%|████▍     | 1.45G/3.30G [02:41<03:33, 8.67Mbytes/s]
 44%|████▍     | 1.45G/3.30G [02:41<03:42, 8.32Mbytes/s]
 44%|████▍     | 1.45G/3.30G [02:41<03:29, 8.82Mbytes/s]
 44%|████▍     | 1.45G/3.30G [02:41<03:07, 9.85Mbytes/s]
 44%|████▍     | 1.46G/3.30G [02:41<03:18, 9.34Mbytes/s]
 44%|████▍     | 1.46G/3.30G [02:42<03:26, 8.94Mbytes/s]
 44%|████▍     | 1.46G/3.30G [02:42<03:39, 8.42Mbytes/s]
 44%|████▍     | 1.46G/3.30G [02:42<03:25, 9.00Mbytes/s]
 44%|████▍     | 1.46G/3.30G [02:42<03:19, 9.26Mbytes/s]
 44%|████▍     | 1.46G/3.30G [02:42<03:16, 9.39Mbytes/s]
 44%|████▍     | 1.46G/3.30G [02:42<03:22, 9.11Mbytes/s]
 44%|████▍     | 1.46G/3.30G [02:42<03:15, 9.40Mbytes/s]
 44%|████▍     | 1.46G/3.30G [02:42<03:22, 9.09Mbytes/s]
 44%|████▍     | 1.46G/3.30G [02:43<03:18, 9.27Mbytes/s]
 44%|████▍     | 1.47G/3.30G [02:43<03:24, 8.98Mbytes/s]
 44%|████▍     | 1.47G/3.30G [02:43<03:24, 9.01Mbytes/s]
 44%|████▍     | 1.47G/3.30G [02:43<03:26, 8.91Mbytes/s]
 44%|████▍     | 1.47G/3.30G [02:43<03:40, 8.33Mbytes/s]
 44%|████▍     | 1.47G/3.30G [02:43<03:20, 9.15Mbytes/s]
 45%|████▍     | 1.47G/3.30G [02:43<03:02, 10.0Mbytes/s]
 45%|████▍     | 1.47G/3.30G [02:43<03:15, 9.38Mbytes/s]
 45%|████▍     | 1.47G/3.30G [02:44<03:21, 9.08Mbytes/s]
 45%|████▍     | 1.47G/3.30G [02:44<03:14, 9.40Mbytes/s]
 45%|████▍     | 1.48G/3.30G [02:44<03:21, 9.09Mbytes/s]
 45%|████▍     | 1.48G/3.30G [02:44<03:13, 9.46Mbytes/s]
 45%|████▍     | 1.48G/3.30G [02:44<03:19, 9.18Mbytes/s]
 45%|████▍     | 1.48G/3.30G [02:44<03:36, 8.42Mbytes/s]
 45%|████▍     | 1.48G/3.30G [02:44<03:20, 9.10Mbytes/s]
 45%|████▍     | 1.48G/3.30G [02:44<03:04, 9.88Mbytes/s]
 45%|████▍     | 1.48G/3.30G [02:44<03:18, 9.16Mbytes/s]
 45%|████▍     | 1.48G/3.30G [02:45<03:21, 9.03Mbytes/s]
 45%|████▍     | 1.48G/3.30G [02:45<03:38, 8.34Mbytes/s]
 45%|████▍     | 1.49G/3.30G [02:45<03:21, 9.01Mbytes/s]
 45%|████▌     | 1.49G/3.30G [02:45<03:04, 9.83Mbytes/s]
 45%|████▌     | 1.49G/3.30G [02:45<03:14, 9.32Mbytes/s]
 45%|████▌     | 1.49G/3.30G [02:45<03:20, 9.04Mbytes/s]
 45%|████▌     | 1.49G/3.30G [02:45<03:34, 8.47Mbytes/s]
 45%|████▌     | 1.49G/3.30G [02:46<03:17, 9.17Mbytes/s]
 45%|████▌     | 1.49G/3.30G [02:46<03:05, 9.75Mbytes/s]
 45%|████▌     | 1.49G/3.30G [02:46<03:14, 9.29Mbytes/s]
 45%|████▌     | 1.50G/3.30G [02:46<03:15, 9.25Mbytes/s]
 45%|████▌     | 1.50G/3.30G [02:46<03:29, 8.61Mbytes/s]
 45%|████▌     | 1.50G/3.30G [02:46<02:57, 10.2Mbytes/s]
 45%|████▌     | 1.50G/3.30G [02:46<03:12, 9.37Mbytes/s]
 45%|████▌     | 1.50G/3.30G [02:46<04:03, 7.42Mbytes/s]
 45%|████▌     | 1.50G/3.30G [02:47<04:44, 6.33Mbytes/s]
 45%|████▌     | 1.50G/3.30G [02:47<04:11, 7.17Mbytes/s]
 46%|████▌     | 1.50G/3.30G [02:47<03:58, 7.54Mbytes/s]
 46%|████▌     | 1.51G/3.30G [02:47<03:08, 9.56Mbytes/s]
 46%|████▌     | 1.51G/3.30G [02:47<03:34, 8.38Mbytes/s]
 46%|████▌     | 1.51G/3.30G [02:48<03:44, 8.00Mbytes/s]
 46%|████▌     | 1.51G/3.30G [02:48<03:00, 9.95Mbytes/s]
 46%|████▌     | 1.51G/3.30G [02:48<03:28, 8.60Mbytes/s]
 46%|████▌     | 1.51G/3.30G [02:48<03:35, 8.30Mbytes/s]
 46%|████▌     | 1.51G/3.30G [02:48<02:54, 10.3Mbytes/s]
 46%|████▌     | 1.52G/3.30G [02:48<03:23, 8.77Mbytes/s]
 46%|████▌     | 1.52G/3.30G [02:48<03:35, 8.29Mbytes/s]
 46%|████▌     | 1.52G/3.30G [02:48<02:51, 10.4Mbytes/s]
 46%|████▌     | 1.52G/3.30G [02:49<03:20, 8.93Mbytes/s]
 46%|████▌     | 1.52G/3.30G [02:49<03:33, 8.35Mbytes/s]
 46%|████▌     | 1.52G/3.30G [02:49<02:49, 10.5Mbytes/s]
 46%|████▌     | 1.52G/3.30G [02:49<03:17, 9.00Mbytes/s]
 46%|████▌     | 1.52G/3.30G [02:49<03:32, 8.37Mbytes/s]
 46%|████▌     | 1.53G/3.30G [02:49<03:32, 8.38Mbytes/s]
 46%|████▌     | 1.53G/3.30G [02:50<02:50, 10.4Mbytes/s]
 46%|████▋     | 1.53G/3.30G [02:50<03:16, 9.03Mbytes/s]
 46%|████▋     | 1.53G/3.30G [02:50<03:29, 8.46Mbytes/s]
 46%|████▋     | 1.53G/3.30G [02:50<02:49, 10.5Mbytes/s]
 46%|████▋     | 1.53G/3.30G [02:50<03:17, 8.98Mbytes/s]
 46%|████▋     | 1.53G/3.30G [02:50<03:30, 8.40Mbytes/s]
 46%|████▋     | 1.54G/3.30G [02:50<03:28, 8.49Mbytes/s]
 47%|████▋     | 1.54G/3.30G [02:51<02:51, 10.3Mbytes/s]
 47%|████▋     | 1.54G/3.30G [02:51<03:15, 9.03Mbytes/s]
 47%|████▋     | 1.54G/3.30G [02:51<03:32, 8.32Mbytes/s]
 47%|████▋     | 1.54G/3.30G [02:51<02:48, 10.5Mbytes/s]
 47%|████▋     | 1.54G/3.30G [02:51<03:12, 9.14Mbytes/s]
 47%|████▋     | 1.54G/3.30G [02:51<03:28, 8.43Mbytes/s]
 47%|████▋     | 1.55G/3.30G [02:51<02:49, 10.4Mbytes/s]
 47%|████▋     | 1.55G/3.30G [02:52<03:12, 9.12Mbytes/s]
 47%|████▋     | 1.55G/3.30G [02:52<03:30, 8.35Mbytes/s]
 47%|████▋     | 1.55G/3.30G [02:52<02:48, 10.4Mbytes/s]
 47%|████▋     | 1.55G/3.30G [02:52<03:14, 9.03Mbytes/s]
 47%|████▋     | 1.55G/3.30G [02:52<03:30, 8.35Mbytes/s]
 47%|████▋     | 1.55G/3.30G [02:52<02:52, 10.2Mbytes/s]
 47%|████▋     | 1.55G/3.30G [02:52<03:16, 8.92Mbytes/s]
 47%|████▋     | 1.56G/3.30G [02:53<03:33, 8.21Mbytes/s]
 47%|████▋     | 1.56G/3.30G [02:53<02:51, 10.2Mbytes/s]
 47%|████▋     | 1.56G/3.30G [02:53<03:15, 8.92Mbytes/s]
 47%|████▋     | 1.56G/3.30G [02:53<03:31, 8.25Mbytes/s]
 47%|████▋     | 1.56G/3.30G [02:53<02:48, 10.3Mbytes/s]
 47%|████▋     | 1.56G/3.30G [02:53<03:13, 9.03Mbytes/s]
 47%|████▋     | 1.56G/3.30G [02:53<03:29, 8.33Mbytes/s]
 47%|████▋     | 1.56G/3.30G [02:54<02:50, 10.2Mbytes/s]
 47%|████▋     | 1.57G/3.30G [02:54<03:13, 8.99Mbytes/s]
 47%|████▋     | 1.57G/3.30G [02:54<03:27, 8.38Mbytes/s]
 47%|████▋     | 1.57G/3.30G [02:54<02:49, 10.2Mbytes/s]
 48%|████▊     | 1.57G/3.30G [02:54<03:11, 9.06Mbytes/s]
 48%|████▊     | 1.57G/3.30G [02:54<03:27, 8.34Mbytes/s]
 48%|████▊     | 1.57G/3.30G [02:54<02:48, 10.3Mbytes/s]
 48%|████▊     | 1.57G/3.30G [02:55<03:11, 9.04Mbytes/s]
 48%|████▊     | 1.57G/3.30G [02:55<03:26, 8.36Mbytes/s]
 48%|████▊     | 1.58G/3.30G [02:55<02:50, 10.2Mbytes/s]
 48%|████▊     | 1.58G/3.30G [02:55<03:09, 9.09Mbytes/s]
 48%|████▊     | 1.58G/3.30G [02:55<03:23, 8.49Mbytes/s]
 48%|████▊     | 1.58G/3.30G [02:55<02:51, 10.1Mbytes/s]
 48%|████▊     | 1.58G/3.30G [02:55<03:11, 8.99Mbytes/s]
 48%|████▊     | 1.58G/3.30G [02:56<03:22, 8.50Mbytes/s]
 48%|████▊     | 1.58G/3.30G [02:56<02:53, 9.89Mbytes/s]
 48%|████▊     | 1.59G/3.30G [02:56<03:05, 9.27Mbytes/s]
 48%|████▊     | 1.59G/3.30G [02:56<03:23, 8.45Mbytes/s]
 48%|████▊     | 1.59G/3.30G [02:56<02:51, 10.0Mbytes/s]
 48%|████▊     | 1.59G/3.30G [02:56<03:11, 8.97Mbytes/s]
 48%|████▊     | 1.59G/3.30G [02:56<03:22, 8.46Mbytes/s]
 48%|████▊     | 1.59G/3.30G [02:57<02:52, 9.94Mbytes/s]
 48%|████▊     | 1.59G/3.30G [02:57<03:12, 8.91Mbytes/s]
 48%|████▊     | 1.59G/3.30G [02:57<03:22, 8.43Mbytes/s]
 48%|████▊     | 1.60G/3.30G [02:57<02:51, 9.98Mbytes/s]
 48%|████▊     | 1.60G/3.30G [02:57<03:10, 8.95Mbytes/s]
 48%|████▊     | 1.60G/3.30G [02:57<03:20, 8.52Mbytes/s]
 48%|████▊     | 1.60G/3.30G [02:57<02:49, 10.1Mbytes/s]
 48%|████▊     | 1.60G/3.30G [02:58<03:08, 9.04Mbytes/s]
 48%|████▊     | 1.60G/3.30G [02:58<03:43, 7.61Mbytes/s]
 49%|████▊     | 1.60G/3.30G [02:58<04:15, 6.66Mbytes/s]
 49%|████▊     | 1.61G/3.30G [02:58<03:42, 7.65Mbytes/s]
 49%|████▊     | 1.61G/3.30G [02:58<03:27, 8.17Mbytes/s]
 49%|████▊     | 1.61G/3.30G [02:59<03:19, 8.52Mbytes/s]
 49%|████▉     | 1.61G/3.30G [02:59<03:13, 8.77Mbytes/s]
 49%|████▉     | 1.61G/3.30G [02:59<03:09, 8.93Mbytes/s]
 49%|████▉     | 1.62G/3.30G [02:59<03:06, 9.05Mbytes/s]
 49%|████▉     | 1.62G/3.30G [03:00<03:04, 9.16Mbytes/s]
 49%|████▉     | 1.62G/3.30G [03:00<03:02, 9.23Mbytes/s]
 49%|████▉     | 1.62G/3.30G [03:00<03:00, 9.32Mbytes/s]
 49%|████▉     | 1.62G/3.30G [03:00<02:59, 9.34Mbytes/s]
 49%|████▉     | 1.63G/3.30G [03:00<02:59, 9.38Mbytes/s]
 49%|████▉     | 1.63G/3.30G [03:01<02:59, 9.34Mbytes/s]
 49%|████▉     | 1.63G/3.30G [03:01<02:32, 11.0Mbytes/s]
 49%|████▉     | 1.63G/3.30G [03:01<02:50, 9.83Mbytes/s]
 49%|████▉     | 1.63G/3.30G [03:01<03:07, 8.93Mbytes/s]
 49%|████▉     | 1.63G/3.30G [03:01<03:08, 8.88Mbytes/s]
 49%|████▉     | 1.64G/3.30G [03:01<02:32, 10.9Mbytes/s]
 50%|████▉     | 1.64G/3.30G [03:01<02:53, 9.61Mbytes/s]
 50%|████▉     | 1.64G/3.30G [03:02<03:14, 8.57Mbytes/s]
 50%|████▉     | 1.64G/3.30G [03:02<03:11, 8.71Mbytes/s]
 50%|████▉     | 1.64G/3.30G [03:02<03:05, 8.96Mbytes/s]
 50%|████▉     | 1.64G/3.30G [03:02<03:02, 9.09Mbytes/s]
 50%|████▉     | 1.65G/3.30G [03:03<03:01, 9.13Mbytes/s]
 50%|████▉     | 1.65G/3.30G [03:03<03:18, 8.37Mbytes/s]
 50%|████▉     | 1.65G/3.30G [03:03<03:18, 8.34Mbytes/s]
 50%|████▉     | 1.65G/3.30G [03:03<03:11, 8.65Mbytes/s]
 50%|█████     | 1.65G/3.30G [03:03<03:06, 8.87Mbytes/s]
 50%|█████     | 1.65G/3.30G [03:04<03:03, 8.98Mbytes/s]
 50%|█████     | 1.66G/3.30G [03:04<03:01, 9.08Mbytes/s]
 50%|█████     | 1.66G/3.30G [03:04<02:59, 9.17Mbytes/s]
 50%|█████     | 1.66G/3.30G [03:04<02:59, 9.16Mbytes/s]
 50%|█████     | 1.66G/3.30G [03:04<02:58, 9.18Mbytes/s]
 50%|█████     | 1.66G/3.30G [03:05<02:58, 9.20Mbytes/s]
 50%|█████     | 1.67G/3.30G [03:05<02:58, 9.20Mbytes/s]
 50%|█████     | 1.67G/3.30G [03:05<03:08, 8.69Mbytes/s]
 51%|█████     | 1.67G/3.30G [03:05<03:33, 7.64Mbytes/s]
 51%|█████     | 1.67G/3.30G [03:06<03:23, 8.03Mbytes/s]
 51%|█████     | 1.67G/3.30G [03:06<03:16, 8.32Mbytes/s]
 51%|█████     | 1.68G/3.30G [03:06<03:11, 8.51Mbytes/s]
 51%|█████     | 1.68G/3.30G [03:06<03:07, 8.68Mbytes/s]
 51%|█████     | 1.68G/3.30G [03:06<03:02, 8.88Mbytes/s]
 51%|█████     | 1.68G/3.30G [03:07<03:02, 8.92Mbytes/s]
 51%|█████     | 1.68G/3.30G [03:07<03:00, 8.98Mbytes/s]
 51%|█████     | 1.68G/3.30G [03:07<03:00, 8.99Mbytes/s]
 51%|█████     | 1.69G/3.30G [03:07<03:00, 8.98Mbytes/s]
 51%|█████     | 1.69G/3.30G [03:07<02:59, 8.99Mbytes/s]
 51%|█████     | 1.69G/3.30G [03:08<02:59, 8.98Mbytes/s]
 51%|█████     | 1.69G/3.30G [03:08<02:58, 9.01Mbytes/s]
 51%|█████▏    | 1.69G/3.30G [03:08<02:58, 9.01Mbytes/s]
 51%|█████▏    | 1.70G/3.30G [03:08<02:57, 9.06Mbytes/s]
 51%|█████▏    | 1.70G/3.30G [03:09<02:57, 9.02Mbytes/s]
 51%|█████▏    | 1.70G/3.30G [03:09<02:58, 9.00Mbytes/s]
 52%|█████▏    | 1.70G/3.30G [03:09<02:56, 9.09Mbytes/s]
 52%|█████▏    | 1.70G/3.30G [03:09<02:54, 9.17Mbytes/s]
 52%|█████▏    | 1.71G/3.30G [03:09<02:54, 9.18Mbytes/s]
 52%|█████▏    | 1.71G/3.30G [03:10<02:53, 9.20Mbytes/s]
 52%|█████▏    | 1.71G/3.30G [03:10<02:53, 9.21Mbytes/s]
 52%|█████▏    | 1.71G/3.30G [03:10<02:53, 9.17Mbytes/s]
 52%|█████▏    | 1.71G/3.30G [03:10<02:53, 9.17Mbytes/s]
 52%|█████▏    | 1.72G/3.30G [03:10<02:53, 9.17Mbytes/s]
 52%|█████▏    | 1.72G/3.30G [03:11<02:52, 9.22Mbytes/s]
 52%|█████▏    | 1.72G/3.30G [03:11<02:51, 9.22Mbytes/s]
 52%|█████▏    | 1.72G/3.30G [03:11<02:51, 9.21Mbytes/s]
 52%|█████▏    | 1.72G/3.30G [03:11<02:51, 9.19Mbytes/s]
 52%|█████▏    | 1.73G/3.30G [03:12<02:52, 9.17Mbytes/s]
 52%|█████▏    | 1.73G/3.30G [03:12<02:52, 9.14Mbytes/s]
 52%|█████▏    | 1.73G/3.30G [03:12<02:52, 9.13Mbytes/s]
 52%|█████▏    | 1.73G/3.30G [03:12<02:51, 9.15Mbytes/s]
 52%|█████▏    | 1.73G/3.30G [03:12<02:58, 8.78Mbytes/s]
 53%|█████▎    | 1.74G/3.30G [03:13<03:09, 8.27Mbytes/s]
 53%|█████▎    | 1.74G/3.30G [03:13<03:32, 7.37Mbytes/s]
 53%|█████▎    | 1.74G/3.30G [03:13<03:19, 7.86Mbytes/s]
 53%|█████▎    | 1.74G/3.30G [03:13<03:10, 8.20Mbytes/s]
 53%|█████▎    | 1.74G/3.30G [03:13<03:03, 8.52Mbytes/s]
 53%|█████▎    | 1.74G/3.30G [03:14<02:58, 8.76Mbytes/s]
 53%|█████▎    | 1.75G/3.30G [03:14<02:55, 8.86Mbytes/s]
 53%|█████▎    | 1.75G/3.30G [03:14<02:53, 8.95Mbytes/s]
 53%|█████▎    | 1.75G/3.30G [03:14<02:50, 9.09Mbytes/s]
 53%|█████▎    | 1.75G/3.30G [03:15<02:49, 9.18Mbytes/s]
 53%|█████▎    | 1.75G/3.30G [03:15<02:47, 9.26Mbytes/s]
 53%|█████▎    | 1.76G/3.30G [03:15<02:47, 9.24Mbytes/s]
 53%|█████▎    | 1.76G/3.30G [03:15<02:48, 9.15Mbytes/s]
 53%|█████▎    | 1.76G/3.30G [03:15<02:49, 9.14Mbytes/s]
 53%|█████▎    | 1.76G/3.30G [03:16<02:48, 9.13Mbytes/s]
 53%|█████▎    | 1.76G/3.30G [03:16<02:48, 9.15Mbytes/s]
 53%|█████▎    | 1.77G/3.30G [03:16<02:48, 9.13Mbytes/s]
 53%|█████▎    | 1.77G/3.30G [03:16<02:48, 9.13Mbytes/s]
 54%|█████▎    | 1.77G/3.30G [03:16<02:48, 9.11Mbytes/s]
 54%|█████▎    | 1.77G/3.30G [03:17<02:48, 9.12Mbytes/s]
 54%|█████▎    | 1.77G/3.30G [03:17<02:48, 9.11Mbytes/s]
 54%|█████▎    | 1.78G/3.30G [03:17<02:48, 9.08Mbytes/s]
 54%|█████▍    | 1.78G/3.30G [03:17<02:46, 9.15Mbytes/s]
 54%|█████▍    | 1.78G/3.30G [03:18<02:46, 9.18Mbytes/s]
 54%|█████▍    | 1.78G/3.30G [03:18<02:45, 9.19Mbytes/s]
 54%|█████▍    | 1.78G/3.30G [03:18<02:44, 9.25Mbytes/s]
 54%|█████▍    | 1.79G/3.30G [03:18<02:44, 9.24Mbytes/s]
 54%|█████▍    | 1.79G/3.30G [03:18<02:45, 9.19Mbytes/s]
 54%|█████▍    | 1.79G/3.30G [03:19<02:50, 8.88Mbytes/s]
 54%|█████▍    | 1.79G/3.30G [03:19<02:46, 9.09Mbytes/s]
 54%|█████▍    | 1.79G/3.30G [03:19<02:45, 9.13Mbytes/s]
 54%|█████▍    | 1.80G/3.30G [03:19<02:45, 9.13Mbytes/s]
 54%|█████▍    | 1.80G/3.30G [03:19<02:44, 9.16Mbytes/s]
 54%|█████▍    | 1.80G/3.30G [03:20<02:43, 9.23Mbytes/s]
 54%|█████▍    | 1.80G/3.30G [03:20<02:43, 9.18Mbytes/s]
 55%|█████▍    | 1.80G/3.30G [03:20<02:52, 8.70Mbytes/s]
 55%|█████▍    | 1.80G/3.30G [03:20<03:16, 7.62Mbytes/s]
 55%|█████▍    | 1.81G/3.30G [03:21<03:08, 7.96Mbytes/s]
 55%|█████▍    | 1.81G/3.30G [03:21<03:00, 8.27Mbytes/s]
 55%|█████▍    | 1.81G/3.30G [03:21<02:55, 8.51Mbytes/s]
 55%|█████▍    | 1.81G/3.30G [03:21<02:58, 8.36Mbytes/s]
 55%|█████▍    | 1.81G/3.30G [03:21<02:59, 8.32Mbytes/s]
 55%|█████▍    | 1.82G/3.30G [03:22<02:54, 8.55Mbytes/s]
 55%|█████▍    | 1.82G/3.30G [03:22<02:51, 8.66Mbytes/s]
 55%|█████▌    | 1.82G/3.30G [03:22<02:48, 8.79Mbytes/s]
 55%|█████▌    | 1.82G/3.30G [03:22<02:45, 8.94Mbytes/s]
 55%|█████▌    | 1.82G/3.30G [03:23<02:43, 9.03Mbytes/s]
 55%|█████▌    | 1.83G/3.30G [03:23<02:42, 9.09Mbytes/s]
 55%|█████▌    | 1.83G/3.30G [03:23<02:41, 9.14Mbytes/s]
 55%|█████▌    | 1.83G/3.30G [03:23<02:40, 9.18Mbytes/s]
 55%|█████▌    | 1.83G/3.30G [03:23<02:40, 9.16Mbytes/s]
 55%|█████▌    | 1.83G/3.30G [03:24<02:39, 9.25Mbytes/s]
 56%|█████▌    | 1.84G/3.30G [03:24<02:38, 9.25Mbytes/s]
 56%|█████▌    | 1.84G/3.30G [03:24<02:38, 9.27Mbytes/s]
 56%|█████▌    | 1.84G/3.30G [03:24<02:38, 9.25Mbytes/s]
 56%|█████▌    | 1.84G/3.30G [03:24<02:37, 9.28Mbytes/s]
 56%|█████▌    | 1.84G/3.30G [03:25<02:35, 9.41Mbytes/s]
 56%|█████▌    | 1.85G/3.30G [03:25<02:34, 9.47Mbytes/s]
 56%|█████▌    | 1.85G/3.30G [03:25<02:33, 9.51Mbytes/s]
 56%|█████▌    | 1.85G/3.30G [03:25<02:32, 9.56Mbytes/s]
 56%|█████▌    | 1.85G/3.30G [03:26<02:31, 9.59Mbytes/s]
 56%|█████▌    | 1.85G/3.30G [03:26<02:32, 9.54Mbytes/s]
 56%|█████▌    | 1.86G/3.30G [03:26<02:32, 9.49Mbytes/s]
 56%|█████▌    | 1.86G/3.30G [03:26<02:32, 9.49Mbytes/s]
 56%|█████▋    | 1.86G/3.30G [03:26<02:33, 9.40Mbytes/s]
 56%|█████▋    | 1.86G/3.30G [03:27<02:33, 9.41Mbytes/s]
 56%|█████▋    | 1.86G/3.30G [03:27<02:34, 9.35Mbytes/s]
 56%|█████▋    | 1.87G/3.30G [03:27<02:33, 9.35Mbytes/s]
 57%|█████▋    | 1.87G/3.30G [03:27<02:34, 9.31Mbytes/s]
 57%|█████▋    | 1.87G/3.30G [03:27<02:34, 9.32Mbytes/s]
 57%|█████▋    | 1.87G/3.30G [03:28<02:32, 9.37Mbytes/s]
 57%|█████▋    | 1.87G/3.30G [03:28<02:32, 9.38Mbytes/s]
 57%|█████▋    | 1.88G/3.30G [03:28<02:31, 9.41Mbytes/s]
 57%|█████▋    | 1.88G/3.30G [03:28<02:31, 9.39Mbytes/s]
 57%|█████▋    | 1.88G/3.30G [03:29<02:30, 9.48Mbytes/s]
 57%|█████▋    | 1.88G/3.30G [03:29<02:29, 9.49Mbytes/s]
 57%|█████▋    | 1.88G/3.30G [03:29<02:28, 9.54Mbytes/s]
 57%|█████▋    | 1.89G/3.30G [03:29<02:28, 9.56Mbytes/s]
 57%|█████▋    | 1.89G/3.30G [03:29<02:28, 9.56Mbytes/s]
 57%|█████▋    | 1.89G/3.30G [03:30<02:28, 9.54Mbytes/s]
 57%|█████▋    | 1.89G/3.30G [03:30<02:27, 9.55Mbytes/s]
 57%|█████▋    | 1.89G/3.30G [03:30<02:28, 9.52Mbytes/s]
 57%|█████▋    | 1.90G/3.30G [03:30<02:27, 9.54Mbytes/s]
 57%|█████▋    | 1.90G/3.30G [03:30<02:27, 9.56Mbytes/s]
 57%|█████▋    | 1.90G/3.30G [03:31<02:28, 9.49Mbytes/s]
 58%|█████▊    | 1.90G/3.30G [03:31<02:28, 9.42Mbytes/s]
 58%|█████▊    | 1.90G/3.30G [03:31<02:29, 9.37Mbytes/s]
 58%|█████▊    | 1.91G/3.30G [03:31<02:27, 9.47Mbytes/s]
 58%|█████▊    | 1.91G/3.30G [03:32<02:28, 9.42Mbytes/s]
 58%|█████▊    | 1.91G/3.30G [03:32<02:28, 9.40Mbytes/s]
 58%|█████▊    | 1.91G/3.30G [03:32<02:28, 9.39Mbytes/s]
 58%|█████▊    | 1.91G/3.30G [03:32<02:34, 8.97Mbytes/s]
 58%|█████▊    | 1.92G/3.30G [03:32<02:37, 8.81Mbytes/s]
 58%|█████▊    | 1.92G/3.30G [03:33<02:35, 8.93Mbytes/s]
 58%|█████▊    | 1.92G/3.30G [03:33<02:32, 9.08Mbytes/s]
 58%|█████▊    | 1.92G/3.30G [03:33<02:38, 8.71Mbytes/s]
 58%|█████▊    | 1.92G/3.30G [03:33<03:00, 7.66Mbytes/s]
 58%|█████▊    | 1.92G/3.30G [03:33<02:49, 8.13Mbytes/s]
 58%|█████▊    | 1.93G/3.30G [03:34<02:40, 8.56Mbytes/s]
 58%|█████▊    | 1.93G/3.30G [03:34<02:35, 8.84Mbytes/s]
 58%|█████▊    | 1.93G/3.30G [03:34<02:32, 9.02Mbytes/s]
 58%|█████▊    | 1.93G/3.30G [03:34<02:29, 9.20Mbytes/s]
 59%|█████▊    | 1.93G/3.30G [03:35<02:26, 9.34Mbytes/s]
 59%|█████▊    | 1.94G/3.30G [03:35<02:26, 9.34Mbytes/s]
 59%|█████▊    | 1.94G/3.30G [03:35<02:25, 9.36Mbytes/s]
 59%|█████▊    | 1.94G/3.30G [03:35<02:26, 9.32Mbytes/s]
 59%|█████▉    | 1.94G/3.30G [03:35<02:26, 9.28Mbytes/s]
 59%|█████▉    | 1.94G/3.30G [03:36<02:27, 9.24Mbytes/s]
 59%|█████▉    | 1.95G/3.30G [03:36<02:26, 9.28Mbytes/s]
 59%|█████▉    | 1.95G/3.30G [03:36<02:26, 9.28Mbytes/s]
 59%|█████▉    | 1.95G/3.30G [03:36<02:25, 9.30Mbytes/s]
 59%|█████▉    | 1.95G/3.30G [03:36<02:25, 9.30Mbytes/s]
 59%|█████▉    | 1.95G/3.30G [03:37<02:25, 9.25Mbytes/s]
 59%|█████▉    | 1.96G/3.30G [03:37<02:26, 9.21Mbytes/s]
 59%|█████▉    | 1.96G/3.30G [03:37<02:25, 9.25Mbytes/s]
 59%|█████▉    | 1.96G/3.30G [03:37<02:25, 9.27Mbytes/s]
 59%|█████▉    | 1.96G/3.30G [03:38<02:24, 9.27Mbytes/s]
 59%|█████▉    | 1.96G/3.30G [03:38<02:25, 9.19Mbytes/s]
 60%|█████▉    | 1.97G/3.30G [03:38<02:26, 9.13Mbytes/s]
 60%|█████▉    | 1.97G/3.30G [03:38<02:26, 9.13Mbytes/s]
 60%|█████▉    | 1.97G/3.30G [03:38<02:26, 9.09Mbytes/s]
 60%|█████▉    | 1.97G/3.30G [03:39<02:26, 9.08Mbytes/s]
 60%|█████▉    | 1.97G/3.30G [03:39<02:27, 9.03Mbytes/s]
 60%|█████▉    | 1.98G/3.30G [03:39<02:25, 9.11Mbytes/s]
 60%|█████▉    | 1.98G/3.30G [03:39<02:25, 9.11Mbytes/s]
 60%|█████▉    | 1.98G/3.30G [03:39<02:25, 9.11Mbytes/s]
 60%|█████▉    | 1.98G/3.30G [03:40<02:25, 9.11Mbytes/s]
 60%|██████    | 1.98G/3.30G [03:40<02:25, 9.08Mbytes/s]
 60%|██████    | 1.99G/3.30G [03:40<02:25, 9.04Mbytes/s]
 60%|██████    | 1.99G/3.30G [03:40<02:25, 9.06Mbytes/s]
 60%|██████    | 1.99G/3.30G [03:41<02:25, 9.04Mbytes/s]
 60%|██████    | 1.99G/3.30G [03:41<02:25, 9.04Mbytes/s]
 60%|██████    | 1.99G/3.30G [03:41<02:25, 9.01Mbytes/s]
 60%|██████    | 2.00G/3.30G [03:41<02:25, 8.99Mbytes/s]
 60%|██████    | 2.00G/3.30G [03:41<02:25, 8.97Mbytes/s]
 60%|██████    | 2.00G/3.30G [03:42<02:26, 8.92Mbytes/s]
 61%|██████    | 2.00G/3.30G [03:42<02:25, 8.97Mbytes/s]
 61%|██████    | 2.00G/3.30G [03:42<02:24, 9.00Mbytes/s]
 61%|██████    | 2.00G/3.30G [03:42<02:02, 10.6Mbytes/s]
 61%|██████    | 2.01G/3.30G [03:42<02:17, 9.46Mbytes/s]
 61%|██████    | 2.01G/3.30G [03:42<02:28, 8.71Mbytes/s]
 61%|██████    | 2.01G/3.30G [03:43<02:30, 8.61Mbytes/s]
 61%|██████    | 2.01G/3.30G [03:43<02:03, 10.5Mbytes/s]
 61%|██████    | 2.01G/3.30G [03:43<02:20, 9.21Mbytes/s]
 61%|██████    | 2.01G/3.30G [03:43<02:34, 8.37Mbytes/s]
 61%|██████    | 2.01G/3.30G [03:43<02:34, 8.32Mbytes/s]
 61%|██████    | 2.02G/3.30G [03:44<02:30, 8.55Mbytes/s]
 61%|██████    | 2.02G/3.30G [03:44<02:27, 8.73Mbytes/s]
 61%|██████    | 2.02G/3.30G [03:44<02:25, 8.82Mbytes/s]
 61%|██████    | 2.02G/3.30G [03:44<02:23, 8.92Mbytes/s]
 61%|██████▏   | 2.02G/3.30G [03:44<02:23, 8.95Mbytes/s]
 61%|██████▏   | 2.03G/3.30G [03:45<02:22, 8.95Mbytes/s]
 61%|██████▏   | 2.03G/3.30G [03:45<02:21, 9.02Mbytes/s]
 61%|██████▏   | 2.03G/3.30G [03:45<02:20, 9.07Mbytes/s]
 61%|██████▏   | 2.03G/3.30G [03:45<02:20, 9.03Mbytes/s]
 62%|██████▏   | 2.03G/3.30G [03:45<02:20, 9.07Mbytes/s]
 62%|██████▏   | 2.04G/3.30G [03:46<02:20, 9.00Mbytes/s]
 62%|██████▏   | 2.04G/3.30G [03:46<02:20, 9.00Mbytes/s]
 62%|██████▏   | 2.04G/3.30G [03:46<02:20, 9.01Mbytes/s]
 62%|██████▏   | 2.04G/3.30G [03:46<02:12, 9.51Mbytes/s]
 62%|██████▏   | 2.04G/3.30G [03:46<02:20, 9.00Mbytes/s]
 62%|██████▏   | 2.04G/3.30G [03:46<02:11, 9.60Mbytes/s]
 62%|██████▏   | 2.04G/3.30G [03:47<02:19, 9.00Mbytes/s]
 62%|██████▏   | 2.05G/3.30G [03:47<02:30, 8.38Mbytes/s]
 62%|██████▏   | 2.05G/3.30G [03:47<02:19, 9.02Mbytes/s]
 62%|██████▏   | 2.05G/3.30G [03:47<02:24, 8.69Mbytes/s]
 62%|██████▏   | 2.05G/3.30G [03:47<02:14, 9.36Mbytes/s]
 62%|██████▏   | 2.05G/3.30G [03:47<02:21, 8.87Mbytes/s]
 62%|██████▏   | 2.05G/3.30G [03:47<02:12, 9.44Mbytes/s]
 62%|██████▏   | 2.05G/3.30G [03:47<02:21, 8.88Mbytes/s]
 62%|██████▏   | 2.05G/3.30G [03:48<02:55, 7.12Mbytes/s]
 62%|██████▏   | 2.05G/3.30G [03:48<02:53, 7.22Mbytes/s]
 62%|██████▏   | 2.06G/3.30G [03:48<02:38, 7.86Mbytes/s]
 62%|██████▏   | 2.06G/3.30G [03:48<02:33, 8.12Mbytes/s]
 62%|██████▏   | 2.06G/3.30G [03:49<02:36, 7.94Mbytes/s]
 62%|██████▏   | 2.06G/3.30G [03:49<02:55, 7.07Mbytes/s]
 62%|██████▏   | 2.06G/3.30G [03:49<02:46, 7.47Mbytes/s]
 62%|██████▏   | 2.06G/3.30G [03:49<02:37, 7.88Mbytes/s]
 63%|██████▎   | 2.07G/3.30G [03:49<02:32, 8.13Mbytes/s]
 63%|██████▎   | 2.07G/3.30G [03:50<02:28, 8.32Mbytes/s]
 63%|██████▎   | 2.07G/3.30G [03:50<02:26, 8.44Mbytes/s]
 63%|██████▎   | 2.07G/3.30G [03:50<02:24, 8.50Mbytes/s]
 63%|██████▎   | 2.07G/3.30G [03:50<02:23, 8.58Mbytes/s]
 63%|██████▎   | 2.08G/3.30G [03:50<02:22, 8.62Mbytes/s]
 63%|██████▎   | 2.08G/3.30G [03:51<02:23, 8.53Mbytes/s]
 63%|██████▎   | 2.08G/3.30G [03:51<02:24, 8.49Mbytes/s]
 63%|██████▎   | 2.08G/3.30G [03:51<02:23, 8.54Mbytes/s]
 63%|██████▎   | 2.08G/3.30G [03:51<02:22, 8.56Mbytes/s]
 63%|██████▎   | 2.09G/3.30G [03:52<02:22, 8.54Mbytes/s]
 63%|██████▎   | 2.09G/3.30G [03:52<02:21, 8.62Mbytes/s]
 63%|██████▎   | 2.09G/3.30G [03:52<02:20, 8.65Mbytes/s]
 63%|██████▎   | 2.09G/3.30G [03:52<02:20, 8.63Mbytes/s]
 63%|██████▎   | 2.09G/3.30G [03:52<02:18, 8.72Mbytes/s]
 63%|██████▎   | 2.09G/3.30G [03:53<02:18, 8.74Mbytes/s]
 63%|██████▎   | 2.10G/3.30G [03:53<02:16, 8.87Mbytes/s]
 64%|██████▎   | 2.10G/3.30G [03:53<02:16, 8.87Mbytes/s]
 64%|██████▎   | 2.10G/3.30G [03:53<02:16, 8.81Mbytes/s]
 64%|██████▎   | 2.10G/3.30G [03:53<02:16, 8.80Mbytes/s]
 64%|██████▎   | 2.10G/3.30G [03:54<02:16, 8.76Mbytes/s]
 64%|██████▎   | 2.11G/3.30G [03:54<02:32, 7.86Mbytes/s]
 64%|██████▍   | 2.11G/3.30G [03:54<02:30, 7.93Mbytes/s]
 64%|██████▍   | 2.11G/3.30G [03:54<02:26, 8.18Mbytes/s]
 64%|██████▍   | 2.11G/3.30G [03:55<02:22, 8.36Mbytes/s]
 64%|██████▍   | 2.11G/3.30G [03:55<02:20, 8.51Mbytes/s]
 64%|██████▍   | 2.11G/3.30G [03:55<02:18, 8.61Mbytes/s]
 64%|██████▍   | 2.12G/3.30G [03:55<02:16, 8.72Mbytes/s]
 64%|██████▍   | 2.12G/3.30G [03:55<02:13, 8.88Mbytes/s]
 64%|██████▍   | 2.12G/3.30G [03:56<02:11, 8.98Mbytes/s]
 64%|██████▍   | 2.12G/3.30G [03:56<02:10, 9.02Mbytes/s]
 64%|██████▍   | 2.12G/3.30G [03:56<02:11, 8.97Mbytes/s]
 64%|██████▍   | 2.13G/3.30G [03:56<02:10, 9.02Mbytes/s]
 64%|██████▍   | 2.13G/3.30G [03:56<02:11, 8.94Mbytes/s]
 64%|██████▍   | 2.13G/3.30G [03:57<02:11, 8.93Mbytes/s]
 65%|██████▍   | 2.13G/3.30G [03:57<02:10, 9.01Mbytes/s]
 65%|██████▍   | 2.13G/3.30G [03:57<02:10, 8.98Mbytes/s]
 65%|██████▍   | 2.14G/3.30G [03:57<02:11, 8.92Mbytes/s]
 65%|██████▍   | 2.14G/3.30G [03:58<02:10, 8.93Mbytes/s]
 65%|██████▍   | 2.14G/3.30G [03:58<02:10, 8.95Mbytes/s]
 65%|██████▍   | 2.14G/3.30G [03:58<02:09, 8.95Mbytes/s]
 65%|██████▍   | 2.14G/3.30G [03:58<02:09, 8.99Mbytes/s]
 65%|██████▍   | 2.15G/3.30G [03:58<02:09, 8.92Mbytes/s]
 65%|██████▍   | 2.15G/3.30G [03:59<02:09, 8.92Mbytes/s]
 65%|██████▌   | 2.15G/3.30G [03:59<02:09, 8.92Mbytes/s]
 65%|██████▌   | 2.15G/3.30G [03:59<02:09, 8.92Mbytes/s]
 65%|██████▌   | 2.15G/3.30G [03:59<02:09, 8.92Mbytes/s]
 65%|██████▌   | 2.15G/3.30G [03:59<02:07, 8.98Mbytes/s]
 65%|██████▌   | 2.16G/3.30G [04:00<02:06, 9.04Mbytes/s]
 65%|██████▌   | 2.16G/3.30G [04:00<02:06, 9.09Mbytes/s]
 65%|██████▌   | 2.16G/3.30G [04:00<02:05, 9.11Mbytes/s]
 65%|██████▌   | 2.16G/3.30G [04:00<02:06, 9.03Mbytes/s]
 66%|██████▌   | 2.16G/3.30G [04:01<02:07, 8.92Mbytes/s]
 66%|██████▌   | 2.17G/3.30G [04:01<02:10, 8.69Mbytes/s]
 66%|██████▌   | 2.17G/3.30G [04:01<02:15, 8.37Mbytes/s]
 66%|██████▌   | 2.17G/3.30G [04:01<02:18, 8.22Mbytes/s]
 66%|██████▌   | 2.17G/3.30G [04:01<02:30, 7.56Mbytes/s]
 66%|██████▌   | 2.17G/3.30G [04:02<02:28, 7.61Mbytes/s]
 66%|██████▌   | 2.17G/3.30G [04:02<02:22, 7.94Mbytes/s]
 66%|██████▌   | 2.18G/3.30G [04:02<02:22, 7.91Mbytes/s]
 66%|██████▌   | 2.18G/3.30G [04:02<02:39, 7.08Mbytes/s]
 66%|██████▌   | 2.18G/3.30G [04:03<02:27, 7.61Mbytes/s]
 66%|██████▌   | 2.18G/3.30G [04:03<02:20, 8.02Mbytes/s]
 66%|██████▌   | 2.18G/3.30G [04:03<02:13, 8.40Mbytes/s]
 66%|██████▌   | 2.19G/3.30G [04:03<02:09, 8.66Mbytes/s]
 66%|██████▌   | 2.19G/3.30G [04:03<02:06, 8.83Mbytes/s]
 66%|██████▋   | 2.19G/3.30G [04:04<02:03, 9.01Mbytes/s]
 66%|██████▋   | 2.19G/3.30G [04:04<02:01, 9.14Mbytes/s]
 66%|██████▋   | 2.19G/3.30G [04:04<02:00, 9.21Mbytes/s]
 66%|██████▋   | 2.20G/3.30G [04:04<01:59, 9.25Mbytes/s]
 66%|██████▋   | 2.20G/3.30G [04:04<01:40, 11.0Mbytes/s]
 67%|██████▋   | 2.20G/3.30G [04:05<01:54, 9.62Mbytes/s]
 67%|██████▋   | 2.20G/3.30G [04:05<02:03, 8.94Mbytes/s]
 67%|██████▋   | 2.20G/3.30G [04:05<02:05, 8.78Mbytes/s]
 67%|██████▋   | 2.20G/3.30G [04:05<01:42, 10.8Mbytes/s]
 67%|██████▋   | 2.20G/3.30G [04:05<02:00, 9.14Mbytes/s]
 67%|██████▋   | 2.21G/3.30G [04:05<02:06, 8.72Mbytes/s]
 67%|██████▋   | 2.21G/3.30G [04:05<02:07, 8.59Mbytes/s]
 67%|██████▋   | 2.21G/3.30G [04:06<01:48, 10.1Mbytes/s]
 67%|██████▋   | 2.21G/3.30G [04:06<02:02, 8.92Mbytes/s]
 67%|██████▋   | 2.21G/3.30G [04:06<02:05, 8.70Mbytes/s]
 67%|██████▋   | 2.21G/3.30G [04:06<01:47, 10.1Mbytes/s]
 67%|██████▋   | 2.21G/3.30G [04:06<02:02, 8.91Mbytes/s]
 67%|██████▋   | 2.22G/3.30G [04:06<02:05, 8.70Mbytes/s]
 67%|██████▋   | 2.22G/3.30G [04:06<01:44, 10.4Mbytes/s]
 67%|██████▋   | 2.22G/3.30G [04:07<02:01, 8.97Mbytes/s]
 67%|██████▋   | 2.22G/3.30G [04:07<02:05, 8.63Mbytes/s]
 67%|██████▋   | 2.22G/3.30G [04:07<01:46, 10.2Mbytes/s]
 67%|██████▋   | 2.22G/3.30G [04:07<02:01, 8.91Mbytes/s]
 67%|██████▋   | 2.22G/3.30G [04:07<02:03, 8.75Mbytes/s]
 67%|██████▋   | 2.22G/3.30G [04:07<01:45, 10.2Mbytes/s]
 67%|██████▋   | 2.23G/3.30G [04:07<02:00, 8.92Mbytes/s]
 67%|██████▋   | 2.23G/3.30G [04:08<02:04, 8.66Mbytes/s]
 67%|██████▋   | 2.23G/3.30G [04:08<01:43, 10.4Mbytes/s]
 67%|██████▋   | 2.23G/3.30G [04:08<02:08, 8.35Mbytes/s]
 68%|██████▊   | 2.23G/3.30G [04:08<02:29, 7.20Mbytes/s]
 68%|██████▊   | 2.23G/3.30G [04:08<02:28, 7.21Mbytes/s]
 68%|██████▊   | 2.23G/3.30G [04:09<02:14, 7.96Mbytes/s]
 68%|██████▊   | 2.24G/3.30G [04:09<02:06, 8.43Mbytes/s]
 68%|██████▊   | 2.24G/3.30G [04:09<02:02, 8.73Mbytes/s]
 68%|██████▊   | 2.24G/3.30G [04:09<02:00, 8.86Mbytes/s]
 68%|██████▊   | 2.24G/3.30G [04:09<02:00, 8.79Mbytes/s]
 68%|██████▊   | 2.24G/3.30G [04:10<01:58, 8.94Mbytes/s]
 68%|██████▊   | 2.25G/3.30G [04:10<01:57, 9.04Mbytes/s]
 68%|██████▊   | 2.25G/3.30G [04:10<01:55, 9.17Mbytes/s]
 68%|██████▊   | 2.25G/3.30G [04:10<01:53, 9.25Mbytes/s]
 68%|██████▊   | 2.25G/3.30G [04:10<01:53, 9.29Mbytes/s]
 68%|██████▊   | 2.25G/3.30G [04:11<01:51, 9.45Mbytes/s]
 68%|██████▊   | 2.26G/3.30G [04:11<01:50, 9.48Mbytes/s]
 68%|██████▊   | 2.26G/3.30G [04:11<01:50, 9.46Mbytes/s]
 68%|██████▊   | 2.26G/3.30G [04:11<01:50, 9.49Mbytes/s]
 68%|██████▊   | 2.26G/3.30G [04:11<01:38, 10.6Mbytes/s]
 68%|██████▊   | 2.26G/3.30G [04:12<01:51, 9.33Mbytes/s]
 69%|██████▊   | 2.26G/3.30G [04:12<01:51, 9.30Mbytes/s]
 69%|██████▊   | 2.27G/3.30G [04:12<01:39, 10.5Mbytes/s]
 69%|██████▊   | 2.27G/3.30G [04:12<01:51, 9.30Mbytes/s]
 69%|██████▊   | 2.27G/3.30G [04:12<01:54, 9.05Mbytes/s]
 69%|██████▊   | 2.27G/3.30G [04:12<01:41, 10.2Mbytes/s]
 69%|██████▊   | 2.27G/3.30G [04:13<02:04, 8.33Mbytes/s]
 69%|██████▉   | 2.27G/3.30G [04:13<02:13, 7.75Mbytes/s]
 69%|██████▉   | 2.27G/3.30G [04:13<02:03, 8.34Mbytes/s]
 69%|██████▉   | 2.28G/3.30G [04:13<01:58, 8.70Mbytes/s]
 69%|██████▉   | 2.28G/3.30G [04:13<01:54, 8.96Mbytes/s]
 69%|██████▉   | 2.28G/3.30G [04:14<01:50, 9.25Mbytes/s]
 69%|██████▉   | 2.28G/3.30G [04:14<01:48, 9.39Mbytes/s]
 69%|██████▉   | 2.28G/3.30G [04:14<01:48, 9.39Mbytes/s]
 69%|██████▉   | 2.29G/3.30G [04:14<01:48, 9.38Mbytes/s]
 69%|██████▉   | 2.29G/3.30G [04:14<01:47, 9.44Mbytes/s]
 69%|██████▉   | 2.29G/3.30G [04:15<01:46, 9.49Mbytes/s]
 69%|██████▉   | 2.29G/3.30G [04:15<01:46, 9.50Mbytes/s]
 69%|██████▉   | 2.29G/3.30G [04:15<01:30, 11.2Mbytes/s]
 69%|██████▉   | 2.30G/3.30G [04:15<01:41, 9.95Mbytes/s]
 70%|██████▉   | 2.30G/3.30G [04:15<01:50, 9.09Mbytes/s]
 70%|██████▉   | 2.30G/3.30G [04:15<01:49, 9.18Mbytes/s]
 70%|██████▉   | 2.30G/3.30G [04:16<01:46, 9.39Mbytes/s]
 70%|██████▉   | 2.30G/3.30G [04:16<01:28, 11.3Mbytes/s]
 70%|██████▉   | 2.30G/3.30G [04:16<01:41, 9.82Mbytes/s]
 70%|██████▉   | 2.31G/3.30G [04:16<01:50, 9.06Mbytes/s]
 70%|██████▉   | 2.31G/3.30G [04:16<01:51, 8.91Mbytes/s]
 70%|██████▉   | 2.31G/3.30G [04:16<01:52, 8.90Mbytes/s]
 70%|██████▉   | 2.31G/3.30G [04:17<02:13, 7.47Mbytes/s]
 70%|██████▉   | 2.31G/3.30G [04:17<02:02, 8.12Mbytes/s]
 70%|██████▉   | 2.31G/3.30G [04:17<01:52, 8.82Mbytes/s]
 70%|██████▉   | 2.31G/3.30G [04:17<01:53, 8.72Mbytes/s]
 70%|███████   | 2.31G/3.30G [04:17<01:48, 9.14Mbytes/s]
 70%|███████   | 2.31G/3.30G [04:17<01:51, 8.91Mbytes/s]
 70%|███████   | 2.32G/3.30G [04:17<01:44, 9.45Mbytes/s]
 70%|███████   | 2.32G/3.30G [04:17<01:48, 9.13Mbytes/s]
 70%|███████   | 2.32G/3.30G [04:18<01:40, 9.83Mbytes/s]
 70%|███████   | 2.32G/3.30G [04:18<01:44, 9.45Mbytes/s]
 70%|███████   | 2.32G/3.30G [04:18<01:43, 9.49Mbytes/s]
 70%|███████   | 2.32G/3.30G [04:18<01:45, 9.36Mbytes/s]
 70%|███████   | 2.32G/3.30G [04:18<01:46, 9.26Mbytes/s]
 70%|███████   | 2.32G/3.30G [04:18<01:44, 9.36Mbytes/s]
 70%|███████   | 2.32G/3.30G [04:18<01:46, 9.25Mbytes/s]
 70%|███████   | 2.32G/3.30G [04:18<01:44, 9.34Mbytes/s]
 70%|███████   | 2.33G/3.30G [04:18<01:45, 9.27Mbytes/s]
 70%|███████   | 2.33G/3.30G [04:18<01:43, 9.48Mbytes/s]
 70%|███████   | 2.33G/3.30G [04:19<01:45, 9.30Mbytes/s]
 70%|███████   | 2.33G/3.30G [04:19<01:41, 9.60Mbytes/s]
 70%|███████   | 2.33G/3.30G [04:19<01:43, 9.42Mbytes/s]
 71%|███████   | 2.33G/3.30G [04:19<01:40, 9.66Mbytes/s]
 71%|███████   | 2.33G/3.30G [04:19<01:41, 9.54Mbytes/s]
 71%|███████   | 2.33G/3.30G [04:19<01:40, 9.68Mbytes/s]
 71%|███████   | 2.33G/3.30G [04:19<01:41, 9.54Mbytes/s]
 71%|███████   | 2.33G/3.30G [04:19<01:41, 9.54Mbytes/s]
 71%|███████   | 2.34G/3.30G [04:19<01:42, 9.46Mbytes/s]
 71%|███████   | 2.34G/3.30G [04:20<01:40, 9.61Mbytes/s]
 71%|███████   | 2.34G/3.30G [04:20<01:41, 9.56Mbytes/s]
 71%|███████   | 2.34G/3.30G [04:20<01:39, 9.68Mbytes/s]
 71%|███████   | 2.34G/3.30G [04:20<01:40, 9.60Mbytes/s]
 71%|███████   | 2.34G/3.30G [04:20<01:40, 9.64Mbytes/s]
 71%|███████   | 2.34G/3.30G [04:20<01:39, 9.63Mbytes/s]
 71%|███████   | 2.34G/3.30G [04:20<01:40, 9.55Mbytes/s]
 71%|███████   | 2.34G/3.30G [04:20<01:40, 9.55Mbytes/s]
 71%|███████   | 2.34G/3.30G [04:20<01:40, 9.57Mbytes/s]
 71%|███████   | 2.35G/3.30G [04:20<01:39, 9.66Mbytes/s]
 71%|███████   | 2.35G/3.30G [04:21<01:39, 9.63Mbytes/s]
 71%|███████   | 2.35G/3.30G [04:21<01:38, 9.72Mbytes/s]
 71%|███████   | 2.35G/3.30G [04:21<01:38, 9.66Mbytes/s]
 71%|███████   | 2.35G/3.30G [04:21<01:38, 9.68Mbytes/s]
 71%|███████   | 2.35G/3.30G [04:21<01:38, 9.68Mbytes/s]
 71%|███████   | 2.35G/3.30G [04:21<01:38, 9.63Mbytes/s]
 71%|███████   | 2.35G/3.30G [04:21<01:39, 9.56Mbytes/s]
 71%|███████   | 2.35G/3.30G [04:21<01:39, 9.55Mbytes/s]
 71%|███████▏  | 2.36G/3.30G [04:21<01:39, 9.53Mbytes/s]
 71%|███████▏  | 2.36G/3.30G [04:22<01:39, 9.48Mbytes/s]
 71%|███████▏  | 2.36G/3.30G [04:22<01:38, 9.62Mbytes/s]
 71%|███████▏  | 2.36G/3.30G [04:22<01:39, 9.53Mbytes/s]
 71%|███████▏  | 2.36G/3.30G [04:22<01:37, 9.72Mbytes/s]
 71%|███████▏  | 2.36G/3.30G [04:22<01:37, 9.64Mbytes/s]
 71%|███████▏  | 2.36G/3.30G [04:22<01:37, 9.70Mbytes/s]
 71%|███████▏  | 2.36G/3.30G [04:22<01:36, 9.72Mbytes/s]
 72%|███████▏  | 2.36G/3.30G [04:22<01:37, 9.66Mbytes/s]
 72%|███████▏  | 2.36G/3.30G [04:22<01:36, 9.78Mbytes/s]
 72%|███████▏  | 2.37G/3.30G [04:23<01:38, 9.57Mbytes/s]
 72%|███████▏  | 2.37G/3.30G [04:23<01:36, 9.74Mbytes/s]
 72%|███████▏  | 2.37G/3.30G [04:23<01:39, 9.46Mbytes/s]
 72%|███████▏  | 2.37G/3.30G [04:23<01:33, 9.98Mbytes/s]
 72%|███████▏  | 2.37G/3.30G [04:23<01:43, 9.02Mbytes/s]
 72%|███████▏  | 2.37G/3.30G [04:23<01:23, 11.2Mbytes/s]
 72%|███████▏  | 2.37G/3.30G [04:23<01:39, 9.40Mbytes/s]
 72%|███████▏  | 2.37G/3.30G [04:23<01:58, 7.86Mbytes/s]
 72%|███████▏  | 2.38G/3.30G [04:24<01:54, 8.09Mbytes/s]
 72%|███████▏  | 2.38G/3.30G [04:24<01:48, 8.57Mbytes/s]
 72%|███████▏  | 2.38G/3.30G [04:24<01:43, 8.91Mbytes/s]
 72%|███████▏  | 2.38G/3.30G [04:24<01:40, 9.14Mbytes/s]
 72%|███████▏  | 2.38G/3.30G [04:25<01:38, 9.33Mbytes/s]
 72%|███████▏  | 2.39G/3.30G [04:25<01:37, 9.43Mbytes/s]
 72%|███████▏  | 2.39G/3.30G [04:25<01:36, 9.51Mbytes/s]
 72%|███████▏  | 2.39G/3.30G [04:25<01:35, 9.58Mbytes/s]
 72%|███████▏  | 2.39G/3.30G [04:25<01:35, 9.59Mbytes/s]
 72%|███████▏  | 2.39G/3.30G [04:26<01:34, 9.60Mbytes/s]
 73%|███████▎  | 2.40G/3.30G [04:26<01:34, 9.62Mbytes/s]
 73%|███████▎  | 2.40G/3.30G [04:26<01:34, 9.56Mbytes/s]
 73%|███████▎  | 2.40G/3.30G [04:26<01:34, 9.57Mbytes/s]
 73%|███████▎  | 2.40G/3.30G [04:26<01:34, 9.53Mbytes/s]
 73%|███████▎  | 2.40G/3.30G [04:27<01:35, 9.47Mbytes/s]
 73%|███████▎  | 2.41G/3.30G [04:27<01:34, 9.50Mbytes/s]
 73%|███████▎  | 2.41G/3.30G [04:27<01:34, 9.50Mbytes/s]
 73%|███████▎  | 2.41G/3.30G [04:27<01:34, 9.50Mbytes/s]
 73%|███████▎  | 2.41G/3.30G [04:28<01:33, 9.56Mbytes/s]
 73%|███████▎  | 2.41G/3.30G [04:28<01:34, 9.44Mbytes/s]
 73%|███████▎  | 2.42G/3.30G [04:28<01:33, 9.45Mbytes/s]
 73%|███████▎  | 2.42G/3.30G [04:28<01:32, 9.56Mbytes/s]
 73%|███████▎  | 2.42G/3.30G [04:28<01:32, 9.57Mbytes/s]
 73%|███████▎  | 2.42G/3.30G [04:29<01:31, 9.59Mbytes/s]
 73%|███████▎  | 2.42G/3.30G [04:29<01:31, 9.57Mbytes/s]
 73%|███████▎  | 2.43G/3.30G [04:29<01:32, 9.53Mbytes/s]
 73%|███████▎  | 2.43G/3.30G [04:29<01:31, 9.54Mbytes/s]
 74%|███████▎  | 2.43G/3.30G [04:29<01:31, 9.53Mbytes/s]
 74%|███████▎  | 2.43G/3.30G [04:30<01:31, 9.51Mbytes/s]
 74%|███████▎  | 2.43G/3.30G [04:30<01:31, 9.47Mbytes/s]
 74%|███████▎  | 2.44G/3.30G [04:30<01:31, 9.51Mbytes/s]
 74%|███████▍  | 2.44G/3.30G [04:30<01:31, 9.45Mbytes/s]
 74%|███████▍  | 2.44G/3.30G [04:31<01:31, 9.48Mbytes/s]
 74%|███████▍  | 2.44G/3.30G [04:31<01:30, 9.50Mbytes/s]
 74%|███████▍  | 2.44G/3.30G [04:31<01:30, 9.51Mbytes/s]
 74%|███████▍  | 2.45G/3.30G [04:31<01:30, 9.46Mbytes/s]
 74%|███████▍  | 2.45G/3.30G [04:31<01:31, 9.39Mbytes/s]
 74%|███████▍  | 2.45G/3.30G [04:32<01:30, 9.45Mbytes/s]
 74%|███████▍  | 2.45G/3.30G [04:32<01:29, 9.48Mbytes/s]
 74%|███████▍  | 2.46G/3.30G [04:32<01:29, 9.45Mbytes/s]
 74%|███████▍  | 2.46G/3.30G [04:32<01:29, 9.49Mbytes/s]
 74%|███████▍  | 2.46G/3.30G [04:32<01:28, 9.51Mbytes/s]
 74%|███████▍  | 2.46G/3.30G [04:33<01:28, 9.48Mbytes/s]
 75%|███████▍  | 2.46G/3.30G [04:33<01:29, 9.44Mbytes/s]
 75%|███████▍  | 2.47G/3.30G [04:33<01:29, 9.40Mbytes/s]
 75%|███████▍  | 2.47G/3.30G [04:33<01:34, 8.90Mbytes/s]
 75%|███████▍  | 2.47G/3.30G [04:34<01:47, 7.77Mbytes/s]
 75%|███████▍  | 2.47G/3.30G [04:34<01:41, 8.21Mbytes/s]
 75%|███████▍  | 2.47G/3.30G [04:34<01:38, 8.49Mbytes/s]
 75%|███████▍  | 2.47G/3.30G [04:34<01:35, 8.71Mbytes/s]
 75%|███████▍  | 2.48G/3.30G [04:34<01:33, 8.86Mbytes/s]
 75%|███████▍  | 2.48G/3.30G [04:35<01:31, 8.99Mbytes/s]
 75%|███████▌  | 2.48G/3.30G [04:35<01:31, 8.98Mbytes/s]
 75%|███████▌  | 2.48G/3.30G [04:35<01:31, 9.02Mbytes/s]
 75%|███████▌  | 2.48G/3.30G [04:35<01:31, 8.98Mbytes/s]
 75%|███████▌  | 2.49G/3.30G [04:35<01:31, 8.96Mbytes/s]
 75%|███████▌  | 2.49G/3.30G [04:36<01:30, 9.07Mbytes/s]
 75%|███████▌  | 2.49G/3.30G [04:36<01:30, 9.05Mbytes/s]
 75%|███████▌  | 2.49G/3.30G [04:36<01:28, 9.16Mbytes/s]
 75%|███████▌  | 2.49G/3.30G [04:36<01:28, 9.18Mbytes/s]
 76%|███████▌  | 2.50G/3.30G [04:37<01:27, 9.19Mbytes/s]
 76%|███████▌  | 2.50G/3.30G [04:37<01:27, 9.23Mbytes/s]
 76%|███████▌  | 2.50G/3.30G [04:37<01:26, 9.35Mbytes/s]
 76%|███████▌  | 2.50G/3.30G [04:37<01:25, 9.38Mbytes/s]
 76%|███████▌  | 2.50G/3.30G [04:37<01:25, 9.41Mbytes/s]
 76%|███████▌  | 2.51G/3.30G [04:37<01:11, 11.2Mbytes/s]
 76%|███████▌  | 2.51G/3.30G [04:38<01:20, 9.86Mbytes/s]
 76%|███████▌  | 2.51G/3.30G [04:38<01:28, 9.03Mbytes/s]
 76%|███████▌  | 2.51G/3.30G [04:38<01:30, 8.80Mbytes/s]
 76%|███████▌  | 2.51G/3.30G [04:38<01:28, 8.96Mbytes/s]
 76%|███████▌  | 2.51G/3.30G [04:38<01:27, 9.08Mbytes/s]
 76%|███████▌  | 2.52G/3.30G [04:39<01:25, 9.23Mbytes/s]
 76%|███████▌  | 2.52G/3.30G [04:39<01:24, 9.29Mbytes/s]
 76%|███████▋  | 2.52G/3.30G [04:39<01:23, 9.37Mbytes/s]
 76%|███████▋  | 2.52G/3.30G [04:39<01:09, 11.2Mbytes/s]
 76%|███████▋  | 2.52G/3.30G [04:39<01:18, 9.99Mbytes/s]
 76%|███████▋  | 2.52G/3.30G [04:40<01:26, 9.06Mbytes/s]
 76%|███████▋  | 2.53G/3.30G [04:40<01:28, 8.77Mbytes/s]
 76%|███████▋  | 2.53G/3.30G [04:40<01:26, 8.98Mbytes/s]
 77%|███████▋  | 2.53G/3.30G [04:40<01:25, 9.09Mbytes/s]
 77%|███████▋  | 2.53G/3.30G [04:40<01:10, 11.0Mbytes/s]
 77%|███████▋  | 2.53G/3.30G [04:40<01:20, 9.59Mbytes/s]
 77%|███████▋  | 2.53G/3.30G [04:41<01:26, 8.86Mbytes/s]
 77%|███████▋  | 2.54G/3.30G [04:41<01:29, 8.61Mbytes/s]
 77%|███████▋  | 2.54G/3.30G [04:41<01:27, 8.79Mbytes/s]
 77%|███████▋  | 2.54G/3.30G [04:41<01:10, 10.8Mbytes/s]
 77%|███████▋  | 2.54G/3.30G [04:41<01:21, 9.34Mbytes/s]
 77%|███████▋  | 2.54G/3.30G [04:41<01:27, 8.68Mbytes/s]
 77%|███████▋  | 2.54G/3.30G [04:42<01:30, 8.42Mbytes/s]
 77%|███████▋  | 2.55G/3.30G [04:42<01:14, 10.1Mbytes/s]
 77%|███████▋  | 2.55G/3.30G [04:42<01:26, 8.78Mbytes/s]
 77%|███████▋  | 2.55G/3.30G [04:42<01:30, 8.37Mbytes/s]
 77%|███████▋  | 2.55G/3.30G [04:42<01:13, 10.2Mbytes/s]
 77%|███████▋  | 2.55G/3.30G [04:42<01:25, 8.81Mbytes/s]
 77%|███████▋  | 2.55G/3.30G [04:43<01:41, 7.40Mbytes/s]
 77%|███████▋  | 2.55G/3.30G [04:43<01:37, 7.69Mbytes/s]
 77%|███████▋  | 2.55G/3.30G [04:43<01:31, 8.17Mbytes/s]
 77%|███████▋  | 2.56G/3.30G [04:43<01:28, 8.43Mbytes/s]
 77%|███████▋  | 2.56G/3.30G [04:43<01:28, 8.43Mbytes/s]
 77%|███████▋  | 2.56G/3.30G [04:44<01:32, 8.01Mbytes/s]
 78%|███████▊  | 2.56G/3.30G [04:44<01:29, 8.34Mbytes/s]
 78%|███████▊  | 2.56G/3.30G [04:44<01:25, 8.62Mbytes/s]
 78%|███████▊  | 2.57G/3.30G [04:44<01:24, 8.78Mbytes/s]
 78%|███████▊  | 2.57G/3.30G [04:45<01:22, 8.91Mbytes/s]
 78%|███████▊  | 2.57G/3.30G [04:45<01:21, 9.05Mbytes/s]
 78%|███████▊  | 2.57G/3.30G [04:45<01:20, 9.13Mbytes/s]
 78%|███████▊  | 2.57G/3.30G [04:45<01:19, 9.20Mbytes/s]
 78%|███████▊  | 2.58G/3.30G [04:45<01:18, 9.25Mbytes/s]
 78%|███████▊  | 2.58G/3.30G [04:46<01:17, 9.32Mbytes/s]
 78%|███████▊  | 2.58G/3.30G [04:46<01:16, 9.44Mbytes/s]
 78%|███████▊  | 2.58G/3.30G [04:46<01:16, 9.42Mbytes/s]
 78%|███████▊  | 2.58G/3.30G [04:46<01:16, 9.37Mbytes/s]
 78%|███████▊  | 2.59G/3.30G [04:46<01:16, 9.33Mbytes/s]
 78%|███████▊  | 2.59G/3.30G [04:47<01:16, 9.36Mbytes/s]
 78%|███████▊  | 2.59G/3.30G [04:47<01:16, 9.35Mbytes/s]
 78%|███████▊  | 2.59G/3.30G [04:47<01:16, 9.33Mbytes/s]
 79%|███████▊  | 2.59G/3.30G [04:47<01:15, 9.38Mbytes/s]
 79%|███████▊  | 2.60G/3.30G [04:48<01:15, 9.40Mbytes/s]
 79%|███████▊  | 2.60G/3.30G [04:48<01:14, 9.43Mbytes/s]
 79%|███████▊  | 2.60G/3.30G [04:48<01:14, 9.43Mbytes/s]
 79%|███████▉  | 2.60G/3.30G [04:48<01:03, 11.1Mbytes/s]
 79%|███████▉  | 2.60G/3.30G [04:48<01:10, 9.89Mbytes/s]
 79%|███████▉  | 2.60G/3.30G [04:48<01:16, 9.10Mbytes/s]
 79%|███████▉  | 2.61G/3.30G [04:49<01:17, 9.05Mbytes/s]
 79%|███████▉  | 2.61G/3.30G [04:49<01:03, 10.9Mbytes/s]
 79%|███████▉  | 2.61G/3.30G [04:49<01:10, 9.90Mbytes/s]
 79%|███████▉  | 2.61G/3.30G [04:49<01:19, 8.73Mbytes/s]
 79%|███████▉  | 2.61G/3.30G [04:49<01:18, 8.82Mbytes/s]
 79%|███████▉  | 2.61G/3.30G [04:49<01:22, 8.33Mbytes/s]
 79%|███████▉  | 2.62G/3.30G [04:50<01:34, 7.26Mbytes/s]
 79%|███████▉  | 2.62G/3.30G [04:50<01:27, 7.84Mbytes/s]
 79%|███████▉  | 2.62G/3.30G [04:50<01:21, 8.39Mbytes/s]
 79%|███████▉  | 2.62G/3.30G [04:50<01:18, 8.70Mbytes/s]
 79%|███████▉  | 2.62G/3.30G [04:51<01:16, 8.92Mbytes/s]
 79%|███████▉  | 2.63G/3.30G [04:51<01:15, 8.98Mbytes/s]
 80%|███████▉  | 2.63G/3.30G [04:51<01:14, 9.14Mbytes/s]
 80%|███████▉  | 2.63G/3.30G [04:51<01:12, 9.31Mbytes/s]
 80%|███████▉  | 2.63G/3.30G [04:51<01:12, 9.29Mbytes/s]
 80%|███████▉  | 2.63G/3.30G [04:52<01:12, 9.32Mbytes/s]
 80%|███████▉  | 2.64G/3.30G [04:52<01:11, 9.34Mbytes/s]
 80%|███████▉  | 2.64G/3.30G [04:52<01:10, 9.41Mbytes/s]
 80%|███████▉  | 2.64G/3.30G [04:52<01:10, 9.38Mbytes/s]
 80%|███████▉  | 2.64G/3.30G [04:52<01:10, 9.34Mbytes/s]
 80%|███████▉  | 2.64G/3.30G [04:53<01:10, 9.31Mbytes/s]
 80%|████████  | 2.65G/3.30G [04:53<01:10, 9.38Mbytes/s]
 80%|████████  | 2.65G/3.30G [04:53<01:09, 9.40Mbytes/s]
 80%|████████  | 2.65G/3.30G [04:53<01:09, 9.39Mbytes/s]
 80%|████████  | 2.65G/3.30G [04:54<01:09, 9.36Mbytes/s]
 80%|████████  | 2.65G/3.30G [04:54<01:09, 9.38Mbytes/s]
 80%|████████  | 2.66G/3.30G [04:54<01:09, 9.36Mbytes/s]
 80%|████████  | 2.66G/3.30G [04:54<01:09, 9.36Mbytes/s]
 80%|████████  | 2.66G/3.30G [04:54<01:08, 9.36Mbytes/s]
 81%|████████  | 2.66G/3.30G [04:55<01:08, 9.35Mbytes/s]
 81%|████████  | 2.66G/3.30G [04:55<01:09, 9.28Mbytes/s]
 81%|████████  | 2.67G/3.30G [04:55<01:08, 9.30Mbytes/s]
 81%|████████  | 2.67G/3.30G [04:55<01:08, 9.29Mbytes/s]
 81%|████████  | 2.67G/3.30G [04:56<01:12, 8.76Mbytes/s]
 81%|████████  | 2.67G/3.30G [04:56<01:22, 7.70Mbytes/s]
 81%|████████  | 2.67G/3.30G [04:56<01:16, 8.26Mbytes/s]
 81%|████████  | 2.67G/3.30G [04:56<01:13, 8.55Mbytes/s]
 81%|████████  | 2.68G/3.30G [04:56<01:11, 8.78Mbytes/s]
 81%|████████  | 2.68G/3.30G [04:57<01:09, 8.99Mbytes/s]
 81%|████████  | 2.68G/3.30G [04:57<01:11, 8.69Mbytes/s]
 81%|████████  | 2.68G/3.30G [04:57<01:11, 8.67Mbytes/s]
 81%|████████  | 2.68G/3.30G [04:57<01:09, 8.90Mbytes/s]
 81%|████████▏ | 2.69G/3.30G [04:57<01:08, 9.02Mbytes/s]
 81%|████████▏ | 2.69G/3.30G [04:58<01:08, 9.04Mbytes/s]
 81%|████████▏ | 2.69G/3.30G [04:58<01:07, 9.05Mbytes/s]
 81%|████████▏ | 2.69G/3.30G [04:58<01:06, 9.15Mbytes/s]
 82%|████████▏ | 2.69G/3.30G [04:58<01:06, 9.19Mbytes/s]
 82%|████████▏ | 2.70G/3.30G [04:59<01:06, 9.19Mbytes/s]
 82%|████████▏ | 2.70G/3.30G [04:59<01:06, 9.12Mbytes/s]
 82%|████████▏ | 2.70G/3.30G [04:59<01:06, 9.09Mbytes/s]
 82%|████████▏ | 2.70G/3.30G [04:59<01:05, 9.14Mbytes/s]
 82%|████████▏ | 2.70G/3.30G [04:59<01:05, 9.16Mbytes/s]
 82%|████████▏ | 2.71G/3.30G [05:00<01:05, 9.14Mbytes/s]
 82%|████████▏ | 2.71G/3.30G [05:00<01:04, 9.19Mbytes/s]
 82%|████████▏ | 2.71G/3.30G [05:00<01:04, 9.27Mbytes/s]
 82%|████████▏ | 2.71G/3.30G [05:00<01:03, 9.28Mbytes/s]
 82%|████████▏ | 2.71G/3.30G [05:00<01:03, 9.27Mbytes/s]
 82%|████████▏ | 2.72G/3.30G [05:01<01:03, 9.32Mbytes/s]
 82%|████████▏ | 2.72G/3.30G [05:01<01:02, 9.39Mbytes/s]
 82%|████████▏ | 2.72G/3.30G [05:01<01:02, 9.34Mbytes/s]
 82%|████████▏ | 2.72G/3.30G [05:01<01:02, 9.27Mbytes/s]
 82%|████████▏ | 2.72G/3.30G [05:02<01:02, 9.31Mbytes/s]
 82%|████████▏ | 2.73G/3.30G [05:02<01:02, 9.31Mbytes/s]
 83%|████████▎ | 2.73G/3.30G [05:02<01:02, 9.24Mbytes/s]
 83%|████████▎ | 2.73G/3.30G [05:02<01:02, 9.22Mbytes/s]
 83%|████████▎ | 2.73G/3.30G [05:02<01:01, 9.25Mbytes/s]
 83%|████████▎ | 2.73G/3.30G [05:03<01:01, 9.27Mbytes/s]
 83%|████████▎ | 2.74G/3.30G [05:03<01:01, 9.28Mbytes/s]
 83%|████████▎ | 2.74G/3.30G [05:03<01:00, 9.29Mbytes/s]
 83%|████████▎ | 2.74G/3.30G [05:03<01:00, 9.29Mbytes/s]
 83%|████████▎ | 2.74G/3.30G [05:03<01:00, 9.31Mbytes/s]
 83%|████████▎ | 2.74G/3.30G [05:04<01:00, 9.28Mbytes/s]
 83%|████████▎ | 2.75G/3.30G [05:04<01:00, 9.23Mbytes/s]
 83%|████████▎ | 2.75G/3.30G [05:04<01:00, 9.25Mbytes/s]
 83%|████████▎ | 2.75G/3.30G [05:04<01:00, 9.23Mbytes/s]
 83%|████████▎ | 2.75G/3.30G [05:05<00:59, 9.25Mbytes/s]
 83%|████████▎ | 2.75G/3.30G [05:05<00:59, 9.23Mbytes/s]
 83%|████████▎ | 2.76G/3.30G [05:05<00:59, 9.30Mbytes/s]
 83%|████████▎ | 2.76G/3.30G [05:05<00:58, 9.27Mbytes/s]
 84%|████████▎ | 2.76G/3.30G [05:05<00:58, 9.31Mbytes/s]
 84%|████████▎ | 2.76G/3.30G [05:06<00:58, 9.23Mbytes/s]
 84%|████████▎ | 2.76G/3.30G [05:06<00:58, 9.23Mbytes/s]
 84%|████████▎ | 2.77G/3.30G [05:06<00:58, 9.26Mbytes/s]
 84%|████████▍ | 2.77G/3.30G [05:06<00:57, 9.29Mbytes/s]
 84%|████████▍ | 2.77G/3.30G [05:06<00:57, 9.27Mbytes/s]
 84%|████████▍ | 2.77G/3.30G [05:07<00:57, 9.30Mbytes/s]
 84%|████████▍ | 2.77G/3.30G [05:07<00:48, 10.9Mbytes/s]
 84%|████████▍ | 2.77G/3.30G [05:07<00:53, 9.87Mbytes/s]
 84%|████████▍ | 2.78G/3.30G [05:07<00:59, 8.89Mbytes/s]
 84%|████████▍ | 2.78G/3.30G [05:07<01:00, 8.75Mbytes/s]
 84%|████████▍ | 2.78G/3.30G [05:08<00:58, 8.93Mbytes/s]
 84%|████████▍ | 2.78G/3.30G [05:08<00:58, 8.93Mbytes/s]
 84%|████████▍ | 2.78G/3.30G [05:08<00:57, 9.10Mbytes/s]
 84%|████████▍ | 2.79G/3.30G [05:08<00:57, 9.08Mbytes/s]
 84%|████████▍ | 2.79G/3.30G [05:08<00:56, 9.10Mbytes/s]
 84%|████████▍ | 2.79G/3.30G [05:09<00:56, 9.12Mbytes/s]
 84%|████████▍ | 2.79G/3.30G [05:09<00:56, 9.09Mbytes/s]
 85%|████████▍ | 2.79G/3.30G [05:09<00:55, 9.22Mbytes/s]
 85%|████████▍ | 2.80G/3.30G [05:09<00:57, 8.87Mbytes/s]
 85%|████████▍ | 2.80G/3.30G [05:09<00:57, 8.76Mbytes/s]
 85%|████████▍ | 2.80G/3.30G [05:10<00:56, 8.94Mbytes/s]
 85%|████████▍ | 2.80G/3.30G [05:10<00:58, 8.66Mbytes/s]
 85%|████████▍ | 2.80G/3.30G [05:10<01:05, 7.63Mbytes/s]
 85%|████████▍ | 2.80G/3.30G [05:10<01:01, 8.09Mbytes/s]
 85%|████████▍ | 2.81G/3.30G [05:11<00:58, 8.49Mbytes/s]
 85%|████████▍ | 2.81G/3.30G [05:11<00:57, 8.71Mbytes/s]
 85%|████████▌ | 2.81G/3.30G [05:11<00:55, 8.87Mbytes/s]
 85%|████████▌ | 2.81G/3.30G [05:11<00:54, 8.99Mbytes/s]
 85%|████████▌ | 2.81G/3.30G [05:11<00:54, 8.93Mbytes/s]
 85%|████████▌ | 2.82G/3.30G [05:12<00:54, 8.90Mbytes/s]
 85%|████████▌ | 2.82G/3.30G [05:12<00:54, 8.98Mbytes/s]
 85%|████████▌ | 2.82G/3.30G [05:12<00:53, 9.07Mbytes/s]
 85%|████████▌ | 2.82G/3.30G [05:12<00:52, 9.15Mbytes/s]
 85%|████████▌ | 2.82G/3.30G [05:13<00:52, 9.23Mbytes/s]
 86%|████████▌ | 2.83G/3.30G [05:13<00:51, 9.29Mbytes/s]
 86%|████████▌ | 2.83G/3.30G [05:13<00:51, 9.33Mbytes/s]
 86%|████████▌ | 2.83G/3.30G [05:13<00:50, 9.36Mbytes/s]
 86%|████████▌ | 2.83G/3.30G [05:13<00:50, 9.34Mbytes/s]
 86%|████████▌ | 2.83G/3.30G [05:14<00:50, 9.33Mbytes/s]
 86%|████████▌ | 2.84G/3.30G [05:14<00:52, 9.01Mbytes/s]
 86%|████████▌ | 2.84G/3.30G [05:14<00:51, 9.07Mbytes/s]
 86%|████████▌ | 2.84G/3.30G [05:14<00:50, 9.12Mbytes/s]
 86%|████████▌ | 2.84G/3.30G [05:14<00:50, 9.13Mbytes/s]
 86%|████████▌ | 2.84G/3.30G [05:15<00:50, 9.18Mbytes/s]
 86%|████████▌ | 2.85G/3.30G [05:15<00:49, 9.24Mbytes/s]
 86%|████████▌ | 2.85G/3.30G [05:15<00:56, 8.04Mbytes/s]
 86%|████████▌ | 2.85G/3.30G [05:15<00:55, 8.20Mbytes/s]
 86%|████████▋ | 2.85G/3.30G [05:16<00:53, 8.56Mbytes/s]
 86%|████████▋ | 2.85G/3.30G [05:16<00:51, 8.74Mbytes/s]
 86%|████████▋ | 2.85G/3.30G [05:16<00:50, 8.96Mbytes/s]
 86%|████████▋ | 2.86G/3.30G [05:16<00:49, 9.07Mbytes/s]
 87%|████████▋ | 2.86G/3.30G [05:16<00:48, 9.16Mbytes/s]
 87%|████████▋ | 2.86G/3.30G [05:17<00:47, 9.26Mbytes/s]
 87%|████████▋ | 2.86G/3.30G [05:17<00:49, 8.85Mbytes/s]
 87%|████████▋ | 2.86G/3.30G [05:17<00:57, 7.73Mbytes/s]
 87%|████████▋ | 2.87G/3.30G [05:17<00:53, 8.28Mbytes/s]
 87%|████████▋ | 2.87G/3.30G [05:17<00:50, 8.58Mbytes/s]
 87%|████████▋ | 2.87G/3.30G [05:18<00:49, 8.85Mbytes/s]
 87%|████████▋ | 2.87G/3.30G [05:18<00:47, 9.02Mbytes/s]
 87%|████████▋ | 2.87G/3.30G [05:18<00:47, 9.12Mbytes/s]
 87%|████████▋ | 2.88G/3.30G [05:18<00:46, 9.19Mbytes/s]
 87%|████████▋ | 2.88G/3.30G [05:19<00:46, 9.26Mbytes/s]
 87%|████████▋ | 2.88G/3.30G [05:19<00:45, 9.35Mbytes/s]
 87%|████████▋ | 2.88G/3.30G [05:19<00:44, 9.40Mbytes/s]
 87%|████████▋ | 2.88G/3.30G [05:19<00:44, 9.36Mbytes/s]
 87%|████████▋ | 2.89G/3.30G [05:19<00:44, 9.38Mbytes/s]
 87%|████████▋ | 2.89G/3.30G [05:20<00:44, 9.44Mbytes/s]
 87%|████████▋ | 2.89G/3.30G [05:20<00:44, 9.40Mbytes/s]
 88%|████████▊ | 2.89G/3.30G [05:20<00:43, 9.39Mbytes/s]
 88%|████████▊ | 2.89G/3.30G [05:20<00:43, 9.38Mbytes/s]
 88%|████████▊ | 2.90G/3.30G [05:20<00:43, 9.40Mbytes/s]
 88%|████████▊ | 2.90G/3.30G [05:21<00:43, 9.34Mbytes/s]
 88%|████████▊ | 2.90G/3.30G [05:21<00:43, 9.34Mbytes/s]
 88%|████████▊ | 2.90G/3.30G [05:21<00:42, 9.42Mbytes/s]
 88%|████████▊ | 2.90G/3.30G [05:21<00:42, 9.36Mbytes/s]
 88%|████████▊ | 2.91G/3.30G [05:22<00:43, 9.18Mbytes/s]
 88%|████████▊ | 2.91G/3.30G [05:22<00:42, 9.32Mbytes/s]
 88%|████████▊ | 2.91G/3.30G [05:22<00:41, 9.46Mbytes/s]
 88%|████████▊ | 2.91G/3.30G [05:22<00:41, 9.49Mbytes/s]
 88%|████████▊ | 2.91G/3.30G [05:22<00:40, 9.57Mbytes/s]
 88%|████████▊ | 2.92G/3.30G [05:23<00:40, 9.50Mbytes/s]
 88%|████████▊ | 2.92G/3.30G [05:23<00:40, 9.50Mbytes/s]
 88%|████████▊ | 2.92G/3.30G [05:23<00:40, 9.55Mbytes/s]
 88%|████████▊ | 2.92G/3.30G [05:23<00:40, 9.53Mbytes/s]
 88%|████████▊ | 2.92G/3.30G [05:23<00:39, 9.51Mbytes/s]
 89%|████████▊ | 2.93G/3.30G [05:24<00:39, 9.54Mbytes/s]
 89%|████████▊ | 2.93G/3.30G [05:24<00:39, 9.54Mbytes/s]
 89%|████████▊ | 2.93G/3.30G [05:24<00:39, 9.59Mbytes/s]
 89%|████████▊ | 2.93G/3.30G [05:24<00:39, 9.54Mbytes/s]
 89%|████████▉ | 2.93G/3.30G [05:25<00:39, 9.46Mbytes/s]
 89%|████████▉ | 2.94G/3.30G [05:25<00:39, 9.38Mbytes/s]
 89%|████████▉ | 2.94G/3.30G [05:25<00:38, 9.46Mbytes/s]
 89%|████████▉ | 2.94G/3.30G [05:25<00:40, 8.99Mbytes/s]
 89%|████████▉ | 2.94G/3.30G [05:25<00:46, 7.85Mbytes/s]
 89%|████████▉ | 2.94G/3.30G [05:26<00:42, 8.52Mbytes/s]
 89%|████████▉ | 2.95G/3.30G [05:26<00:40, 8.85Mbytes/s]
 89%|████████▉ | 2.95G/3.30G [05:26<00:39, 9.07Mbytes/s]
 89%|████████▉ | 2.95G/3.30G [05:26<00:38, 9.24Mbytes/s]
 89%|████████▉ | 2.95G/3.30G [05:26<00:37, 9.33Mbytes/s]
 89%|████████▉ | 2.95G/3.30G [05:27<00:37, 9.34Mbytes/s]
 89%|████████▉ | 2.96G/3.30G [05:27<00:37, 9.39Mbytes/s]
 90%|████████▉ | 2.96G/3.30G [05:27<00:37, 9.35Mbytes/s]
 90%|████████▉ | 2.96G/3.30G [05:27<00:37, 9.28Mbytes/s]
 90%|████████▉ | 2.96G/3.30G [05:28<00:36, 9.32Mbytes/s]
 90%|████████▉ | 2.96G/3.30G [05:28<00:36, 9.25Mbytes/s]
 90%|████████▉ | 2.97G/3.30G [05:28<00:36, 9.32Mbytes/s]
 90%|████████▉ | 2.97G/3.30G [05:28<00:35, 9.37Mbytes/s]
 90%|████████▉ | 2.97G/3.30G [05:28<00:35, 9.38Mbytes/s]
 90%|████████▉ | 2.97G/3.30G [05:29<00:35, 9.40Mbytes/s]
 90%|████████▉ | 2.97G/3.30G [05:29<00:35, 9.42Mbytes/s]
 90%|█████████ | 2.98G/3.30G [05:29<00:34, 9.50Mbytes/s]
 90%|█████████ | 2.98G/3.30G [05:29<00:34, 9.56Mbytes/s]
 90%|█████████ | 2.98G/3.30G [05:29<00:33, 9.55Mbytes/s]
 90%|█████████ | 2.98G/3.30G [05:30<00:33, 9.59Mbytes/s]
 90%|█████████ | 2.98G/3.30G [05:30<00:33, 9.62Mbytes/s]
 90%|█████████ | 2.99G/3.30G [05:30<00:33, 9.57Mbytes/s]
 90%|█████████ | 2.99G/3.30G [05:30<00:32, 9.61Mbytes/s]
 90%|█████████ | 2.99G/3.30G [05:31<00:34, 9.02Mbytes/s]
 91%|█████████ | 2.99G/3.30G [05:31<00:39, 7.92Mbytes/s]
 91%|█████████ | 2.99G/3.30G [05:31<00:36, 8.44Mbytes/s]
 91%|█████████ | 3.00G/3.30G [05:31<00:35, 8.73Mbytes/s]
 91%|█████████ | 3.00G/3.30G [05:31<00:34, 8.90Mbytes/s]
 91%|█████████ | 3.00G/3.30G [05:32<00:33, 9.09Mbytes/s]
 91%|█████████ | 3.00G/3.30G [05:32<00:33, 9.18Mbytes/s]
 91%|█████████ | 3.00G/3.30G [05:32<00:32, 9.26Mbytes/s]
 91%|█████████ | 3.01G/3.30G [05:32<00:32, 9.27Mbytes/s]
 91%|█████████ | 3.01G/3.30G [05:33<00:32, 9.27Mbytes/s]
 91%|█████████ | 3.01G/3.30G [05:33<00:31, 9.35Mbytes/s]
 91%|█████████ | 3.01G/3.30G [05:33<00:31, 9.37Mbytes/s]
 91%|█████████ | 3.01G/3.30G [05:33<00:31, 9.35Mbytes/s]
 91%|█████████▏| 3.02G/3.30G [05:33<00:30, 9.35Mbytes/s]
 91%|█████████▏| 3.02G/3.30G [05:34<00:30, 9.32Mbytes/s]
 91%|█████████▏| 3.02G/3.30G [05:34<00:30, 9.30Mbytes/s]
 91%|█████████▏| 3.02G/3.30G [05:34<00:30, 9.25Mbytes/s]
 91%|█████████▏| 3.02G/3.30G [05:34<00:30, 9.29Mbytes/s]
 92%|█████████▏| 3.03G/3.30G [05:34<00:29, 9.31Mbytes/s]
 92%|█████████▏| 3.03G/3.30G [05:35<00:29, 9.31Mbytes/s]
 92%|█████████▏| 3.03G/3.30G [05:35<00:29, 9.34Mbytes/s]
 92%|█████████▏| 3.03G/3.30G [05:35<00:28, 9.42Mbytes/s]
 92%|█████████▏| 3.03G/3.30G [05:35<00:28, 9.39Mbytes/s]
 92%|█████████▏| 3.04G/3.30G [05:35<00:28, 9.42Mbytes/s]
 92%|█████████▏| 3.04G/3.30G [05:36<00:28, 9.44Mbytes/s]
 92%|█████████▏| 3.04G/3.30G [05:36<00:28, 9.47Mbytes/s]
 92%|█████████▏| 3.04G/3.30G [05:36<00:27, 9.49Mbytes/s]
 92%|█████████▏| 3.04G/3.30G [05:36<00:27, 9.47Mbytes/s]
 92%|█████████▏| 3.05G/3.30G [05:37<00:27, 9.42Mbytes/s]
 92%|█████████▏| 3.05G/3.30G [05:37<00:27, 9.40Mbytes/s]
 92%|█████████▏| 3.05G/3.30G [05:37<00:27, 9.41Mbytes/s]
 92%|█████████▏| 3.05G/3.30G [05:37<00:26, 9.40Mbytes/s]
 92%|█████████▏| 3.05G/3.30G [05:37<00:27, 8.97Mbytes/s]
 92%|█████████▏| 3.06G/3.30G [05:38<00:28, 8.78Mbytes/s]
 93%|█████████▎| 3.06G/3.30G [05:38<00:27, 8.91Mbytes/s]
 93%|█████████▎| 3.06G/3.30G [05:38<00:27, 8.99Mbytes/s]
 93%|█████████▎| 3.06G/3.30G [05:38<00:27, 8.98Mbytes/s]
 93%|█████████▎| 3.06G/3.30G [05:39<00:26, 8.98Mbytes/s]
 93%|█████████▎| 3.06G/3.30G [05:39<00:26, 9.04Mbytes/s]
 93%|█████████▎| 3.07G/3.30G [05:39<00:26, 9.10Mbytes/s]
 93%|█████████▎| 3.07G/3.30G [05:39<00:25, 9.22Mbytes/s]
 93%|█████████▎| 3.07G/3.30G [05:39<00:25, 9.25Mbytes/s]
 93%|█████████▎| 3.07G/3.30G [05:40<00:24, 9.28Mbytes/s]
 93%|█████████▎| 3.07G/3.30G [05:40<00:24, 9.32Mbytes/s]
 93%|█████████▎| 3.08G/3.30G [05:40<00:24, 9.34Mbytes/s]
 93%|█████████▎| 3.08G/3.30G [05:40<00:24, 9.37Mbytes/s]
 93%|█████████▎| 3.08G/3.30G [05:40<00:23, 9.33Mbytes/s]
 93%|█████████▎| 3.08G/3.30G [05:41<00:23, 9.32Mbytes/s]
 93%|█████████▎| 3.08G/3.30G [05:41<00:23, 9.33Mbytes/s]
 93%|█████████▎| 3.09G/3.30G [05:41<00:23, 9.28Mbytes/s]
 93%|█████████▎| 3.09G/3.30G [05:41<00:23, 9.31Mbytes/s]
 94%|█████████▎| 3.09G/3.30G [05:41<00:20, 10.3Mbytes/s]
 94%|█████████▎| 3.09G/3.30G [05:42<00:21, 9.76Mbytes/s]
 94%|█████████▎| 3.09G/3.30G [05:42<00:24, 8.75Mbytes/s]
 94%|█████████▎| 3.09G/3.30G [05:42<00:20, 10.3Mbytes/s]
 94%|█████████▎| 3.10G/3.30G [05:42<00:22, 9.49Mbytes/s]
 94%|█████████▎| 3.10G/3.30G [05:42<00:24, 8.51Mbytes/s]
 94%|█████████▍| 3.10G/3.30G [05:42<00:20, 10.1Mbytes/s]
 94%|█████████▍| 3.10G/3.30G [05:42<00:21, 9.41Mbytes/s]
 94%|█████████▍| 3.10G/3.30G [05:43<00:24, 8.43Mbytes/s]
 94%|█████████▍| 3.10G/3.30G [05:43<00:20, 10.1Mbytes/s]
 94%|█████████▍| 3.10G/3.30G [05:43<00:21, 9.37Mbytes/s]
 94%|█████████▍| 3.10G/3.30G [05:43<00:24, 8.25Mbytes/s]
 94%|█████████▍| 3.11G/3.30G [05:43<00:19, 9.99Mbytes/s]
 94%|█████████▍| 3.11G/3.30G [05:43<00:21, 9.24Mbytes/s]
 94%|█████████▍| 3.11G/3.30G [05:43<00:23, 8.24Mbytes/s]
 94%|█████████▍| 3.11G/3.30G [05:44<00:19, 10.0Mbytes/s]
 94%|█████████▍| 3.11G/3.30G [05:44<00:20, 9.26Mbytes/s]
 94%|█████████▍| 3.11G/3.30G [05:44<00:23, 8.27Mbytes/s]
 94%|█████████▍| 3.11G/3.30G [05:44<00:19, 9.83Mbytes/s]
 94%|█████████▍| 3.12G/3.30G [05:44<00:20, 9.04Mbytes/s]
 94%|█████████▍| 3.12G/3.30G [05:44<00:22, 8.30Mbytes/s]
 94%|█████████▍| 3.12G/3.30G [05:44<00:18, 9.96Mbytes/s]
 94%|█████████▍| 3.12G/3.30G [05:45<00:20, 9.07Mbytes/s]
 94%|█████████▍| 3.12G/3.30G [05:45<00:23, 8.01Mbytes/s]
 94%|█████████▍| 3.12G/3.30G [05:45<00:18, 9.77Mbytes/s]
 95%|█████████▍| 3.12G/3.30G [05:45<00:20, 8.97Mbytes/s]
 95%|█████████▍| 3.12G/3.30G [05:45<00:22, 7.94Mbytes/s]
 95%|█████████▍| 3.13G/3.30G [05:45<00:19, 9.02Mbytes/s]
 95%|█████████▍| 3.13G/3.30G [05:45<00:21, 8.38Mbytes/s]
 95%|█████████▍| 3.13G/3.30G [05:46<00:23, 7.59Mbytes/s]
 95%|█████████▍| 3.13G/3.30G [05:46<00:18, 9.44Mbytes/s]
 95%|█████████▍| 3.13G/3.30G [05:46<00:19, 8.73Mbytes/s]
 95%|█████████▍| 3.13G/3.30G [05:46<00:21, 7.93Mbytes/s]
 95%|█████████▍| 3.13G/3.30G [05:46<00:17, 9.70Mbytes/s]
 95%|█████████▍| 3.13G/3.30G [05:46<00:19, 8.93Mbytes/s]
 95%|█████████▍| 3.13G/3.30G [05:46<00:21, 8.05Mbytes/s]
 95%|█████████▍| 3.14G/3.30G [05:47<00:17, 9.73Mbytes/s]
 95%|█████████▍| 3.14G/3.30G [05:47<00:18, 8.91Mbytes/s]
 95%|█████████▍| 3.14G/3.30G [05:47<00:20, 7.91Mbytes/s]
 95%|█████████▌| 3.14G/3.30G [05:47<00:16, 9.70Mbytes/s]
 95%|█████████▌| 3.14G/3.30G [05:47<00:18, 8.87Mbytes/s]
 95%|█████████▌| 3.14G/3.30G [05:47<00:20, 7.98Mbytes/s]
 95%|█████████▌| 3.14G/3.30G [05:47<00:16, 9.68Mbytes/s]
 95%|█████████▌| 3.15G/3.30G [05:48<00:18, 8.84Mbytes/s]
 95%|█████████▌| 3.15G/3.30G [05:48<00:19, 7.98Mbytes/s]
 95%|█████████▌| 3.15G/3.30G [05:48<00:16, 9.75Mbytes/s]
 95%|█████████▌| 3.15G/3.30G [05:48<00:17, 8.88Mbytes/s]
 95%|█████████▌| 3.15G/3.30G [05:48<00:19, 7.90Mbytes/s]
 95%|█████████▌| 3.15G/3.30G [05:48<00:15, 9.59Mbytes/s]
 95%|█████████▌| 3.15G/3.30G [05:48<00:17, 8.71Mbytes/s]
 95%|█████████▌| 3.15G/3.30G [05:49<00:19, 7.69Mbytes/s]
 95%|█████████▌| 3.16G/3.30G [05:49<00:15, 9.52Mbytes/s]
 96%|█████████▌| 3.16G/3.30G [05:49<00:17, 8.64Mbytes/s]
 96%|█████████▌| 3.16G/3.30G [05:49<00:19, 7.68Mbytes/s]
 96%|█████████▌| 3.16G/3.30G [05:49<00:15, 9.49Mbytes/s]
 96%|█████████▌| 3.16G/3.30G [05:49<00:16, 8.66Mbytes/s]
 96%|█████████▌| 3.16G/3.30G [05:49<00:18, 7.66Mbytes/s]
 96%|█████████▌| 3.16G/3.30G [05:50<00:15, 9.40Mbytes/s]
 96%|█████████▌| 3.16G/3.30G [05:50<00:16, 8.56Mbytes/s]
 96%|█████████▌| 3.16G/3.30G [05:50<00:17, 7.82Mbytes/s]
 96%|█████████▌| 3.17G/3.30G [05:50<00:14, 9.65Mbytes/s]
 96%|█████████▌| 3.17G/3.30G [05:50<00:15, 8.59Mbytes/s]
 96%|█████████▌| 3.17G/3.30G [05:50<00:17, 8.00Mbytes/s]
 96%|█████████▌| 3.17G/3.30G [05:51<00:18, 7.35Mbytes/s]
 96%|█████████▌| 3.17G/3.30G [05:51<00:17, 7.44Mbytes/s]
 96%|█████████▌| 3.17G/3.30G [05:51<00:16, 7.95Mbytes/s]
 96%|█████████▌| 3.18G/3.30G [05:51<00:15, 8.17Mbytes/s]
 96%|█████████▌| 3.18G/3.30G [05:51<00:15, 8.40Mbytes/s]
 96%|█████████▌| 3.18G/3.30G [05:52<00:14, 8.53Mbytes/s]
 96%|█████████▋| 3.18G/3.30G [05:52<00:15, 8.22Mbytes/s]
 96%|█████████▋| 3.18G/3.30G [05:52<00:16, 7.27Mbytes/s]
 96%|█████████▋| 3.18G/3.30G [05:52<00:15, 7.69Mbytes/s]
 96%|█████████▋| 3.19G/3.30G [05:52<00:14, 7.96Mbytes/s]
 96%|█████████▋| 3.19G/3.30G [05:53<00:14, 8.20Mbytes/s]
 97%|█████████▋| 3.19G/3.30G [05:53<00:13, 8.34Mbytes/s]
 97%|█████████▋| 3.19G/3.30G [05:53<00:13, 8.46Mbytes/s]
 97%|█████████▋| 3.19G/3.30G [05:53<00:13, 8.55Mbytes/s]
 97%|█████████▋| 3.20G/3.30G [05:54<00:12, 8.56Mbytes/s]
 97%|█████████▋| 3.20G/3.30G [05:54<00:12, 8.63Mbytes/s]
 97%|█████████▋| 3.20G/3.30G [05:54<00:12, 8.65Mbytes/s]
 97%|█████████▋| 3.20G/3.30G [05:54<00:11, 8.70Mbytes/s]
 97%|█████████▋| 3.20G/3.30G [05:54<00:11, 8.65Mbytes/s]
 97%|█████████▋| 3.20G/3.30G [05:55<00:11, 8.61Mbytes/s]
 97%|█████████▋| 3.21G/3.30G [05:55<00:11, 8.62Mbytes/s]
 97%|█████████▋| 3.21G/3.30G [05:55<00:11, 8.58Mbytes/s]
 97%|█████████▋| 3.21G/3.30G [05:55<00:10, 8.62Mbytes/s]
 97%|█████████▋| 3.21G/3.30G [05:55<00:10, 8.58Mbytes/s]
 97%|█████████▋| 3.21G/3.30G [05:56<00:10, 8.63Mbytes/s]
 97%|█████████▋| 3.22G/3.30G [05:56<00:10, 8.64Mbytes/s]
 97%|█████████▋| 3.22G/3.30G [05:56<00:10, 8.64Mbytes/s]
 97%|█████████▋| 3.22G/3.30G [05:56<00:09, 8.61Mbytes/s]
 97%|█████████▋| 3.22G/3.30G [05:57<00:09, 8.68Mbytes/s]
 98%|█████████▊| 3.22G/3.30G [05:57<00:09, 8.66Mbytes/s]
 98%|█████████▊| 3.22G/3.30G [05:57<00:09, 8.70Mbytes/s]
 98%|█████████▊| 3.23G/3.30G [05:57<00:09, 8.66Mbytes/s]
 98%|█████████▊| 3.23G/3.30G [05:57<00:08, 8.65Mbytes/s]
 98%|█████████▊| 3.23G/3.30G [05:58<00:08, 8.64Mbytes/s]
 98%|█████████▊| 3.23G/3.30G [05:58<00:08, 8.61Mbytes/s]
 98%|█████████▊| 3.23G/3.30G [05:58<00:08, 8.58Mbytes/s]
 98%|█████████▊| 3.24G/3.30G [05:58<00:08, 8.59Mbytes/s]
 98%|█████████▊| 3.24G/3.30G [05:58<00:07, 8.57Mbytes/s]
 98%|█████████▊| 3.24G/3.30G [05:59<00:07, 8.55Mbytes/s]
 98%|█████████▊| 3.24G/3.30G [05:59<00:07, 8.13Mbytes/s]
 98%|█████████▊| 3.24G/3.30G [05:59<00:07, 8.01Mbytes/s]
 98%|█████████▊| 3.24G/3.30G [05:59<00:07, 8.22Mbytes/s]
 98%|█████████▊| 3.25G/3.30G [06:00<00:07, 8.31Mbytes/s]
 98%|█████████▊| 3.25G/3.30G [06:00<00:06, 8.39Mbytes/s]
 98%|█████████▊| 3.25G/3.30G [06:00<00:06, 8.46Mbytes/s]
 98%|█████████▊| 3.25G/3.30G [06:00<00:06, 8.52Mbytes/s]
 98%|█████████▊| 3.25G/3.30G [06:00<00:05, 8.57Mbytes/s]
 99%|█████████▊| 3.26G/3.30G [06:01<00:05, 8.51Mbytes/s]
 99%|█████████▊| 3.26G/3.30G [06:01<00:05, 8.48Mbytes/s]
 99%|█████████▊| 3.26G/3.30G [06:01<00:05, 8.51Mbytes/s]
 99%|█████████▊| 3.26G/3.30G [06:01<00:05, 8.49Mbytes/s]
 99%|█████████▊| 3.26G/3.30G [06:01<00:04, 8.48Mbytes/s]
 99%|█████████▉| 3.26G/3.30G [06:02<00:04, 8.48Mbytes/s]
 99%|█████████▉| 3.27G/3.30G [06:02<00:04, 8.43Mbytes/s]
 99%|█████████▉| 3.27G/3.30G [06:02<00:04, 7.75Mbytes/s]
 99%|█████████▉| 3.27G/3.30G [06:02<00:05, 6.95Mbytes/s]
 99%|█████████▉| 3.27G/3.30G [06:03<00:04, 7.33Mbytes/s]
 99%|█████████▉| 3.27G/3.30G [06:03<00:04, 7.62Mbytes/s]
 99%|█████████▉| 3.27G/3.30G [06:03<00:03, 7.87Mbytes/s]
 99%|█████████▉| 3.28G/3.30G [06:03<00:03, 8.05Mbytes/s]
 99%|█████████▉| 3.28G/3.30G [06:03<00:03, 8.15Mbytes/s]
 99%|█████████▉| 3.28G/3.30G [06:04<00:03, 8.24Mbytes/s]
 99%|█████████▉| 3.28G/3.30G [06:04<00:02, 8.27Mbytes/s]
 99%|█████████▉| 3.28G/3.30G [06:04<00:02, 8.30Mbytes/s]
 99%|█████████▉| 3.28G/3.30G [06:04<00:02, 8.33Mbytes/s]
 99%|█████████▉| 3.29G/3.30G [06:04<00:02, 8.26Mbytes/s]
100%|█████████▉| 3.29G/3.30G [06:05<00:01, 8.28Mbytes/s]
100%|█████████▉| 3.29G/3.30G [06:05<00:01, 8.33Mbytes/s]
100%|█████████▉| 3.29G/3.30G [06:05<00:01, 8.36Mbytes/s]
100%|█████████▉| 3.29G/3.30G [06:05<00:01, 8.34Mbytes/s]
100%|█████████▉| 3.30G/3.30G [06:06<00:01, 8.32Mbytes/s]
100%|█████████▉| 3.30G/3.30G [06:06<00:00, 9.61Mbytes/s]
100%|█████████▉| 3.30G/3.30G [06:06<00:00, 8.72Mbytes/s]
100%|█████████▉| 3.30G/3.30G [06:06<00:00, 7.84Mbytes/s]
100%|█████████▉| 3.30G/3.30G [06:06<00:00, 9.15Mbytes/s]
100%|█████████▉| 3.30G/3.30G [06:06<00:00, 8.35Mbytes/s]
100%|█████████▉| 3.30G/3.30G [06:06<00:00, 7.42Mbytes/s]
100%|█████████▉| 3.30G/3.30G [06:06<00:00, 9.07Mbytes/s]
100%|██████████| 3.30G/3.30G [06:07<00:00, 9.00Mbytes/s]
!find ~/trust_example_higherlevel/derivatives/fsl -maxdepth 2 -type d | sort | head -60
/home/jovyan/trust_example_higherlevel/derivatives/fsl
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-01_sm-6.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-02_sm-6.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-03_sm-6.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-04_sm-6.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-05_sm-6.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-105
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-105/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-106
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-106/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-107
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-107/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-108
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-108/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-109
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-109/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-110
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-110/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-111
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-111/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-112
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-112/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-113
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-113/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-115
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-115/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-116
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-116/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-117
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-117/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-118
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-118/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-120
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-120/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-121
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-121/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-122
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-122/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-124
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-124/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-125
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-125/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-126
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-126/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-127
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-127/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-128
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-128/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-129
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-129/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-130
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-130/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-131
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-131/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-132
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-132/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-133
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-133/L2_task-trust_model-01_type-act_sm-6.gfeat

The archive is expected to unpack into a top-level __forOSF/ folder. Its contents are then copied into:

~/trust_example_higherlevel/derivatives/fsl/

That means the notebook’s working derivative tree now includes:

  • the five run-level Level-1 .feat directories for sub-104

  • the precomputed Level-2 .gfeat directories for the full sample

Later cells clean only the specific notebook-generated outputs they are about to recreate, which keeps reruns predictable without deleting the archived materials.

4. Check the downloaded inputs#

Before rendering any templates, it is worth confirming two simple things:

  1. the five run-level Level-1 .feat directories exist for sub-104, because they are the direct inputs to the Level-2 model

  2. the precomputed Level-2 .gfeat directories exist across the sample, because they are the direct inputs to the Level-3 group models

These checks are deliberately simple and explicit. If the expected directories are missing, it is better to stop here than to render templates that point to nonexistent inputs.

%%bash
set -e

echo "Checking sub-104 run-level Level-1 FEAT inputs ..."
find ~/trust_example_higherlevel/derivatives/fsl/sub-104 -maxdepth 1 -type d -name "L1_task-trust_model-01_type-act_run-*_sm-6.feat" | sort

echo
echo "Counting downloaded Level-2 .gfeat directories across the sample ..."
find ~/trust_example_higherlevel/derivatives/fsl -maxdepth 2 -type d -name "L2_task-trust_model-01_type-act_sm-6.gfeat" | wc -l
Checking sub-104 run-level Level-1 FEAT inputs ...
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-0
1_sm-6.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust_model-01_ty
pe-act_run-02_sm-6.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust
_model-01_type-act_run-03_sm-6.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L
1_task-trust_model-01_type-act_run-04_sm-6.feat
/home/jovyan/trust_example_higherlevel/derivatives/f
sl/sub-104/L1_task-trust_model-01_type-act_run-05_sm-6.feat

Counting downloaded Level-2 .gfeat directories across the sample ...
48
!find ~/trust_example_higherlevel/derivatives/fsl -maxdepth 2 -type d -name "L2_task-trust_model-01_type-act_sm-6.gfeat" | sort | head -20
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-105/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-106/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-107/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-108/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-109/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-110/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-111/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-112/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-113/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-115/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-116/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-117/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-118/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-120/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-121/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-122/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-124/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-125/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-126/L2_task-trust_model-01_type-act_sm-6.gfeat

If one or more Level-1 runs are missing for sub-104, stop here and fix that first. If the Level-2 directories are missing across the sample, the later Level-3 group analyses will not work.

The original scripts include more bookkeeping for edge cases, but this teaching version stays simple on purpose.

One practical point is still worth noting: these archived FEAT derivatives were generated with FSL 6.0.7.16, and this notebook assumes the same version for consistency. In principle, higher-level FEAT often works across nearby FSL versions, but for a teaching example it is better to keep the software version fixed so the file layout and behavior stay predictable.

5. Render the Level-2 FEAT template#

The original L2stats.sh script uses sed to replace a small set of placeholders in the .fsf template. For the 5-run activation model, the important placeholders are:

  • OUTPUT for the new higher-level output directory

  • INPUT1 through INPUT5 for the five run-level .feat directories

This is the key idea of scripted FEAT workflows: rather than point-and-clicking through the GUI every time, you render a text template with the correct paths and then hand the finished .fsf file to FEAT.

%%bash
set -e

EXAMPLE_DIR="$HOME/trust_example_higherlevel"
INPUT_DIR="$EXAMPLE_DIR/derivatives/fsl/sub-104"
OUTPUT_DIR="$EXAMPLE_DIR/derivatives/fsl/sub-104"

ITEMPLATE="$EXAMPLE_DIR/templates/L2_task-trust_model-01_type-act_nruns-5.fsf"
OTEMPLATE="$OUTPUT_DIR/L2_task-trust_model-01_type-act.fsf"
OUTPUT="$OUTPUT_DIR/L2_task-trust_model-01_type-act_sm-6"

INPUT1="$INPUT_DIR/L1_task-trust_model-01_type-act_run-01_sm-6.feat"
INPUT2="$INPUT_DIR/L1_task-trust_model-01_type-act_run-02_sm-6.feat"
INPUT3="$INPUT_DIR/L1_task-trust_model-01_type-act_run-03_sm-6.feat"
INPUT4="$INPUT_DIR/L1_task-trust_model-01_type-act_run-04_sm-6.feat"
INPUT5="$INPUT_DIR/L1_task-trust_model-01_type-act_run-05_sm-6.feat"

sed \
  -e "s@OUTPUT@${OUTPUT}@g" \
  -e "s@INPUT1@${INPUT1}@g" \
  -e "s@INPUT2@${INPUT2}@g" \
  -e "s@INPUT3@${INPUT3}@g" \
  -e "s@INPUT4@${INPUT4}@g" \
  -e "s@INPUT5@${INPUT5}@g" \
  < "$ITEMPLATE" > "$OTEMPLATE"

echo "Rendered template: $OTEMPLATE"
Rendered template: /home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_mode
l-01_type-act.fsf
!grep -E 'outputdir|multiple|ncopeinputs|feat_files' ~/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act.fsf | head -20
set fmri(outputdir) "/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6"
set fmri(multiple) 5
set fmri(ncopeinputs) 18
set feat_files(1) "/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-01_sm-6.feat"
set feat_files(2) "/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-02_sm-6.feat"
set feat_files(3) "/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-03_sm-6.feat"
set feat_files(4) "/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-04_sm-6.feat"
set feat_files(5) "/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-05_sm-6.feat"

That quick check is worth doing. It lets you confirm that the rendered .fsf now points to the correct output directory and the correct five inputs before you launch FEAT.

6. Run the Level-2 FEAT model#

The next two cells prepare and launch FEAT on the rendered Level-2 .fsf file. Compared with fMRIPrep, this step is usually much faster, but it can still take a while depending on the system and the size of the run-level inputs.

In conceptual terms, this model uses fixed effects to combine the five trust-task runs within one participant. The result is a single .gfeat directory that contains one higher-level FEAT result for each lower-level cope.

%%bash
set -e

OUTPUT_DIR="$HOME/trust_example_higherlevel/derivatives/fsl/sub-104"
L2_BASENAME="L2_task-trust_model-01_type-act_sm-6"

rm -rf "${OUTPUT_DIR}/${L2_BASENAME}.gfeat"
rm -rf "${OUTPUT_DIR}/${L2_BASENAME}+"*.gfeat
rm -rf "${OUTPUT_DIR}/logs"

echo "Removed any previous notebook-generated Level-2 derivatives:"
echo "  ${OUTPUT_DIR}/${L2_BASENAME}.gfeat"
echo "  ${OUTPUT_DIR}/${L2_BASENAME}+*.gfeat"
Removed any previous notebook-generated Level-2 derivatives:
  /home/jovyan/trust_example_higherleve
l/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat
  /home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-
6+*.gfeat
%%bash
set -e

OTEMPLATE="$HOME/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act.fsf"
feat "$OTEMPLATE"
To view the FEAT progress and final report, point your web browser at /home/jovyan/trust_example_hig
herlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/report_log.html

7. Review the Level-2 output#

The Level-2 output should now live in a .gfeat directory under:

~/trust_example_higherlevel/derivatives/fsl/sub-104/

At a minimum, you want to confirm that:

  • the .gfeat directory exists

  • the expected cope*.feat subdirectories exist

  • the FEAT report exists

  • the thresholded map for cope10 (reciprocate > defect) exists

The next few cells give you quick visual checks in NiiVue.

from pathlib import Path

outroot = EXAMPLE_DIR / "derivatives" / "fsl" / "sub-104"
matches = sorted(
    outroot.glob("L2_task-trust_model-01_type-act_sm-6*.gfeat"),
    key=lambda p: p.stat().st_mtime,
    reverse=True,
)

if not matches:
    raise FileNotFoundError("No matching Level-2 .gfeat directory found.")

gfeat_dir = matches[0]
print("Using Level-2 gfeat directory:", gfeat_dir)

for rel in [
    "report.html",
    "cope1.feat",
    "cope10.feat",
    "cope18.feat",
    "cope10.feat/thresh_zstat1.nii.gz",
]:
    p = gfeat_dir / rel
    print(f"{p}: {p.exists()}")
Using Level-2 gfeat directory: /home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/report.html: True
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope1.feat: True
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope10.feat: True
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope18.feat: True
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope10.feat/thresh_zstat1.nii.gz: True
cope_dirs = sorted(gfeat_dir.glob("cope*.feat"))
for p in cope_dirs[:20]:
    print(p)
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope1.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope10.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope11.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope12.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope13.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope14.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope15.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope16.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope17.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope18.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope2.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope3.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope4.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope5.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope6.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope7.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope8.feat
/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope9.feat
report_html = gfeat_dir / "report.html"
print("Level-2 report exists:", report_html.exists(), report_html)
Level-2 report exists: True /home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/report.html

In this section we move directly to quick visual checks of the Level-2 cope10 map. The goal is to confirm that the within-subject fixed-effects analysis ran and to inspect the main result before moving to the group model.

The first overlay below uses cope10.feat/thresh_zstat1.nii.gz, which corresponds to the reciprocate > defect contrast combined across runs.

from ipyniivue import NiiVue

bg_meanfunc = gfeat_dir / "bg_image.nii.gz"
zmap = gfeat_dir / "cope10.feat" / "thresh_zstat1.nii.gz"

print("Background exists:", bg_meanfunc.exists(), bg_meanfunc)
print("Contrast exists:", zmap.exists(), zmap)

if bg_meanfunc.exists() and zmap.exists():
    bg_data = nib.load(str(bg_meanfunc)).get_fdata()
    bg_nonzero = bg_data[bg_data > 0]
    lo = float(np.percentile(bg_nonzero, 2))
    hi = float(np.percentile(bg_nonzero, 98))

    nv = NiiVue()
    nv.load_volumes([
        {
            "path": str(bg_meanfunc),
            "name": "bg_image",
            "colormap": "gray",
            "opacity": 1.0,
            "cal_min": lo,
            "cal_max": hi,
        },
        {
            "path": str(zmap),
            "name": "reciprocate > defect across runs",
            "colormap": "red",
            "opacity": 0.75,
        },
    ])
    display(nv)
else:
    print("Run FEAT first, then come back to this cell.")
Background exists: True /home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/bg_image.nii.gz
Contrast exists: True /home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope10.feat/thresh_zstat1.nii.gz

The next cell shows the same Level-2 map on an MNI T1 background with better anatomical contrast.

from ipyniivue import NiiVue

# Try a few common FSL locations for the MNI T1 background.
bg_candidates = [
    Path(os.environ.get("FSLDIR", "")) / "data" / "standard" / "MNI152_T1_2mm_brain.nii.gz" if os.environ.get("FSLDIR") else None,
    Path("/opt/fsl/data/standard/MNI152_T1_2mm_brain.nii.gz"),
    Path("/opt/fsl-6.0.7.16/data/standard/MNI152_T1_2mm_brain.nii.gz"),
    Path("/usr/share/fsl/5.0/data/standard/MNI152_T1_2mm_brain.nii.gz"),
]

bg_path = None
for cand in bg_candidates:
    if cand is not None and cand.exists():
        bg_path = cand
        break

zmap = gfeat_dir / "cope10.feat" / "thresh_zstat1.nii.gz"

print("Background exists:", bg_path is not None, bg_path)
print("Contrast exists:", zmap.exists(), zmap)

if bg_path is not None and zmap.exists():
    bg_data = nib.load(str(bg_path)).get_fdata()
    bg_nonzero = bg_data[bg_data > 0]
    lo = float(np.percentile(bg_nonzero, 2))
    hi = float(np.percentile(bg_nonzero, 98))

    nv = NiiVue()
    nv.load_volumes([
        {
            "path": str(bg_path),
            "name": "MNI152_T1_2mm_brain",
            "colormap": "gray",
            "opacity": 1.0,
            "cal_min": lo,
            "cal_max": hi,
        },
        {
            "path": str(zmap),
            "name": "reciprocate > defect across runs",
            "colormap": "red",
            "opacity": 0.75,
        },
    ])
    display(nv)
else:
    print("Could not find the MNI T1 background or the thresholded map.")
Background exists: True /cvmfs/neurodesk.ardc.edu.au/containers/fsl_6.0.7.16_20250131/fsl_6.0.7.16_20250131.simg/opt/fsl-6.0.7.16/data/standard/MNI152_T1_2mm_brain.nii.gz
Contrast exists: True /home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope10.feat/thresh_zstat1.nii.gz

8. Render and run the initial Level-3 FEAT model#

We now turn to the first group-level analysis, while staying focused on the same lower-level cope: cope10 (reciprocate > defect).

For the teachable moment below, we begin with the original one-group template and the original shared Level-2 archive:

  • L3_template_n48_trust_onegroup.fsf

  • one-sample t-test across the full sample

  • output of interest: cope1.feat/thresh_zstat1.nii.gz

We deliberately keep this first Level-3 run simple. That makes it easier to see the problem when the group activation looks less impressive than expected.

%%bash
set -e

EXAMPLE_DIR="$HOME/trust_example_higherlevel"
DERIV_DIR="$EXAMPLE_DIR/derivatives/fsl"

ITEMPLATE_ONE="$EXAMPLE_DIR/templates/L3_template_n48_trust_onegroup.fsf"
OTEMPLATE_ONE="$DERIV_DIR/L3_task-trust_model-01_type-act_cope10_onegroup.fsf"
OUTPUT_ONE="$DERIV_DIR/L3_task-trust_model-01_type-act_cope10_onegroup"

sed \
  -e "s@OUTPUT@${OUTPUT_ONE}@g" \
  -e "s@BASEDIR@${EXAMPLE_DIR}@g" \
  -e "s@REPLACEME@type-act@g" \
  -e "s@COPENUM@10@g" \
  < "$ITEMPLATE_ONE" > "$OTEMPLATE_ONE"

echo "Rendered:"
echo "  $OTEMPLATE_ONE"
Rendered:
  /home/jovyan/trust_example_higherlevel/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_oneg
roup.fsf
!grep -E 'outputdir|feat_files\(1\)|feat_files\(48\)|conname_real' ~/trust_example_higherlevel/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup.fsf
set fmri(outputdir) "/home/jovyan/trust_example_higherlevel/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup"
set feat_files(1) "/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope10.feat/stats/cope1.nii.gz"
set feat_files(48) "/home/jovyan/trust_example_higherlevel/derivatives/fsl/sub-159/L2_task-trust_model-01_type-act_sm-6.gfeat/cope10.feat/stats/cope1.nii.gz"
set fmri(conname_real.1) "pos"
set fmri(conname_real.2) "neg"

The rendered .fsf should point to the archived Level-2 .gfeat directories in the original shared derivative tree. Because this first group model is just a one-sample t-test, the bookkeeping stays simple enough that you can inspect the paths directly before running FEAT.

%%bash
set -e

DERIV_DIR="$HOME/trust_example_higherlevel/derivatives/fsl"

rm -rf "${DERIV_DIR}/L3_task-trust_model-01_type-act_cope10_onegroup.gfeat"
rm -rf "${DERIV_DIR}/L3_task-trust_model-01_type-act_cope10_onegroup+"*.gfeat
rm -rf "${DERIV_DIR}/logs"

echo "Removed any previous notebook-generated initial Level-3 derivatives."
Removed any previous notebook-generated initial Level-3 derivatives.
%%bash
set -e

ONEGROUP_FSF="$HOME/trust_example_higherlevel/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup.fsf"
feat "$ONEGROUP_FSF"
To view the FEAT progress and final report, point your web browser at /home/jovyan/trust_example_hig
herlevel/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup.gfeat/report_log.html

9. Review the initial Level-3 output and check the mask#

For the initial one-group model, the main map we want is:

  • cope1.feat/thresh_zstat1.nii.gz

This is where the teachable moment begins. If the activation pattern looks surprisingly limited, do not immediately assume the underlying effect is absent. First inspect the group mask that FEAT actually used for the inference step.

initial_onegroup_dir = EXAMPLE_DIR / "derivatives" / "fsl" / "L3_task-trust_model-01_type-act_cope10_onegroup.gfeat"

for rel in [
    "report.html",
    "design.png",
    "cope1.feat",
    "cope1.feat/mask.nii.gz",
    "cope1.feat/thresh_zstat1.nii.gz",
]:
    p = initial_onegroup_dir / rel
    print(f"{p}: {p.exists()}")

# Reuse the MNI T1 background logic for the Level-3 visualizations.
bg_candidates = [
    Path(os.environ.get("FSLDIR", "")) / "data" / "standard" / "MNI152_T1_2mm_brain.nii.gz" if os.environ.get("FSLDIR") else None,
    Path("/opt/fsl/data/standard/MNI152_T1_2mm_brain.nii.gz"),
    Path("/opt/fsl-6.0.7.16/data/standard/MNI152_T1_2mm_brain.nii.gz"),
    Path("/usr/share/fsl/5.0/data/standard/MNI152_T1_2mm_brain.nii.gz"),
]

group_bg = None
for cand in bg_candidates:
    if cand is not None and cand.exists():
        group_bg = cand
        break

print("MNI background exists:", group_bg is not None, group_bg)
/home/jovyan/trust_example_higherlevel/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup.gfeat/report.html: True
/home/jovyan/trust_example_higherlevel/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup.gfeat/design.png: True
/home/jovyan/trust_example_higherlevel/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup.gfeat/cope1.feat: True
/home/jovyan/trust_example_higherlevel/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup.gfeat/cope1.feat/mask.nii.gz: True
/home/jovyan/trust_example_higherlevel/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup.gfeat/cope1.feat/thresh_zstat1.nii.gz: True
MNI background exists: True /cvmfs/neurodesk.ardc.edu.au/containers/fsl_6.0.7.16_20250131/fsl_6.0.7.16_20250131.simg/opt/fsl-6.0.7.16/data/standard/MNI152_T1_2mm_brain.nii.gz

The first visualization below shows the original one-group result for reciprocate > defect. The result is not wrong in the narrow sense that FEAT ran, but it is incomplete in a scientifically important way. This is exactly why it is worth checking the mask before spending much time on interpretation.

from ipyniivue import NiiVue

zmap = initial_onegroup_dir / "cope1.feat" / "thresh_zstat1.nii.gz"

print("Background exists:", group_bg is not None, group_bg)
print("Contrast exists:", zmap.exists(), zmap)

if group_bg is not None and zmap.exists():
    zdata = nib.load(str(zmap)).get_fdata()
    zmax = float(np.nanmax(zdata))
    print("Max thresholded value:", zmax)

    if zmax > 0:
        bg_data = nib.load(str(group_bg)).get_fdata()
        bg_nonzero = bg_data[bg_data > 0]
        lo = float(np.percentile(bg_nonzero, 2))
        hi = float(np.percentile(bg_nonzero, 98))

        nv = NiiVue()
        nv.load_volumes([
            {
                "path": str(group_bg),
                "name": "MNI152_T1_2mm_brain",
                "colormap": "gray",
                "opacity": 1.0,
                "cal_min": lo,
                "cal_max": hi,
            },
            {
                "path": str(zmap),
                "name": "initial mean_pos",
                "colormap": "red",
                "opacity": 0.75,
            },
        ])
        display(nv)
    else:
        print("The thresholded map contains no voxels above zero, so we skip plotting it.")
else:
    print("Could not find the MNI background or the initial thresholded group map.")
Background exists: True /cvmfs/neurodesk.ardc.edu.au/containers/fsl_6.0.7.16_20250131/fsl_6.0.7.16_20250131.simg/opt/fsl-6.0.7.16/data/standard/MNI152_T1_2mm_brain.nii.gz
Contrast exists: True /home/jovyan/trust_example_higherlevel/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup.gfeat/cope1.feat/thresh_zstat1.nii.gz
Max thresholded value: 4.791534900665283

Now check the Level-3 mask directly. The lesson here is simple and general: always check your mask before you check your activation.

In this case, the mask reveals that FEAT only analyzed a small and obviously incorrect subset of voxels—mostly in the temporal lobe, with some voxels even extending outside the brain. That pattern tells us something went seriously wrong upstream.

These original higher-level inputs were derived from an older preprocessing run using fMRIPrep 20.2.3. We chose that older version because it came closer to the preprocessing vintage of the original paper, even though the Neurodesk module options do not go that far back. That likely contributed to the failure mode here, which is why we reran the shared derivatives with a different fMRIPrep version before trusting the group result.

old_mask = initial_onegroup_dir / "cope1.feat" / "mask.nii.gz"

print("Background exists:", group_bg is not None, group_bg)
print("Mask exists:", old_mask.exists(), old_mask)

if old_mask.exists():
    mask_data = nib.load(str(old_mask)).get_fdata()
    mask_nvox = int(np.count_nonzero(mask_data > 0))
    print("Nonzero mask voxels:", mask_nvox)

    nz = np.argwhere(mask_data > 0)
    if nz.size > 0:
        print("Mask bounding box (voxel indices):")
        print("  min:", nz.min(axis=0))
        print("  max:", nz.max(axis=0))

if group_bg is not None and old_mask.exists():
    bg_data = nib.load(str(group_bg)).get_fdata()
    bg_nonzero = bg_data[bg_data > 0]
    lo = float(np.percentile(bg_nonzero, 2))
    hi = float(np.percentile(bg_nonzero, 98))

    nv = NiiVue()
    nv.load_volumes([
        {
            "path": str(group_bg),
            "name": "MNI152_T1_2mm_brain",
            "colormap": "gray",
            "opacity": 1.0,
            "cal_min": lo,
            "cal_max": hi,
        },
        {
            "path": str(old_mask),
            "name": "initial group mask",
            "colormap": "red",
            "opacity": 0.55,
            "cal_min": 0.5,
            "cal_max": 1.0,
        },
    ])
    display(nv)
else:
    print("Could not find the MNI background or the initial group mask.")
Background exists: True /cvmfs/neurodesk.ardc.edu.au/containers/fsl_6.0.7.16_20250131/fsl_6.0.7.16_20250131.simg/opt/fsl-6.0.7.16/data/standard/MNI152_T1_2mm_brain.nii.gz
Mask exists: True /home/jovyan/trust_example_higherlevel/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup.gfeat/cope1.feat/mask.nii.gz
Nonzero mask voxels: 1214
Mask bounding box (voxel indices):
  min: [ 8 33 16]
  max: [25 62 29]

10. Refresh the Level-3 inputs and rerun the group model#

To fix that problem, we keep the Level-2 example as-is but swap in a refreshed shared Level-2 archive that was generated after rerunning preprocessing with fMRIPrep 25.2.5.

The public file page for that refreshed archive is:

The refreshed archive itself is named:

osfstorage/revised-fsl-activation.tar.gz

The cell below uses that exact archive name. It also detects the top-level extracted folder automatically, so the notebook stays stable even if the archive unpacks into a folder such as __forHigherLevel-Act.

%%bash
set -e

EXAMPLE_DIR="$HOME/trust_example_higherlevel"
PROJECT="ktxug"

REFRESH_ROOT="$EXAMPLE_DIR/refreshed_2525"
REFRESH_DOWNLOAD_DIR="$REFRESH_ROOT/downloads"
REFRESH_DERIV_DIR="$REFRESH_ROOT/derivatives/fsl"

REMOTE_ARCHIVE_NEW="osfstorage/revised-fsl-activation.tar.gz"
LOCAL_ARCHIVE_NEW="$REFRESH_DOWNLOAD_DIR/revised-fsl-activation.tar.gz"

mkdir -p "$REFRESH_DOWNLOAD_DIR"
mkdir -p "$REFRESH_DERIV_DIR"

echo "Files visible in OSF project $PROJECT:"
osf -p "$PROJECT" ls

echo
if [ ! -f "$LOCAL_ARCHIVE_NEW" ]; then
    echo "Downloading refreshed archive from OSF ..."
    osf -p "$PROJECT" fetch "$REMOTE_ARCHIVE_NEW" "$LOCAL_ARCHIVE_NEW"
else
    echo "Refreshed archive already exists locally. Reusing it:"
    echo "  $LOCAL_ARCHIVE_NEW"
fi

echo
echo "Refreshing unpacked archive contents ..."
find "$REFRESH_DOWNLOAD_DIR" -mindepth 1 -maxdepth 1 -type d -name "__for*" -exec rm -rf {} +
tar -xzf "$LOCAL_ARCHIVE_NEW" -C "$REFRESH_DOWNLOAD_DIR"

# Detect the top-level folder created by the archive so the notebook stays robust
# if we rename that folder in a future archive refresh.
ARCHIVE_ROOT="$(find "$REFRESH_DOWNLOAD_DIR" -mindepth 1 -maxdepth 1 -type d -name "__for*" | head -1)"

echo "Detected archive root:"
echo "  $ARCHIVE_ROOT"

if [ -z "$ARCHIVE_ROOT" ] || [ ! -d "$ARCHIVE_ROOT" ]; then
    echo "Could not detect the refreshed archive root after unpacking."
    exit 1
fi

echo
ls "$REFRESH_DOWNLOAD_DIR"
ls "$LOCAL_ARCHIVE_NEW"

echo
echo "Refreshing the shared derivative tree ..."
rm -rf "$REFRESH_DERIV_DIR"
mkdir -p "$REFRESH_DERIV_DIR"
cp -r "$ARCHIVE_ROOT/." "$REFRESH_DERIV_DIR/"

echo
echo "Refreshed higher-level derivatives are now here:"
echo "  $REFRESH_DERIV_DIR"
find "$REFRESH_DERIV_DIR" -maxdepth 2 -type d | sort | head -60
Files visible in OSF project ktxug:
osfstorage/revised-fsl-activation.tar.gz
osfstorage/fareri-2022-neuroimage_example-activation.tar.gz
Downloading refreshed archive from OSF ...

Refreshing unpacked archive contents ...
Detected archive root:
  /home/jovyan/trust_example_higherlevel/refreshed_2525/downloads/__forHigher
Level-Act
__forHigherLevel-Act
revised-fsl-activation.tar.gz
/home/jovyan/trust_example_higherlevel/refreshed_2525/downloads/revised-fsl-activation.tar.gz
Refreshing the shared derivative tree ...

Refreshed higher-level derivatives are now here:
  /home/jovyan/trust_example_higherlevel/refreshed
_2525/derivatives/fsl
/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl
/home/jovyan/trust_example_hig
herlevel/refreshed_2525/derivatives/fsl/sub-104
/home/jovyan/trust_example_higherlevel/refreshed_252
5/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-01_sm-6.feat
/home/jovyan/trust_exampl
e_higherlevel/refreshed_2525/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-02_sm-6.fea
t
/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-104/L1_task-trust_model-
01_type-act_run-03_sm-6.feat
/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/s
ub-104/L1_task-trust_model-01_type-act_run-04_sm-6.feat
/home/jovyan/trust_example_higherlevel/refre
shed_2525/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-05_sm-6.feat
/home/jovyan/trus
t_example_higherlevel/refreshed_2525/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gf
eat
/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-105
/home/jovyan/trust
_example_higherlevel/refreshed_2525/derivatives/fsl/sub-105/L2_task-trust_model-01_type-act_sm-6.gfe
at
/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-106
/home/jovyan/trust_
example_higherlevel/refreshed_2525/derivatives/fsl/sub-106/L2_task-trust_model-01_type-act_sm-6.gfea
t
/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-107
/home/jovyan/trust_e
xample_higherlevel/refreshed_2525/derivatives/fsl/sub-107/L2_task-trust_model-01_type-act_sm-6.gfeat

/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-108
/home/jovyan/trust_ex
ample_higherlevel/refreshed_2525/derivatives/fsl/sub-108/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-109
/home/jovyan/trust_exa
mple_higherlevel/refreshed_2525/derivatives/fsl/sub-109/L2_task-trust_model-01_type-act_sm-6.gfeat
/
home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-110
/home/jovyan/trust_exam
ple_higherlevel/refreshed_2525/derivatives/fsl/sub-110/L2_task-trust_model-01_type-act_sm-6.gfeat
/h
ome/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-111
/home/jovyan/trust_examp
le_higherlevel/refreshed_2525/derivatives/fsl/sub-111/L2_task-trust_model-01_type-act_sm-6.gfeat
/ho
me/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-112
/home/jovyan/trust_exampl
e_higherlevel/refreshed_2525/derivatives/fsl/sub-112/L2_task-trust_model-01_type-act_sm-6.gfeat
/hom
e/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-113
/home/jovyan/trust_example
_higherlevel/refreshed_2525/derivatives/fsl/sub-113/L2_task-trust_model-01_type-act_sm-6.gfeat
/home
/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-115
/home/jovyan/trust_example_
higherlevel/refreshed_2525/derivatives/fsl/sub-115/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/
jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-116
/home/jovyan/trust_example_h
igherlevel/refreshed_2525/derivatives/fsl/sub-116/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/j
ovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-117
/home/jovyan/trust_example_hi
gherlevel/refreshed_2525/derivatives/fsl/sub-117/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jo
vyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-118
/home/jovyan/trust_example_hig
herlevel/refreshed_2525/derivatives/fsl/sub-118/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jov
yan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-120
/home/jovyan/trust_example_high
erlevel/refreshed_2525/derivatives/fsl/sub-120/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovy
an/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-121
/home/jovyan/trust_example_highe
rlevel/refreshed_2525/derivatives/fsl/sub-121/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovya
n/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-122
/home/jovyan/trust_example_higher
level/refreshed_2525/derivatives/fsl/sub-122/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan
/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-124
/home/jovyan/trust_example_higherl
evel/refreshed_2525/derivatives/fsl/sub-124/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/
trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-125
/home/jovyan/trust_example_higherle
vel/refreshed_2525/derivatives/fsl/sub-125/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/t
rust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-126
/home/jovyan/trust_example_higherlev
el/refreshed_2525/derivatives/fsl/sub-126/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/tr
ust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-127
/home/jovyan/trust_example_higherleve
l/refreshed_2525/derivatives/fsl/sub-127/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/tru
st_example_higherlevel/refreshed_2525/derivatives/fsl/sub-128
/home/jovyan/trust_example_higherlevel
/refreshed_2525/derivatives/fsl/sub-128/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trus
t_example_higherlevel/refreshed_2525/derivatives/fsl/sub-129
/home/jovyan/trust_example_higherlevel/
refreshed_2525/derivatives/fsl/sub-129/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust
_example_higherlevel/refreshed_2525/derivatives/fsl/sub-130
/home/jovyan/trust_example_higherlevel/r
efreshed_2525/derivatives/fsl/sub-130/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_
example_higherlevel/refreshed_2525/derivatives/fsl/sub-131
/home/jovyan/trust_example_higherlevel/re
freshed_2525/derivatives/fsl/sub-131/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_e
xample_higherlevel/refreshed_2525/derivatives/fsl/sub-132
/home/jovyan/trust_example_higherlevel/ref
reshed_2525/derivatives/fsl/sub-132/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_ex
ample_higherlevel/refreshed_2525/derivatives/fsl/sub-133
/home/jovyan/trust_example_higherlevel/refr
eshed_2525/derivatives/fsl/sub-133/L2_task-trust_model-01_type-act_sm-6.gfeat
  0%|          | 0.00/2.76G [00:00<?, ?bytes/s]
  0%|          | 16.4k/2.76G [00:00<7:26:24, 103kbytes/s]
  0%|          | 49.2k/2.76G [00:00<6:16:52, 122kbytes/s]
  0%|          | 81.9k/2.76G [00:00<6:01:20, 127kbytes/s]
  0%|          | 131k/2.76G [00:00<3:52:28, 198kbytes/s]
  0%|          | 164k/2.76G [00:00<3:27:20, 222kbytes/s]
  0%|          | 213k/2.76G [00:00<2:40:10, 287kbytes/s]
  0%|          | 295k/2.76G [00:01<1:50:32, 416kbytes/s]
  0%|          | 393k/2.76G [00:01<1:23:30, 551kbytes/s]
  0%|          | 524k/2.76G [00:01<1:01:58, 742kbytes/s]
  0%|          | 754k/2.76G [00:01<40:14, 1.14Mbytes/s]
  0%|          | 999k/2.76G [00:01<30:52, 1.49Mbytes/s]
  0%|          | 1.38M/2.76G [00:01<21:37, 2.13Mbytes/s]
  0%|          | 1.90M/2.76G [00:01<15:14, 3.02Mbytes/s]
  0%|          | 2.62M/2.76G [00:01<10:54, 4.21Mbytes/s]
  0%|          | 3.64M/2.76G [00:01<07:44, 5.94Mbytes/s]
  0%|          | 5.05M/2.76G [00:02<05:34, 8.25Mbytes/s]
  0%|          | 6.85M/2.76G [00:02<04:07, 11.1Mbytes/s]
  0%|          | 8.32M/2.76G [00:02<03:52, 11.8Mbytes/s]
  0%|          | 10.1M/2.76G [00:02<03:32, 12.9Mbytes/s]
  0%|          | 11.8M/2.76G [00:02<03:18, 13.9Mbytes/s]
  0%|          | 13.2M/2.76G [00:02<03:19, 13.8Mbytes/s]
  1%|          | 15.0M/2.76G [00:02<03:05, 14.8Mbytes/s]
  1%|          | 16.5M/2.76G [00:02<03:10, 14.4Mbytes/s]
  1%|          | 18.3M/2.76G [00:02<02:58, 15.4Mbytes/s]
  1%|          | 19.8M/2.76G [00:02<03:01, 15.1Mbytes/s]
  1%|          | 21.4M/2.76G [00:03<02:59, 15.2Mbytes/s]
  1%|          | 22.9M/2.76G [00:03<03:00, 15.2Mbytes/s]
  1%|          | 24.5M/2.76G [00:03<02:57, 15.4Mbytes/s]
  1%|          | 26.1M/2.76G [00:03<03:00, 15.2Mbytes/s]
  1%|          | 27.6M/2.76G [00:03<02:59, 15.2Mbytes/s]
  1%|          | 29.1M/2.76G [00:03<03:01, 15.0Mbytes/s]
  1%|          | 30.6M/2.76G [00:03<03:01, 15.0Mbytes/s]
  1%|          | 32.1M/2.76G [00:03<03:13, 14.1Mbytes/s]
  1%|          | 33.8M/2.76G [00:03<03:06, 14.6Mbytes/s]
  1%|▏         | 35.2M/2.76G [00:04<03:06, 14.6Mbytes/s]
  1%|▏         | 37.0M/2.76G [00:04<02:55, 15.5Mbytes/s]
  1%|▏         | 38.6M/2.76G [00:04<02:59, 15.1Mbytes/s]
  1%|▏         | 40.1M/2.76G [00:04<03:56, 11.5Mbytes/s]
  2%|▏         | 42.0M/2.76G [00:04<03:53, 11.7Mbytes/s]
  2%|▏         | 44.1M/2.76G [00:04<04:40, 9.69Mbytes/s]
  2%|▏         | 47.3M/2.76G [00:05<03:52, 11.7Mbytes/s]
  2%|▏         | 50.5M/2.76G [00:05<03:31, 12.8Mbytes/s]
  2%|▏         | 53.7M/2.76G [00:05<02:47, 16.2Mbytes/s]
  2%|▏         | 55.6M/2.76G [00:05<03:15, 13.8Mbytes/s]
  2%|▏         | 57.2M/2.76G [00:05<03:20, 13.5Mbytes/s]
  2%|▏         | 59.5M/2.76G [00:05<02:55, 15.4Mbytes/s]
  2%|▏         | 61.2M/2.76G [00:06<03:16, 13.8Mbytes/s]
  2%|▏         | 62.9M/2.76G [00:06<03:19, 13.5Mbytes/s]
  2%|▏         | 65.5M/2.76G [00:06<02:45, 16.2Mbytes/s]
  2%|▏         | 67.2M/2.76G [00:06<02:56, 15.3Mbytes/s]
  3%|▎         | 69.2M/2.76G [00:06<03:12, 13.9Mbytes/s]
  3%|▎         | 70.7M/2.76G [00:06<03:15, 13.8Mbytes/s]
  3%|▎         | 72.2M/2.76G [00:06<03:56, 11.4Mbytes/s]
  3%|▎         | 74.2M/2.76G [00:06<03:25, 13.1Mbytes/s]
  3%|▎         | 75.6M/2.76G [00:07<03:23, 13.2Mbytes/s]
  3%|▎         | 77.3M/2.76G [00:07<03:08, 14.3Mbytes/s]
  3%|▎         | 78.9M/2.76G [00:07<03:08, 14.3Mbytes/s]
  3%|▎         | 80.6M/2.76G [00:07<02:58, 15.0Mbytes/s]
  3%|▎         | 82.1M/2.76G [00:07<02:59, 14.9Mbytes/s]
  3%|▎         | 83.7M/2.76G [00:07<02:55, 15.3Mbytes/s]
  3%|▎         | 85.3M/2.76G [00:07<03:08, 14.2Mbytes/s]
  3%|▎         | 86.8M/2.76G [00:07<04:05, 10.9Mbytes/s]
  3%|▎         | 88.1M/2.76G [00:08<03:57, 11.2Mbytes/s]
  3%|▎         | 89.8M/2.76G [00:08<03:29, 12.8Mbytes/s]
  3%|▎         | 91.4M/2.76G [00:08<03:22, 13.2Mbytes/s]
  3%|▎         | 93.1M/2.76G [00:08<03:07, 14.2Mbytes/s]
  3%|▎         | 94.6M/2.76G [00:08<03:07, 14.2Mbytes/s]
  3%|▎         | 96.1M/2.76G [00:08<03:04, 14.4Mbytes/s]
  4%|▎         | 97.6M/2.76G [00:08<03:03, 14.5Mbytes/s]
  4%|▎         | 99.3M/2.76G [00:08<02:55, 15.1Mbytes/s]
  4%|▎         | 101M/2.76G [00:08<02:58, 14.9Mbytes/s]
  4%|▎         | 103M/2.76G [00:08<02:51, 15.5Mbytes/s]
  4%|▍         | 104M/2.76G [00:09<02:56, 15.1Mbytes/s]
  4%|▍         | 106M/2.76G [00:09<02:55, 15.1Mbytes/s]
  4%|▍         | 107M/2.76G [00:09<02:54, 15.2Mbytes/s]
  4%|▍         | 109M/2.76G [00:09<03:03, 14.4Mbytes/s]
  4%|▍         | 111M/2.76G [00:09<02:44, 16.1Mbytes/s]
  4%|▍         | 112M/2.76G [00:09<02:51, 15.4Mbytes/s]
  4%|▍         | 114M/2.76G [00:09<03:09, 14.0Mbytes/s]
  4%|▍         | 116M/2.76G [00:09<02:57, 14.9Mbytes/s]
  4%|▍         | 118M/2.76G [00:09<02:56, 14.9Mbytes/s]
  4%|▍         | 119M/2.76G [00:10<02:54, 15.1Mbytes/s]
  4%|▍         | 121M/2.76G [00:10<02:54, 15.1Mbytes/s]
  4%|▍         | 123M/2.76G [00:10<02:51, 15.4Mbytes/s]
  4%|▍         | 124M/2.76G [00:10<02:52, 15.3Mbytes/s]
  5%|▍         | 126M/2.76G [00:10<02:49, 15.5Mbytes/s]
  5%|▍         | 127M/2.76G [00:10<02:51, 15.4Mbytes/s]
  5%|▍         | 129M/2.76G [00:10<02:50, 15.5Mbytes/s]
  5%|▍         | 131M/2.76G [00:10<02:52, 15.3Mbytes/s]
  5%|▍         | 132M/2.76G [00:10<02:51, 15.4Mbytes/s]
  5%|▍         | 134M/2.76G [00:11<02:52, 15.2Mbytes/s]
  5%|▍         | 135M/2.76G [00:11<02:48, 15.6Mbytes/s]
  5%|▍         | 137M/2.76G [00:11<02:52, 15.2Mbytes/s]
  5%|▌         | 139M/2.76G [00:11<02:47, 15.6Mbytes/s]
  5%|▌         | 140M/2.76G [00:11<02:49, 15.4Mbytes/s]
  5%|▌         | 142M/2.76G [00:11<02:44, 15.9Mbytes/s]
  5%|▌         | 143M/2.76G [00:11<02:54, 15.0Mbytes/s]
  5%|▌         | 145M/2.76G [00:11<02:43, 16.0Mbytes/s]
  5%|▌         | 147M/2.76G [00:11<02:46, 15.7Mbytes/s]
  5%|▌         | 149M/2.76G [00:11<02:45, 15.8Mbytes/s]
  5%|▌         | 150M/2.76G [00:12<02:47, 15.6Mbytes/s]
  5%|▌         | 152M/2.76G [00:12<02:46, 15.6Mbytes/s]
  6%|▌         | 153M/2.76G [00:12<02:49, 15.4Mbytes/s]
  6%|▌         | 155M/2.76G [00:12<02:46, 15.6Mbytes/s]
  6%|▌         | 157M/2.76G [00:12<02:49, 15.4Mbytes/s]
  6%|▌         | 158M/2.76G [00:12<02:45, 15.7Mbytes/s]
  6%|▌         | 160M/2.76G [00:12<02:49, 15.4Mbytes/s]
  6%|▌         | 161M/2.76G [00:12<03:15, 13.3Mbytes/s]
  6%|▌         | 163M/2.76G [00:12<02:55, 14.8Mbytes/s]
  6%|▌         | 165M/2.76G [00:13<02:56, 14.7Mbytes/s]
  6%|▌         | 167M/2.76G [00:13<03:41, 11.7Mbytes/s]
  6%|▌         | 169M/2.76G [00:13<03:36, 12.0Mbytes/s]
  6%|▌         | 172M/2.76G [00:13<03:17, 13.1Mbytes/s]
  6%|▋         | 175M/2.76G [00:13<03:06, 13.9Mbytes/s]
  6%|▋         | 178M/2.76G [00:14<03:01, 14.3Mbytes/s]
  7%|▋         | 181M/2.76G [00:14<02:57, 14.6Mbytes/s]
  7%|▋         | 185M/2.76G [00:14<02:54, 14.8Mbytes/s]
  7%|▋         | 188M/2.76G [00:14<02:52, 14.9Mbytes/s]
  7%|▋         | 191M/2.76G [00:14<02:51, 15.0Mbytes/s]
  7%|▋         | 194M/2.76G [00:15<02:51, 14.9Mbytes/s]
  7%|▋         | 197M/2.76G [00:15<02:48, 15.2Mbytes/s]
  7%|▋         | 200M/2.76G [00:15<02:30, 17.0Mbytes/s]
  7%|▋         | 202M/2.76G [00:15<02:39, 16.1Mbytes/s]
  7%|▋         | 203M/2.76G [00:15<02:58, 14.3Mbytes/s]
  7%|▋         | 206M/2.76G [00:15<02:32, 16.8Mbytes/s]
  8%|▊         | 208M/2.76G [00:15<02:44, 15.6Mbytes/s]
  8%|▊         | 209M/2.76G [00:16<03:03, 13.9Mbytes/s]
  8%|▊         | 212M/2.76G [00:16<02:32, 16.7Mbytes/s]
  8%|▊         | 214M/2.76G [00:16<02:44, 15.5Mbytes/s]
  8%|▊         | 216M/2.76G [00:16<03:05, 13.7Mbytes/s]
  8%|▊         | 218M/2.76G [00:16<02:31, 16.7Mbytes/s]
  8%|▊         | 220M/2.76G [00:16<02:46, 15.3Mbytes/s]
  8%|▊         | 222M/2.76G [00:16<03:22, 12.5Mbytes/s]
  8%|▊         | 223M/2.76G [00:17<03:58, 10.6Mbytes/s]
  8%|▊         | 226M/2.76G [00:17<03:34, 11.8Mbytes/s]
  8%|▊         | 229M/2.76G [00:17<03:17, 12.8Mbytes/s]
  8%|▊         | 232M/2.76G [00:17<03:07, 13.5Mbytes/s]
  9%|▊         | 236M/2.76G [00:18<02:58, 14.1Mbytes/s]
  9%|▊         | 239M/2.76G [00:18<02:54, 14.5Mbytes/s]
  9%|▉         | 242M/2.76G [00:18<02:51, 14.7Mbytes/s]
  9%|▉         | 245M/2.76G [00:18<02:50, 14.8Mbytes/s]
  9%|▉         | 248M/2.76G [00:18<02:48, 14.9Mbytes/s]
  9%|▉         | 251M/2.76G [00:19<02:46, 15.1Mbytes/s]
  9%|▉         | 254M/2.76G [00:19<02:45, 15.1Mbytes/s]
  9%|▉         | 257M/2.76G [00:19<02:44, 15.2Mbytes/s]
  9%|▉         | 261M/2.76G [00:19<02:44, 15.2Mbytes/s]
 10%|▉         | 264M/2.76G [00:19<02:44, 15.2Mbytes/s]
 10%|▉         | 267M/2.76G [00:20<02:43, 15.3Mbytes/s]
 10%|▉         | 270M/2.76G [00:20<02:42, 15.3Mbytes/s]
 10%|▉         | 273M/2.76G [00:20<02:18, 17.9Mbytes/s]
 10%|▉         | 275M/2.76G [00:20<02:32, 16.3Mbytes/s]
 10%|█         | 277M/2.76G [00:20<02:50, 14.6Mbytes/s]
 10%|█         | 279M/2.76G [00:20<02:49, 14.6Mbytes/s]
 10%|█         | 281M/2.76G [00:20<02:50, 14.5Mbytes/s]
 10%|█         | 283M/2.76G [00:21<02:44, 15.0Mbytes/s]
 10%|█         | 284M/2.76G [00:21<02:48, 14.7Mbytes/s]
 10%|█         | 286M/2.76G [00:21<02:41, 15.3Mbytes/s]
 10%|█         | 288M/2.76G [00:21<02:44, 15.0Mbytes/s]
 10%|█         | 290M/2.76G [00:21<02:34, 16.0Mbytes/s]
 11%|█         | 291M/2.76G [00:21<02:38, 15.6Mbytes/s]
 11%|█         | 293M/2.76G [00:21<02:40, 15.3Mbytes/s]
 11%|█         | 294M/2.76G [00:21<02:37, 15.6Mbytes/s]
 11%|█         | 296M/2.76G [00:21<02:40, 15.3Mbytes/s]
 11%|█         | 298M/2.76G [00:22<02:37, 15.7Mbytes/s]
 11%|█         | 299M/2.76G [00:22<02:40, 15.4Mbytes/s]
 11%|█         | 301M/2.76G [00:22<03:13, 12.7Mbytes/s]
 11%|█         | 303M/2.76G [00:22<03:24, 12.0Mbytes/s]
 11%|█         | 306M/2.76G [00:22<03:06, 13.2Mbytes/s]
 11%|█         | 308M/2.76G [00:22<02:46, 14.7Mbytes/s]
 11%|█         | 310M/2.76G [00:22<02:44, 14.9Mbytes/s]
 11%|█▏        | 312M/2.76G [00:23<02:40, 15.2Mbytes/s]
 11%|█▏        | 313M/2.76G [00:23<02:42, 15.0Mbytes/s]
 11%|█▏        | 315M/2.76G [00:23<02:35, 15.7Mbytes/s]
 11%|█▏        | 316M/2.76G [00:23<02:37, 15.5Mbytes/s]
 12%|█▏        | 318M/2.76G [00:23<02:42, 15.1Mbytes/s]
 12%|█▏        | 320M/2.76G [00:23<02:33, 15.9Mbytes/s]
 12%|█▏        | 322M/2.76G [00:23<02:33, 15.9Mbytes/s]
 12%|█▏        | 323M/2.76G [00:23<02:35, 15.6Mbytes/s]
 12%|█▏        | 325M/2.76G [00:23<02:35, 15.6Mbytes/s]
 12%|█▏        | 326M/2.76G [00:23<02:36, 15.5Mbytes/s]
 12%|█▏        | 328M/2.76G [00:24<02:37, 15.5Mbytes/s]
 12%|█▏        | 329M/2.76G [00:24<02:37, 15.4Mbytes/s]
 12%|█▏        | 331M/2.76G [00:24<02:39, 15.2Mbytes/s]
 12%|█▏        | 332M/2.76G [00:24<02:43, 14.9Mbytes/s]
 12%|█▏        | 334M/2.76G [00:24<03:11, 12.7Mbytes/s]
 12%|█▏        | 337M/2.76G [00:24<02:40, 15.1Mbytes/s]
 12%|█▏        | 338M/2.76G [00:24<02:46, 14.5Mbytes/s]
 12%|█▏        | 340M/2.76G [00:24<02:36, 15.5Mbytes/s]
 12%|█▏        | 342M/2.76G [00:25<02:40, 15.1Mbytes/s]
 12%|█▏        | 343M/2.76G [00:25<03:04, 13.1Mbytes/s]
 13%|█▎        | 346M/2.76G [00:25<02:35, 15.5Mbytes/s]
 13%|█▎        | 347M/2.76G [00:25<03:13, 12.5Mbytes/s]
 13%|█▎        | 349M/2.76G [00:25<03:27, 11.6Mbytes/s]
 13%|█▎        | 351M/2.76G [00:25<03:23, 11.8Mbytes/s]
 13%|█▎        | 354M/2.76G [00:26<03:06, 12.9Mbytes/s]
 13%|█▎        | 357M/2.76G [00:26<02:57, 13.6Mbytes/s]
 13%|█▎        | 360M/2.76G [00:26<02:49, 14.1Mbytes/s]
 13%|█▎        | 364M/2.76G [00:26<02:45, 14.5Mbytes/s]
 13%|█▎        | 367M/2.76G [00:26<02:42, 14.7Mbytes/s]
 13%|█▎        | 370M/2.76G [00:27<02:41, 14.8Mbytes/s]
 14%|█▎        | 373M/2.76G [00:27<02:41, 14.8Mbytes/s]
 14%|█▎        | 376M/2.76G [00:27<02:40, 14.8Mbytes/s]
 14%|█▎        | 379M/2.76G [00:27<02:39, 14.9Mbytes/s]
 14%|█▍        | 382M/2.76G [00:27<02:38, 15.0Mbytes/s]
 14%|█▍        | 385M/2.76G [00:28<02:38, 15.0Mbytes/s]
 14%|█▍        | 388M/2.76G [00:28<02:38, 15.0Mbytes/s]
 14%|█▍        | 391M/2.76G [00:28<02:38, 15.0Mbytes/s]
 14%|█▍        | 394M/2.76G [00:28<02:38, 15.0Mbytes/s]
 14%|█▍        | 397M/2.76G [00:28<02:37, 15.0Mbytes/s]
 15%|█▍        | 400M/2.76G [00:29<02:15, 17.5Mbytes/s]
 15%|█▍        | 402M/2.76G [00:29<02:26, 16.1Mbytes/s]
 15%|█▍        | 404M/2.76G [00:29<02:43, 14.4Mbytes/s]
 15%|█▍        | 407M/2.76G [00:29<02:43, 14.4Mbytes/s]
 15%|█▍        | 409M/2.76G [00:29<02:50, 13.8Mbytes/s]
 15%|█▍        | 412M/2.76G [00:29<02:45, 14.2Mbytes/s]
 15%|█▌        | 415M/2.76G [00:30<02:41, 14.5Mbytes/s]
 15%|█▌        | 418M/2.76G [00:30<02:38, 14.8Mbytes/s]
 15%|█▌        | 421M/2.76G [00:30<02:37, 14.9Mbytes/s]
 15%|█▌        | 424M/2.76G [00:30<02:37, 14.9Mbytes/s]
 15%|█▌        | 427M/2.76G [00:30<02:13, 17.4Mbytes/s]
 16%|█▌        | 429M/2.76G [00:31<02:26, 15.9Mbytes/s]
 16%|█▌        | 431M/2.76G [00:31<02:43, 14.3Mbytes/s]
 16%|█▌        | 434M/2.76G [00:31<02:45, 14.0Mbytes/s]
 16%|█▌        | 437M/2.76G [00:31<02:41, 14.4Mbytes/s]
 16%|█▌        | 440M/2.76G [00:31<02:39, 14.5Mbytes/s]
 16%|█▌        | 443M/2.76G [00:31<02:38, 14.6Mbytes/s]
 16%|█▌        | 446M/2.76G [00:32<02:37, 14.7Mbytes/s]
 16%|█▋        | 449M/2.76G [00:32<02:36, 14.8Mbytes/s]
 16%|█▋        | 451M/2.76G [00:32<02:37, 14.7Mbytes/s]
 16%|█▋        | 453M/2.76G [00:32<02:25, 15.9Mbytes/s]
 16%|█▋        | 455M/2.76G [00:32<02:29, 15.4Mbytes/s]
 17%|█▋        | 457M/2.76G [00:32<02:19, 16.6Mbytes/s]
 17%|█▋        | 458M/2.76G [00:33<02:41, 14.3Mbytes/s]
 17%|█▋        | 460M/2.76G [00:33<02:42, 14.2Mbytes/s]
 17%|█▋        | 462M/2.76G [00:33<02:27, 15.6Mbytes/s]
 17%|█▋        | 464M/2.76G [00:33<02:31, 15.1Mbytes/s]
 17%|█▋        | 466M/2.76G [00:33<02:21, 16.2Mbytes/s]
 17%|█▋        | 467M/2.76G [00:33<02:46, 13.8Mbytes/s]
 17%|█▋        | 469M/2.76G [00:33<03:09, 12.1Mbytes/s]
 17%|█▋        | 471M/2.76G [00:34<03:34, 10.7Mbytes/s]
 17%|█▋        | 474M/2.76G [00:34<03:06, 12.3Mbytes/s]
 17%|█▋        | 477M/2.76G [00:34<02:53, 13.1Mbytes/s]
 17%|█▋        | 480M/2.76G [00:34<02:46, 13.7Mbytes/s]
 18%|█▊        | 483M/2.76G [00:34<02:42, 14.0Mbytes/s]
 18%|█▊        | 487M/2.76G [00:35<02:40, 14.2Mbytes/s]
 18%|█▊        | 490M/2.76G [00:35<02:36, 14.5Mbytes/s]
 18%|█▊        | 493M/2.76G [00:35<02:33, 14.7Mbytes/s]
 18%|█▊        | 494M/2.76G [00:35<02:44, 13.8Mbytes/s]
 18%|█▊        | 496M/2.76G [00:35<03:24, 11.1Mbytes/s]
 18%|█▊        | 498M/2.76G [00:36<03:12, 11.8Mbytes/s]
 18%|█▊        | 501M/2.76G [00:36<02:32, 14.8Mbytes/s]
 18%|█▊        | 503M/2.76G [00:36<02:39, 14.1Mbytes/s]
 18%|█▊        | 504M/2.76G [00:36<02:58, 12.7Mbytes/s]
 18%|█▊        | 507M/2.76G [00:36<02:19, 16.1Mbytes/s]
 18%|█▊        | 509M/2.76G [00:36<02:28, 15.2Mbytes/s]
 19%|█▊        | 511M/2.76G [00:36<02:49, 13.3Mbytes/s]
 19%|█▊        | 514M/2.76G [00:37<02:44, 13.6Mbytes/s]
 19%|█▊        | 517M/2.76G [00:37<02:14, 16.7Mbytes/s]
 19%|█▉        | 519M/2.76G [00:37<02:37, 14.3Mbytes/s]
 19%|█▉        | 520M/2.76G [00:37<02:39, 14.0Mbytes/s]
 19%|█▉        | 522M/2.76G [00:37<02:20, 15.9Mbytes/s]
 19%|█▉        | 524M/2.76G [00:37<02:27, 15.1Mbytes/s]
 19%|█▉        | 526M/2.76G [00:37<02:41, 13.9Mbytes/s]
 19%|█▉        | 528M/2.76G [00:38<02:22, 15.7Mbytes/s]
 19%|█▉        | 530M/2.76G [00:38<02:29, 14.9Mbytes/s]
 19%|█▉        | 532M/2.76G [00:38<02:41, 13.8Mbytes/s]
 19%|█▉        | 534M/2.76G [00:38<02:22, 15.6Mbytes/s]
 19%|█▉        | 536M/2.76G [00:38<02:29, 14.9Mbytes/s]
 19%|█▉        | 538M/2.76G [00:38<02:40, 13.8Mbytes/s]
 20%|█▉        | 540M/2.76G [00:38<02:27, 15.0Mbytes/s]
 20%|█▉        | 542M/2.76G [00:38<02:31, 14.7Mbytes/s]
 20%|█▉        | 544M/2.76G [00:39<02:17, 16.2Mbytes/s]
 20%|█▉        | 546M/2.76G [00:39<02:23, 15.4Mbytes/s]
 20%|█▉        | 547M/2.76G [00:39<02:43, 13.5Mbytes/s]
 20%|█▉        | 550M/2.76G [00:39<02:23, 15.4Mbytes/s]
 20%|█▉        | 551M/2.76G [00:39<02:32, 14.5Mbytes/s]
 20%|██        | 553M/2.76G [00:39<03:03, 12.0Mbytes/s]
 20%|██        | 555M/2.76G [00:40<03:25, 10.8Mbytes/s]
 20%|██        | 558M/2.76G [00:40<03:00, 12.2Mbytes/s]
 20%|██        | 561M/2.76G [00:40<02:48, 13.1Mbytes/s]
 20%|██        | 564M/2.76G [00:40<02:39, 13.7Mbytes/s]
 21%|██        | 567M/2.76G [00:40<02:35, 14.1Mbytes/s]
 21%|██        | 571M/2.76G [00:41<02:31, 14.5Mbytes/s]
 21%|██        | 574M/2.76G [00:41<02:29, 14.6Mbytes/s]
 21%|██        | 577M/2.76G [00:41<02:13, 16.4Mbytes/s]
 21%|██        | 578M/2.76G [00:41<02:15, 16.1Mbytes/s]
 21%|██        | 580M/2.76G [00:41<02:43, 13.3Mbytes/s]
 21%|██        | 582M/2.76G [00:41<02:48, 12.9Mbytes/s]
 21%|██        | 584M/2.76G [00:42<02:49, 12.8Mbytes/s]
 21%|██▏       | 587M/2.76G [00:42<02:39, 13.6Mbytes/s]
 21%|██▏       | 590M/2.76G [00:42<02:34, 14.0Mbytes/s]
 21%|██▏       | 593M/2.76G [00:42<02:31, 14.3Mbytes/s]
 22%|██▏       | 596M/2.76G [00:42<02:28, 14.6Mbytes/s]
 22%|██▏       | 599M/2.76G [00:43<02:26, 14.8Mbytes/s]
 22%|██▏       | 603M/2.76G [00:43<02:24, 14.9Mbytes/s]
 22%|██▏       | 606M/2.76G [00:43<02:24, 14.9Mbytes/s]
 22%|██▏       | 609M/2.76G [00:43<02:22, 15.1Mbytes/s]
 22%|██▏       | 612M/2.76G [00:43<02:21, 15.2Mbytes/s]
 22%|██▏       | 615M/2.76G [00:44<02:21, 15.1Mbytes/s]
 22%|██▏       | 618M/2.76G [00:44<02:22, 15.0Mbytes/s]
 23%|██▎       | 621M/2.76G [00:44<02:22, 15.0Mbytes/s]
 23%|██▎       | 624M/2.76G [00:44<02:21, 15.1Mbytes/s]
 23%|██▎       | 628M/2.76G [00:44<02:21, 15.1Mbytes/s]
 23%|██▎       | 630M/2.76G [00:45<02:33, 13.9Mbytes/s]
 23%|██▎       | 632M/2.76G [00:45<02:47, 12.7Mbytes/s]
 23%|██▎       | 635M/2.76G [00:45<02:39, 13.3Mbytes/s]
 23%|██▎       | 638M/2.76G [00:45<02:33, 13.9Mbytes/s]
 23%|██▎       | 641M/2.76G [00:45<02:29, 14.2Mbytes/s]
 23%|██▎       | 644M/2.76G [00:46<02:03, 17.1Mbytes/s]
 23%|██▎       | 646M/2.76G [00:46<02:12, 15.9Mbytes/s]
 23%|██▎       | 648M/2.76G [00:46<02:29, 14.1Mbytes/s]
 24%|██▎       | 650M/2.76G [00:46<02:34, 13.7Mbytes/s]
 24%|██▎       | 653M/2.76G [00:46<02:09, 16.3Mbytes/s]
 24%|██▎       | 655M/2.76G [00:46<02:16, 15.4Mbytes/s]
 24%|██▍       | 657M/2.76G [00:46<02:35, 13.5Mbytes/s]
 24%|██▍       | 659M/2.76G [00:47<02:08, 16.3Mbytes/s]
 24%|██▍       | 661M/2.76G [00:47<02:16, 15.4Mbytes/s]
 24%|██▍       | 663M/2.76G [00:47<02:35, 13.5Mbytes/s]
 24%|██▍       | 665M/2.76G [00:47<02:07, 16.4Mbytes/s]
 24%|██▍       | 667M/2.76G [00:47<02:15, 15.4Mbytes/s]
 24%|██▍       | 669M/2.76G [00:47<02:34, 13.5Mbytes/s]
 24%|██▍       | 672M/2.76G [00:48<02:44, 12.7Mbytes/s]
 24%|██▍       | 673M/2.76G [00:48<03:07, 11.1Mbytes/s]
 24%|██▍       | 676M/2.76G [00:48<02:47, 12.5Mbytes/s]
 25%|██▍       | 679M/2.76G [00:48<02:36, 13.3Mbytes/s]
 25%|██▍       | 682M/2.76G [00:48<02:20, 14.8Mbytes/s]
 25%|██▍       | 683M/2.76G [00:48<02:23, 14.5Mbytes/s]
 25%|██▍       | 685M/2.76G [00:48<02:09, 16.0Mbytes/s]
 25%|██▍       | 687M/2.76G [00:49<02:29, 13.9Mbytes/s]
 25%|██▍       | 689M/2.76G [00:49<02:31, 13.7Mbytes/s]
 25%|██▌       | 690M/2.76G [00:49<02:21, 14.7Mbytes/s]
 25%|██▌       | 692M/2.76G [00:49<02:25, 14.2Mbytes/s]
 25%|██▌       | 694M/2.76G [00:49<02:10, 15.9Mbytes/s]
 25%|██▌       | 696M/2.76G [00:49<02:34, 13.4Mbytes/s]
 25%|██▌       | 697M/2.76G [00:49<02:31, 13.7Mbytes/s]
 25%|██▌       | 699M/2.76G [00:49<02:23, 14.4Mbytes/s]
 25%|██▌       | 700M/2.76G [00:50<02:23, 14.4Mbytes/s]
 25%|██▌       | 702M/2.76G [00:50<02:16, 15.1Mbytes/s]
 25%|██▌       | 704M/2.76G [00:50<02:18, 14.9Mbytes/s]
 26%|██▌       | 705M/2.76G [00:50<02:12, 15.5Mbytes/s]
 26%|██▌       | 707M/2.76G [00:50<02:18, 14.8Mbytes/s]
 26%|██▌       | 709M/2.76G [00:50<03:10, 10.8Mbytes/s]
 26%|██▌       | 712M/2.76G [00:50<02:49, 12.1Mbytes/s]
 26%|██▌       | 715M/2.76G [00:51<02:37, 13.0Mbytes/s]
 26%|██▌       | 718M/2.76G [00:51<02:29, 13.6Mbytes/s]
 26%|██▌       | 721M/2.76G [00:51<02:25, 14.0Mbytes/s]
 26%|██▌       | 724M/2.76G [00:51<02:22, 14.3Mbytes/s]
 26%|██▋       | 727M/2.76G [00:51<02:20, 14.5Mbytes/s]
 26%|██▋       | 730M/2.76G [00:52<02:18, 14.6Mbytes/s]
 27%|██▋       | 732M/2.76G [00:52<02:07, 16.0Mbytes/s]
 27%|██▋       | 734M/2.76G [00:52<02:15, 15.0Mbytes/s]
 27%|██▋       | 736M/2.76G [00:52<02:32, 13.3Mbytes/s]
 27%|██▋       | 739M/2.76G [00:52<02:30, 13.5Mbytes/s]
 27%|██▋       | 742M/2.76G [00:53<02:25, 13.9Mbytes/s]
 27%|██▋       | 745M/2.76G [00:53<02:22, 14.2Mbytes/s]
 27%|██▋       | 748M/2.76G [00:53<02:20, 14.3Mbytes/s]
 27%|██▋       | 751M/2.76G [00:53<02:21, 14.2Mbytes/s]
 27%|██▋       | 754M/2.76G [00:53<02:17, 14.6Mbytes/s]
 27%|██▋       | 757M/2.76G [00:54<02:17, 14.6Mbytes/s]
 28%|██▊       | 760M/2.76G [00:54<02:16, 14.7Mbytes/s]
 28%|██▊       | 763M/2.76G [00:54<02:15, 14.7Mbytes/s]
 28%|██▊       | 766M/2.76G [00:54<02:15, 14.8Mbytes/s]
 28%|██▊       | 770M/2.76G [00:54<02:14, 14.8Mbytes/s]
 28%|██▊       | 773M/2.76G [00:55<02:14, 14.8Mbytes/s]
 28%|██▊       | 776M/2.76G [00:55<02:14, 14.8Mbytes/s]
 28%|██▊       | 779M/2.76G [00:55<02:15, 14.7Mbytes/s]
 28%|██▊       | 782M/2.76G [00:55<02:14, 14.8Mbytes/s]
 28%|██▊       | 785M/2.76G [00:55<02:13, 14.8Mbytes/s]
 29%|██▊       | 788M/2.76G [00:56<02:12, 14.9Mbytes/s]
 29%|██▊       | 791M/2.76G [00:56<02:12, 14.9Mbytes/s]
 29%|██▉       | 794M/2.76G [00:56<02:11, 15.0Mbytes/s]
 29%|██▉       | 797M/2.76G [00:56<02:10, 15.0Mbytes/s]
 29%|██▉       | 799M/2.76G [00:56<02:04, 15.7Mbytes/s]
 29%|██▉       | 801M/2.76G [00:56<02:07, 15.4Mbytes/s]
 29%|██▉       | 802M/2.76G [00:57<02:07, 15.4Mbytes/s]
 29%|██▉       | 804M/2.76G [00:57<02:08, 15.2Mbytes/s]
 29%|██▉       | 805M/2.76G [00:57<02:08, 15.2Mbytes/s]
 29%|██▉       | 807M/2.76G [00:57<02:10, 15.0Mbytes/s]
 29%|██▉       | 808M/2.76G [00:57<02:23, 13.6Mbytes/s]
 29%|██▉       | 810M/2.76G [00:57<02:24, 13.5Mbytes/s]
 29%|██▉       | 812M/2.76G [00:57<02:11, 14.8Mbytes/s]
 29%|██▉       | 814M/2.76G [00:57<02:23, 13.6Mbytes/s]
 30%|██▉       | 816M/2.76G [00:58<02:52, 11.3Mbytes/s]
 30%|██▉       | 818M/2.76G [00:58<02:26, 13.3Mbytes/s]
 30%|██▉       | 819M/2.76G [00:58<02:27, 13.1Mbytes/s]
 30%|██▉       | 822M/2.76G [00:58<02:07, 15.3Mbytes/s]
 30%|██▉       | 823M/2.76G [00:58<02:32, 12.7Mbytes/s]
 30%|██▉       | 825M/2.76G [00:58<02:20, 13.7Mbytes/s]
 30%|██▉       | 827M/2.76G [00:58<02:18, 13.9Mbytes/s]
 30%|██▉       | 828M/2.76G [00:58<02:14, 14.4Mbytes/s]
 30%|███       | 830M/2.76G [00:59<02:12, 14.5Mbytes/s]
 30%|███       | 831M/2.76G [00:59<02:08, 15.0Mbytes/s]
 30%|███       | 833M/2.76G [00:59<02:08, 15.0Mbytes/s]
 30%|███       | 834M/2.76G [00:59<02:08, 15.0Mbytes/s]
 30%|███       | 836M/2.76G [00:59<02:08, 15.0Mbytes/s]
 30%|███       | 838M/2.76G [00:59<02:07, 15.1Mbytes/s]
 30%|███       | 839M/2.76G [00:59<02:07, 15.0Mbytes/s]
 30%|███       | 841M/2.76G [00:59<02:07, 15.1Mbytes/s]
 31%|███       | 842M/2.76G [00:59<02:22, 13.5Mbytes/s]
 31%|███       | 844M/2.76G [01:00<02:04, 15.4Mbytes/s]
 31%|███       | 846M/2.76G [01:00<02:09, 14.8Mbytes/s]
 31%|███       | 847M/2.76G [01:00<02:14, 14.2Mbytes/s]
 31%|███       | 849M/2.76G [01:00<02:18, 13.8Mbytes/s]
 31%|███       | 851M/2.76G [01:00<02:10, 14.6Mbytes/s]
 31%|███       | 852M/2.76G [01:00<02:09, 14.7Mbytes/s]
 31%|███       | 854M/2.76G [01:00<02:07, 14.9Mbytes/s]
 31%|███       | 855M/2.76G [01:00<02:37, 12.1Mbytes/s]
 31%|███       | 857M/2.76G [01:01<02:48, 11.3Mbytes/s]
 31%|███       | 859M/2.76G [01:01<02:13, 14.3Mbytes/s]
 31%|███       | 861M/2.76G [01:01<02:17, 13.8Mbytes/s]
 31%|███       | 862M/2.76G [01:01<02:32, 12.5Mbytes/s]
 31%|███▏      | 865M/2.76G [01:01<02:03, 15.3Mbytes/s]
 31%|███▏      | 867M/2.76G [01:01<02:38, 12.0Mbytes/s]
 31%|███▏      | 868M/2.76G [01:01<02:36, 12.1Mbytes/s]
 32%|███▏      | 871M/2.76G [01:01<02:03, 15.4Mbytes/s]
 32%|███▏      | 873M/2.76G [01:02<02:21, 13.3Mbytes/s]
 32%|███▏      | 874M/2.76G [01:02<02:22, 13.3Mbytes/s]
 32%|███▏      | 877M/2.76G [01:02<01:58, 15.9Mbytes/s]
 32%|███▏      | 879M/2.76G [01:02<02:16, 13.8Mbytes/s]
 32%|███▏      | 881M/2.76G [01:02<02:13, 14.0Mbytes/s]
 32%|███▏      | 883M/2.76G [01:02<01:57, 15.9Mbytes/s]
 32%|███▏      | 885M/2.76G [01:02<02:03, 15.2Mbytes/s]
 32%|███▏      | 887M/2.76G [01:03<02:12, 14.1Mbytes/s]
 32%|███▏      | 889M/2.76G [01:03<01:54, 16.3Mbytes/s]
 32%|███▏      | 891M/2.76G [01:03<02:12, 14.1Mbytes/s]
 32%|███▏      | 893M/2.76G [01:03<02:11, 14.2Mbytes/s]
 32%|███▏      | 895M/2.76G [01:03<01:54, 16.3Mbytes/s]
 32%|███▏      | 897M/2.76G [01:03<02:00, 15.4Mbytes/s]
 33%|███▎      | 899M/2.76G [01:03<02:12, 14.1Mbytes/s]
 33%|███▎      | 901M/2.76G [01:04<01:55, 16.1Mbytes/s]
 33%|███▎      | 903M/2.76G [01:04<02:02, 15.1Mbytes/s]
 33%|███▎      | 905M/2.76G [01:04<02:13, 13.9Mbytes/s]
 33%|███▎      | 908M/2.76G [01:04<01:54, 16.2Mbytes/s]
 33%|███▎      | 909M/2.76G [01:04<02:12, 14.0Mbytes/s]
 33%|███▎      | 911M/2.76G [01:04<02:10, 14.2Mbytes/s]
 33%|███▎      | 913M/2.76G [01:04<01:56, 15.9Mbytes/s]
 33%|███▎      | 915M/2.76G [01:05<02:39, 11.6Mbytes/s]
 33%|███▎      | 917M/2.76G [01:05<03:31, 8.72Mbytes/s]
 33%|███▎      | 919M/2.76G [01:05<03:43, 8.25Mbytes/s]
 33%|███▎      | 922M/2.76G [01:05<03:03, 10.0Mbytes/s]
 33%|███▎      | 925M/2.76G [01:06<02:40, 11.5Mbytes/s]
 34%|███▎      | 928M/2.76G [01:06<02:25, 12.6Mbytes/s]
 34%|███▎      | 931M/2.76G [01:06<02:17, 13.4Mbytes/s]
 34%|███▍      | 934M/2.76G [01:06<02:11, 13.9Mbytes/s]
 34%|███▍      | 937M/2.76G [01:06<02:07, 14.3Mbytes/s]
 34%|███▍      | 940M/2.76G [01:07<02:04, 14.6Mbytes/s]
 34%|███▍      | 943M/2.76G [01:07<02:03, 14.7Mbytes/s]
 34%|███▍      | 946M/2.76G [01:07<02:03, 14.7Mbytes/s]
 34%|███▍      | 949M/2.76G [01:07<02:02, 14.7Mbytes/s]
 34%|███▍      | 953M/2.76G [01:07<02:01, 14.8Mbytes/s]
 35%|███▍      | 956M/2.76G [01:08<02:01, 14.9Mbytes/s]
 35%|███▍      | 959M/2.76G [01:08<02:00, 15.0Mbytes/s]
 35%|███▍      | 962M/2.76G [01:08<01:59, 15.0Mbytes/s]
 35%|███▍      | 965M/2.76G [01:08<01:59, 15.0Mbytes/s]
 35%|███▌      | 968M/2.76G [01:08<02:01, 14.8Mbytes/s]
 35%|███▌      | 971M/2.76G [01:09<02:00, 14.9Mbytes/s]
 35%|███▌      | 974M/2.76G [01:09<02:00, 14.8Mbytes/s]
 35%|███▌      | 977M/2.76G [01:09<01:59, 14.9Mbytes/s]
 36%|███▌      | 981M/2.76G [01:09<01:58, 15.0Mbytes/s]
 36%|███▌      | 984M/2.76G [01:10<01:58, 15.0Mbytes/s]
 36%|███▌      | 987M/2.76G [01:10<01:57, 15.1Mbytes/s]
 36%|███▌      | 990M/2.76G [01:10<01:57, 15.1Mbytes/s]
 36%|███▌      | 993M/2.76G [01:10<01:57, 15.0Mbytes/s]
 36%|███▌      | 996M/2.76G [01:10<02:01, 14.5Mbytes/s]
 36%|███▌      | 998M/2.76G [01:11<02:04, 14.2Mbytes/s]
 36%|███▌      | 1.00G/2.76G [01:11<02:22, 12.3Mbytes/s]
 36%|███▋      | 1.00G/2.76G [01:11<02:37, 11.1Mbytes/s]
 36%|███▋      | 1.01G/2.76G [01:11<02:22, 12.3Mbytes/s]
 37%|███▋      | 1.01G/2.76G [01:11<02:14, 13.1Mbytes/s]
 37%|███▋      | 1.01G/2.76G [01:12<02:07, 13.7Mbytes/s]
 37%|███▋      | 1.01G/2.76G [01:12<02:04, 14.1Mbytes/s]
 37%|███▋      | 1.02G/2.76G [01:12<02:01, 14.4Mbytes/s]
 37%|███▋      | 1.02G/2.76G [01:12<01:59, 14.6Mbytes/s]
 37%|███▋      | 1.02G/2.76G [01:12<01:57, 14.8Mbytes/s]
 37%|███▋      | 1.03G/2.76G [01:13<01:56, 14.9Mbytes/s]
 37%|███▋      | 1.03G/2.76G [01:13<01:55, 15.0Mbytes/s]
 37%|███▋      | 1.03G/2.76G [01:13<01:55, 15.0Mbytes/s]
 38%|███▊      | 1.04G/2.76G [01:13<01:54, 15.1Mbytes/s]
 38%|███▊      | 1.04G/2.76G [01:13<01:54, 15.1Mbytes/s]
 38%|███▊      | 1.04G/2.76G [01:14<01:53, 15.1Mbytes/s]
 38%|███▊      | 1.04G/2.76G [01:14<01:41, 16.8Mbytes/s]
 38%|███▊      | 1.05G/2.76G [01:14<01:47, 15.9Mbytes/s]
 38%|███▊      | 1.05G/2.76G [01:14<01:59, 14.3Mbytes/s]
 38%|███▊      | 1.05G/2.76G [01:14<01:50, 15.5Mbytes/s]
 38%|███▊      | 1.05G/2.76G [01:14<01:53, 15.1Mbytes/s]
 38%|███▊      | 1.05G/2.76G [01:14<01:42, 16.6Mbytes/s]
 38%|███▊      | 1.06G/2.76G [01:14<01:48, 15.7Mbytes/s]
 38%|███▊      | 1.06G/2.76G [01:15<01:47, 15.8Mbytes/s]
 38%|███▊      | 1.06G/2.76G [01:15<02:27, 11.5Mbytes/s]
 38%|███▊      | 1.06G/2.76G [01:15<02:15, 12.6Mbytes/s]
 39%|███▊      | 1.07G/2.76G [01:15<02:05, 13.5Mbytes/s]
 39%|███▊      | 1.07G/2.76G [01:15<02:00, 14.1Mbytes/s]
 39%|███▉      | 1.07G/2.76G [01:16<01:56, 14.5Mbytes/s]
 39%|███▉      | 1.07G/2.76G [01:16<02:03, 13.6Mbytes/s]
 39%|███▉      | 1.08G/2.76G [01:16<02:02, 13.7Mbytes/s]
 39%|███▉      | 1.08G/2.76G [01:16<01:58, 14.2Mbytes/s]
 39%|███▉      | 1.08G/2.76G [01:17<01:55, 14.5Mbytes/s]
 39%|███▉      | 1.09G/2.76G [01:17<01:54, 14.6Mbytes/s]
 39%|███▉      | 1.09G/2.76G [01:17<01:52, 14.8Mbytes/s]
 40%|███▉      | 1.09G/2.76G [01:17<01:51, 14.9Mbytes/s]
 40%|███▉      | 1.10G/2.76G [01:17<01:50, 15.1Mbytes/s]
 40%|███▉      | 1.10G/2.76G [01:18<01:50, 15.1Mbytes/s]
 40%|███▉      | 1.10G/2.76G [01:18<01:49, 15.1Mbytes/s]
 40%|████      | 1.11G/2.76G [01:18<01:39, 16.6Mbytes/s]
 40%|████      | 1.11G/2.76G [01:18<01:43, 16.0Mbytes/s]
 40%|████      | 1.11G/2.76G [01:18<01:55, 14.3Mbytes/s]
 40%|████      | 1.11G/2.76G [01:18<01:38, 16.8Mbytes/s]
 40%|████      | 1.11G/2.76G [01:18<01:43, 15.9Mbytes/s]
 40%|████      | 1.12G/2.76G [01:19<01:57, 14.0Mbytes/s]
 40%|████      | 1.12G/2.76G [01:19<01:37, 16.9Mbytes/s]
 41%|████      | 1.12G/2.76G [01:19<01:42, 16.0Mbytes/s]
 41%|████      | 1.12G/2.76G [01:19<02:06, 13.0Mbytes/s]
 41%|████      | 1.12G/2.76G [01:19<02:29, 11.0Mbytes/s]
 41%|████      | 1.13G/2.76G [01:19<02:19, 11.7Mbytes/s]
 41%|████      | 1.13G/2.76G [01:20<02:26, 11.2Mbytes/s]
 41%|████      | 1.13G/2.76G [01:20<02:20, 11.6Mbytes/s]
 41%|████      | 1.13G/2.76G [01:20<02:07, 12.8Mbytes/s]
 41%|████      | 1.14G/2.76G [01:20<01:59, 13.6Mbytes/s]
 41%|████▏     | 1.14G/2.76G [01:20<01:54, 14.2Mbytes/s]
 41%|████▏     | 1.14G/2.76G [01:21<01:35, 16.9Mbytes/s]
 41%|████▏     | 1.14G/2.76G [01:21<01:46, 15.2Mbytes/s]
 42%|████▏     | 1.15G/2.76G [01:21<01:54, 14.1Mbytes/s]
 42%|████▏     | 1.15G/2.76G [01:21<01:37, 16.6Mbytes/s]
 42%|████▏     | 1.15G/2.76G [01:21<01:57, 13.7Mbytes/s]
 42%|████▏     | 1.15G/2.76G [01:21<01:54, 14.0Mbytes/s]
 42%|████▏     | 1.15G/2.76G [01:21<01:54, 14.0Mbytes/s]
 42%|████▏     | 1.16G/2.76G [01:21<01:49, 14.6Mbytes/s]
 42%|████▏     | 1.16G/2.76G [01:22<01:50, 14.5Mbytes/s]
 42%|████▏     | 1.16G/2.76G [01:22<01:46, 15.1Mbytes/s]
 42%|████▏     | 1.16G/2.76G [01:22<01:47, 14.8Mbytes/s]
 42%|████▏     | 1.16G/2.76G [01:22<01:46, 15.0Mbytes/s]
 42%|████▏     | 1.16G/2.76G [01:22<01:46, 15.0Mbytes/s]
 42%|████▏     | 1.17G/2.76G [01:22<01:42, 15.5Mbytes/s]
 42%|████▏     | 1.17G/2.76G [01:22<01:45, 15.1Mbytes/s]
 42%|████▏     | 1.17G/2.76G [01:22<01:41, 15.7Mbytes/s]
 42%|████▏     | 1.17G/2.76G [01:22<01:43, 15.4Mbytes/s]
 42%|████▏     | 1.17G/2.76G [01:23<01:42, 15.5Mbytes/s]
 42%|████▏     | 1.17G/2.76G [01:23<01:43, 15.3Mbytes/s]
 43%|████▎     | 1.17G/2.76G [01:23<02:03, 12.8Mbytes/s]
 43%|████▎     | 1.18G/2.76G [01:23<01:49, 14.4Mbytes/s]
 43%|████▎     | 1.18G/2.76G [01:23<01:50, 14.3Mbytes/s]
 43%|████▎     | 1.18G/2.76G [01:23<01:44, 15.2Mbytes/s]
 43%|████▎     | 1.18G/2.76G [01:23<01:46, 14.8Mbytes/s]
 43%|████▎     | 1.18G/2.76G [01:23<01:42, 15.3Mbytes/s]
 43%|████▎     | 1.18G/2.76G [01:23<01:44, 15.0Mbytes/s]
 43%|████▎     | 1.19G/2.76G [01:24<01:44, 15.1Mbytes/s]
 43%|████▎     | 1.19G/2.76G [01:24<01:45, 14.9Mbytes/s]
 43%|████▎     | 1.19G/2.76G [01:24<02:30, 10.4Mbytes/s]
 43%|████▎     | 1.19G/2.76G [01:24<02:10, 12.0Mbytes/s]
 43%|████▎     | 1.20G/2.76G [01:24<01:59, 13.1Mbytes/s]
 43%|████▎     | 1.20G/2.76G [01:25<01:52, 13.9Mbytes/s]
 44%|████▎     | 1.20G/2.76G [01:25<01:48, 14.3Mbytes/s]
 44%|████▎     | 1.20G/2.76G [01:25<01:53, 13.7Mbytes/s]
 44%|████▎     | 1.21G/2.76G [01:25<02:08, 12.1Mbytes/s]
 44%|████▍     | 1.21G/2.76G [01:25<01:58, 13.1Mbytes/s]
 44%|████▍     | 1.21G/2.76G [01:26<01:53, 13.7Mbytes/s]
 44%|████▍     | 1.22G/2.76G [01:26<01:49, 14.1Mbytes/s]
 44%|████▍     | 1.22G/2.76G [01:26<01:46, 14.4Mbytes/s]
 44%|████▍     | 1.22G/2.76G [01:26<01:45, 14.6Mbytes/s]
 44%|████▍     | 1.23G/2.76G [01:26<01:44, 14.7Mbytes/s]
 44%|████▍     | 1.23G/2.76G [01:27<01:43, 14.8Mbytes/s]
 45%|████▍     | 1.23G/2.76G [01:27<01:31, 16.7Mbytes/s]
 45%|████▍     | 1.23G/2.76G [01:27<01:35, 16.0Mbytes/s]
 45%|████▍     | 1.23G/2.76G [01:27<01:47, 14.2Mbytes/s]
 45%|████▍     | 1.24G/2.76G [01:27<01:38, 15.5Mbytes/s]
 45%|████▍     | 1.24G/2.76G [01:27<01:41, 15.1Mbytes/s]
 45%|████▍     | 1.24G/2.76G [01:27<01:34, 16.1Mbytes/s]
 45%|████▍     | 1.24G/2.76G [01:27<01:39, 15.3Mbytes/s]
 45%|████▌     | 1.24G/2.76G [01:28<01:48, 14.0Mbytes/s]
 45%|████▌     | 1.25G/2.76G [01:28<01:38, 15.4Mbytes/s]
 45%|████▌     | 1.25G/2.76G [01:28<01:41, 15.0Mbytes/s]
 45%|████▌     | 1.25G/2.76G [01:28<01:32, 16.3Mbytes/s]
 45%|████▌     | 1.25G/2.76G [01:28<01:38, 15.3Mbytes/s]
 45%|████▌     | 1.25G/2.76G [01:28<01:49, 13.7Mbytes/s]
 45%|████▌     | 1.26G/2.76G [01:28<01:38, 15.3Mbytes/s]
 46%|████▌     | 1.26G/2.76G [01:28<01:41, 14.8Mbytes/s]
 46%|████▌     | 1.26G/2.76G [01:29<01:35, 15.8Mbytes/s]
 46%|████▌     | 1.26G/2.76G [01:29<01:40, 15.0Mbytes/s]
 46%|████▌     | 1.26G/2.76G [01:29<01:31, 16.4Mbytes/s]
 46%|████▌     | 1.26G/2.76G [01:29<01:36, 15.4Mbytes/s]
 46%|████▌     | 1.27G/2.76G [01:29<01:50, 13.6Mbytes/s]
 46%|████▌     | 1.27G/2.76G [01:29<01:37, 15.3Mbytes/s]
 46%|████▌     | 1.27G/2.76G [01:29<01:44, 14.3Mbytes/s]
 46%|████▌     | 1.27G/2.76G [01:29<01:46, 14.0Mbytes/s]
 46%|████▌     | 1.27G/2.76G [01:30<01:33, 15.8Mbytes/s]
 46%|████▌     | 1.28G/2.76G [01:30<01:40, 14.8Mbytes/s]
 46%|████▋     | 1.28G/2.76G [01:30<01:42, 14.4Mbytes/s]
 46%|████▋     | 1.28G/2.76G [01:30<01:35, 15.6Mbytes/s]
 46%|████▋     | 1.28G/2.76G [01:30<01:38, 15.0Mbytes/s]
 46%|████▋     | 1.28G/2.76G [01:30<02:02, 12.1Mbytes/s]
 47%|████▋     | 1.28G/2.76G [01:31<02:20, 10.5Mbytes/s]
 47%|████▋     | 1.29G/2.76G [01:31<01:59, 12.3Mbytes/s]
 47%|████▋     | 1.29G/2.76G [01:31<01:50, 13.3Mbytes/s]
 47%|████▋     | 1.29G/2.76G [01:31<01:31, 16.1Mbytes/s]
 47%|████▋     | 1.30G/2.76G [01:31<01:35, 15.3Mbytes/s]
 47%|████▋     | 1.30G/2.76G [01:31<01:50, 13.3Mbytes/s]
 47%|████▋     | 1.30G/2.76G [01:32<01:42, 14.2Mbytes/s]
 47%|████▋     | 1.30G/2.76G [01:32<01:40, 14.6Mbytes/s]
 47%|████▋     | 1.31G/2.76G [01:32<01:32, 15.7Mbytes/s]
 47%|████▋     | 1.31G/2.76G [01:32<01:27, 16.6Mbytes/s]
 47%|████▋     | 1.31G/2.76G [01:32<01:45, 13.8Mbytes/s]
 48%|████▊     | 1.31G/2.76G [01:32<01:49, 13.2Mbytes/s]
 48%|████▊     | 1.32G/2.76G [01:33<01:43, 14.0Mbytes/s]
 48%|████▊     | 1.32G/2.76G [01:33<01:39, 14.5Mbytes/s]
 48%|████▊     | 1.32G/2.76G [01:33<01:37, 14.7Mbytes/s]
 48%|████▊     | 1.33G/2.76G [01:33<01:36, 14.9Mbytes/s]
 48%|████▊     | 1.33G/2.76G [01:33<01:35, 15.0Mbytes/s]
 48%|████▊     | 1.33G/2.76G [01:34<01:34, 15.1Mbytes/s]
 48%|████▊     | 1.33G/2.76G [01:34<01:33, 15.2Mbytes/s]
 48%|████▊     | 1.34G/2.76G [01:34<01:33, 15.2Mbytes/s]
 49%|████▊     | 1.34G/2.76G [01:34<01:32, 15.3Mbytes/s]
 49%|████▊     | 1.34G/2.76G [01:34<01:31, 15.4Mbytes/s]
 49%|████▉     | 1.35G/2.76G [01:35<01:31, 15.5Mbytes/s]
 49%|████▉     | 1.35G/2.76G [01:35<01:37, 14.5Mbytes/s]
 49%|████▉     | 1.35G/2.76G [01:35<01:39, 14.2Mbytes/s]
 49%|████▉     | 1.35G/2.76G [01:35<01:22, 16.9Mbytes/s]
 49%|████▉     | 1.36G/2.76G [01:35<01:28, 15.9Mbytes/s]
 49%|████▉     | 1.36G/2.76G [01:35<01:40, 14.0Mbytes/s]
 49%|████▉     | 1.36G/2.76G [01:36<01:24, 16.6Mbytes/s]
 49%|████▉     | 1.36G/2.76G [01:36<01:28, 15.8Mbytes/s]
 49%|████▉     | 1.36G/2.76G [01:36<01:41, 13.7Mbytes/s]
 50%|████▉     | 1.37G/2.76G [01:36<01:23, 16.7Mbytes/s]
 50%|████▉     | 1.37G/2.76G [01:36<01:28, 15.8Mbytes/s]
 50%|████▉     | 1.37G/2.76G [01:36<01:41, 13.8Mbytes/s]
 50%|████▉     | 1.37G/2.76G [01:36<01:23, 16.7Mbytes/s]
 50%|████▉     | 1.38G/2.76G [01:36<01:31, 15.1Mbytes/s]
 50%|████▉     | 1.38G/2.76G [01:37<01:47, 12.9Mbytes/s]
 50%|████▉     | 1.38G/2.76G [01:37<01:39, 13.9Mbytes/s]
 50%|█████     | 1.38G/2.76G [01:37<01:36, 14.3Mbytes/s]
 50%|█████     | 1.39G/2.76G [01:37<01:34, 14.6Mbytes/s]
 50%|█████     | 1.39G/2.76G [01:37<01:32, 14.8Mbytes/s]
 50%|█████     | 1.39G/2.76G [01:38<01:31, 14.9Mbytes/s]
 51%|█████     | 1.40G/2.76G [01:38<01:31, 15.0Mbytes/s]
 51%|█████     | 1.40G/2.76G [01:38<01:30, 15.1Mbytes/s]
 51%|█████     | 1.40G/2.76G [01:38<01:29, 15.1Mbytes/s]
 51%|█████     | 1.40G/2.76G [01:39<01:29, 15.2Mbytes/s]
 51%|█████     | 1.41G/2.76G [01:39<01:28, 15.2Mbytes/s]
 51%|█████     | 1.41G/2.76G [01:39<01:29, 15.2Mbytes/s]
 51%|█████     | 1.41G/2.76G [01:39<01:28, 15.2Mbytes/s]
 51%|█████▏    | 1.42G/2.76G [01:39<01:28, 15.2Mbytes/s]
 51%|█████▏    | 1.42G/2.76G [01:40<01:27, 15.3Mbytes/s]
 52%|█████▏    | 1.42G/2.76G [01:40<01:27, 15.3Mbytes/s]
 52%|█████▏    | 1.43G/2.76G [01:40<01:27, 15.3Mbytes/s]
 52%|█████▏    | 1.43G/2.76G [01:40<01:27, 15.3Mbytes/s]
 52%|█████▏    | 1.43G/2.76G [01:40<01:27, 15.3Mbytes/s]
 52%|█████▏    | 1.44G/2.76G [01:41<01:27, 15.2Mbytes/s]
 52%|█████▏    | 1.44G/2.76G [01:41<01:26, 15.2Mbytes/s]
 52%|█████▏    | 1.44G/2.76G [01:41<01:26, 15.2Mbytes/s]
 52%|█████▏    | 1.45G/2.76G [01:41<01:26, 15.2Mbytes/s]
 52%|█████▏    | 1.45G/2.76G [01:41<01:39, 13.2Mbytes/s]
 52%|█████▏    | 1.45G/2.76G [01:42<01:52, 11.7Mbytes/s]
 53%|█████▎    | 1.45G/2.76G [01:42<01:42, 12.8Mbytes/s]
 53%|█████▎    | 1.46G/2.76G [01:42<01:35, 13.6Mbytes/s]
 53%|█████▎    | 1.46G/2.76G [01:42<01:24, 15.4Mbytes/s]
 53%|█████▎    | 1.46G/2.76G [01:42<01:27, 14.9Mbytes/s]
 53%|█████▎    | 1.46G/2.76G [01:42<01:34, 13.7Mbytes/s]
 53%|█████▎    | 1.46G/2.76G [01:42<01:20, 16.1Mbytes/s]
 53%|█████▎    | 1.47G/2.76G [01:43<01:23, 15.4Mbytes/s]
 53%|█████▎    | 1.47G/2.76G [01:43<01:33, 13.8Mbytes/s]
 53%|█████▎    | 1.47G/2.76G [01:43<01:19, 16.3Mbytes/s]
 53%|█████▎    | 1.47G/2.76G [01:43<01:22, 15.6Mbytes/s]
 53%|█████▎    | 1.47G/2.76G [01:43<01:32, 13.9Mbytes/s]
 53%|█████▎    | 1.48G/2.76G [01:43<01:19, 16.2Mbytes/s]
 54%|█████▎    | 1.48G/2.76G [01:43<01:23, 15.3Mbytes/s]
 54%|█████▎    | 1.48G/2.76G [01:44<01:30, 14.1Mbytes/s]
 54%|█████▎    | 1.48G/2.76G [01:44<01:18, 16.4Mbytes/s]
 54%|█████▍    | 1.48G/2.76G [01:44<01:23, 15.3Mbytes/s]
 54%|█████▍    | 1.49G/2.76G [01:44<01:30, 14.0Mbytes/s]
 54%|█████▍    | 1.49G/2.76G [01:44<01:16, 16.5Mbytes/s]
 54%|█████▍    | 1.49G/2.76G [01:44<01:25, 14.9Mbytes/s]
 54%|█████▍    | 1.49G/2.76G [01:44<01:30, 14.0Mbytes/s]
 54%|█████▍    | 1.50G/2.76G [01:45<01:14, 16.9Mbytes/s]
 54%|█████▍    | 1.50G/2.76G [01:45<01:25, 14.8Mbytes/s]
 54%|█████▍    | 1.50G/2.76G [01:45<01:31, 13.8Mbytes/s]
 54%|█████▍    | 1.50G/2.76G [01:45<01:16, 16.4Mbytes/s]
 54%|█████▍    | 1.50G/2.76G [01:45<01:24, 14.8Mbytes/s]
 55%|█████▍    | 1.50G/2.76G [01:45<01:33, 13.4Mbytes/s]
 55%|█████▍    | 1.51G/2.76G [01:45<01:14, 16.7Mbytes/s]
 55%|█████▍    | 1.51G/2.76G [01:46<01:21, 15.3Mbytes/s]
 55%|█████▍    | 1.51G/2.76G [01:46<01:30, 13.8Mbytes/s]
 55%|█████▍    | 1.51G/2.76G [01:46<01:29, 14.0Mbytes/s]
 55%|█████▍    | 1.51G/2.76G [01:46<01:26, 14.4Mbytes/s]
 55%|█████▍    | 1.52G/2.76G [01:46<01:24, 14.8Mbytes/s]
 55%|█████▍    | 1.52G/2.76G [01:46<01:37, 12.8Mbytes/s]
 55%|█████▌    | 1.52G/2.76G [01:46<01:36, 12.8Mbytes/s]
 55%|█████▌    | 1.52G/2.76G [01:47<01:30, 13.7Mbytes/s]
 55%|█████▌    | 1.53G/2.76G [01:47<01:26, 14.3Mbytes/s]
 55%|█████▌    | 1.53G/2.76G [01:47<01:24, 14.6Mbytes/s]
 56%|█████▌    | 1.53G/2.76G [01:47<01:23, 14.7Mbytes/s]
 56%|█████▌    | 1.53G/2.76G [01:47<01:37, 12.6Mbytes/s]
 56%|█████▌    | 1.54G/2.76G [01:48<01:37, 12.6Mbytes/s]
 56%|█████▌    | 1.54G/2.76G [01:48<01:27, 14.1Mbytes/s]
 56%|█████▌    | 1.54G/2.76G [01:48<01:28, 13.9Mbytes/s]
 56%|█████▌    | 1.54G/2.76G [01:48<01:24, 14.4Mbytes/s]
 56%|█████▌    | 1.54G/2.76G [01:48<01:21, 14.9Mbytes/s]
 56%|█████▌    | 1.54G/2.76G [01:48<01:22, 14.8Mbytes/s]
 56%|█████▌    | 1.55G/2.76G [01:48<01:24, 14.4Mbytes/s]
 56%|█████▌    | 1.55G/2.76G [01:48<01:33, 12.9Mbytes/s]
 56%|█████▌    | 1.55G/2.76G [01:49<01:42, 11.8Mbytes/s]
 56%|█████▌    | 1.55G/2.76G [01:49<01:33, 12.9Mbytes/s]
 56%|█████▋    | 1.55G/2.76G [01:49<01:34, 12.7Mbytes/s]
 56%|█████▋    | 1.56G/2.76G [01:49<01:21, 14.9Mbytes/s]
 56%|█████▋    | 1.56G/2.76G [01:49<01:22, 14.6Mbytes/s]
 57%|█████▋    | 1.56G/2.76G [01:49<01:16, 15.8Mbytes/s]
 57%|█████▋    | 1.56G/2.76G [01:49<01:27, 13.7Mbytes/s]
 57%|█████▋    | 1.56G/2.76G [01:50<01:31, 13.1Mbytes/s]
 57%|█████▋    | 1.57G/2.76G [01:50<01:13, 16.3Mbytes/s]
 57%|█████▋    | 1.57G/2.76G [01:50<01:21, 14.6Mbytes/s]
 57%|█████▋    | 1.57G/2.76G [01:50<01:30, 13.2Mbytes/s]
 57%|█████▋    | 1.57G/2.76G [01:50<01:32, 12.8Mbytes/s]
 57%|█████▋    | 1.58G/2.76G [01:50<01:27, 13.5Mbytes/s]
 57%|█████▋    | 1.58G/2.76G [01:51<01:24, 14.0Mbytes/s]
 57%|█████▋    | 1.58G/2.76G [01:51<01:21, 14.4Mbytes/s]
 57%|█████▋    | 1.58G/2.76G [01:51<01:08, 17.1Mbytes/s]
 57%|█████▋    | 1.59G/2.76G [01:51<01:18, 15.0Mbytes/s]
 58%|█████▊    | 1.59G/2.76G [01:51<01:26, 13.5Mbytes/s]
 58%|█████▊    | 1.59G/2.76G [01:51<01:23, 13.9Mbytes/s]
 58%|█████▊    | 1.59G/2.76G [01:52<01:21, 14.3Mbytes/s]
 58%|█████▊    | 1.60G/2.76G [01:52<01:08, 17.1Mbytes/s]
 58%|█████▊    | 1.60G/2.76G [01:52<01:15, 15.4Mbytes/s]
 58%|█████▊    | 1.60G/2.76G [01:52<01:21, 14.3Mbytes/s]
 58%|█████▊    | 1.60G/2.76G [01:52<01:15, 15.4Mbytes/s]
 58%|█████▊    | 1.60G/2.76G [01:52<01:14, 15.5Mbytes/s]
 58%|█████▊    | 1.61G/2.76G [01:52<01:14, 15.4Mbytes/s]
 58%|█████▊    | 1.61G/2.76G [01:52<01:14, 15.5Mbytes/s]
 58%|█████▊    | 1.61G/2.76G [01:53<01:14, 15.4Mbytes/s]
 58%|█████▊    | 1.61G/2.76G [01:53<01:14, 15.4Mbytes/s]
 58%|█████▊    | 1.61G/2.76G [01:53<01:14, 15.4Mbytes/s]
 58%|█████▊    | 1.61G/2.76G [01:53<01:14, 15.4Mbytes/s]
 59%|█████▊    | 1.62G/2.76G [01:53<01:14, 15.3Mbytes/s]
 59%|█████▊    | 1.62G/2.76G [01:53<01:14, 15.3Mbytes/s]
 59%|█████▊    | 1.62G/2.76G [01:53<01:15, 15.2Mbytes/s]
 59%|█████▊    | 1.62G/2.76G [01:53<01:15, 15.2Mbytes/s]
 59%|█████▊    | 1.62G/2.76G [01:53<01:15, 15.1Mbytes/s]
 59%|█████▉    | 1.62G/2.76G [01:53<01:14, 15.2Mbytes/s]
 59%|█████▉    | 1.62G/2.76G [01:54<01:14, 15.2Mbytes/s]
 59%|█████▉    | 1.63G/2.76G [01:54<01:13, 15.3Mbytes/s]
 59%|█████▉    | 1.63G/2.76G [01:54<01:14, 15.2Mbytes/s]
 59%|█████▉    | 1.63G/2.76G [01:54<01:14, 15.2Mbytes/s]
 59%|█████▉    | 1.63G/2.76G [01:54<01:14, 15.2Mbytes/s]
 59%|█████▉    | 1.63G/2.76G [01:54<01:14, 15.1Mbytes/s]
 59%|█████▉    | 1.63G/2.76G [01:54<01:13, 15.3Mbytes/s]
 59%|█████▉    | 1.64G/2.76G [01:54<01:25, 13.1Mbytes/s]
 59%|█████▉    | 1.64G/2.76G [01:54<01:23, 13.4Mbytes/s]
 59%|█████▉    | 1.64G/2.76G [01:55<01:23, 13.5Mbytes/s]
 59%|█████▉    | 1.64G/2.76G [01:55<01:18, 14.4Mbytes/s]
 59%|█████▉    | 1.64G/2.76G [01:55<01:17, 14.4Mbytes/s]
 60%|█████▉    | 1.64G/2.76G [01:55<01:15, 14.9Mbytes/s]
 60%|█████▉    | 1.64G/2.76G [01:55<01:15, 14.8Mbytes/s]
 60%|█████▉    | 1.65G/2.76G [01:55<01:13, 15.1Mbytes/s]
 60%|█████▉    | 1.65G/2.76G [01:55<01:14, 15.0Mbytes/s]
 60%|█████▉    | 1.65G/2.76G [01:55<01:20, 13.8Mbytes/s]
 60%|█████▉    | 1.65G/2.76G [01:55<01:26, 12.8Mbytes/s]
 60%|█████▉    | 1.65G/2.76G [01:56<01:25, 13.0Mbytes/s]
 60%|█████▉    | 1.66G/2.76G [01:56<01:38, 11.2Mbytes/s]
 60%|██████    | 1.66G/2.76G [01:56<01:28, 12.4Mbytes/s]
 60%|██████    | 1.66G/2.76G [01:56<01:22, 13.3Mbytes/s]
 60%|██████    | 1.66G/2.76G [01:57<01:26, 12.7Mbytes/s]
 60%|██████    | 1.67G/2.76G [01:57<01:20, 13.5Mbytes/s]
 61%|██████    | 1.67G/2.76G [01:57<01:17, 14.0Mbytes/s]
 61%|██████    | 1.67G/2.76G [01:57<01:09, 15.7Mbytes/s]
 61%|██████    | 1.68G/2.76G [01:57<01:13, 14.8Mbytes/s]
 61%|██████    | 1.68G/2.76G [01:57<01:17, 13.9Mbytes/s]
 61%|██████    | 1.68G/2.76G [01:57<01:07, 15.9Mbytes/s]
 61%|██████    | 1.68G/2.76G [01:58<01:12, 14.9Mbytes/s]
 61%|██████    | 1.68G/2.76G [01:58<01:30, 11.9Mbytes/s]
 61%|██████    | 1.68G/2.76G [01:58<01:58, 9.09Mbytes/s]
 61%|██████    | 1.69G/2.76G [01:58<01:41, 10.6Mbytes/s]
 61%|██████    | 1.69G/2.76G [01:58<01:28, 12.1Mbytes/s]
 61%|██████▏   | 1.69G/2.76G [01:59<01:22, 13.0Mbytes/s]
 61%|██████▏   | 1.70G/2.76G [01:59<01:18, 13.6Mbytes/s]
 62%|██████▏   | 1.70G/2.76G [01:59<01:15, 14.1Mbytes/s]
 62%|██████▏   | 1.70G/2.76G [01:59<01:13, 14.4Mbytes/s]
 62%|██████▏   | 1.71G/2.76G [02:00<01:12, 14.5Mbytes/s]
 62%|██████▏   | 1.71G/2.76G [02:00<01:11, 14.8Mbytes/s]
 62%|██████▏   | 1.71G/2.76G [02:00<01:10, 14.9Mbytes/s]
 62%|██████▏   | 1.72G/2.76G [02:00<01:10, 14.9Mbytes/s]
 62%|██████▏   | 1.72G/2.76G [02:00<01:09, 15.0Mbytes/s]
 62%|██████▏   | 1.72G/2.76G [02:01<01:09, 15.0Mbytes/s]
 62%|██████▏   | 1.72G/2.76G [02:01<01:09, 15.0Mbytes/s]
 63%|██████▎   | 1.73G/2.76G [02:01<01:13, 14.1Mbytes/s]
 63%|██████▎   | 1.73G/2.76G [02:01<01:13, 13.9Mbytes/s]
 63%|██████▎   | 1.73G/2.76G [02:01<01:11, 14.3Mbytes/s]
 63%|██████▎   | 1.74G/2.76G [02:02<01:10, 14.6Mbytes/s]
 63%|██████▎   | 1.74G/2.76G [02:02<01:09, 14.6Mbytes/s]
 63%|██████▎   | 1.74G/2.76G [02:02<01:09, 14.6Mbytes/s]
 63%|██████▎   | 1.75G/2.76G [02:02<01:09, 14.6Mbytes/s]
 63%|██████▎   | 1.75G/2.76G [02:02<01:09, 14.7Mbytes/s]
 63%|██████▎   | 1.75G/2.76G [02:03<01:01, 16.4Mbytes/s]
 63%|██████▎   | 1.75G/2.76G [02:03<01:04, 15.6Mbytes/s]
 64%|██████▎   | 1.75G/2.76G [02:03<01:16, 13.2Mbytes/s]
 64%|██████▎   | 1.76G/2.76G [02:03<01:27, 11.5Mbytes/s]
 64%|██████▎   | 1.76G/2.76G [02:03<01:17, 12.9Mbytes/s]
 64%|██████▍   | 1.76G/2.76G [02:03<01:13, 13.6Mbytes/s]
 64%|██████▍   | 1.77G/2.76G [02:04<01:10, 14.2Mbytes/s]
 64%|██████▍   | 1.77G/2.76G [02:04<01:08, 14.5Mbytes/s]
 64%|██████▍   | 1.77G/2.76G [02:04<01:07, 14.7Mbytes/s]
 64%|██████▍   | 1.78G/2.76G [02:04<01:06, 14.7Mbytes/s]
 64%|██████▍   | 1.78G/2.76G [02:05<01:05, 15.0Mbytes/s]
 65%|██████▍   | 1.78G/2.76G [02:05<00:56, 17.4Mbytes/s]
 65%|██████▍   | 1.78G/2.76G [02:05<01:00, 16.2Mbytes/s]
 65%|██████▍   | 1.78G/2.76G [02:05<01:07, 14.4Mbytes/s]
 65%|██████▍   | 1.79G/2.76G [02:05<00:55, 17.4Mbytes/s]
 65%|██████▍   | 1.79G/2.76G [02:05<01:00, 16.0Mbytes/s]
 65%|██████▍   | 1.79G/2.76G [02:05<01:08, 14.2Mbytes/s]
 65%|██████▍   | 1.79G/2.76G [02:06<01:07, 14.3Mbytes/s]
 65%|██████▌   | 1.80G/2.76G [02:06<00:55, 17.3Mbytes/s]
 65%|██████▌   | 1.80G/2.76G [02:06<01:00, 15.9Mbytes/s]
 65%|██████▌   | 1.80G/2.76G [02:06<01:07, 14.2Mbytes/s]
 65%|██████▌   | 1.80G/2.76G [02:06<00:55, 17.1Mbytes/s]
 65%|██████▌   | 1.81G/2.76G [02:06<01:00, 15.8Mbytes/s]
 65%|██████▌   | 1.81G/2.76G [02:06<01:08, 14.0Mbytes/s]
 66%|██████▌   | 1.81G/2.76G [02:06<00:57, 16.6Mbytes/s]
 66%|██████▌   | 1.81G/2.76G [02:07<01:04, 14.8Mbytes/s]
 66%|██████▌   | 1.81G/2.76G [02:07<01:13, 13.0Mbytes/s]
 66%|██████▌   | 1.82G/2.76G [02:07<01:07, 13.9Mbytes/s]
 66%|██████▌   | 1.82G/2.76G [02:07<01:02, 15.0Mbytes/s]
 66%|██████▌   | 1.82G/2.76G [02:07<01:08, 13.7Mbytes/s]
 66%|██████▌   | 1.82G/2.76G [02:07<01:03, 14.8Mbytes/s]
 66%|██████▌   | 1.82G/2.76G [02:08<00:58, 16.0Mbytes/s]
 66%|██████▌   | 1.83G/2.76G [02:08<01:04, 14.4Mbytes/s]
 66%|██████▌   | 1.83G/2.76G [02:08<01:01, 15.1Mbytes/s]
 66%|██████▋   | 1.83G/2.76G [02:08<00:57, 16.3Mbytes/s]
 66%|██████▋   | 1.83G/2.76G [02:08<01:03, 14.7Mbytes/s]
 66%|██████▋   | 1.84G/2.76G [02:08<01:00, 15.2Mbytes/s]
 67%|██████▋   | 1.84G/2.76G [02:08<00:56, 16.2Mbytes/s]
 67%|██████▋   | 1.84G/2.76G [02:08<01:02, 14.7Mbytes/s]
 67%|██████▋   | 1.84G/2.76G [02:09<01:00, 15.1Mbytes/s]
 67%|██████▋   | 1.84G/2.76G [02:09<00:56, 16.2Mbytes/s]
 67%|██████▋   | 1.85G/2.76G [02:09<01:02, 14.6Mbytes/s]
 67%|██████▋   | 1.85G/2.76G [02:09<01:00, 15.2Mbytes/s]
 67%|██████▋   | 1.85G/2.76G [02:09<00:55, 16.3Mbytes/s]
 67%|██████▋   | 1.85G/2.76G [02:09<01:01, 14.7Mbytes/s]
 67%|██████▋   | 1.85G/2.76G [02:09<00:59, 15.1Mbytes/s]
 67%|██████▋   | 1.86G/2.76G [02:10<01:04, 14.1Mbytes/s]
 67%|██████▋   | 1.86G/2.76G [02:10<01:17, 11.6Mbytes/s]
 67%|██████▋   | 1.86G/2.76G [02:10<01:08, 13.3Mbytes/s]
 67%|██████▋   | 1.86G/2.76G [02:10<01:02, 14.4Mbytes/s]
 67%|██████▋   | 1.86G/2.76G [02:10<01:02, 14.3Mbytes/s]
 68%|██████▊   | 1.86G/2.76G [02:10<00:59, 15.0Mbytes/s]
 68%|██████▊   | 1.87G/2.76G [02:10<01:01, 14.6Mbytes/s]
 68%|██████▊   | 1.87G/2.76G [02:11<01:32, 9.69Mbytes/s]
 68%|██████▊   | 1.87G/2.76G [02:11<01:49, 8.15Mbytes/s]
 68%|██████▊   | 1.87G/2.76G [02:11<01:47, 8.25Mbytes/s]
 68%|██████▊   | 1.87G/2.76G [02:11<01:23, 10.7Mbytes/s]
 68%|██████▊   | 1.88G/2.76G [02:12<01:13, 12.1Mbytes/s]
 68%|██████▊   | 1.88G/2.76G [02:12<01:07, 13.0Mbytes/s]
 68%|██████▊   | 1.88G/2.76G [02:12<01:04, 13.6Mbytes/s]
 68%|██████▊   | 1.89G/2.76G [02:12<01:02, 14.1Mbytes/s]
 68%|██████▊   | 1.89G/2.76G [02:12<00:59, 14.5Mbytes/s]
 69%|██████▊   | 1.89G/2.76G [02:13<00:58, 14.8Mbytes/s]
 69%|██████▊   | 1.90G/2.76G [02:13<00:57, 15.0Mbytes/s]
 69%|██████▉   | 1.90G/2.76G [02:13<00:56, 15.2Mbytes/s]
 69%|██████▉   | 1.90G/2.76G [02:13<00:56, 15.3Mbytes/s]
 69%|██████▉   | 1.91G/2.76G [02:13<00:55, 15.4Mbytes/s]
 69%|██████▉   | 1.91G/2.76G [02:14<00:54, 15.5Mbytes/s]
 69%|██████▉   | 1.91G/2.76G [02:14<00:54, 15.5Mbytes/s]
 69%|██████▉   | 1.92G/2.76G [02:14<00:54, 15.5Mbytes/s]
 69%|██████▉   | 1.92G/2.76G [02:14<00:54, 15.6Mbytes/s]
 70%|██████▉   | 1.92G/2.76G [02:14<00:54, 15.5Mbytes/s]
 70%|██████▉   | 1.92G/2.76G [02:15<00:54, 15.4Mbytes/s]
 70%|██████▉   | 1.93G/2.76G [02:15<00:57, 14.6Mbytes/s]
 70%|██████▉   | 1.93G/2.76G [02:15<00:57, 14.4Mbytes/s]
 70%|██████▉   | 1.93G/2.76G [02:15<00:59, 13.9Mbytes/s]
 70%|███████   | 1.93G/2.76G [02:15<01:02, 13.2Mbytes/s]
 70%|███████   | 1.94G/2.76G [02:15<00:51, 16.0Mbytes/s]
 70%|███████   | 1.94G/2.76G [02:15<00:53, 15.3Mbytes/s]
 70%|███████   | 1.94G/2.76G [02:16<01:00, 13.7Mbytes/s]
 70%|███████   | 1.94G/2.76G [02:16<00:48, 16.7Mbytes/s]
 70%|███████   | 1.94G/2.76G [02:16<00:51, 15.8Mbytes/s]
 70%|███████   | 1.95G/2.76G [02:16<00:58, 14.0Mbytes/s]
 71%|███████   | 1.95G/2.76G [02:16<00:47, 17.0Mbytes/s]
 71%|███████   | 1.95G/2.76G [02:16<00:54, 14.9Mbytes/s]
 71%|███████   | 1.95G/2.76G [02:16<00:57, 14.0Mbytes/s]
 71%|███████   | 1.95G/2.76G [02:17<00:48, 16.7Mbytes/s]
 71%|███████   | 1.96G/2.76G [02:17<00:54, 14.7Mbytes/s]
 71%|███████   | 1.96G/2.76G [02:17<00:57, 14.0Mbytes/s]
 71%|███████   | 1.96G/2.76G [02:17<00:46, 17.2Mbytes/s]
 71%|███████   | 1.96G/2.76G [02:17<00:53, 15.0Mbytes/s]
 71%|███████   | 1.96G/2.76G [02:17<00:55, 14.3Mbytes/s]
 71%|███████   | 1.97G/2.76G [02:18<01:10, 11.3Mbytes/s]
 71%|███████▏  | 1.97G/2.76G [02:18<00:55, 14.2Mbytes/s]
 71%|███████▏  | 1.97G/2.76G [02:18<00:56, 14.0Mbytes/s]
 71%|███████▏  | 1.97G/2.76G [02:18<01:01, 12.8Mbytes/s]
 72%|███████▏  | 1.98G/2.76G [02:18<00:51, 15.2Mbytes/s]
 72%|███████▏  | 1.98G/2.76G [02:18<00:53, 14.8Mbytes/s]
 72%|███████▏  | 1.98G/2.76G [02:18<00:57, 13.6Mbytes/s]
 72%|███████▏  | 1.98G/2.76G [02:19<00:48, 16.2Mbytes/s]
 72%|███████▏  | 1.98G/2.76G [02:19<00:50, 15.5Mbytes/s]
 72%|███████▏  | 1.99G/2.76G [02:19<00:55, 14.0Mbytes/s]
 72%|███████▏  | 1.99G/2.76G [02:19<00:46, 16.7Mbytes/s]
 72%|███████▏  | 1.99G/2.76G [02:19<00:48, 15.8Mbytes/s]
 72%|███████▏  | 1.99G/2.76G [02:19<00:54, 14.2Mbytes/s]
 72%|███████▏  | 2.00G/2.76G [02:19<00:45, 16.8Mbytes/s]
 72%|███████▏  | 2.00G/2.76G [02:19<00:48, 15.9Mbytes/s]
 72%|███████▏  | 2.00G/2.76G [02:20<00:53, 14.2Mbytes/s]
 72%|███████▏  | 2.00G/2.76G [02:20<00:45, 16.8Mbytes/s]
 73%|███████▎  | 2.00G/2.76G [02:20<00:47, 15.9Mbytes/s]
 73%|███████▎  | 2.01G/2.76G [02:20<00:52, 14.3Mbytes/s]
 73%|███████▎  | 2.01G/2.76G [02:20<00:44, 16.8Mbytes/s]
 73%|███████▎  | 2.01G/2.76G [02:20<00:47, 15.9Mbytes/s]
 73%|███████▎  | 2.01G/2.76G [02:20<00:52, 14.3Mbytes/s]
 73%|███████▎  | 2.01G/2.76G [02:21<00:45, 16.4Mbytes/s]
 73%|███████▎  | 2.02G/2.76G [02:21<00:46, 15.9Mbytes/s]
 73%|███████▎  | 2.02G/2.76G [02:21<00:51, 14.5Mbytes/s]
 73%|███████▎  | 2.02G/2.76G [02:21<00:45, 16.4Mbytes/s]
 73%|███████▎  | 2.02G/2.76G [02:21<00:46, 16.0Mbytes/s]
 73%|███████▎  | 2.02G/2.76G [02:21<00:43, 17.0Mbytes/s]
 73%|███████▎  | 2.03G/2.76G [02:21<00:45, 16.2Mbytes/s]
 73%|███████▎  | 2.03G/2.76G [02:21<00:52, 13.9Mbytes/s]
 74%|███████▎  | 2.03G/2.76G [02:22<00:46, 15.6Mbytes/s]
 74%|███████▎  | 2.03G/2.76G [02:22<00:49, 14.7Mbytes/s]
 74%|███████▎  | 2.03G/2.76G [02:22<00:52, 13.9Mbytes/s]
 74%|███████▎  | 2.04G/2.76G [02:22<00:45, 15.9Mbytes/s]
 74%|███████▍  | 2.04G/2.76G [02:22<00:47, 15.4Mbytes/s]
 74%|███████▍  | 2.04G/2.76G [02:22<00:59, 12.2Mbytes/s]
 74%|███████▍  | 2.04G/2.76G [02:23<00:59, 12.2Mbytes/s]
 74%|███████▍  | 2.04G/2.76G [02:23<00:53, 13.4Mbytes/s]
 74%|███████▍  | 2.05G/2.76G [02:23<00:50, 14.1Mbytes/s]
 74%|███████▍  | 2.05G/2.76G [02:23<00:48, 14.6Mbytes/s]
 74%|███████▍  | 2.05G/2.76G [02:23<00:47, 15.0Mbytes/s]
 75%|███████▍  | 2.06G/2.76G [02:24<00:45, 15.3Mbytes/s]
 75%|███████▍  | 2.06G/2.76G [02:24<00:47, 14.6Mbytes/s]
 75%|███████▍  | 2.06G/2.76G [02:24<00:54, 12.8Mbytes/s]
 75%|███████▍  | 2.07G/2.76G [02:24<00:49, 13.9Mbytes/s]
 75%|███████▍  | 2.07G/2.76G [02:24<00:47, 14.5Mbytes/s]
 75%|███████▌  | 2.07G/2.76G [02:24<00:40, 17.1Mbytes/s]
 75%|███████▌  | 2.07G/2.76G [02:25<00:52, 13.2Mbytes/s]
 75%|███████▌  | 2.08G/2.76G [02:25<00:49, 13.7Mbytes/s]
 75%|███████▌  | 2.08G/2.76G [02:25<00:49, 13.8Mbytes/s]
 75%|███████▌  | 2.08G/2.76G [02:25<00:40, 16.6Mbytes/s]
 76%|███████▌  | 2.09G/2.76G [02:25<00:45, 14.8Mbytes/s]
 76%|███████▌  | 2.09G/2.76G [02:26<00:47, 14.1Mbytes/s]
 76%|███████▌  | 2.09G/2.76G [02:26<00:47, 14.3Mbytes/s]
 76%|███████▌  | 2.09G/2.76G [02:26<00:39, 16.9Mbytes/s]
 76%|███████▌  | 2.09G/2.76G [02:26<00:44, 15.0Mbytes/s]
 76%|███████▌  | 2.10G/2.76G [02:26<00:46, 14.2Mbytes/s]
 76%|███████▌  | 2.10G/2.76G [02:26<00:38, 17.2Mbytes/s]
 76%|███████▌  | 2.10G/2.76G [02:26<00:43, 15.1Mbytes/s]
 76%|███████▌  | 2.10G/2.76G [02:27<00:45, 14.3Mbytes/s]
 76%|███████▋  | 2.11G/2.76G [02:27<00:37, 17.3Mbytes/s]
 76%|███████▋  | 2.11G/2.76G [02:27<00:43, 14.9Mbytes/s]
 76%|███████▋  | 2.11G/2.76G [02:27<00:45, 14.3Mbytes/s]
 76%|███████▋  | 2.11G/2.76G [02:27<00:37, 17.5Mbytes/s]
 77%|███████▋  | 2.11G/2.76G [02:27<00:42, 15.1Mbytes/s]
 77%|███████▋  | 2.12G/2.76G [02:27<00:44, 14.4Mbytes/s]
 77%|███████▋  | 2.12G/2.76G [02:28<00:37, 17.1Mbytes/s]
 77%|███████▋  | 2.12G/2.76G [02:28<00:42, 14.9Mbytes/s]
 77%|███████▋  | 2.12G/2.76G [02:28<00:44, 14.2Mbytes/s]
 77%|███████▋  | 2.12G/2.76G [02:28<00:39, 16.3Mbytes/s]
 77%|███████▋  | 2.13G/2.76G [02:28<00:43, 14.6Mbytes/s]
 77%|███████▋  | 2.13G/2.76G [02:28<00:43, 14.6Mbytes/s]
 77%|███████▋  | 2.13G/2.76G [02:28<00:37, 16.7Mbytes/s]
 77%|███████▋  | 2.13G/2.76G [02:29<00:42, 14.9Mbytes/s]
 77%|███████▋  | 2.13G/2.76G [02:29<00:42, 14.7Mbytes/s]
 77%|███████▋  | 2.14G/2.76G [02:29<00:36, 16.9Mbytes/s]
 77%|███████▋  | 2.14G/2.76G [02:29<00:41, 15.0Mbytes/s]
 78%|███████▊  | 2.14G/2.76G [02:29<00:41, 15.0Mbytes/s]
 78%|███████▊  | 2.14G/2.76G [02:29<00:41, 15.0Mbytes/s]
 78%|███████▊  | 2.14G/2.76G [02:29<00:40, 15.4Mbytes/s]
 78%|███████▊  | 2.15G/2.76G [02:29<00:40, 15.3Mbytes/s]
 78%|███████▊  | 2.15G/2.76G [02:30<00:50, 12.1Mbytes/s]
 78%|███████▊  | 2.15G/2.76G [02:30<00:55, 10.9Mbytes/s]
 78%|███████▊  | 2.15G/2.76G [02:30<00:47, 12.9Mbytes/s]
 78%|███████▊  | 2.16G/2.76G [02:30<00:43, 13.9Mbytes/s]
 78%|███████▊  | 2.16G/2.76G [02:30<00:38, 15.7Mbytes/s]
 78%|███████▊  | 2.16G/2.76G [02:30<00:43, 13.9Mbytes/s]
 78%|███████▊  | 2.16G/2.76G [02:31<00:42, 14.0Mbytes/s]
 78%|███████▊  | 2.16G/2.76G [02:31<00:37, 16.1Mbytes/s]
 78%|███████▊  | 2.17G/2.76G [02:31<00:42, 13.9Mbytes/s]
 79%|███████▊  | 2.17G/2.76G [02:31<00:40, 14.6Mbytes/s]
 79%|███████▊  | 2.17G/2.76G [02:31<00:36, 16.2Mbytes/s]
 79%|███████▊  | 2.17G/2.76G [02:31<00:41, 14.1Mbytes/s]
 79%|███████▊  | 2.17G/2.76G [02:31<00:38, 15.2Mbytes/s]
 79%|███████▉  | 2.18G/2.76G [02:32<00:38, 15.2Mbytes/s]
 79%|███████▉  | 2.18G/2.76G [02:32<00:40, 14.5Mbytes/s]
 79%|███████▉  | 2.18G/2.76G [02:32<00:47, 12.2Mbytes/s]
 79%|███████▉  | 2.18G/2.76G [02:32<00:43, 13.3Mbytes/s]
 79%|███████▉  | 2.19G/2.76G [02:32<00:40, 14.0Mbytes/s]
 79%|███████▉  | 2.19G/2.76G [02:32<00:39, 14.6Mbytes/s]
 79%|███████▉  | 2.19G/2.76G [02:33<00:40, 14.1Mbytes/s]
 79%|███████▉  | 2.19G/2.76G [02:33<00:38, 14.6Mbytes/s]
 80%|███████▉  | 2.20G/2.76G [02:33<00:37, 14.9Mbytes/s]
 80%|███████▉  | 2.20G/2.76G [02:33<00:36, 15.2Mbytes/s]
 80%|███████▉  | 2.20G/2.76G [02:33<00:36, 15.4Mbytes/s]
 80%|███████▉  | 2.21G/2.76G [02:34<00:35, 15.5Mbytes/s]
 80%|████████  | 2.21G/2.76G [02:34<00:35, 15.6Mbytes/s]
 80%|████████  | 2.21G/2.76G [02:34<00:35, 15.6Mbytes/s]
 80%|████████  | 2.22G/2.76G [02:34<00:35, 15.5Mbytes/s]
 80%|████████  | 2.22G/2.76G [02:35<00:34, 15.4Mbytes/s]
 81%|████████  | 2.22G/2.76G [02:35<00:34, 15.5Mbytes/s]
 81%|████████  | 2.23G/2.76G [02:35<00:34, 15.7Mbytes/s]
 81%|████████  | 2.23G/2.76G [02:35<00:29, 18.1Mbytes/s]
 81%|████████  | 2.23G/2.76G [02:35<00:33, 16.0Mbytes/s]
 81%|████████  | 2.23G/2.76G [02:35<00:34, 15.1Mbytes/s]
 81%|████████  | 2.24G/2.76G [02:35<00:29, 18.0Mbytes/s]
 81%|████████  | 2.24G/2.76G [02:36<00:41, 12.4Mbytes/s]
 81%|████████  | 2.24G/2.76G [02:36<00:47, 11.1Mbytes/s]
 81%|████████▏ | 2.24G/2.76G [02:36<00:41, 12.6Mbytes/s]
 81%|████████▏ | 2.25G/2.76G [02:36<00:37, 13.7Mbytes/s]
 81%|████████▏ | 2.25G/2.76G [02:37<00:35, 14.4Mbytes/s]
 82%|████████▏ | 2.25G/2.76G [02:37<00:35, 14.3Mbytes/s]
 82%|████████▏ | 2.26G/2.76G [02:37<00:34, 14.9Mbytes/s]
 82%|████████▏ | 2.26G/2.76G [02:37<00:33, 15.1Mbytes/s]
 82%|████████▏ | 2.26G/2.76G [02:37<00:32, 15.3Mbytes/s]
 82%|████████▏ | 2.27G/2.76G [02:38<00:32, 15.5Mbytes/s]
 82%|████████▏ | 2.27G/2.76G [02:38<00:31, 15.5Mbytes/s]
 82%|████████▏ | 2.27G/2.76G [02:38<00:31, 15.6Mbytes/s]
 82%|████████▏ | 2.28G/2.76G [02:38<00:31, 15.6Mbytes/s]
 82%|████████▏ | 2.28G/2.76G [02:38<00:31, 15.6Mbytes/s]
 83%|████████▎ | 2.28G/2.76G [02:38<00:31, 15.2Mbytes/s]
 83%|████████▎ | 2.28G/2.76G [02:39<00:29, 16.2Mbytes/s]
 83%|████████▎ | 2.28G/2.76G [02:39<00:30, 15.9Mbytes/s]
 83%|████████▎ | 2.28G/2.76G [02:39<00:28, 16.6Mbytes/s]
 83%|████████▎ | 2.29G/2.76G [02:39<00:29, 16.1Mbytes/s]
 83%|████████▎ | 2.29G/2.76G [02:39<00:30, 15.6Mbytes/s]
 83%|████████▎ | 2.29G/2.76G [02:39<00:29, 15.8Mbytes/s]
 83%|████████▎ | 2.29G/2.76G [02:39<00:29, 16.0Mbytes/s]
 83%|████████▎ | 2.29G/2.76G [02:39<00:29, 15.7Mbytes/s]
 83%|████████▎ | 2.29G/2.76G [02:39<00:29, 16.0Mbytes/s]
 83%|████████▎ | 2.30G/2.76G [02:40<00:29, 15.9Mbytes/s]
 83%|████████▎ | 2.30G/2.76G [02:40<00:28, 16.0Mbytes/s]
 83%|████████▎ | 2.30G/2.76G [02:40<00:29, 15.9Mbytes/s]
 83%|████████▎ | 2.30G/2.76G [02:40<00:28, 16.0Mbytes/s]
 83%|████████▎ | 2.30G/2.76G [02:40<00:29, 15.8Mbytes/s]
 83%|████████▎ | 2.30G/2.76G [02:40<00:28, 16.2Mbytes/s]
 84%|████████▎ | 2.31G/2.76G [02:40<00:28, 15.9Mbytes/s]
 84%|████████▎ | 2.31G/2.76G [02:40<00:28, 16.1Mbytes/s]
 84%|████████▎ | 2.31G/2.76G [02:40<00:28, 16.0Mbytes/s]
 84%|████████▎ | 2.31G/2.76G [02:40<00:30, 14.8Mbytes/s]
 84%|████████▍ | 2.31G/2.76G [02:41<00:30, 14.9Mbytes/s]
 84%|████████▍ | 2.31G/2.76G [02:41<00:30, 14.8Mbytes/s]
 84%|████████▍ | 2.32G/2.76G [02:41<00:28, 15.7Mbytes/s]
 84%|████████▍ | 2.32G/2.76G [02:41<00:28, 15.5Mbytes/s]
 84%|████████▍ | 2.32G/2.76G [02:41<00:27, 16.2Mbytes/s]
 84%|████████▍ | 2.32G/2.76G [02:41<00:27, 15.8Mbytes/s]
 84%|████████▍ | 2.32G/2.76G [02:41<00:35, 12.4Mbytes/s]
 84%|████████▍ | 2.33G/2.76G [02:42<00:40, 10.9Mbytes/s]
 84%|████████▍ | 2.33G/2.76G [02:42<00:29, 14.8Mbytes/s]
 84%|████████▍ | 2.33G/2.76G [02:42<00:30, 14.3Mbytes/s]
 84%|████████▍ | 2.33G/2.76G [02:42<00:31, 13.4Mbytes/s]
 85%|████████▍ | 2.33G/2.76G [02:42<00:29, 14.4Mbytes/s]
 85%|████████▍ | 2.34G/2.76G [02:42<00:26, 16.1Mbytes/s]
 85%|████████▍ | 2.34G/2.76G [02:42<00:27, 15.6Mbytes/s]
 85%|████████▍ | 2.34G/2.76G [02:42<00:25, 16.7Mbytes/s]
 85%|████████▍ | 2.34G/2.76G [02:43<00:25, 16.4Mbytes/s]
 85%|████████▍ | 2.34G/2.76G [02:43<00:27, 15.2Mbytes/s]
 85%|████████▍ | 2.35G/2.76G [02:43<00:30, 13.5Mbytes/s]
 85%|████████▌ | 2.35G/2.76G [02:43<00:26, 15.6Mbytes/s]
 85%|████████▌ | 2.35G/2.76G [02:43<00:27, 15.0Mbytes/s]
 85%|████████▌ | 2.35G/2.76G [02:43<00:26, 15.2Mbytes/s]
 85%|████████▌ | 2.35G/2.76G [02:43<00:26, 15.3Mbytes/s]
 85%|████████▌ | 2.35G/2.76G [02:43<00:27, 14.5Mbytes/s]
 85%|████████▌ | 2.36G/2.76G [02:43<00:24, 16.4Mbytes/s]
 85%|████████▌ | 2.36G/2.76G [02:44<00:28, 14.3Mbytes/s]
 85%|████████▌ | 2.36G/2.76G [02:44<00:23, 16.7Mbytes/s]
 86%|████████▌ | 2.36G/2.76G [02:44<00:25, 15.9Mbytes/s]
 86%|████████▌ | 2.36G/2.76G [02:44<00:26, 14.9Mbytes/s]
 86%|████████▌ | 2.37G/2.76G [02:44<00:23, 16.6Mbytes/s]
 86%|████████▌ | 2.37G/2.76G [02:44<00:26, 14.6Mbytes/s]
 86%|████████▌ | 2.37G/2.76G [02:44<00:22, 17.2Mbytes/s]
 86%|████████▌ | 2.37G/2.76G [02:44<00:23, 16.3Mbytes/s]
 86%|████████▌ | 2.37G/2.76G [02:45<00:25, 15.3Mbytes/s]
 86%|████████▌ | 2.38G/2.76G [02:45<00:24, 15.9Mbytes/s]
 86%|████████▌ | 2.38G/2.76G [02:45<00:26, 14.4Mbytes/s]
 86%|████████▌ | 2.38G/2.76G [02:45<00:24, 15.5Mbytes/s]
 86%|████████▋ | 2.38G/2.76G [02:45<00:23, 16.3Mbytes/s]
 86%|████████▋ | 2.38G/2.76G [02:45<00:25, 15.0Mbytes/s]
 86%|████████▋ | 2.39G/2.76G [02:45<00:23, 15.8Mbytes/s]
 87%|████████▋ | 2.39G/2.76G [02:46<00:22, 16.5Mbytes/s]
 87%|████████▋ | 2.39G/2.76G [02:46<00:24, 15.1Mbytes/s]
 87%|████████▋ | 2.39G/2.76G [02:46<00:20, 17.6Mbytes/s]
 87%|████████▋ | 2.39G/2.76G [02:46<00:22, 16.4Mbytes/s]
 87%|████████▋ | 2.40G/2.76G [02:46<00:23, 15.4Mbytes/s]
 87%|████████▋ | 2.40G/2.76G [02:46<00:22, 16.1Mbytes/s]
 87%|████████▋ | 2.40G/2.76G [02:46<00:24, 14.8Mbytes/s]
 87%|████████▋ | 2.40G/2.76G [02:46<00:20, 17.2Mbytes/s]
 87%|████████▋ | 2.40G/2.76G [02:47<00:22, 16.0Mbytes/s]
 87%|████████▋ | 2.41G/2.76G [02:47<00:23, 15.0Mbytes/s]
 87%|████████▋ | 2.41G/2.76G [02:47<00:22, 15.6Mbytes/s]
 87%|████████▋ | 2.41G/2.76G [02:47<00:24, 14.6Mbytes/s]
 87%|████████▋ | 2.41G/2.76G [02:47<00:20, 16.7Mbytes/s]
 87%|████████▋ | 2.41G/2.76G [02:47<00:22, 15.6Mbytes/s]
 87%|████████▋ | 2.42G/2.76G [02:47<00:22, 15.2Mbytes/s]
 88%|████████▊ | 2.42G/2.76G [02:47<00:21, 16.1Mbytes/s]
 88%|████████▊ | 2.42G/2.76G [02:48<00:23, 14.8Mbytes/s]
 88%|████████▊ | 2.42G/2.76G [02:48<00:19, 17.0Mbytes/s]
 88%|████████▊ | 2.42G/2.76G [02:48<00:21, 15.8Mbytes/s]
 88%|████████▊ | 2.43G/2.76G [02:48<00:21, 15.5Mbytes/s]
 88%|████████▊ | 2.43G/2.76G [02:48<00:20, 16.1Mbytes/s]
 88%|████████▊ | 2.43G/2.76G [02:48<00:22, 14.8Mbytes/s]
 88%|████████▊ | 2.43G/2.76G [02:48<00:19, 16.7Mbytes/s]
 88%|████████▊ | 2.43G/2.76G [02:48<00:20, 15.7Mbytes/s]
 88%|████████▊ | 2.44G/2.76G [02:49<00:25, 12.6Mbytes/s]
 88%|████████▊ | 2.44G/2.76G [02:49<00:30, 10.6Mbytes/s]
 88%|████████▊ | 2.44G/2.76G [02:49<00:25, 12.6Mbytes/s]
 88%|████████▊ | 2.44G/2.76G [02:49<00:23, 13.7Mbytes/s]
 89%|████████▊ | 2.45G/2.76G [02:49<00:22, 14.2Mbytes/s]
 89%|████████▊ | 2.45G/2.76G [02:50<00:21, 14.8Mbytes/s]
 89%|████████▉ | 2.45G/2.76G [02:50<00:18, 16.4Mbytes/s]
 89%|████████▉ | 2.45G/2.76G [02:50<00:21, 14.5Mbytes/s]
 89%|████████▉ | 2.46G/2.76G [02:50<00:19, 15.3Mbytes/s]
 89%|████████▉ | 2.46G/2.76G [02:50<00:20, 14.5Mbytes/s]
 89%|████████▉ | 2.46G/2.76G [02:50<00:20, 14.7Mbytes/s]
 89%|████████▉ | 2.46G/2.76G [02:50<00:19, 15.5Mbytes/s]
 89%|████████▉ | 2.46G/2.76G [02:50<00:19, 15.4Mbytes/s]
 89%|████████▉ | 2.46G/2.76G [02:51<00:18, 16.0Mbytes/s]
 89%|████████▉ | 2.47G/2.76G [02:51<00:18, 15.7Mbytes/s]
 89%|████████▉ | 2.47G/2.76G [02:51<00:17, 16.4Mbytes/s]
 89%|████████▉ | 2.47G/2.76G [02:51<00:18, 16.0Mbytes/s]
 90%|████████▉ | 2.47G/2.76G [02:51<00:17, 16.6Mbytes/s]
 90%|████████▉ | 2.47G/2.76G [02:51<00:17, 16.3Mbytes/s]
 90%|████████▉ | 2.48G/2.76G [02:51<00:16, 16.9Mbytes/s]
 90%|████████▉ | 2.48G/2.76G [02:51<00:17, 16.4Mbytes/s]
 90%|████████▉ | 2.48G/2.76G [02:51<00:16, 17.0Mbytes/s]
 90%|████████▉ | 2.48G/2.76G [02:52<00:16, 16.5Mbytes/s]
 90%|████████▉ | 2.48G/2.76G [02:52<00:17, 15.8Mbytes/s]
 90%|████████▉ | 2.48G/2.76G [02:52<00:16, 17.0Mbytes/s]
 90%|█████████ | 2.49G/2.76G [02:52<00:19, 13.9Mbytes/s]
 90%|█████████ | 2.49G/2.76G [02:52<00:16, 16.4Mbytes/s]
 90%|█████████ | 2.49G/2.76G [02:52<00:17, 15.6Mbytes/s]
 90%|█████████ | 2.49G/2.76G [02:52<00:16, 16.3Mbytes/s]
 90%|█████████ | 2.49G/2.76G [02:52<00:16, 16.3Mbytes/s]
 90%|█████████ | 2.50G/2.76G [02:52<00:16, 16.1Mbytes/s]
 90%|█████████ | 2.50G/2.76G [02:53<00:17, 15.5Mbytes/s]
 91%|█████████ | 2.50G/2.76G [02:53<00:18, 14.5Mbytes/s]
 91%|█████████ | 2.50G/2.76G [02:53<00:15, 16.5Mbytes/s]
 91%|█████████ | 2.50G/2.76G [02:53<00:17, 14.9Mbytes/s]
 91%|█████████ | 2.51G/2.76G [02:53<00:15, 17.0Mbytes/s]
 91%|█████████ | 2.51G/2.76G [02:53<00:15, 16.1Mbytes/s]
 91%|█████████ | 2.51G/2.76G [02:53<00:17, 14.8Mbytes/s]
 91%|█████████ | 2.51G/2.76G [02:53<00:15, 16.1Mbytes/s]
 91%|█████████ | 2.51G/2.76G [02:54<00:15, 15.6Mbytes/s]
 91%|█████████ | 2.51G/2.76G [02:54<00:14, 17.2Mbytes/s]
 91%|█████████ | 2.52G/2.76G [02:54<00:15, 15.4Mbytes/s]
 91%|█████████ | 2.52G/2.76G [02:54<00:15, 15.5Mbytes/s]
 91%|█████████▏| 2.52G/2.76G [02:54<00:14, 16.5Mbytes/s]
 91%|█████████▏| 2.52G/2.76G [02:54<00:15, 15.5Mbytes/s]
 91%|█████████▏| 2.52G/2.76G [02:54<00:13, 17.3Mbytes/s]
 92%|█████████▏| 2.53G/2.76G [02:54<00:14, 16.0Mbytes/s]
 92%|█████████▏| 2.53G/2.76G [02:55<00:15, 15.3Mbytes/s]
 92%|█████████▏| 2.53G/2.76G [02:55<00:13, 16.5Mbytes/s]
 92%|█████████▏| 2.53G/2.76G [02:55<00:14, 15.5Mbytes/s]
 92%|█████████▏| 2.53G/2.76G [02:55<00:14, 15.4Mbytes/s]
 92%|█████████▏| 2.54G/2.76G [02:55<00:14, 15.8Mbytes/s]
 92%|█████████▏| 2.54G/2.76G [02:55<00:14, 15.5Mbytes/s]
 92%|█████████▏| 2.54G/2.76G [02:55<00:16, 13.2Mbytes/s]
 92%|█████████▏| 2.54G/2.76G [02:55<00:13, 16.2Mbytes/s]
 92%|█████████▏| 2.54G/2.76G [02:56<00:14, 15.4Mbytes/s]
 92%|█████████▏| 2.55G/2.76G [02:56<00:12, 16.6Mbytes/s]
 92%|█████████▏| 2.55G/2.76G [02:56<00:13, 16.0Mbytes/s]
 92%|█████████▏| 2.55G/2.76G [02:56<00:15, 13.9Mbytes/s]
 92%|█████████▏| 2.55G/2.76G [02:56<00:12, 16.5Mbytes/s]
 92%|█████████▏| 2.55G/2.76G [02:56<00:13, 15.6Mbytes/s]
 93%|█████████▎| 2.56G/2.76G [02:56<00:12, 17.0Mbytes/s]
 93%|█████████▎| 2.56G/2.76G [02:56<00:12, 16.5Mbytes/s]
 93%|█████████▎| 2.56G/2.76G [02:57<00:14, 14.3Mbytes/s]
 93%|█████████▎| 2.56G/2.76G [02:57<00:11, 16.8Mbytes/s]
 93%|█████████▎| 2.56G/2.76G [02:57<00:12, 15.7Mbytes/s]
 93%|█████████▎| 2.56G/2.76G [02:57<00:11, 16.4Mbytes/s]
 93%|█████████▎| 2.57G/2.76G [02:57<00:12, 16.0Mbytes/s]
 93%|█████████▎| 2.57G/2.76G [02:57<00:11, 16.3Mbytes/s]
 93%|█████████▎| 2.57G/2.76G [02:57<00:11, 16.1Mbytes/s]
 93%|█████████▎| 2.57G/2.76G [02:57<00:13, 14.3Mbytes/s]
 93%|█████████▎| 2.57G/2.76G [02:57<00:10, 17.0Mbytes/s]
 93%|█████████▎| 2.58G/2.76G [02:58<00:11, 15.8Mbytes/s]
 93%|█████████▎| 2.58G/2.76G [02:58<00:11, 16.3Mbytes/s]
 93%|█████████▎| 2.58G/2.76G [02:58<00:11, 16.0Mbytes/s]
 93%|█████████▎| 2.58G/2.76G [02:58<00:10, 16.6Mbytes/s]
 94%|█████████▎| 2.58G/2.76G [02:58<00:10, 16.2Mbytes/s]
 94%|█████████▎| 2.58G/2.76G [02:58<00:12, 14.2Mbytes/s]
 94%|█████████▎| 2.59G/2.76G [02:58<00:10, 16.5Mbytes/s]
 94%|█████████▍| 2.59G/2.76G [02:58<00:11, 15.6Mbytes/s]
 94%|█████████▍| 2.59G/2.76G [02:59<00:10, 16.2Mbytes/s]
 94%|█████████▍| 2.59G/2.76G [02:59<00:10, 15.9Mbytes/s]
 94%|█████████▍| 2.59G/2.76G [02:59<00:10, 16.6Mbytes/s]
 94%|█████████▍| 2.60G/2.76G [02:59<00:10, 16.2Mbytes/s]
 94%|█████████▍| 2.60G/2.76G [02:59<00:11, 14.7Mbytes/s]
 94%|█████████▍| 2.60G/2.76G [02:59<00:09, 17.2Mbytes/s]
 94%|█████████▍| 2.60G/2.76G [02:59<00:09, 16.1Mbytes/s]
 94%|█████████▍| 2.60G/2.76G [02:59<00:09, 16.3Mbytes/s]
 94%|█████████▍| 2.61G/2.76G [02:59<00:09, 15.9Mbytes/s]
 94%|█████████▍| 2.61G/2.76G [03:00<00:10, 14.7Mbytes/s]
 95%|█████████▍| 2.61G/2.76G [03:00<00:08, 16.9Mbytes/s]
 95%|█████████▍| 2.61G/2.76G [03:00<00:09, 15.8Mbytes/s]
 95%|█████████▍| 2.61G/2.76G [03:00<00:09, 16.3Mbytes/s]
 95%|█████████▍| 2.62G/2.76G [03:00<00:09, 16.1Mbytes/s]
 95%|█████████▍| 2.62G/2.76G [03:00<00:08, 16.5Mbytes/s]
 95%|█████████▍| 2.62G/2.76G [03:00<00:08, 16.2Mbytes/s]
 95%|█████████▍| 2.62G/2.76G [03:00<00:09, 14.5Mbytes/s]
 95%|█████████▌| 2.62G/2.76G [03:01<00:08, 16.7Mbytes/s]
 95%|█████████▌| 2.63G/2.76G [03:01<00:08, 15.7Mbytes/s]
 95%|█████████▌| 2.63G/2.76G [03:01<00:08, 16.2Mbytes/s]
 95%|█████████▌| 2.63G/2.76G [03:01<00:08, 16.0Mbytes/s]
 95%|█████████▌| 2.63G/2.76G [03:01<00:07, 16.4Mbytes/s]
 95%|█████████▌| 2.63G/2.76G [03:01<00:07, 16.1Mbytes/s]
 95%|█████████▌| 2.63G/2.76G [03:01<00:08, 14.4Mbytes/s]
 95%|█████████▌| 2.64G/2.76G [03:01<00:07, 16.8Mbytes/s]
 96%|█████████▌| 2.64G/2.76G [03:01<00:07, 15.7Mbytes/s]
 96%|█████████▌| 2.64G/2.76G [03:02<00:07, 16.2Mbytes/s]
 96%|█████████▌| 2.64G/2.76G [03:02<00:07, 16.0Mbytes/s]
 96%|█████████▌| 2.64G/2.76G [03:02<00:06, 16.8Mbytes/s]
 96%|█████████▌| 2.65G/2.76G [03:02<00:07, 16.4Mbytes/s]
 96%|█████████▌| 2.65G/2.76G [03:02<00:07, 14.6Mbytes/s]
 96%|█████████▌| 2.65G/2.76G [03:02<00:06, 17.1Mbytes/s]
 96%|█████████▌| 2.65G/2.76G [03:02<00:07, 15.5Mbytes/s]
 96%|█████████▌| 2.65G/2.76G [03:02<00:06, 17.0Mbytes/s]
 96%|█████████▌| 2.66G/2.76G [03:03<00:06, 15.8Mbytes/s]
 96%|█████████▌| 2.66G/2.76G [03:03<00:06, 15.1Mbytes/s]
 96%|█████████▋| 2.66G/2.76G [03:03<00:05, 17.0Mbytes/s]
 96%|█████████▋| 2.66G/2.76G [03:03<00:06, 14.5Mbytes/s]
 96%|█████████▋| 2.66G/2.76G [03:03<00:06, 15.4Mbytes/s]
 97%|█████████▋| 2.67G/2.76G [03:03<00:06, 15.8Mbytes/s]
 97%|█████████▋| 2.67G/2.76G [03:03<00:05, 15.7Mbytes/s]
 97%|█████████▋| 2.67G/2.76G [03:03<00:05, 16.0Mbytes/s]
 97%|█████████▋| 2.67G/2.76G [03:04<00:05, 16.0Mbytes/s]
 97%|█████████▋| 2.67G/2.76G [03:04<00:05, 16.0Mbytes/s]
 97%|█████████▋| 2.67G/2.76G [03:04<00:06, 12.9Mbytes/s]
 97%|█████████▋| 2.68G/2.76G [03:04<00:07, 10.8Mbytes/s]
 97%|█████████▋| 2.68G/2.76G [03:04<00:06, 12.6Mbytes/s]
 97%|█████████▋| 2.68G/2.76G [03:04<00:05, 13.8Mbytes/s]
 97%|█████████▋| 2.68G/2.76G [03:05<00:05, 14.5Mbytes/s]
 97%|█████████▋| 2.69G/2.76G [03:05<00:04, 15.0Mbytes/s]
 97%|█████████▋| 2.69G/2.76G [03:05<00:04, 15.3Mbytes/s]
 98%|█████████▊| 2.69G/2.76G [03:05<00:04, 15.5Mbytes/s]
 98%|█████████▊| 2.70G/2.76G [03:05<00:04, 15.6Mbytes/s]
 98%|█████████▊| 2.70G/2.76G [03:06<00:03, 15.8Mbytes/s]
 98%|█████████▊| 2.70G/2.76G [03:06<00:03, 15.8Mbytes/s]
 98%|█████████▊| 2.71G/2.76G [03:06<00:03, 15.8Mbytes/s]
 98%|█████████▊| 2.71G/2.76G [03:06<00:03, 15.9Mbytes/s]
 98%|█████████▊| 2.71G/2.76G [03:06<00:02, 15.8Mbytes/s]
 98%|█████████▊| 2.72G/2.76G [03:07<00:02, 17.6Mbytes/s]
 98%|█████████▊| 2.72G/2.76G [03:07<00:02, 16.2Mbytes/s]
 99%|█████████▊| 2.72G/2.76G [03:07<00:02, 14.9Mbytes/s]
 99%|█████████▊| 2.72G/2.76G [03:07<00:02, 17.9Mbytes/s]
 99%|█████████▊| 2.73G/2.76G [03:07<00:02, 16.1Mbytes/s]
 99%|█████████▉| 2.73G/2.76G [03:07<00:02, 14.6Mbytes/s]
 99%|█████████▉| 2.73G/2.76G [03:07<00:01, 18.1Mbytes/s]
 99%|█████████▉| 2.73G/2.76G [03:08<00:01, 16.2Mbytes/s]
 99%|█████████▉| 2.73G/2.76G [03:08<00:01, 14.7Mbytes/s]
 99%|█████████▉| 2.74G/2.76G [03:08<00:01, 14.5Mbytes/s]
 99%|█████████▉| 2.74G/2.76G [03:08<00:01, 17.7Mbytes/s]
 99%|█████████▉| 2.74G/2.76G [03:08<00:01, 15.8Mbytes/s]
 99%|█████████▉| 2.74G/2.76G [03:08<00:01, 14.6Mbytes/s]
 99%|█████████▉| 2.75G/2.76G [03:08<00:00, 14.7Mbytes/s]
100%|█████████▉| 2.75G/2.76G [03:09<00:00, 18.0Mbytes/s]
100%|█████████▉| 2.75G/2.76G [03:09<00:00, 16.1Mbytes/s]
100%|█████████▉| 2.75G/2.76G [03:09<00:00, 14.3Mbytes/s]
100%|█████████▉| 2.76G/2.76G [03:09<00:00, 14.6Mbytes/s]
100%|█████████▉| 2.76G/2.76G [03:09<00:00, 15.1Mbytes/s]
100%|██████████| 2.76G/2.76G [03:09<00:00, 14.5Mbytes/s]
%%bash
set -e

echo "Counting refreshed Level-2 .gfeat directories across the sample ..."
find ~/trust_example_higherlevel/refreshed_2525/derivatives/fsl -maxdepth 2 -type d -name "L2_task-trust_model-01_type-act_sm-6.gfeat" | wc -l

echo
echo "Showing a few refreshed Level-2 input paths ..."
find ~/trust_example_higherlevel/refreshed_2525/derivatives/fsl -maxdepth 2 -type d -name "L2_task-trust_model-01_type-act_sm-6.gfeat" | sort | head -5
Counting refreshed Level-2 .gfeat directories across the sample ...
48

Showing a few refreshed Level-2 input paths ...
/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-104/L2_task-trust_model-01
_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-105/L
2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherlevel/refreshed_2525/deri
vatives/fsl/sub-106/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/trust_example_higherleve
l/refreshed_2525/derivatives/fsl/sub-107/L2_task-trust_model-01_type-act_sm-6.gfeat
/home/jovyan/tru
st_example_higherlevel/refreshed_2525/derivatives/fsl/sub-108/L2_task-trust_model-01_type-act_sm-6.g
feat

We now rerender the same one-group Level-3 template so that BASEDIR points to the refreshed derivative tree. This lets us keep the original example intact while also showing how the group result changes when the Level-2 inputs are regenerated appropriately.

%%bash
set -e

EXAMPLE_DIR="$HOME/trust_example_higherlevel"
REFRESH_ROOT="$EXAMPLE_DIR/refreshed_2525"
REFRESH_DERIV_DIR="$REFRESH_ROOT/derivatives/fsl"

ITEMPLATE_ONE="$EXAMPLE_DIR/templates/L3_template_n48_trust_onegroup.fsf"
OTEMPLATE_ONE="$REFRESH_DERIV_DIR/L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525.fsf"
OUTPUT_ONE="$REFRESH_DERIV_DIR/L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525"

sed \
  -e "s@OUTPUT@${OUTPUT_ONE}@g" \
  -e "s@BASEDIR@${REFRESH_ROOT}@g" \
  -e "s@REPLACEME@type-act@g" \
  -e "s@COPENUM@10@g" \
  < "$ITEMPLATE_ONE" > "$OTEMPLATE_ONE"

echo "Rendered refreshed template:"
echo "  $OTEMPLATE_ONE"
Rendered refreshed template:
  /home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/L3_task-trust_model-01_type-
act_cope10_onegroup_fmriprep2525.fsf
!grep -E 'outputdir|feat_files\(1\)|feat_files\(48\)|conname_real' ~/trust_example_higherlevel/refreshed_2525/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525.fsf
set fmri(outputdir) "/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525"
set feat_files(1) "/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-104/L2_task-trust_model-01_type-act_sm-6.gfeat/cope10.feat/stats/cope1.nii.gz"
set feat_files(48) "/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/sub-159/L2_task-trust_model-01_type-act_sm-6.gfeat/cope10.feat/stats/cope1.nii.gz"
set fmri(conname_real.1) "pos"
set fmri(conname_real.2) "neg"

Now rerun FEAT on the refreshed Level-3 template. This is the same FEAT logic as before. The only thing that changes is the shared Level-2 derivative tree that feeds the group model.

%%bash
set -e

REFRESH_DERIV_DIR="$HOME/trust_example_higherlevel/refreshed_2525/derivatives/fsl"

rm -rf "${REFRESH_DERIV_DIR}/L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525.gfeat"
rm -rf "${REFRESH_DERIV_DIR}/L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525+"*.gfeat
rm -rf "${REFRESH_DERIV_DIR}/logs"

echo "Removed any previous refreshed Level-3 derivatives."
Removed any previous refreshed Level-3 derivatives.
%%bash
set -e

ONEGROUP_FSF="$HOME/trust_example_higherlevel/refreshed_2525/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525.fsf"

feat "$ONEGROUP_FSF"
To view the FEAT progress and final report, point your web browser at /home/jovyan/trust_example_hig
herlevel/refreshed_2525/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525
.gfeat/report_log.html

11. Review the refreshed Level-3 output#

After rerunning the group model with the refreshed Level-2 derivatives, we want to check two things:

  1. the expected Level-3 outputs exist in the refreshed derivative tree

  2. the one-group reciprocate > defect result now looks much more like the ventral striatal effect we expected

For this notebook, that single refreshed map is enough to make the main teaching point.

refreshed_onegroup_dir = EXAMPLE_DIR / "refreshed_2525" / "derivatives" / "fsl" / "L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525.gfeat"

for rel in [
    "report.html",
    "cope1.feat",
    "cope1.feat/mask.nii.gz",
    "cope1.feat/thresh_zstat1.nii.gz",
]:
    p = refreshed_onegroup_dir / rel
    print(f"{p}: {p.exists()}")
/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525.gfeat/report.html: True
/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525.gfeat/cope1.feat: True
/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525.gfeat/cope1.feat/mask.nii.gz: True
/home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525.gfeat/cope1.feat/thresh_zstat1.nii.gz: True

The refreshed visualization below repeats the same contrast as before: cope10 (reciprocate > defect). The important difference is that the shared Level-2 inputs were rebuilt after rerunning preprocessing with fMRIPrep 25.2.5. This time, the group map should reveal the expected ventral striatal activation much more clearly.

from ipyniivue import NiiVue

zmap = refreshed_onegroup_dir / "cope1.feat" / "thresh_zstat1.nii.gz"

print("Background exists:", group_bg is not None, group_bg)
print("Contrast exists:", zmap.exists(), zmap)

if group_bg is not None and zmap.exists():
    zdata = nib.load(str(zmap)).get_fdata()
    zmax = float(np.nanmax(zdata))
    print("Max thresholded value:", zmax)

    if zmax > 0:
        bg_data = nib.load(str(group_bg)).get_fdata()
        bg_nonzero = bg_data[bg_data > 0]
        lo = float(np.percentile(bg_nonzero, 2))
        hi = float(np.percentile(bg_nonzero, 98))

        nv = NiiVue()
        nv.load_volumes([
            {
                "path": str(group_bg),
                "name": "MNI152_T1_2mm_brain",
                "colormap": "gray",
                "opacity": 1.0,
                "cal_min": lo,
                "cal_max": hi,
            },
            {
                "path": str(zmap),
                "name": "refreshed mean_pos",
                "colormap": "red",
                "opacity": 0.75,
            },
        ])
        display(nv)
    else:
        print("The thresholded map contains no voxels above zero, so we skip plotting it.")
else:
    print("Could not find the MNI background or the refreshed thresholded group map.")
Background exists: True /cvmfs/neurodesk.ardc.edu.au/containers/fsl_6.0.7.16_20250131/fsl_6.0.7.16_20250131.simg/opt/fsl-6.0.7.16/data/standard/MNI152_T1_2mm_brain.nii.gz
Contrast exists: True /home/jovyan/trust_example_higherlevel/refreshed_2525/derivatives/fsl/L3_task-trust_model-01_type-act_cope10_onegroup_fmriprep2525.gfeat/cope1.feat/thresh_zstat1.nii.gz
Max thresholded value: 6.677373886108398

If you want to generalize this notebook later, the main changes are still straightforward:

  • change the participant whose Level-1 runs you rerender at Level 2

  • change the lower-level cope number you want to carry forward to Level 3

  • change the refreshed archive filename if the OSF file changes

  • keep the old and refreshed derivative trees separate so the teachable comparison stays explicit

  • and, most importantly, check the mask before you interpret the activation

12. Dependencies in Jupyter/Python#

  • Using the package watermark to document system environment and software versions used in this notebook, alongside the Neurodesktop version extracted from the JUPYTER_IMAGE or NEURODESKTOP_VERSION environment variables.

import os

%load_ext watermark

%watermark
%watermark --iversions

neurodesktop_version = (
    os.environ.get('JUPYTER_IMAGE', '').split(':')[-1] or
    os.environ.get('NEURODESKTOP_VERSION', 'unknown')
)

print(f"Neurodesktop version: {neurodesktop_version}")
Last updated: 2026-04-30T02:16:44.314244+00:00

Python implementation: CPython
Python version       : 3.13.13
IPython version      : 9.12.0

Compiler    : GCC 14.3.0
OS          : Linux
Release     : 6.8.0-106-generic
Machine     : x86_64
Processor   : x86_64
CPU cores   : 16
Architecture: 64bit

IPython  : 9.12.0
ipyniivue: 2.4.4
nibabel  : 5.4.2
numpy    : 2.4.4

Neurodesktop version: 2026-04-28