{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": { "id": "146BB11JpfDA" }, "outputs": [], "source": [ "import os" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "id": "42hJEdo_pfDB" }, "outputs": [], "source": [ "CUSTOM_MODEL_NAME = 'my_ssd_mobnet' \n", "PRETRAINED_MODEL_NAME = 'ssd_mobilenet_v2_fpnlite_320x320_coco17_tpu-8'\n", "PRETRAINED_MODEL_URL = 'http://download.tensorflow.org/models/object_detection/tf2/20200711/ssd_mobilenet_v2_fpnlite_320x320_coco17_tpu-8.tar.gz'\n", "TF_RECORD_SCRIPT_NAME = 'generate_tfrecord.py'\n", "LABEL_MAP_NAME = 'label_map.pbtxt'" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "id": "hbPhYVy_pfDB" }, "outputs": [], "source": [ "paths = {\n", " 'WORKSPACE_PATH': os.path.join('Tensorflow', 'workspace'),\n", " 'SCRIPTS_PATH': os.path.join('Tensorflow','scripts'),\n", " 'APIMODEL_PATH': os.path.join('Tensorflow','models'),\n", " 'ANNOTATION_PATH': os.path.join('Tensorflow', 'workspace','annotations'),\n", " 'IMAGE_PATH': os.path.join('Tensorflow', 'workspace','images'),\n", " 'MODEL_PATH': os.path.join('Tensorflow', 'workspace','models'),\n", " 'PRETRAINED_MODEL_PATH': os.path.join('Tensorflow', 'workspace','pre-trained-models'),\n", " 'CHECKPOINT_PATH': os.path.join('Tensorflow', 'workspace','models',CUSTOM_MODEL_NAME), \n", " 'OUTPUT_PATH': os.path.join('Tensorflow', 'workspace','models',CUSTOM_MODEL_NAME, 'export'), \n", " 'TFJS_PATH':os.path.join('Tensorflow', 'workspace','models',CUSTOM_MODEL_NAME, 'tfjsexport'), \n", " 'TFLITE_PATH':os.path.join('Tensorflow', 'workspace','models',CUSTOM_MODEL_NAME, 'tfliteexport'), \n", " 'PROTOC_PATH':os.path.join('Tensorflow','protoc')\n", " }" ] }, { "cell_type": "code", "execution_count": 4, "metadata": { "id": "LwhWZMI0pfDC" }, "outputs": [], "source": [ "files = {\n", " 'PIPELINE_CONFIG':os.path.join('Tensorflow', 'workspace','models', CUSTOM_MODEL_NAME, 'pipeline.config'),\n", " 'TF_RECORD_SCRIPT': os.path.join(paths['SCRIPTS_PATH'], TF_RECORD_SCRIPT_NAME), \n", " 'LABELMAP': os.path.join(paths['ANNOTATION_PATH'], LABEL_MAP_NAME)\n", "}" ] }, { "cell_type": "code", "execution_count": 5, "metadata": { "id": "HR-TfDGrpfDC" }, "outputs": [], "source": [ "for path in paths.values():\n", " if not os.path.exists(path):\n", " if os.name == 'posix':\n", " !mkdir -p {path}\n", " if os.name == 'nt':\n", " !mkdir {path}" ] }, { "cell_type": "code", "execution_count": 6, "metadata": { "id": "K-Cmz2edpfDE", "scrolled": true }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Collecting wget\n", " Downloading wget-3.2.zip (10 kB)\n", " Preparing metadata (setup.py): started\n", " Preparing metadata (setup.py): finished with status 'done'\n", "Building wheels for collected packages: wget\n", " Building wheel for wget (setup.py): started\n", " Building wheel for wget (setup.py): finished with status 'done'\n", " Created wheel for wget: filename=wget-3.2-py3-none-any.whl size=9699 sha256=50259bf6411d7e9a154265464bd69758b5465a813a98e7308806034b224d63b9\n", " Stored in directory: c:\\users\\user\\appdata\\local\\pip\\cache\\wheels\\bd\\a8\\c3\\3cf2c14a1837a4e04bd98631724e81f33f462d86a1d895fae0\n", "Successfully built wget\n", "Installing collected packages: wget\n", "Successfully installed wget-3.2\n" ] } ], "source": [ "if os.name=='nt':\n", " !pip install wget\n", " import wget" ] }, { "cell_type": "code", "execution_count": 7, "metadata": { "id": "iA1DIq5OpfDE" }, "outputs": [], "source": [ "if not os.path.exists(os.path.join(paths['APIMODEL_PATH'], 'research', 'object_detection')):\n", " !git clone https://github.com/tensorflow/models {paths['APIMODEL_PATH']}" ] }, { "cell_type": "code", "execution_count": 8, "metadata": { "id": "rJjMHbnDs3Tv" }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "100% [..........................................................................] 1468733 / 1468733 1 file(s) moved.\n", " 1 file(s) copied.\n", "running build\n", "running build_py\n", "copying object_detection\\protos\\anchor_generator_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\argmax_matcher_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\bipartite_matcher_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\box_coder_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\box_predictor_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\calibration_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\center_net_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\eval_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\faster_rcnn_box_coder_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\faster_rcnn_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\flexible_grid_anchor_generator_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\fpn_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\graph_rewriter_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\grid_anchor_generator_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\hyperparams_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\image_resizer_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\input_reader_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\keypoint_box_coder_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\losses_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\matcher_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\mean_stddev_box_coder_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\model_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\multiscale_anchor_generator_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\optimizer_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\pipeline_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\post_processing_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\preprocessor_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\region_similarity_calculator_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\square_box_coder_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\ssd_anchor_generator_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\ssd_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\string_int_label_map_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\target_assigner_pb2.py -> build\\lib\\object_detection\\protos\n", "copying object_detection\\protos\\train_pb2.py -> build\\lib\\object_detection\\protos\n", "running egg_info\n", "writing object_detection.egg-info\\PKG-INFO\n", "writing dependency_links to object_detection.egg-info\\dependency_links.txt\n", "writing requirements to object_detection.egg-info\\requires.txt\n", "writing top-level names to object_detection.egg-info\\top_level.txt\n", "reading manifest file 'object_detection.egg-info\\SOURCES.txt'\n", "writing manifest file 'object_detection.egg-info\\SOURCES.txt'\n", "running install\n", "running bdist_egg\n", "running egg_info\n", "writing object_detection.egg-info\\PKG-INFO\n", "writing dependency_links to object_detection.egg-info\\dependency_links.txt\n", "writing requirements to object_detection.egg-info\\requires.txt\n", "writing top-level names to object_detection.egg-info\\top_level.txt\n", "reading manifest file 'object_detection.egg-info\\SOURCES.txt'\n", "writing manifest file 'object_detection.egg-info\\SOURCES.txt'\n", "installing library code to build\\bdist.win-amd64\\egg\n", "running install_lib\n", "running build_py\n", "creating build\\bdist.win-amd64\\egg\n", "creating build\\bdist.win-amd64\\egg\\datasets\n", "copying build\\lib\\datasets\\build_imagenet_data.py -> build\\bdist.win-amd64\\egg\\datasets\n", "copying build\\lib\\datasets\\cifar10.py -> build\\bdist.win-amd64\\egg\\datasets\n", "copying build\\lib\\datasets\\dataset_factory.py -> build\\bdist.win-amd64\\egg\\datasets\n", "copying build\\lib\\datasets\\dataset_utils.py -> build\\bdist.win-amd64\\egg\\datasets\n", "copying build\\lib\\datasets\\download_and_convert_cifar10.py -> build\\bdist.win-amd64\\egg\\datasets\n", "copying build\\lib\\datasets\\download_and_convert_flowers.py -> build\\bdist.win-amd64\\egg\\datasets\n", "copying build\\lib\\datasets\\download_and_convert_mnist.py -> build\\bdist.win-amd64\\egg\\datasets\n", "copying build\\lib\\datasets\\download_and_convert_visualwakewords.py -> build\\bdist.win-amd64\\egg\\datasets\n", "copying build\\lib\\datasets\\download_and_convert_visualwakewords_lib.py -> build\\bdist.win-amd64\\egg\\datasets\n", "copying build\\lib\\datasets\\flowers.py -> build\\bdist.win-amd64\\egg\\datasets\n", "copying build\\lib\\datasets\\imagenet.py -> build\\bdist.win-amd64\\egg\\datasets\n", "copying build\\lib\\datasets\\mnist.py -> build\\bdist.win-amd64\\egg\\datasets\n", "copying build\\lib\\datasets\\preprocess_imagenet_validation_data.py -> build\\bdist.win-amd64\\egg\\datasets\n", "copying build\\lib\\datasets\\process_bounding_boxes.py -> build\\bdist.win-amd64\\egg\\datasets\n", "copying build\\lib\\datasets\\visualwakewords.py -> build\\bdist.win-amd64\\egg\\datasets\n", "copying build\\lib\\datasets\\__init__.py -> build\\bdist.win-amd64\\egg\\datasets\n", "creating build\\bdist.win-amd64\\egg\\deployment\n", "copying build\\lib\\deployment\\model_deploy.py -> build\\bdist.win-amd64\\egg\\deployment\n", "copying build\\lib\\deployment\\model_deploy_test.py -> build\\bdist.win-amd64\\egg\\deployment\n", "copying build\\lib\\deployment\\__init__.py -> build\\bdist.win-amd64\\egg\\deployment\n", "creating build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\alexnet.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\alexnet_test.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\cifarnet.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\cyclegan.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\cyclegan_test.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\dcgan.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\dcgan_test.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\i3d.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\i3d_test.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\i3d_utils.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\inception.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\inception_resnet_v2.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\inception_resnet_v2_test.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\inception_utils.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\inception_v1.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\inception_v1_test.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\inception_v2.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\inception_v2_test.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\inception_v3.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\inception_v3_test.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\inception_v4.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\inception_v4_test.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\lenet.py -> build\\bdist.win-amd64\\egg\\nets\n", "creating build\\bdist.win-amd64\\egg\\nets\\mobilenet\n", "copying build\\lib\\nets\\mobilenet\\conv_blocks.py -> build\\bdist.win-amd64\\egg\\nets\\mobilenet\n", "copying build\\lib\\nets\\mobilenet\\mobilenet.py -> build\\bdist.win-amd64\\egg\\nets\\mobilenet\n", "copying build\\lib\\nets\\mobilenet\\mobilenet_v2.py -> build\\bdist.win-amd64\\egg\\nets\\mobilenet\n", "copying build\\lib\\nets\\mobilenet\\mobilenet_v2_test.py -> build\\bdist.win-amd64\\egg\\nets\\mobilenet\n", "copying build\\lib\\nets\\mobilenet\\mobilenet_v3.py -> build\\bdist.win-amd64\\egg\\nets\\mobilenet\n", "copying build\\lib\\nets\\mobilenet\\mobilenet_v3_test.py -> build\\bdist.win-amd64\\egg\\nets\\mobilenet\n", "copying build\\lib\\nets\\mobilenet\\__init__.py -> build\\bdist.win-amd64\\egg\\nets\\mobilenet\n", "copying build\\lib\\nets\\mobilenet_v1.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\mobilenet_v1_eval.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\mobilenet_v1_test.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\mobilenet_v1_train.py -> build\\bdist.win-amd64\\egg\\nets\n", "creating build\\bdist.win-amd64\\egg\\nets\\nasnet\n", "copying build\\lib\\nets\\nasnet\\nasnet.py -> build\\bdist.win-amd64\\egg\\nets\\nasnet\n", "copying build\\lib\\nets\\nasnet\\nasnet_test.py -> build\\bdist.win-amd64\\egg\\nets\\nasnet\n", "copying build\\lib\\nets\\nasnet\\nasnet_utils.py -> build\\bdist.win-amd64\\egg\\nets\\nasnet\n", "copying build\\lib\\nets\\nasnet\\nasnet_utils_test.py -> build\\bdist.win-amd64\\egg\\nets\\nasnet\n", "copying build\\lib\\nets\\nasnet\\pnasnet.py -> build\\bdist.win-amd64\\egg\\nets\\nasnet\n", "copying build\\lib\\nets\\nasnet\\pnasnet_test.py -> build\\bdist.win-amd64\\egg\\nets\\nasnet\n", "copying build\\lib\\nets\\nasnet\\__init__.py -> build\\bdist.win-amd64\\egg\\nets\\nasnet\n", "copying build\\lib\\nets\\nets_factory.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\nets_factory_test.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\overfeat.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\overfeat_test.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\pix2pix.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\pix2pix_test.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\post_training_quantization.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\resnet_utils.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\resnet_v1.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\resnet_v1_test.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\resnet_v2.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\resnet_v2_test.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\s3dg.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\s3dg_test.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\vgg.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\vgg_test.py -> build\\bdist.win-amd64\\egg\\nets\n", "copying build\\lib\\nets\\__init__.py -> build\\bdist.win-amd64\\egg\\nets\n", "creating build\\bdist.win-amd64\\egg\\object_detection\n", "creating build\\bdist.win-amd64\\egg\\object_detection\\anchor_generators\n", "copying build\\lib\\object_detection\\anchor_generators\\flexible_grid_anchor_generator.py -> build\\bdist.win-amd64\\egg\\object_detection\\anchor_generators\n", "copying build\\lib\\object_detection\\anchor_generators\\flexible_grid_anchor_generator_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\anchor_generators\n", "copying build\\lib\\object_detection\\anchor_generators\\grid_anchor_generator.py -> build\\bdist.win-amd64\\egg\\object_detection\\anchor_generators\n", "copying build\\lib\\object_detection\\anchor_generators\\grid_anchor_generator_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\anchor_generators\n", "copying build\\lib\\object_detection\\anchor_generators\\multiple_grid_anchor_generator.py -> build\\bdist.win-amd64\\egg\\object_detection\\anchor_generators\n", "copying build\\lib\\object_detection\\anchor_generators\\multiple_grid_anchor_generator_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\anchor_generators\n", "copying build\\lib\\object_detection\\anchor_generators\\multiscale_grid_anchor_generator.py -> build\\bdist.win-amd64\\egg\\object_detection\\anchor_generators\n", "copying build\\lib\\object_detection\\anchor_generators\\multiscale_grid_anchor_generator_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\anchor_generators\n", "copying build\\lib\\object_detection\\anchor_generators\\__init__.py -> build\\bdist.win-amd64\\egg\\object_detection\\anchor_generators\n", "creating build\\bdist.win-amd64\\egg\\object_detection\\box_coders\n", "copying build\\lib\\object_detection\\box_coders\\faster_rcnn_box_coder.py -> build\\bdist.win-amd64\\egg\\object_detection\\box_coders\n", "copying build\\lib\\object_detection\\box_coders\\faster_rcnn_box_coder_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\box_coders\n", "copying build\\lib\\object_detection\\box_coders\\keypoint_box_coder.py -> build\\bdist.win-amd64\\egg\\object_detection\\box_coders\n", "copying build\\lib\\object_detection\\box_coders\\keypoint_box_coder_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\box_coders\n", "copying build\\lib\\object_detection\\box_coders\\mean_stddev_box_coder.py -> build\\bdist.win-amd64\\egg\\object_detection\\box_coders\n", "copying build\\lib\\object_detection\\box_coders\\mean_stddev_box_coder_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\box_coders\n", "copying build\\lib\\object_detection\\box_coders\\square_box_coder.py -> build\\bdist.win-amd64\\egg\\object_detection\\box_coders\n", "copying build\\lib\\object_detection\\box_coders\\square_box_coder_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\box_coders\n", "copying build\\lib\\object_detection\\box_coders\\__init__.py -> build\\bdist.win-amd64\\egg\\object_detection\\box_coders\n", "creating build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\anchor_generator_builder.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\anchor_generator_builder_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\box_coder_builder.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\box_coder_builder_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\box_predictor_builder.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\box_predictor_builder_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\calibration_builder.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\calibration_builder_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\dataset_builder.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\dataset_builder_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\decoder_builder.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\decoder_builder_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\graph_rewriter_builder.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\graph_rewriter_builder_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\hyperparams_builder.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\hyperparams_builder_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\image_resizer_builder.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\image_resizer_builder_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\input_reader_builder.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\input_reader_builder_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\losses_builder.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\losses_builder_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\matcher_builder.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\matcher_builder_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\model_builder.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\model_builder_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\model_builder_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\model_builder_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\optimizer_builder.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\optimizer_builder_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\optimizer_builder_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\post_processing_builder.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\post_processing_builder_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\preprocessor_builder.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\preprocessor_builder_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\region_similarity_calculator_builder.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\region_similarity_calculator_builder_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\target_assigner_builder.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\target_assigner_builder_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "copying build\\lib\\object_detection\\builders\\__init__.py -> build\\bdist.win-amd64\\egg\\object_detection\\builders\n", "creating build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\anchor_generator.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\balanced_positive_negative_sampler.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\balanced_positive_negative_sampler_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\batcher.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\batcher_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\batch_multiclass_nms_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\box_coder.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\box_coder_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\box_list.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\box_list_ops.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\box_list_ops_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\box_list_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\box_predictor.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\class_agnostic_nms_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\data_decoder.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\data_parser.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\densepose_ops.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\densepose_ops_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\freezable_batch_norm.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\freezable_batch_norm_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\freezable_sync_batch_norm.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\keypoint_ops.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\keypoint_ops_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\losses.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\losses_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\matcher.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\matcher_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\minibatch_sampler.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\minibatch_sampler_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\model.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\model_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\multiclass_nms_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\post_processing.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\prefetcher.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\prefetcher_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\preprocessor.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\preprocessor_cache.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\preprocessor_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\region_similarity_calculator.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\region_similarity_calculator_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\standard_fields.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\target_assigner.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\target_assigner_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "copying build\\lib\\object_detection\\core\\__init__.py -> build\\bdist.win-amd64\\egg\\object_detection\\core\n", "creating build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\n", "creating build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\context_rcnn\n", "copying build\\lib\\object_detection\\dataset_tools\\context_rcnn\\add_context_to_examples.py -> build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\context_rcnn\n", "copying build\\lib\\object_detection\\dataset_tools\\context_rcnn\\add_context_to_examples_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\context_rcnn\n", "copying build\\lib\\object_detection\\dataset_tools\\context_rcnn\\create_cococameratraps_tfexample_main.py -> build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\context_rcnn\n", "copying build\\lib\\object_detection\\dataset_tools\\context_rcnn\\create_cococameratraps_tfexample_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\context_rcnn\n", "copying build\\lib\\object_detection\\dataset_tools\\context_rcnn\\generate_detection_data.py -> build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\context_rcnn\n", "copying build\\lib\\object_detection\\dataset_tools\\context_rcnn\\generate_detection_data_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\context_rcnn\n", "copying build\\lib\\object_detection\\dataset_tools\\context_rcnn\\generate_embedding_data.py -> build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\context_rcnn\n", "copying build\\lib\\object_detection\\dataset_tools\\context_rcnn\\generate_embedding_data_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\context_rcnn\n", "copying build\\lib\\object_detection\\dataset_tools\\context_rcnn\\__init__.py -> build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\context_rcnn\n", "copying build\\lib\\object_detection\\dataset_tools\\create_ava_actions_tf_record.py -> build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\n", "copying build\\lib\\object_detection\\dataset_tools\\create_coco_tf_record.py -> build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\n", "copying build\\lib\\object_detection\\dataset_tools\\create_coco_tf_record_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\n", "copying build\\lib\\object_detection\\dataset_tools\\create_kitti_tf_record.py -> build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\n", "copying build\\lib\\object_detection\\dataset_tools\\create_kitti_tf_record_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\n", "copying build\\lib\\object_detection\\dataset_tools\\create_oid_tf_record.py -> build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\n", "copying build\\lib\\object_detection\\dataset_tools\\create_pascal_tf_record.py -> build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\n", "copying build\\lib\\object_detection\\dataset_tools\\create_pascal_tf_record_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\n", "copying build\\lib\\object_detection\\dataset_tools\\create_pet_tf_record.py -> build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\n", "copying build\\lib\\object_detection\\dataset_tools\\oid_hierarchical_labels_expansion.py -> build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\n", "copying build\\lib\\object_detection\\dataset_tools\\oid_hierarchical_labels_expansion_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\n", "copying build\\lib\\object_detection\\dataset_tools\\oid_tfrecord_creation.py -> build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\n", "copying build\\lib\\object_detection\\dataset_tools\\oid_tfrecord_creation_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\n", "copying build\\lib\\object_detection\\dataset_tools\\seq_example_util.py -> build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\n", "copying build\\lib\\object_detection\\dataset_tools\\seq_example_util_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\n", "copying build\\lib\\object_detection\\dataset_tools\\tf_record_creation_util.py -> build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\n", "copying build\\lib\\object_detection\\dataset_tools\\tf_record_creation_util_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\n", "copying build\\lib\\object_detection\\dataset_tools\\__init__.py -> build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\n", "creating build\\bdist.win-amd64\\egg\\object_detection\\data_decoders\n", "copying build\\lib\\object_detection\\data_decoders\\tf_example_decoder.py -> build\\bdist.win-amd64\\egg\\object_detection\\data_decoders\n", "copying build\\lib\\object_detection\\data_decoders\\tf_example_decoder_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\data_decoders\n", "copying build\\lib\\object_detection\\data_decoders\\tf_sequence_example_decoder.py -> build\\bdist.win-amd64\\egg\\object_detection\\data_decoders\n", "copying build\\lib\\object_detection\\data_decoders\\tf_sequence_example_decoder_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\data_decoders\n", "copying build\\lib\\object_detection\\data_decoders\\__init__.py -> build\\bdist.win-amd64\\egg\\object_detection\\data_decoders\n", "copying build\\lib\\object_detection\\eval_util.py -> build\\bdist.win-amd64\\egg\\object_detection\n", "copying build\\lib\\object_detection\\eval_util_test.py -> build\\bdist.win-amd64\\egg\\object_detection\n", "copying build\\lib\\object_detection\\exporter.py -> build\\bdist.win-amd64\\egg\\object_detection\n", "copying build\\lib\\object_detection\\exporter_lib_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\n", "copying build\\lib\\object_detection\\exporter_lib_v2.py -> build\\bdist.win-amd64\\egg\\object_detection\n", "copying build\\lib\\object_detection\\exporter_main_v2.py -> build\\bdist.win-amd64\\egg\\object_detection\n", "copying build\\lib\\object_detection\\exporter_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\n", "copying build\\lib\\object_detection\\export_inference_graph.py -> build\\bdist.win-amd64\\egg\\object_detection\n", "copying build\\lib\\object_detection\\export_tflite_graph_lib_tf2.py -> build\\bdist.win-amd64\\egg\\object_detection\n", "copying build\\lib\\object_detection\\export_tflite_graph_lib_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\n", "copying build\\lib\\object_detection\\export_tflite_graph_tf2.py -> build\\bdist.win-amd64\\egg\\object_detection\n", "copying build\\lib\\object_detection\\export_tflite_ssd_graph.py -> build\\bdist.win-amd64\\egg\\object_detection\n", "copying build\\lib\\object_detection\\export_tflite_ssd_graph_lib.py -> build\\bdist.win-amd64\\egg\\object_detection\n", "copying build\\lib\\object_detection\\export_tflite_ssd_graph_lib_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\n", "creating build\\bdist.win-amd64\\egg\\object_detection\\inference\n", "copying build\\lib\\object_detection\\inference\\detection_inference.py -> build\\bdist.win-amd64\\egg\\object_detection\\inference\n", "copying build\\lib\\object_detection\\inference\\detection_inference_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\inference\n", "copying build\\lib\\object_detection\\inference\\infer_detections.py -> build\\bdist.win-amd64\\egg\\object_detection\\inference\n", "copying build\\lib\\object_detection\\inference\\__init__.py -> build\\bdist.win-amd64\\egg\\object_detection\\inference\n", "copying build\\lib\\object_detection\\inputs.py -> build\\bdist.win-amd64\\egg\\object_detection\n", "copying build\\lib\\object_detection\\inputs_test.py -> build\\bdist.win-amd64\\egg\\object_detection\n", "creating build\\bdist.win-amd64\\egg\\object_detection\\legacy\n", "copying build\\lib\\object_detection\\legacy\\eval.py -> build\\bdist.win-amd64\\egg\\object_detection\\legacy\n", "copying build\\lib\\object_detection\\legacy\\evaluator.py -> build\\bdist.win-amd64\\egg\\object_detection\\legacy\n", "copying build\\lib\\object_detection\\legacy\\train.py -> build\\bdist.win-amd64\\egg\\object_detection\\legacy\n", "copying build\\lib\\object_detection\\legacy\\trainer.py -> build\\bdist.win-amd64\\egg\\object_detection\\legacy\n", "copying build\\lib\\object_detection\\legacy\\trainer_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\legacy\n", "copying build\\lib\\object_detection\\legacy\\__init__.py -> build\\bdist.win-amd64\\egg\\object_detection\\legacy\n", "creating build\\bdist.win-amd64\\egg\\object_detection\\matchers\n", "copying build\\lib\\object_detection\\matchers\\argmax_matcher.py -> build\\bdist.win-amd64\\egg\\object_detection\\matchers\n", "copying build\\lib\\object_detection\\matchers\\argmax_matcher_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\matchers\n", "copying build\\lib\\object_detection\\matchers\\bipartite_matcher.py -> build\\bdist.win-amd64\\egg\\object_detection\\matchers\n", "copying build\\lib\\object_detection\\matchers\\bipartite_matcher_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\matchers\n", "copying build\\lib\\object_detection\\matchers\\hungarian_matcher.py -> build\\bdist.win-amd64\\egg\\object_detection\\matchers\n", "copying build\\lib\\object_detection\\matchers\\hungarian_matcher_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\matchers\n", "copying build\\lib\\object_detection\\matchers\\__init__.py -> build\\bdist.win-amd64\\egg\\object_detection\\matchers\n", "creating build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\n", "copying build\\lib\\object_detection\\meta_architectures\\center_net_meta_arch.py -> build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\n", "copying build\\lib\\object_detection\\meta_architectures\\center_net_meta_arch_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\n", "copying build\\lib\\object_detection\\meta_architectures\\context_rcnn_lib.py -> build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\n", "copying build\\lib\\object_detection\\meta_architectures\\context_rcnn_lib_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\n", "copying build\\lib\\object_detection\\meta_architectures\\context_rcnn_lib_tf2.py -> build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\n", "copying build\\lib\\object_detection\\meta_architectures\\context_rcnn_lib_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\n", "copying build\\lib\\object_detection\\meta_architectures\\context_rcnn_meta_arch.py -> build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\n", "copying build\\lib\\object_detection\\meta_architectures\\context_rcnn_meta_arch_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\n", "copying build\\lib\\object_detection\\meta_architectures\\deepmac_meta_arch.py -> build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\n", "copying build\\lib\\object_detection\\meta_architectures\\deepmac_meta_arch_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\n", "copying build\\lib\\object_detection\\meta_architectures\\faster_rcnn_meta_arch.py -> build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\n", "copying build\\lib\\object_detection\\meta_architectures\\faster_rcnn_meta_arch_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\n", "copying build\\lib\\object_detection\\meta_architectures\\faster_rcnn_meta_arch_test_lib.py -> build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\n", "copying build\\lib\\object_detection\\meta_architectures\\rfcn_meta_arch.py -> build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\n", "copying build\\lib\\object_detection\\meta_architectures\\rfcn_meta_arch_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\n", "copying build\\lib\\object_detection\\meta_architectures\\ssd_meta_arch.py -> build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\n", "copying build\\lib\\object_detection\\meta_architectures\\ssd_meta_arch_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\n", "copying build\\lib\\object_detection\\meta_architectures\\ssd_meta_arch_test_lib.py -> build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\n", "copying build\\lib\\object_detection\\meta_architectures\\__init__.py -> build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\n", "creating build\\bdist.win-amd64\\egg\\object_detection\\metrics\n", "copying build\\lib\\object_detection\\metrics\\calibration_evaluation.py -> build\\bdist.win-amd64\\egg\\object_detection\\metrics\n", "copying build\\lib\\object_detection\\metrics\\calibration_evaluation_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\metrics\n", "copying build\\lib\\object_detection\\metrics\\calibration_metrics.py -> build\\bdist.win-amd64\\egg\\object_detection\\metrics\n", "copying build\\lib\\object_detection\\metrics\\calibration_metrics_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\metrics\n", "copying build\\lib\\object_detection\\metrics\\coco_evaluation.py -> build\\bdist.win-amd64\\egg\\object_detection\\metrics\n", "copying build\\lib\\object_detection\\metrics\\coco_evaluation_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\metrics\n", "copying build\\lib\\object_detection\\metrics\\coco_tools.py -> build\\bdist.win-amd64\\egg\\object_detection\\metrics\n", "copying build\\lib\\object_detection\\metrics\\coco_tools_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\metrics\n", "copying build\\lib\\object_detection\\metrics\\io_utils.py -> build\\bdist.win-amd64\\egg\\object_detection\\metrics\n", "copying build\\lib\\object_detection\\metrics\\lvis_evaluation.py -> build\\bdist.win-amd64\\egg\\object_detection\\metrics\n", "copying build\\lib\\object_detection\\metrics\\lvis_evaluation_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\metrics\n", "copying build\\lib\\object_detection\\metrics\\lvis_tools.py -> build\\bdist.win-amd64\\egg\\object_detection\\metrics\n", "copying build\\lib\\object_detection\\metrics\\lvis_tools_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\metrics\n", "copying build\\lib\\object_detection\\metrics\\offline_eval_map_corloc.py -> build\\bdist.win-amd64\\egg\\object_detection\\metrics\n", "copying build\\lib\\object_detection\\metrics\\offline_eval_map_corloc_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\metrics\n", "copying build\\lib\\object_detection\\metrics\\oid_challenge_evaluation.py -> build\\bdist.win-amd64\\egg\\object_detection\\metrics\n", "copying build\\lib\\object_detection\\metrics\\oid_challenge_evaluation_utils.py -> build\\bdist.win-amd64\\egg\\object_detection\\metrics\n", "copying build\\lib\\object_detection\\metrics\\oid_challenge_evaluation_utils_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\metrics\n", "copying build\\lib\\object_detection\\metrics\\oid_vrd_challenge_evaluation.py -> build\\bdist.win-amd64\\egg\\object_detection\\metrics\n", "copying build\\lib\\object_detection\\metrics\\oid_vrd_challenge_evaluation_utils.py -> build\\bdist.win-amd64\\egg\\object_detection\\metrics\n", "copying build\\lib\\object_detection\\metrics\\oid_vrd_challenge_evaluation_utils_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\metrics\n", "copying build\\lib\\object_detection\\metrics\\tf_example_parser.py -> build\\bdist.win-amd64\\egg\\object_detection\\metrics\n", "copying build\\lib\\object_detection\\metrics\\tf_example_parser_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\metrics\n", "copying build\\lib\\object_detection\\metrics\\__init__.py -> build\\bdist.win-amd64\\egg\\object_detection\\metrics\n", "creating build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\bidirectional_feature_pyramid_generators.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\bidirectional_feature_pyramid_generators_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\center_net_hourglass_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\center_net_hourglass_feature_extractor_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\center_net_mobilenet_v2_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\center_net_mobilenet_v2_feature_extractor_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\center_net_mobilenet_v2_fpn_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\center_net_mobilenet_v2_fpn_feature_extractor_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\center_net_resnet_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\center_net_resnet_feature_extractor_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\center_net_resnet_v1_fpn_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\center_net_resnet_v1_fpn_feature_extractor_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\embedded_ssd_mobilenet_v1_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\embedded_ssd_mobilenet_v1_feature_extractor_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\faster_rcnn_inception_resnet_v2_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\faster_rcnn_inception_resnet_v2_feature_extractor_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\faster_rcnn_inception_resnet_v2_keras_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\faster_rcnn_inception_resnet_v2_keras_feature_extractor_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\faster_rcnn_inception_v2_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\faster_rcnn_inception_v2_feature_extractor_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\faster_rcnn_mobilenet_v1_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\faster_rcnn_mobilenet_v1_feature_extractor_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\faster_rcnn_nas_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\faster_rcnn_nas_feature_extractor_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\faster_rcnn_pnas_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\faster_rcnn_pnas_feature_extractor_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\faster_rcnn_resnet_keras_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\faster_rcnn_resnet_keras_feature_extractor_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\faster_rcnn_resnet_v1_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\faster_rcnn_resnet_v1_feature_extractor_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\faster_rcnn_resnet_v1_fpn_keras_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\faster_rcnn_resnet_v1_fpn_keras_feature_extractor_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\feature_map_generators.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\feature_map_generators_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "creating build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\n", "copying build\\lib\\object_detection\\models\\keras_models\\convert_keras_models.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\n", "copying build\\lib\\object_detection\\models\\keras_models\\hourglass_network.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\n", "copying build\\lib\\object_detection\\models\\keras_models\\hourglass_network_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\n", "copying build\\lib\\object_detection\\models\\keras_models\\inception_resnet_v2.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\n", "copying build\\lib\\object_detection\\models\\keras_models\\inception_resnet_v2_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\n", "copying build\\lib\\object_detection\\models\\keras_models\\mobilenet_v1.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\n", "copying build\\lib\\object_detection\\models\\keras_models\\mobilenet_v1_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\n", "copying build\\lib\\object_detection\\models\\keras_models\\mobilenet_v2.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\n", "copying build\\lib\\object_detection\\models\\keras_models\\mobilenet_v2_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\n", "copying build\\lib\\object_detection\\models\\keras_models\\model_utils.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\n", "copying build\\lib\\object_detection\\models\\keras_models\\nonlocal_block.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\n", "copying build\\lib\\object_detection\\models\\keras_models\\nonlocal_block_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\n", "copying build\\lib\\object_detection\\models\\keras_models\\resnet_v1.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\n", "copying build\\lib\\object_detection\\models\\keras_models\\resnet_v1_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\n", "copying build\\lib\\object_detection\\models\\keras_models\\test_utils.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\n", "copying build\\lib\\object_detection\\models\\keras_models\\__init__.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\n", "copying build\\lib\\object_detection\\models\\ssd_efficientnet_bifpn_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_efficientnet_bifpn_feature_extractor_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_feature_extractor_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_inception_v2_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_inception_v2_feature_extractor_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_inception_v3_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_inception_v3_feature_extractor_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobiledet_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobiledet_feature_extractor_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobilenet_edgetpu_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobilenet_edgetpu_feature_extractor_testbase.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobilenet_edgetpu_feature_extractor_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobilenet_v1_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobilenet_v1_feature_extractor_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobilenet_v1_feature_extractor_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobilenet_v1_fpn_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobilenet_v1_fpn_feature_extractor_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobilenet_v1_fpn_feature_extractor_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobilenet_v1_fpn_keras_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobilenet_v1_keras_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobilenet_v1_ppn_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobilenet_v1_ppn_feature_extractor_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobilenet_v2_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobilenet_v2_feature_extractor_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobilenet_v2_feature_extractor_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobilenet_v2_fpn_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobilenet_v2_fpn_feature_extractor_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobilenet_v2_fpn_feature_extractor_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobilenet_v2_fpn_keras_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobilenet_v2_keras_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobilenet_v2_mnasfpn_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobilenet_v2_mnasfpn_feature_extractor_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobilenet_v3_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobilenet_v3_feature_extractor_testbase.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_mobilenet_v3_feature_extractor_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_pnasnet_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_pnasnet_feature_extractor_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_resnet_v1_fpn_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_resnet_v1_fpn_feature_extractor_testbase.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_resnet_v1_fpn_feature_extractor_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_resnet_v1_fpn_feature_extractor_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_resnet_v1_fpn_keras_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_resnet_v1_ppn_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_resnet_v1_ppn_feature_extractor_testbase.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_resnet_v1_ppn_feature_extractor_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_spaghettinet_feature_extractor.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\ssd_spaghettinet_feature_extractor_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\models\\__init__.py -> build\\bdist.win-amd64\\egg\\object_detection\\models\n", "copying build\\lib\\object_detection\\model_hparams.py -> build\\bdist.win-amd64\\egg\\object_detection\n", "copying build\\lib\\object_detection\\model_lib.py -> build\\bdist.win-amd64\\egg\\object_detection\n", "copying build\\lib\\object_detection\\model_lib_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\n", "copying build\\lib\\object_detection\\model_lib_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\n", "copying build\\lib\\object_detection\\model_lib_v2.py -> build\\bdist.win-amd64\\egg\\object_detection\n", "copying build\\lib\\object_detection\\model_main.py -> build\\bdist.win-amd64\\egg\\object_detection\n", "copying build\\lib\\object_detection\\model_main_tf2.py -> build\\bdist.win-amd64\\egg\\object_detection\n", "copying build\\lib\\object_detection\\model_tpu_main.py -> build\\bdist.win-amd64\\egg\\object_detection\n", "creating build\\bdist.win-amd64\\egg\\object_detection\\predictors\n", "copying build\\lib\\object_detection\\predictors\\convolutional_box_predictor.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\n", "copying build\\lib\\object_detection\\predictors\\convolutional_box_predictor_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\n", "copying build\\lib\\object_detection\\predictors\\convolutional_keras_box_predictor.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\n", "copying build\\lib\\object_detection\\predictors\\convolutional_keras_box_predictor_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\n", "creating build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\n", "copying build\\lib\\object_detection\\predictors\\heads\\box_head.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\n", "copying build\\lib\\object_detection\\predictors\\heads\\box_head_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\n", "copying build\\lib\\object_detection\\predictors\\heads\\class_head.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\n", "copying build\\lib\\object_detection\\predictors\\heads\\class_head_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\n", "copying build\\lib\\object_detection\\predictors\\heads\\head.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\n", "copying build\\lib\\object_detection\\predictors\\heads\\keras_box_head.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\n", "copying build\\lib\\object_detection\\predictors\\heads\\keras_box_head_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\n", "copying build\\lib\\object_detection\\predictors\\heads\\keras_class_head.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\n", "copying build\\lib\\object_detection\\predictors\\heads\\keras_class_head_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\n", "copying build\\lib\\object_detection\\predictors\\heads\\keras_mask_head.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\n", "copying build\\lib\\object_detection\\predictors\\heads\\keras_mask_head_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\n", "copying build\\lib\\object_detection\\predictors\\heads\\keypoint_head.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\n", "copying build\\lib\\object_detection\\predictors\\heads\\keypoint_head_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\n", "copying build\\lib\\object_detection\\predictors\\heads\\mask_head.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\n", "copying build\\lib\\object_detection\\predictors\\heads\\mask_head_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\n", "copying build\\lib\\object_detection\\predictors\\heads\\__init__.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\n", "copying build\\lib\\object_detection\\predictors\\mask_rcnn_box_predictor.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\n", "copying build\\lib\\object_detection\\predictors\\mask_rcnn_box_predictor_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\n", "copying build\\lib\\object_detection\\predictors\\mask_rcnn_keras_box_predictor.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\n", "copying build\\lib\\object_detection\\predictors\\mask_rcnn_keras_box_predictor_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\n", "copying build\\lib\\object_detection\\predictors\\rfcn_box_predictor.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\n", "copying build\\lib\\object_detection\\predictors\\rfcn_box_predictor_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\n", "copying build\\lib\\object_detection\\predictors\\rfcn_keras_box_predictor.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\n", "copying build\\lib\\object_detection\\predictors\\rfcn_keras_box_predictor_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\n", "copying build\\lib\\object_detection\\predictors\\__init__.py -> build\\bdist.win-amd64\\egg\\object_detection\\predictors\n", "creating build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\anchor_generator_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\argmax_matcher_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\bipartite_matcher_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\box_coder_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\box_predictor_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\calibration_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\center_net_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\eval_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\faster_rcnn_box_coder_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\faster_rcnn_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\flexible_grid_anchor_generator_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\fpn_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\graph_rewriter_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\grid_anchor_generator_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\hyperparams_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\image_resizer_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\input_reader_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\keypoint_box_coder_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\losses_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\matcher_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\mean_stddev_box_coder_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\model_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\multiscale_anchor_generator_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\optimizer_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\pipeline_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\post_processing_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\preprocessor_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\region_similarity_calculator_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\square_box_coder_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\ssd_anchor_generator_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\ssd_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\string_int_label_map_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\target_assigner_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\train_pb2.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "copying build\\lib\\object_detection\\protos\\__init__.py -> build\\bdist.win-amd64\\egg\\object_detection\\protos\n", "creating build\\bdist.win-amd64\\egg\\object_detection\\tpu_exporters\n", "copying build\\lib\\object_detection\\tpu_exporters\\export_saved_model_tpu.py -> build\\bdist.win-amd64\\egg\\object_detection\\tpu_exporters\n", "copying build\\lib\\object_detection\\tpu_exporters\\export_saved_model_tpu_lib.py -> build\\bdist.win-amd64\\egg\\object_detection\\tpu_exporters\n", "copying build\\lib\\object_detection\\tpu_exporters\\export_saved_model_tpu_lib_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\tpu_exporters\n", "copying build\\lib\\object_detection\\tpu_exporters\\faster_rcnn.py -> build\\bdist.win-amd64\\egg\\object_detection\\tpu_exporters\n", "copying build\\lib\\object_detection\\tpu_exporters\\ssd.py -> build\\bdist.win-amd64\\egg\\object_detection\\tpu_exporters\n", "creating build\\bdist.win-amd64\\egg\\object_detection\\tpu_exporters\\testdata\n", "copying build\\lib\\object_detection\\tpu_exporters\\testdata\\__init__.py -> build\\bdist.win-amd64\\egg\\object_detection\\tpu_exporters\\testdata\n", "copying build\\lib\\object_detection\\tpu_exporters\\utils.py -> build\\bdist.win-amd64\\egg\\object_detection\\tpu_exporters\n", "copying build\\lib\\object_detection\\tpu_exporters\\utils_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\tpu_exporters\n", "copying build\\lib\\object_detection\\tpu_exporters\\__init__.py -> build\\bdist.win-amd64\\egg\\object_detection\\tpu_exporters\n", "creating build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\autoaugment_utils.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\bifpn_utils.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\category_util.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\category_util_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\colab_utils.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\config_util.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\config_util_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\context_manager.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\context_manager_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\dataset_util.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\dataset_util_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\json_utils.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\json_utils_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\label_map_util.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\label_map_util_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\learning_schedules.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\learning_schedules_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\metrics.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\metrics_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\model_util.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\model_util_tf2_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\np_box_list.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\np_box_list_ops.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\np_box_list_ops_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\np_box_list_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\np_box_mask_list.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\np_box_mask_list_ops.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\np_box_mask_list_ops_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\np_box_mask_list_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\np_box_ops.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\np_box_ops_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\np_mask_ops.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\np_mask_ops_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\object_detection_evaluation.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\object_detection_evaluation_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\ops.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\ops_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\patch_ops.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\patch_ops_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\per_image_evaluation.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\per_image_evaluation_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\per_image_vrd_evaluation.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\per_image_vrd_evaluation_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\shape_utils.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\shape_utils_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\spatial_transform_ops.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\spatial_transform_ops_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\static_shape.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\static_shape_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\target_assigner_utils.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\target_assigner_utils_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\test_case.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\test_case_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\test_utils.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\test_utils_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\tf_version.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\variables_helper.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\variables_helper_tf1_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\visualization_utils.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\visualization_utils_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\vrd_evaluation.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\vrd_evaluation_test.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\utils\\__init__.py -> build\\bdist.win-amd64\\egg\\object_detection\\utils\n", "copying build\\lib\\object_detection\\__init__.py -> build\\bdist.win-amd64\\egg\\object_detection\n", "creating build\\bdist.win-amd64\\egg\\preprocessing\n", "copying build\\lib\\preprocessing\\cifarnet_preprocessing.py -> build\\bdist.win-amd64\\egg\\preprocessing\n", "copying build\\lib\\preprocessing\\inception_preprocessing.py -> build\\bdist.win-amd64\\egg\\preprocessing\n", "copying build\\lib\\preprocessing\\lenet_preprocessing.py -> build\\bdist.win-amd64\\egg\\preprocessing\n", "copying build\\lib\\preprocessing\\preprocessing_factory.py -> build\\bdist.win-amd64\\egg\\preprocessing\n", "copying build\\lib\\preprocessing\\vgg_preprocessing.py -> build\\bdist.win-amd64\\egg\\preprocessing\n", "copying build\\lib\\preprocessing\\__init__.py -> build\\bdist.win-amd64\\egg\\preprocessing\n", "byte-compiling build\\bdist.win-amd64\\egg\\datasets\\build_imagenet_data.py to build_imagenet_data.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\datasets\\cifar10.py to cifar10.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\datasets\\dataset_factory.py to dataset_factory.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\datasets\\dataset_utils.py to dataset_utils.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\datasets\\download_and_convert_cifar10.py to download_and_convert_cifar10.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\datasets\\download_and_convert_flowers.py to download_and_convert_flowers.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\datasets\\download_and_convert_mnist.py to download_and_convert_mnist.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\datasets\\download_and_convert_visualwakewords.py to download_and_convert_visualwakewords.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\datasets\\download_and_convert_visualwakewords_lib.py to download_and_convert_visualwakewords_lib.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\datasets\\flowers.py to flowers.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\datasets\\imagenet.py to imagenet.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\datasets\\mnist.py to mnist.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\datasets\\preprocess_imagenet_validation_data.py to preprocess_imagenet_validation_data.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\datasets\\process_bounding_boxes.py to process_bounding_boxes.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\datasets\\visualwakewords.py to visualwakewords.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\datasets\\__init__.py to __init__.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\deployment\\model_deploy.py to model_deploy.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\deployment\\model_deploy_test.py to model_deploy_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\deployment\\__init__.py to __init__.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\alexnet.py to alexnet.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\alexnet_test.py to alexnet_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\cifarnet.py to cifarnet.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\cyclegan.py to cyclegan.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\cyclegan_test.py to cyclegan_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\dcgan.py to dcgan.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\dcgan_test.py to dcgan_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\i3d.py to i3d.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\i3d_test.py to i3d_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\i3d_utils.py to i3d_utils.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\inception.py to inception.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\inception_resnet_v2.py to inception_resnet_v2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\inception_resnet_v2_test.py to inception_resnet_v2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\inception_utils.py to inception_utils.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\inception_v1.py to inception_v1.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\inception_v1_test.py to inception_v1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\inception_v2.py to inception_v2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\inception_v2_test.py to inception_v2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\inception_v3.py to inception_v3.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\inception_v3_test.py to inception_v3_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\inception_v4.py to inception_v4.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\inception_v4_test.py to inception_v4_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\lenet.py to lenet.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\mobilenet\\conv_blocks.py to conv_blocks.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\mobilenet\\mobilenet.py to mobilenet.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\mobilenet\\mobilenet_v2.py to mobilenet_v2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\mobilenet\\mobilenet_v2_test.py to mobilenet_v2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\mobilenet\\mobilenet_v3.py to mobilenet_v3.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\mobilenet\\mobilenet_v3_test.py to mobilenet_v3_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\mobilenet\\__init__.py to __init__.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\mobilenet_v1.py to mobilenet_v1.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\mobilenet_v1_eval.py to mobilenet_v1_eval.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\mobilenet_v1_test.py to mobilenet_v1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\mobilenet_v1_train.py to mobilenet_v1_train.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\nasnet\\nasnet.py to nasnet.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\nasnet\\nasnet_test.py to nasnet_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\nasnet\\nasnet_utils.py to nasnet_utils.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\nasnet\\nasnet_utils_test.py to nasnet_utils_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\nasnet\\pnasnet.py to pnasnet.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\nasnet\\pnasnet_test.py to pnasnet_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\nasnet\\__init__.py to __init__.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\nets_factory.py to nets_factory.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\nets_factory_test.py to nets_factory_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\overfeat.py to overfeat.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\overfeat_test.py to overfeat_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\pix2pix.py to pix2pix.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\pix2pix_test.py to pix2pix_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\post_training_quantization.py to post_training_quantization.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\resnet_utils.py to resnet_utils.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\resnet_v1.py to resnet_v1.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\resnet_v1_test.py to resnet_v1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\resnet_v2.py to resnet_v2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\resnet_v2_test.py to resnet_v2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\s3dg.py to s3dg.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\s3dg_test.py to s3dg_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\vgg.py to vgg.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\vgg_test.py to vgg_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\nets\\__init__.py to __init__.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\anchor_generators\\flexible_grid_anchor_generator.py to flexible_grid_anchor_generator.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\anchor_generators\\flexible_grid_anchor_generator_test.py to flexible_grid_anchor_generator_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\anchor_generators\\grid_anchor_generator.py to grid_anchor_generator.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\anchor_generators\\grid_anchor_generator_test.py to grid_anchor_generator_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\anchor_generators\\multiple_grid_anchor_generator.py to multiple_grid_anchor_generator.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\anchor_generators\\multiple_grid_anchor_generator_test.py to multiple_grid_anchor_generator_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\anchor_generators\\multiscale_grid_anchor_generator.py to multiscale_grid_anchor_generator.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\anchor_generators\\multiscale_grid_anchor_generator_test.py to multiscale_grid_anchor_generator_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\anchor_generators\\__init__.py to __init__.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\box_coders\\faster_rcnn_box_coder.py to faster_rcnn_box_coder.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\box_coders\\faster_rcnn_box_coder_test.py to faster_rcnn_box_coder_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\box_coders\\keypoint_box_coder.py to keypoint_box_coder.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\box_coders\\keypoint_box_coder_test.py to keypoint_box_coder_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\box_coders\\mean_stddev_box_coder.py to mean_stddev_box_coder.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\box_coders\\mean_stddev_box_coder_test.py to mean_stddev_box_coder_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\box_coders\\square_box_coder.py to square_box_coder.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\box_coders\\square_box_coder_test.py to square_box_coder_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\box_coders\\__init__.py to __init__.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\anchor_generator_builder.py to anchor_generator_builder.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\anchor_generator_builder_test.py to anchor_generator_builder_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\box_coder_builder.py to box_coder_builder.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\box_coder_builder_test.py to box_coder_builder_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\box_predictor_builder.py to box_predictor_builder.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\box_predictor_builder_test.py to box_predictor_builder_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\calibration_builder.py to calibration_builder.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\calibration_builder_test.py to calibration_builder_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\dataset_builder.py to dataset_builder.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\dataset_builder_test.py to dataset_builder_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\decoder_builder.py to decoder_builder.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\decoder_builder_test.py to decoder_builder_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\graph_rewriter_builder.py to graph_rewriter_builder.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\graph_rewriter_builder_tf1_test.py to graph_rewriter_builder_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\hyperparams_builder.py to hyperparams_builder.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\hyperparams_builder_test.py to hyperparams_builder_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\image_resizer_builder.py to image_resizer_builder.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\image_resizer_builder_test.py to image_resizer_builder_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\input_reader_builder.py to input_reader_builder.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\input_reader_builder_tf1_test.py to input_reader_builder_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\losses_builder.py to losses_builder.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\losses_builder_test.py to losses_builder_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\matcher_builder.py to matcher_builder.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\matcher_builder_test.py to matcher_builder_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\model_builder.py to model_builder.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\model_builder_test.py to model_builder_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\model_builder_tf1_test.py to model_builder_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\model_builder_tf2_test.py to model_builder_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\optimizer_builder.py to optimizer_builder.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\optimizer_builder_tf1_test.py to optimizer_builder_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\optimizer_builder_tf2_test.py to optimizer_builder_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\post_processing_builder.py to post_processing_builder.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\post_processing_builder_test.py to post_processing_builder_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\preprocessor_builder.py to preprocessor_builder.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\preprocessor_builder_test.py to preprocessor_builder_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\region_similarity_calculator_builder.py to region_similarity_calculator_builder.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\region_similarity_calculator_builder_test.py to region_similarity_calculator_builder_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\target_assigner_builder.py to target_assigner_builder.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\target_assigner_builder_test.py to target_assigner_builder_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\builders\\__init__.py to __init__.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\anchor_generator.py to anchor_generator.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\balanced_positive_negative_sampler.py to balanced_positive_negative_sampler.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\balanced_positive_negative_sampler_test.py to balanced_positive_negative_sampler_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\batcher.py to batcher.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\batcher_tf1_test.py to batcher_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\batch_multiclass_nms_test.py to batch_multiclass_nms_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\box_coder.py to box_coder.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\box_coder_test.py to box_coder_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\box_list.py to box_list.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\box_list_ops.py to box_list_ops.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\box_list_ops_test.py to box_list_ops_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\box_list_test.py to box_list_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\box_predictor.py to box_predictor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\class_agnostic_nms_test.py to class_agnostic_nms_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\data_decoder.py to data_decoder.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\data_parser.py to data_parser.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\densepose_ops.py to densepose_ops.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\densepose_ops_test.py to densepose_ops_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\freezable_batch_norm.py to freezable_batch_norm.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\freezable_batch_norm_tf2_test.py to freezable_batch_norm_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\freezable_sync_batch_norm.py to freezable_sync_batch_norm.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\keypoint_ops.py to keypoint_ops.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\keypoint_ops_test.py to keypoint_ops_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\losses.py to losses.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\losses_test.py to losses_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\matcher.py to matcher.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\matcher_test.py to matcher_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\minibatch_sampler.py to minibatch_sampler.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\minibatch_sampler_test.py to minibatch_sampler_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\model.py to model.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\model_test.py to model_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\multiclass_nms_test.py to multiclass_nms_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\post_processing.py to post_processing.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\prefetcher.py to prefetcher.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\prefetcher_tf1_test.py to prefetcher_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\preprocessor.py to preprocessor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\preprocessor_cache.py to preprocessor_cache.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\preprocessor_test.py to preprocessor_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\region_similarity_calculator.py to region_similarity_calculator.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\region_similarity_calculator_test.py to region_similarity_calculator_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\standard_fields.py to standard_fields.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\target_assigner.py to target_assigner.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\target_assigner_test.py to target_assigner_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\core\\__init__.py to __init__.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\context_rcnn\\add_context_to_examples.py to add_context_to_examples.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\context_rcnn\\add_context_to_examples_tf2_test.py to add_context_to_examples_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\context_rcnn\\create_cococameratraps_tfexample_main.py to create_cococameratraps_tfexample_main.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\context_rcnn\\create_cococameratraps_tfexample_tf2_test.py to create_cococameratraps_tfexample_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\context_rcnn\\generate_detection_data.py to generate_detection_data.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\context_rcnn\\generate_detection_data_tf2_test.py to generate_detection_data_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\context_rcnn\\generate_embedding_data.py to generate_embedding_data.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\context_rcnn\\generate_embedding_data_tf2_test.py to generate_embedding_data_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\context_rcnn\\__init__.py to __init__.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\create_ava_actions_tf_record.py to create_ava_actions_tf_record.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\create_coco_tf_record.py to create_coco_tf_record.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\create_coco_tf_record_test.py to create_coco_tf_record_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\create_kitti_tf_record.py to create_kitti_tf_record.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\create_kitti_tf_record_test.py to create_kitti_tf_record_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\create_oid_tf_record.py to create_oid_tf_record.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\create_pascal_tf_record.py to create_pascal_tf_record.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\create_pascal_tf_record_test.py to create_pascal_tf_record_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\create_pet_tf_record.py to create_pet_tf_record.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\oid_hierarchical_labels_expansion.py to oid_hierarchical_labels_expansion.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\oid_hierarchical_labels_expansion_test.py to oid_hierarchical_labels_expansion_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\oid_tfrecord_creation.py to oid_tfrecord_creation.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\oid_tfrecord_creation_test.py to oid_tfrecord_creation_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\seq_example_util.py to seq_example_util.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\seq_example_util_test.py to seq_example_util_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\tf_record_creation_util.py to tf_record_creation_util.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\tf_record_creation_util_test.py to tf_record_creation_util_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\dataset_tools\\__init__.py to __init__.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\data_decoders\\tf_example_decoder.py to tf_example_decoder.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\data_decoders\\tf_example_decoder_test.py to tf_example_decoder_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\data_decoders\\tf_sequence_example_decoder.py to tf_sequence_example_decoder.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\data_decoders\\tf_sequence_example_decoder_test.py to tf_sequence_example_decoder_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\data_decoders\\__init__.py to __init__.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\eval_util.py to eval_util.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\eval_util_test.py to eval_util_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\exporter.py to exporter.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\exporter_lib_tf2_test.py to exporter_lib_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\exporter_lib_v2.py to exporter_lib_v2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\exporter_main_v2.py to exporter_main_v2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\exporter_tf1_test.py to exporter_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\export_inference_graph.py to export_inference_graph.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\export_tflite_graph_lib_tf2.py to export_tflite_graph_lib_tf2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\export_tflite_graph_lib_tf2_test.py to export_tflite_graph_lib_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\export_tflite_graph_tf2.py to export_tflite_graph_tf2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\export_tflite_ssd_graph.py to export_tflite_ssd_graph.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\export_tflite_ssd_graph_lib.py to export_tflite_ssd_graph_lib.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\export_tflite_ssd_graph_lib_tf1_test.py to export_tflite_ssd_graph_lib_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\inference\\detection_inference.py to detection_inference.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\inference\\detection_inference_tf1_test.py to detection_inference_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\inference\\infer_detections.py to infer_detections.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\inference\\__init__.py to __init__.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\inputs.py to inputs.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\inputs_test.py to inputs_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\legacy\\eval.py to eval.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\legacy\\evaluator.py to evaluator.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\legacy\\train.py to train.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\legacy\\trainer.py to trainer.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\legacy\\trainer_tf1_test.py to trainer_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\legacy\\__init__.py to __init__.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\matchers\\argmax_matcher.py to argmax_matcher.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\matchers\\argmax_matcher_test.py to argmax_matcher_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\matchers\\bipartite_matcher.py to bipartite_matcher.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\matchers\\bipartite_matcher_tf1_test.py to bipartite_matcher_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\matchers\\hungarian_matcher.py to hungarian_matcher.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\matchers\\hungarian_matcher_tf2_test.py to hungarian_matcher_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\matchers\\__init__.py to __init__.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\\center_net_meta_arch.py to center_net_meta_arch.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\\center_net_meta_arch_tf2_test.py to center_net_meta_arch_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\\context_rcnn_lib.py to context_rcnn_lib.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\\context_rcnn_lib_tf1_test.py to context_rcnn_lib_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\\context_rcnn_lib_tf2.py to context_rcnn_lib_tf2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\\context_rcnn_lib_tf2_test.py to context_rcnn_lib_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\\context_rcnn_meta_arch.py to context_rcnn_meta_arch.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\\context_rcnn_meta_arch_test.py to context_rcnn_meta_arch_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\\deepmac_meta_arch.py to deepmac_meta_arch.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\\deepmac_meta_arch_test.py to deepmac_meta_arch_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\\faster_rcnn_meta_arch.py to faster_rcnn_meta_arch.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\\faster_rcnn_meta_arch_test.py to faster_rcnn_meta_arch_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\\faster_rcnn_meta_arch_test_lib.py to faster_rcnn_meta_arch_test_lib.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\\rfcn_meta_arch.py to rfcn_meta_arch.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\\rfcn_meta_arch_test.py to rfcn_meta_arch_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\\ssd_meta_arch.py to ssd_meta_arch.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\\ssd_meta_arch_test.py to ssd_meta_arch_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\\ssd_meta_arch_test_lib.py to ssd_meta_arch_test_lib.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\meta_architectures\\__init__.py to __init__.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\metrics\\calibration_evaluation.py to calibration_evaluation.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\metrics\\calibration_evaluation_tf1_test.py to calibration_evaluation_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\metrics\\calibration_metrics.py to calibration_metrics.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\metrics\\calibration_metrics_tf1_test.py to calibration_metrics_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\metrics\\coco_evaluation.py to coco_evaluation.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\metrics\\coco_evaluation_test.py to coco_evaluation_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\metrics\\coco_tools.py to coco_tools.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\metrics\\coco_tools_test.py to coco_tools_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\metrics\\io_utils.py to io_utils.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\metrics\\lvis_evaluation.py to lvis_evaluation.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\metrics\\lvis_evaluation_test.py to lvis_evaluation_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\metrics\\lvis_tools.py to lvis_tools.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\metrics\\lvis_tools_test.py to lvis_tools_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\metrics\\offline_eval_map_corloc.py to offline_eval_map_corloc.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\metrics\\offline_eval_map_corloc_test.py to offline_eval_map_corloc_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\metrics\\oid_challenge_evaluation.py to oid_challenge_evaluation.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\metrics\\oid_challenge_evaluation_utils.py to oid_challenge_evaluation_utils.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\metrics\\oid_challenge_evaluation_utils_test.py to oid_challenge_evaluation_utils_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\metrics\\oid_vrd_challenge_evaluation.py to oid_vrd_challenge_evaluation.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\metrics\\oid_vrd_challenge_evaluation_utils.py to oid_vrd_challenge_evaluation_utils.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\metrics\\oid_vrd_challenge_evaluation_utils_test.py to oid_vrd_challenge_evaluation_utils_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\metrics\\tf_example_parser.py to tf_example_parser.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\metrics\\tf_example_parser_test.py to tf_example_parser_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\metrics\\__init__.py to __init__.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\bidirectional_feature_pyramid_generators.py to bidirectional_feature_pyramid_generators.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\bidirectional_feature_pyramid_generators_tf2_test.py to bidirectional_feature_pyramid_generators_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\center_net_hourglass_feature_extractor.py to center_net_hourglass_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\center_net_hourglass_feature_extractor_tf2_test.py to center_net_hourglass_feature_extractor_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\center_net_mobilenet_v2_feature_extractor.py to center_net_mobilenet_v2_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\center_net_mobilenet_v2_feature_extractor_tf2_test.py to center_net_mobilenet_v2_feature_extractor_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\center_net_mobilenet_v2_fpn_feature_extractor.py to center_net_mobilenet_v2_fpn_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\center_net_mobilenet_v2_fpn_feature_extractor_tf2_test.py to center_net_mobilenet_v2_fpn_feature_extractor_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\center_net_resnet_feature_extractor.py to center_net_resnet_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\center_net_resnet_feature_extractor_tf2_test.py to center_net_resnet_feature_extractor_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\center_net_resnet_v1_fpn_feature_extractor.py to center_net_resnet_v1_fpn_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\center_net_resnet_v1_fpn_feature_extractor_tf2_test.py to center_net_resnet_v1_fpn_feature_extractor_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\embedded_ssd_mobilenet_v1_feature_extractor.py to embedded_ssd_mobilenet_v1_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\embedded_ssd_mobilenet_v1_feature_extractor_tf1_test.py to embedded_ssd_mobilenet_v1_feature_extractor_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\faster_rcnn_inception_resnet_v2_feature_extractor.py to faster_rcnn_inception_resnet_v2_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\faster_rcnn_inception_resnet_v2_feature_extractor_tf1_test.py to faster_rcnn_inception_resnet_v2_feature_extractor_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\faster_rcnn_inception_resnet_v2_keras_feature_extractor.py to faster_rcnn_inception_resnet_v2_keras_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\faster_rcnn_inception_resnet_v2_keras_feature_extractor_tf2_test.py to faster_rcnn_inception_resnet_v2_keras_feature_extractor_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\faster_rcnn_inception_v2_feature_extractor.py to faster_rcnn_inception_v2_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\faster_rcnn_inception_v2_feature_extractor_tf1_test.py to faster_rcnn_inception_v2_feature_extractor_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\faster_rcnn_mobilenet_v1_feature_extractor.py to faster_rcnn_mobilenet_v1_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\faster_rcnn_mobilenet_v1_feature_extractor_tf1_test.py to faster_rcnn_mobilenet_v1_feature_extractor_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\faster_rcnn_nas_feature_extractor.py to faster_rcnn_nas_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\faster_rcnn_nas_feature_extractor_tf1_test.py to faster_rcnn_nas_feature_extractor_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\faster_rcnn_pnas_feature_extractor.py to faster_rcnn_pnas_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\faster_rcnn_pnas_feature_extractor_tf1_test.py to faster_rcnn_pnas_feature_extractor_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\faster_rcnn_resnet_keras_feature_extractor.py to faster_rcnn_resnet_keras_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\faster_rcnn_resnet_keras_feature_extractor_tf2_test.py to faster_rcnn_resnet_keras_feature_extractor_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\faster_rcnn_resnet_v1_feature_extractor.py to faster_rcnn_resnet_v1_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\faster_rcnn_resnet_v1_feature_extractor_tf1_test.py to faster_rcnn_resnet_v1_feature_extractor_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\faster_rcnn_resnet_v1_fpn_keras_feature_extractor.py to faster_rcnn_resnet_v1_fpn_keras_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\faster_rcnn_resnet_v1_fpn_keras_feature_extractor_tf2_test.py to faster_rcnn_resnet_v1_fpn_keras_feature_extractor_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\feature_map_generators.py to feature_map_generators.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\feature_map_generators_test.py to feature_map_generators_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\\convert_keras_models.py to convert_keras_models.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\\hourglass_network.py to hourglass_network.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\\hourglass_network_tf2_test.py to hourglass_network_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\\inception_resnet_v2.py to inception_resnet_v2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\\inception_resnet_v2_tf2_test.py to inception_resnet_v2_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\\mobilenet_v1.py to mobilenet_v1.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\\mobilenet_v1_tf2_test.py to mobilenet_v1_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\\mobilenet_v2.py to mobilenet_v2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\\mobilenet_v2_tf2_test.py to mobilenet_v2_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\\model_utils.py to model_utils.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\\nonlocal_block.py to nonlocal_block.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\\nonlocal_block_tf2_test.py to nonlocal_block_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\\resnet_v1.py to resnet_v1.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\\resnet_v1_tf2_test.py to resnet_v1_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\\test_utils.py to test_utils.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\keras_models\\__init__.py to __init__.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_efficientnet_bifpn_feature_extractor.py to ssd_efficientnet_bifpn_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_efficientnet_bifpn_feature_extractor_tf2_test.py to ssd_efficientnet_bifpn_feature_extractor_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_feature_extractor_test.py to ssd_feature_extractor_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_inception_v2_feature_extractor.py to ssd_inception_v2_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_inception_v2_feature_extractor_tf1_test.py to ssd_inception_v2_feature_extractor_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_inception_v3_feature_extractor.py to ssd_inception_v3_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_inception_v3_feature_extractor_tf1_test.py to ssd_inception_v3_feature_extractor_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobiledet_feature_extractor.py to ssd_mobiledet_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobiledet_feature_extractor_tf1_test.py to ssd_mobiledet_feature_extractor_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobilenet_edgetpu_feature_extractor.py to ssd_mobilenet_edgetpu_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobilenet_edgetpu_feature_extractor_testbase.py to ssd_mobilenet_edgetpu_feature_extractor_testbase.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobilenet_edgetpu_feature_extractor_tf1_test.py to ssd_mobilenet_edgetpu_feature_extractor_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobilenet_v1_feature_extractor.py to ssd_mobilenet_v1_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobilenet_v1_feature_extractor_tf1_test.py to ssd_mobilenet_v1_feature_extractor_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobilenet_v1_feature_extractor_tf2_test.py to ssd_mobilenet_v1_feature_extractor_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobilenet_v1_fpn_feature_extractor.py to ssd_mobilenet_v1_fpn_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobilenet_v1_fpn_feature_extractor_tf1_test.py to ssd_mobilenet_v1_fpn_feature_extractor_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobilenet_v1_fpn_feature_extractor_tf2_test.py to ssd_mobilenet_v1_fpn_feature_extractor_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobilenet_v1_fpn_keras_feature_extractor.py to ssd_mobilenet_v1_fpn_keras_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobilenet_v1_keras_feature_extractor.py to ssd_mobilenet_v1_keras_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobilenet_v1_ppn_feature_extractor.py to ssd_mobilenet_v1_ppn_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobilenet_v1_ppn_feature_extractor_tf1_test.py to ssd_mobilenet_v1_ppn_feature_extractor_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobilenet_v2_feature_extractor.py to ssd_mobilenet_v2_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobilenet_v2_feature_extractor_tf1_test.py to ssd_mobilenet_v2_feature_extractor_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobilenet_v2_feature_extractor_tf2_test.py to ssd_mobilenet_v2_feature_extractor_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobilenet_v2_fpn_feature_extractor.py to ssd_mobilenet_v2_fpn_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobilenet_v2_fpn_feature_extractor_tf1_test.py to ssd_mobilenet_v2_fpn_feature_extractor_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobilenet_v2_fpn_feature_extractor_tf2_test.py to ssd_mobilenet_v2_fpn_feature_extractor_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobilenet_v2_fpn_keras_feature_extractor.py to ssd_mobilenet_v2_fpn_keras_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobilenet_v2_keras_feature_extractor.py to ssd_mobilenet_v2_keras_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobilenet_v2_mnasfpn_feature_extractor.py to ssd_mobilenet_v2_mnasfpn_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobilenet_v2_mnasfpn_feature_extractor_tf1_test.py to ssd_mobilenet_v2_mnasfpn_feature_extractor_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobilenet_v3_feature_extractor.py to ssd_mobilenet_v3_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobilenet_v3_feature_extractor_testbase.py to ssd_mobilenet_v3_feature_extractor_testbase.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_mobilenet_v3_feature_extractor_tf1_test.py to ssd_mobilenet_v3_feature_extractor_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_pnasnet_feature_extractor.py to ssd_pnasnet_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_pnasnet_feature_extractor_tf1_test.py to ssd_pnasnet_feature_extractor_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_resnet_v1_fpn_feature_extractor.py to ssd_resnet_v1_fpn_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_resnet_v1_fpn_feature_extractor_testbase.py to ssd_resnet_v1_fpn_feature_extractor_testbase.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_resnet_v1_fpn_feature_extractor_tf1_test.py to ssd_resnet_v1_fpn_feature_extractor_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_resnet_v1_fpn_feature_extractor_tf2_test.py to ssd_resnet_v1_fpn_feature_extractor_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_resnet_v1_fpn_keras_feature_extractor.py to ssd_resnet_v1_fpn_keras_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_resnet_v1_ppn_feature_extractor.py to ssd_resnet_v1_ppn_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_resnet_v1_ppn_feature_extractor_testbase.py to ssd_resnet_v1_ppn_feature_extractor_testbase.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_resnet_v1_ppn_feature_extractor_tf1_test.py to ssd_resnet_v1_ppn_feature_extractor_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_spaghettinet_feature_extractor.py to ssd_spaghettinet_feature_extractor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\ssd_spaghettinet_feature_extractor_tf1_test.py to ssd_spaghettinet_feature_extractor_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\models\\__init__.py to __init__.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\model_hparams.py to model_hparams.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\model_lib.py to model_lib.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\model_lib_tf1_test.py to model_lib_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\model_lib_tf2_test.py to model_lib_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\model_lib_v2.py to model_lib_v2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\model_main.py to model_main.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\model_main_tf2.py to model_main_tf2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\model_tpu_main.py to model_tpu_main.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\convolutional_box_predictor.py to convolutional_box_predictor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\convolutional_box_predictor_tf1_test.py to convolutional_box_predictor_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\convolutional_keras_box_predictor.py to convolutional_keras_box_predictor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\convolutional_keras_box_predictor_tf2_test.py to convolutional_keras_box_predictor_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\\box_head.py to box_head.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\\box_head_tf1_test.py to box_head_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\\class_head.py to class_head.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\\class_head_tf1_test.py to class_head_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\\head.py to head.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\\keras_box_head.py to keras_box_head.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\\keras_box_head_tf2_test.py to keras_box_head_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\\keras_class_head.py to keras_class_head.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\\keras_class_head_tf2_test.py to keras_class_head_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\\keras_mask_head.py to keras_mask_head.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\\keras_mask_head_tf2_test.py to keras_mask_head_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\\keypoint_head.py to keypoint_head.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\\keypoint_head_tf1_test.py to keypoint_head_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\\mask_head.py to mask_head.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\\mask_head_tf1_test.py to mask_head_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\heads\\__init__.py to __init__.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\mask_rcnn_box_predictor.py to mask_rcnn_box_predictor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\mask_rcnn_box_predictor_tf1_test.py to mask_rcnn_box_predictor_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\mask_rcnn_keras_box_predictor.py to mask_rcnn_keras_box_predictor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\mask_rcnn_keras_box_predictor_tf2_test.py to mask_rcnn_keras_box_predictor_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\rfcn_box_predictor.py to rfcn_box_predictor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\rfcn_box_predictor_tf1_test.py to rfcn_box_predictor_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\rfcn_keras_box_predictor.py to rfcn_keras_box_predictor.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\rfcn_keras_box_predictor_tf2_test.py to rfcn_keras_box_predictor_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\predictors\\__init__.py to __init__.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\anchor_generator_pb2.py to anchor_generator_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\argmax_matcher_pb2.py to argmax_matcher_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\bipartite_matcher_pb2.py to bipartite_matcher_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\box_coder_pb2.py to box_coder_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\box_predictor_pb2.py to box_predictor_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\calibration_pb2.py to calibration_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\center_net_pb2.py to center_net_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\eval_pb2.py to eval_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\faster_rcnn_box_coder_pb2.py to faster_rcnn_box_coder_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\faster_rcnn_pb2.py to faster_rcnn_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\flexible_grid_anchor_generator_pb2.py to flexible_grid_anchor_generator_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\fpn_pb2.py to fpn_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\graph_rewriter_pb2.py to graph_rewriter_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\grid_anchor_generator_pb2.py to grid_anchor_generator_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\hyperparams_pb2.py to hyperparams_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\image_resizer_pb2.py to image_resizer_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\input_reader_pb2.py to input_reader_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\keypoint_box_coder_pb2.py to keypoint_box_coder_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\losses_pb2.py to losses_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\matcher_pb2.py to matcher_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\mean_stddev_box_coder_pb2.py to mean_stddev_box_coder_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\model_pb2.py to model_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\multiscale_anchor_generator_pb2.py to multiscale_anchor_generator_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\optimizer_pb2.py to optimizer_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\pipeline_pb2.py to pipeline_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\post_processing_pb2.py to post_processing_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\preprocessor_pb2.py to preprocessor_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\region_similarity_calculator_pb2.py to region_similarity_calculator_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\square_box_coder_pb2.py to square_box_coder_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\ssd_anchor_generator_pb2.py to ssd_anchor_generator_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\ssd_pb2.py to ssd_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\string_int_label_map_pb2.py to string_int_label_map_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\target_assigner_pb2.py to target_assigner_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\train_pb2.py to train_pb2.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\protos\\__init__.py to __init__.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\tpu_exporters\\export_saved_model_tpu.py to export_saved_model_tpu.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\tpu_exporters\\export_saved_model_tpu_lib.py to export_saved_model_tpu_lib.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\tpu_exporters\\export_saved_model_tpu_lib_tf1_test.py to export_saved_model_tpu_lib_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\tpu_exporters\\faster_rcnn.py to faster_rcnn.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\tpu_exporters\\ssd.py to ssd.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\tpu_exporters\\testdata\\__init__.py to __init__.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\tpu_exporters\\utils.py to utils.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\tpu_exporters\\utils_test.py to utils_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\tpu_exporters\\__init__.py to __init__.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\autoaugment_utils.py to autoaugment_utils.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\bifpn_utils.py to bifpn_utils.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\category_util.py to category_util.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\category_util_test.py to category_util_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\colab_utils.py to colab_utils.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\config_util.py to config_util.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\config_util_test.py to config_util_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\context_manager.py to context_manager.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\context_manager_test.py to context_manager_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\dataset_util.py to dataset_util.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\dataset_util_test.py to dataset_util_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\json_utils.py to json_utils.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\json_utils_test.py to json_utils_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\label_map_util.py to label_map_util.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\label_map_util_test.py to label_map_util_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\learning_schedules.py to learning_schedules.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\learning_schedules_test.py to learning_schedules_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\metrics.py to metrics.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\metrics_test.py to metrics_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\model_util.py to model_util.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\model_util_tf2_test.py to model_util_tf2_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\np_box_list.py to np_box_list.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\np_box_list_ops.py to np_box_list_ops.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\np_box_list_ops_test.py to np_box_list_ops_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\np_box_list_test.py to np_box_list_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\np_box_mask_list.py to np_box_mask_list.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\np_box_mask_list_ops.py to np_box_mask_list_ops.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\np_box_mask_list_ops_test.py to np_box_mask_list_ops_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\np_box_mask_list_test.py to np_box_mask_list_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\np_box_ops.py to np_box_ops.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\np_box_ops_test.py to np_box_ops_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\np_mask_ops.py to np_mask_ops.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\np_mask_ops_test.py to np_mask_ops_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\object_detection_evaluation.py to object_detection_evaluation.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\object_detection_evaluation_test.py to object_detection_evaluation_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\ops.py to ops.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\ops_test.py to ops_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\patch_ops.py to patch_ops.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\patch_ops_test.py to patch_ops_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\per_image_evaluation.py to per_image_evaluation.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\per_image_evaluation_test.py to per_image_evaluation_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\per_image_vrd_evaluation.py to per_image_vrd_evaluation.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\per_image_vrd_evaluation_test.py to per_image_vrd_evaluation_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\shape_utils.py to shape_utils.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\shape_utils_test.py to shape_utils_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\spatial_transform_ops.py to spatial_transform_ops.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\spatial_transform_ops_test.py to spatial_transform_ops_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\static_shape.py to static_shape.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\static_shape_test.py to static_shape_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\target_assigner_utils.py to target_assigner_utils.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\target_assigner_utils_test.py to target_assigner_utils_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\test_case.py to test_case.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\test_case_test.py to test_case_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\test_utils.py to test_utils.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\test_utils_test.py to test_utils_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\tf_version.py to tf_version.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\variables_helper.py to variables_helper.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\variables_helper_tf1_test.py to variables_helper_tf1_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\visualization_utils.py to visualization_utils.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\visualization_utils_test.py to visualization_utils_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\vrd_evaluation.py to vrd_evaluation.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\vrd_evaluation_test.py to vrd_evaluation_test.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\utils\\__init__.py to __init__.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\object_detection\\__init__.py to __init__.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\preprocessing\\cifarnet_preprocessing.py to cifarnet_preprocessing.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\preprocessing\\inception_preprocessing.py to inception_preprocessing.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\preprocessing\\lenet_preprocessing.py to lenet_preprocessing.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\preprocessing\\preprocessing_factory.py to preprocessing_factory.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\preprocessing\\vgg_preprocessing.py to vgg_preprocessing.cpython-38.pyc\n", "byte-compiling build\\bdist.win-amd64\\egg\\preprocessing\\__init__.py to __init__.cpython-38.pyc\n", "creating build\\bdist.win-amd64\\egg\\EGG-INFO\n", "copying object_detection.egg-info\\PKG-INFO -> build\\bdist.win-amd64\\egg\\EGG-INFO\n", "copying object_detection.egg-info\\SOURCES.txt -> build\\bdist.win-amd64\\egg\\EGG-INFO\n", "copying object_detection.egg-info\\dependency_links.txt -> build\\bdist.win-amd64\\egg\\EGG-INFO\n", "copying object_detection.egg-info\\requires.txt -> build\\bdist.win-amd64\\egg\\EGG-INFO\n", "copying object_detection.egg-info\\top_level.txt -> build\\bdist.win-amd64\\egg\\EGG-INFO\n", "creating 'dist\\object_detection-0.1-py3.8.egg' and adding 'build\\bdist.win-amd64\\egg' to it\n", "removing 'build\\bdist.win-amd64\\egg' (and everything under it)\n", "Processing object_detection-0.1-py3.8.egg\n", "creating c:\\detection\\tensor\\lib\\site-packages\\object_detection-0.1-py3.8.egg\n", "Extracting object_detection-0.1-py3.8.egg to c:\\detection\\tensor\\lib\\site-packages\n", "Adding object-detection 0.1 to easy-install.pth file\n", "\n", "Installed c:\\detection\\tensor\\lib\\site-packages\\object_detection-0.1-py3.8.egg\n", "Processing dependencies for object-detection==0.1\n", "Searching for sacrebleu<=2.2.0\n", "Reading https://pypi.org/simple/sacrebleu/\n", "Downloading https://files.pythonhosted.org/packages/f7/7e/fcf46053f73ab00ed4d9cf04433344def0d7e8d4ff3e2d5b8c480b6e1052/sacrebleu-2.2.0-py3-none-any.whl#sha256=2f9091da6639bff1b793b8dd0ec942aa30df08fa97d18697244b902e7eec6b5d\n", "Best match: sacrebleu 2.2.0\n", "Processing sacrebleu-2.2.0-py3-none-any.whl\n", "Installing sacrebleu-2.2.0-py3-none-any.whl to c:\\detection\\tensor\\lib\\site-packages\n", "writing requirements to c:\\detection\\tensor\\lib\\site-packages\\sacrebleu-2.2.0-py3.8.egg\\EGG-INFO\\requires.txt\n", "Adding sacrebleu 2.2.0 to easy-install.pth file\n", "Installing sacrebleu-script.py script to C:\\detection\\tensor\\Scripts\n", "Installing sacrebleu.exe script to C:\\detection\\tensor\\Scripts\n", "\n", "Installed c:\\detection\\tensor\\lib\\site-packages\\sacrebleu-2.2.0-py3.8.egg\n", "Searching for pyparsing==2.4.7\n", "Reading https://pypi.org/simple/pyparsing/\n", "Downloading https://files.pythonhosted.org/packages/8a/bb/488841f56197b13700afd5658fc279a2025a39e22449b7cf29864669b15d/pyparsing-2.4.7-py2.py3-none-any.whl#sha256=ef9d7589ef3c200abe66653d3f1ab1033c3c419ae9b9bdb1240a85b024efc88b\n", "Best match: pyparsing 2.4.7\n", "Processing pyparsing-2.4.7-py2.py3-none-any.whl\n", "Installing pyparsing-2.4.7-py2.py3-none-any.whl to c:\\detection\\tensor\\lib\\site-packages\n", "Adding pyparsing 2.4.7 to easy-install.pth file\n", "\n", "Installed c:\\detection\\tensor\\lib\\site-packages\\pyparsing-2.4.7-py3.8.egg\n", "Searching for tensorflow_io\n", "Reading https://pypi.org/simple/tensorflow_io/\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "zip_safe flag not set; analyzing archive contents...\n", "object_detection.core.__pycache__.densepose_ops.cpython-38: module references __file__\n", "object_detection.core.__pycache__.preprocessor.cpython-38: module MAY be using inspect.stack\n", "object_detection.utils.__pycache__.autoaugment_utils.cpython-38: module MAY be using inspect.stack\n", "No local packages or working download links found for tensorflow_io\n", "error: Could not find suitable distribution for Requirement.parse('tensorflow_io')\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Obtaining file:///C:/detection/Tensorflow/models/research/slim\n", " Preparing metadata (setup.py): started\n", " Preparing metadata (setup.py): finished with status 'done'\n", "Requirement already satisfied: six in c:\\detection\\tensor\\lib\\site-packages (from slim==0.1) (1.16.0)\n", "Collecting tf-slim>=1.1 (from slim==0.1)\n", " Downloading tf_slim-1.1.0-py2.py3-none-any.whl.metadata (1.6 kB)\n", "Requirement already satisfied: absl-py>=0.2.2 in c:\\detection\\tensor\\lib\\site-packages (from tf-slim>=1.1->slim==0.1) (2.1.0)\n", "Downloading tf_slim-1.1.0-py2.py3-none-any.whl (352 kB)\n", " ---------------------------------------- 0.0/352.1 kB ? eta -:--:--\n", " -------- ------------------------------- 71.7/352.1 kB 2.0 MB/s eta 0:00:01\n", " -------------------------- ------------- 235.5/352.1 kB 2.4 MB/s eta 0:00:01\n", " ---------------------------------------- 352.1/352.1 kB 2.7 MB/s eta 0:00:00\n", "Installing collected packages: tf-slim, slim\n", " Running setup.py develop for slim\n", "Successfully installed slim-0.1 tf-slim-1.1.0\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.\n", "object-detection 0.1 requires apache-beam, which is not installed.\n", "object-detection 0.1 requires avro-python3, which is not installed.\n", "object-detection 0.1 requires contextlib2, which is not installed.\n", "object-detection 0.1 requires Cython, which is not installed.\n", "object-detection 0.1 requires lvis, which is not installed.\n", "object-detection 0.1 requires lxml, which is not installed.\n", "object-detection 0.1 requires matplotlib, which is not installed.\n", "object-detection 0.1 requires pandas, which is not installed.\n", "object-detection 0.1 requires pillow, which is not installed.\n", "object-detection 0.1 requires pycocotools, which is not installed.\n", "object-detection 0.1 requires scipy, which is not installed.\n", "object-detection 0.1 requires tensorflow_io, which is not installed.\n", "object-detection 0.1 requires tf-models-official>=2.5.1, which is not installed.\n" ] } ], "source": [ "# Install Tensorflow Object Detection \n", "if os.name=='posix': \n", " !apt-get install protobuf-compiler\n", " !cd Tensorflow/models/research && protoc object_detection/protos/*.proto --python_out=. && cp object_detection/packages/tf2/setup.py . && python -m pip install . \n", " \n", "if os.name=='nt':\n", " url=\"https://github.com/protocolbuffers/protobuf/releases/download/v3.15.6/protoc-3.15.6-win64.zip\"\n", " wget.download(url)\n", " !move protoc-3.15.6-win64.zip {paths['PROTOC_PATH']}\n", " !cd {paths['PROTOC_PATH']} && tar -xf protoc-3.15.6-win64.zip\n", " os.environ['PATH'] += os.pathsep + os.path.abspath(os.path.join(paths['PROTOC_PATH'], 'bin')) \n", " !cd Tensorflow/models/research && protoc object_detection/protos/*.proto --python_out=. && copy object_detection\\\\packages\\\\tf2\\\\setup.py setup.py && python setup.py build && python setup.py install\n", " !cd Tensorflow/models/research/slim && pip install -e . " ] }, { "cell_type": "code", "execution_count": null, "metadata": { "scrolled": true }, "outputs": [], "source": [ "VERIFICATION_SCRIPT = os.path.join(paths['APIMODEL_PATH'], 'research', 'object_detection', 'builders', 'model_builder_tf2_test.py')\n", "# Verify Installation\n", "!python {VERIFICATION_SCRIPT}" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Note: you may need to restart the kernel to use updated packages.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.\n", "object-detection 0.1 requires apache-beam, which is not installed.\n", "object-detection 0.1 requires avro-python3, which is not installed.\n", "object-detection 0.1 requires contextlib2, which is not installed.\n", "object-detection 0.1 requires Cython, which is not installed.\n", "object-detection 0.1 requires lvis, which is not installed.\n", "object-detection 0.1 requires lxml, which is not installed.\n", "object-detection 0.1 requires matplotlib, which is not installed.\n", "object-detection 0.1 requires pandas, which is not installed.\n", "object-detection 0.1 requires pillow, which is not installed.\n", "object-detection 0.1 requires pycocotools, which is not installed.\n", "object-detection 0.1 requires tensorflow_io, which is not installed.\n", "object-detection 0.1 requires tf-models-official>=2.5.1, which is not installed.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Collecting scipy\n", " Downloading scipy-1.10.1-cp38-cp38-win_amd64.whl.metadata (58 kB)\n", " ---------------------------------------- 0.0/59.0 kB ? eta -:--:--\n", " ---------------------------------------- 59.0/59.0 kB 1.5 MB/s eta 0:00:00\n", "Requirement already satisfied: numpy<1.27.0,>=1.19.5 in c:\\detection\\tensor\\lib\\site-packages (from scipy) (1.24.4)\n", "Downloading scipy-1.10.1-cp38-cp38-win_amd64.whl (42.2 MB)\n", " ---------------------------------------- 0.0/42.2 MB ? eta -:--:--\n", " ---------------------------------------- 0.3/42.2 MB 5.4 MB/s eta 0:00:08\n", " ---------------------------------------- 0.5/42.2 MB 5.4 MB/s eta 0:00:08\n", " --------------------------------------- 0.9/42.2 MB 5.8 MB/s eta 0:00:08\n", " - -------------------------------------- 1.2/42.2 MB 6.2 MB/s eta 0:00:07\n", " - -------------------------------------- 1.6/42.2 MB 6.0 MB/s eta 0:00:07\n", " -- ------------------------------------- 2.1/42.2 MB 6.5 MB/s eta 0:00:07\n", " -- ------------------------------------- 2.5/42.2 MB 6.6 MB/s eta 0:00:07\n", " -- ------------------------------------- 2.8/42.2 MB 6.7 MB/s eta 0:00:06\n", " -- ------------------------------------- 3.2/42.2 MB 6.7 MB/s eta 0:00:06\n", " --- ------------------------------------ 3.5/42.2 MB 7.0 MB/s eta 0:00:06\n", " --- ------------------------------------ 3.9/42.2 MB 6.9 MB/s eta 0:00:06\n", " ---- ----------------------------------- 4.3/42.2 MB 7.0 MB/s eta 0:00:06\n", " ---- ----------------------------------- 4.5/42.2 MB 6.9 MB/s eta 0:00:06\n", " ---- ----------------------------------- 4.9/42.2 MB 6.9 MB/s eta 0:00:06\n", " ---- ----------------------------------- 5.1/42.2 MB 6.8 MB/s eta 0:00:06\n", " ----- ---------------------------------- 5.4/42.2 MB 7.0 MB/s eta 0:00:06\n", " ----- ---------------------------------- 5.8/42.2 MB 6.9 MB/s eta 0:00:06\n", " ----- ---------------------------------- 6.2/42.2 MB 6.9 MB/s eta 0:00:06\n", " ------ --------------------------------- 6.7/42.2 MB 7.1 MB/s eta 0:00:05\n", " ------ --------------------------------- 7.1/42.2 MB 7.2 MB/s eta 0:00:05\n", " ------- -------------------------------- 7.6/42.2 MB 7.5 MB/s eta 0:00:05\n", " ------- -------------------------------- 8.0/42.2 MB 7.6 MB/s eta 0:00:05\n", " ------- -------------------------------- 8.4/42.2 MB 7.5 MB/s eta 0:00:05\n", " -------- ------------------------------- 8.9/42.2 MB 7.7 MB/s eta 0:00:05\n", " -------- ------------------------------- 9.0/42.2 MB 7.6 MB/s eta 0:00:05\n", " -------- ------------------------------- 9.0/42.2 MB 7.6 MB/s eta 0:00:05\n", " -------- ------------------------------- 9.0/42.2 MB 7.6 MB/s eta 0:00:05\n", " -------- ------------------------------- 9.1/42.2 MB 6.8 MB/s eta 0:00:05\n", " -------- ------------------------------- 9.1/42.2 MB 6.8 MB/s eta 0:00:05\n", " -------- ------------------------------- 9.2/42.2 MB 6.4 MB/s eta 0:00:06\n", " --------- ------------------------------ 9.7/42.2 MB 6.4 MB/s eta 0:00:06\n", " --------- ------------------------------ 10.0/42.2 MB 6.5 MB/s eta 0:00:05\n", " ---------- ----------------------------- 10.6/42.2 MB 6.8 MB/s eta 0:00:05\n", " ---------- ----------------------------- 11.0/42.2 MB 6.9 MB/s eta 0:00:05\n", " ---------- ----------------------------- 11.3/42.2 MB 6.6 MB/s eta 0:00:05\n", " ----------- ---------------------------- 12.1/42.2 MB 6.9 MB/s eta 0:00:05\n", " ----------- ---------------------------- 12.5/42.2 MB 6.9 MB/s eta 0:00:05\n", " ------------ --------------------------- 12.7/42.2 MB 6.8 MB/s eta 0:00:05\n", " ------------ --------------------------- 13.1/42.2 MB 6.8 MB/s eta 0:00:05\n", " ------------ --------------------------- 13.6/42.2 MB 6.9 MB/s eta 0:00:05\n", " ------------- -------------------------- 13.9/42.2 MB 6.9 MB/s eta 0:00:05\n", " ------------- -------------------------- 14.5/42.2 MB 7.0 MB/s eta 0:00:04\n", " ------------- -------------------------- 14.7/42.2 MB 6.9 MB/s eta 0:00:04\n", " -------------- ------------------------- 15.1/42.2 MB 7.0 MB/s eta 0:00:04\n", " -------------- ------------------------- 15.3/42.2 MB 7.0 MB/s eta 0:00:04\n", " -------------- ------------------------- 15.6/42.2 MB 6.9 MB/s eta 0:00:04\n", " --------------- ------------------------ 16.0/42.2 MB 7.0 MB/s eta 0:00:04\n", " --------------- ------------------------ 16.2/42.2 MB 6.8 MB/s eta 0:00:04\n", " --------------- ------------------------ 16.5/42.2 MB 6.7 MB/s eta 0:00:04\n", " --------------- ------------------------ 16.9/42.2 MB 6.5 MB/s eta 0:00:04\n", " ---------------- ----------------------- 17.2/42.2 MB 6.5 MB/s eta 0:00:04\n", " ---------------- ----------------------- 17.4/42.2 MB 6.4 MB/s eta 0:00:04\n", " ---------------- ----------------------- 17.9/42.2 MB 6.4 MB/s eta 0:00:04\n", " ----------------- ---------------------- 18.2/42.2 MB 6.4 MB/s eta 0:00:04\n", " ----------------- ---------------------- 18.5/42.2 MB 6.4 MB/s eta 0:00:04\n", " ----------------- ---------------------- 18.8/42.2 MB 6.3 MB/s eta 0:00:04\n", " ------------------ --------------------- 19.1/42.2 MB 6.2 MB/s eta 0:00:04\n", " ------------------ --------------------- 19.4/42.2 MB 7.2 MB/s eta 0:00:04\n", " ------------------ --------------------- 19.8/42.2 MB 7.2 MB/s eta 0:00:04\n", " ------------------- -------------------- 20.3/42.2 MB 7.3 MB/s eta 0:00:04\n", " ------------------- -------------------- 20.6/42.2 MB 7.3 MB/s eta 0:00:03\n", " ------------------- -------------------- 21.0/42.2 MB 7.2 MB/s eta 0:00:03\n", " -------------------- ------------------- 21.3/42.2 MB 7.2 MB/s eta 0:00:03\n", " -------------------- ------------------- 21.7/42.2 MB 7.3 MB/s eta 0:00:03\n", " -------------------- ------------------- 22.1/42.2 MB 7.2 MB/s eta 0:00:03\n", " --------------------- ------------------ 22.5/42.2 MB 7.4 MB/s eta 0:00:03\n", " --------------------- ------------------ 22.8/42.2 MB 7.4 MB/s eta 0:00:03\n", " --------------------- ------------------ 23.1/42.2 MB 7.3 MB/s eta 0:00:03\n", " ---------------------- ----------------- 23.4/42.2 MB 7.1 MB/s eta 0:00:03\n", " ---------------------- ----------------- 23.7/42.2 MB 7.1 MB/s eta 0:00:03\n", " ---------------------- ----------------- 24.2/42.2 MB 7.1 MB/s eta 0:00:03\n", " ----------------------- ---------------- 24.6/42.2 MB 7.0 MB/s eta 0:00:03\n", " ----------------------- ---------------- 25.1/42.2 MB 7.0 MB/s eta 0:00:03\n", " ------------------------ --------------- 25.6/42.2 MB 7.1 MB/s eta 0:00:03\n", " ------------------------ --------------- 25.9/42.2 MB 7.0 MB/s eta 0:00:03\n", " ------------------------- -------------- 26.4/42.2 MB 7.1 MB/s eta 0:00:03\n", " ------------------------- -------------- 26.9/42.2 MB 7.4 MB/s eta 0:00:03\n", " ------------------------- -------------- 27.3/42.2 MB 7.4 MB/s eta 0:00:03\n", " -------------------------- ------------- 27.6/42.2 MB 7.4 MB/s eta 0:00:02\n", " -------------------------- ------------- 28.0/42.2 MB 7.4 MB/s eta 0:00:02\n", " -------------------------- ------------- 28.3/42.2 MB 7.4 MB/s eta 0:00:02\n", " --------------------------- ------------ 28.7/42.2 MB 7.4 MB/s eta 0:00:02\n", " --------------------------- ------------ 29.1/42.2 MB 7.4 MB/s eta 0:00:02\n", " --------------------------- ------------ 29.5/42.2 MB 7.4 MB/s eta 0:00:02\n", " ---------------------------- ----------- 29.8/42.2 MB 7.4 MB/s eta 0:00:02\n", " ---------------------------- ----------- 30.1/42.2 MB 7.4 MB/s eta 0:00:02\n", " ---------------------------- ----------- 30.4/42.2 MB 7.2 MB/s eta 0:00:02\n", " ----------------------------- ---------- 30.7/42.2 MB 7.0 MB/s eta 0:00:02\n", " ----------------------------- ---------- 31.0/42.2 MB 7.1 MB/s eta 0:00:02\n", " ----------------------------- ---------- 31.3/42.2 MB 7.0 MB/s eta 0:00:02\n", " ----------------------------- ---------- 31.5/42.2 MB 7.0 MB/s eta 0:00:02\n", " ------------------------------ --------- 31.9/42.2 MB 7.0 MB/s eta 0:00:02\n", " ------------------------------ --------- 32.4/42.2 MB 6.9 MB/s eta 0:00:02\n", " ------------------------------ --------- 32.6/42.2 MB 6.8 MB/s eta 0:00:02\n", " ------------------------------- -------- 33.0/42.2 MB 6.9 MB/s eta 0:00:02\n", " ------------------------------- -------- 33.3/42.2 MB 6.9 MB/s eta 0:00:02\n", " ------------------------------- -------- 33.7/42.2 MB 7.0 MB/s eta 0:00:02\n", " -------------------------------- ------- 34.0/42.2 MB 6.9 MB/s eta 0:00:02\n", " -------------------------------- ------- 34.3/42.2 MB 6.9 MB/s eta 0:00:02\n", " -------------------------------- ------- 34.6/42.2 MB 6.8 MB/s eta 0:00:02\n", " --------------------------------- ------ 34.9/42.2 MB 6.8 MB/s eta 0:00:02\n", " --------------------------------- ------ 35.4/42.2 MB 6.9 MB/s eta 0:00:01\n", " --------------------------------- ------ 35.7/42.2 MB 6.8 MB/s eta 0:00:01\n", " ---------------------------------- ----- 36.0/42.2 MB 6.9 MB/s eta 0:00:01\n", " ---------------------------------- ----- 36.4/42.2 MB 6.8 MB/s eta 0:00:01\n", " ---------------------------------- ----- 36.7/42.2 MB 6.9 MB/s eta 0:00:01\n", " ----------------------------------- ---- 37.0/42.2 MB 6.9 MB/s eta 0:00:01\n", " ----------------------------------- ---- 37.3/42.2 MB 6.9 MB/s eta 0:00:01\n", " ----------------------------------- ---- 37.6/42.2 MB 6.8 MB/s eta 0:00:01\n", " ----------------------------------- ---- 37.9/42.2 MB 6.8 MB/s eta 0:00:01\n", " ------------------------------------ --- 38.3/42.2 MB 6.8 MB/s eta 0:00:01\n", " ------------------------------------ --- 38.7/42.2 MB 6.9 MB/s eta 0:00:01\n", " ------------------------------------- -- 39.1/42.2 MB 6.9 MB/s eta 0:00:01\n", " ------------------------------------- -- 39.4/42.2 MB 7.0 MB/s eta 0:00:01\n", " ------------------------------------- -- 39.6/42.2 MB 6.9 MB/s eta 0:00:01\n", " ------------------------------------- -- 40.0/42.2 MB 6.9 MB/s eta 0:00:01\n", " -------------------------------------- - 40.6/42.2 MB 7.0 MB/s eta 0:00:01\n", " -------------------------------------- - 41.1/42.2 MB 7.2 MB/s eta 0:00:01\n", " --------------------------------------- 41.6/42.2 MB 7.3 MB/s eta 0:00:01\n", " --------------------------------------- 42.0/42.2 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 42.2/42.2 MB 7.3 MB/s eta 0:00:01\n", " --------------------------------------- 42.2/42.2 MB 7.3 MB/s eta 0:00:01\n", " --------------------------------------- 42.2/42.2 MB 7.3 MB/s eta 0:00:01\n", " --------------------------------------- 42.2/42.2 MB 7.3 MB/s eta 0:00:01\n", " ---------------------------------------- 42.2/42.2 MB 6.5 MB/s eta 0:00:00\n", "Installing collected packages: scipy\n", "Successfully installed scipy-1.10.1\n" ] } ], "source": [ "pip install scipy" ] }, { "cell_type": "code", "execution_count": 28, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Collecting tensorflow==2.2.0\n", " Downloading tensorflow-2.2.0-cp38-cp38-win_amd64.whl.metadata (2.8 kB)\n", "Requirement already satisfied: absl-py>=0.7.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow==2.2.0) (1.4.0)\n", "Requirement already satisfied: astunparse==1.6.3 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow==2.2.0) (1.6.3)\n", "Collecting gast==0.3.3 (from tensorflow==2.2.0)\n", " Using cached gast-0.3.3-py2.py3-none-any.whl.metadata (1.1 kB)\n", "Requirement already satisfied: google-pasta>=0.1.8 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow==2.2.0) (0.2.0)\n", "Collecting h5py<2.11.0,>=2.10.0 (from tensorflow==2.2.0)\n", " Using cached h5py-2.10.0-cp38-cp38-win_amd64.whl.metadata (2.0 kB)\n", "Collecting keras-preprocessing>=1.1.0 (from tensorflow==2.2.0)\n", " Using cached Keras_Preprocessing-1.1.2-py2.py3-none-any.whl.metadata (1.9 kB)\n", "Requirement already satisfied: numpy<2.0,>=1.16.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow==2.2.0) (1.24.3)\n", "Requirement already satisfied: opt-einsum>=2.3.2 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow==2.2.0) (3.3.0)\n", "Requirement already satisfied: protobuf>=3.8.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow==2.2.0) (3.20.3)\n", "Collecting tensorboard<2.3.0,>=2.2.0 (from tensorflow==2.2.0)\n", " Using cached tensorboard-2.2.2-py3-none-any.whl.metadata (2.0 kB)\n", "Collecting tensorflow-estimator<2.3.0,>=2.2.0 (from tensorflow==2.2.0)\n", " Using cached tensorflow_estimator-2.2.0-py2.py3-none-any.whl.metadata (1.2 kB)\n", "Requirement already satisfied: termcolor>=1.1.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow==2.2.0) (2.4.0)\n", "Requirement already satisfied: wrapt>=1.11.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow==2.2.0) (1.16.0)\n", "Requirement already satisfied: six>=1.12.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow==2.2.0) (1.16.0)\n", "Requirement already satisfied: grpcio>=1.8.6 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow==2.2.0) (1.62.1)\n", "Requirement already satisfied: wheel>=0.26 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow==2.2.0) (0.43.0)\n", "Collecting scipy==1.4.1 (from tensorflow==2.2.0)\n", " Downloading scipy-1.4.1-cp38-cp38-win_amd64.whl.metadata (2.0 kB)\n", "Collecting google-auth<2,>=1.6.3 (from tensorboard<2.3.0,>=2.2.0->tensorflow==2.2.0)\n", " Using cached google_auth-1.35.0-py2.py3-none-any.whl.metadata (3.5 kB)\n", "Collecting google-auth-oauthlib<0.5,>=0.4.1 (from tensorboard<2.3.0,>=2.2.0->tensorflow==2.2.0)\n", " Using cached google_auth_oauthlib-0.4.6-py2.py3-none-any.whl.metadata (2.7 kB)\n", "Requirement already satisfied: markdown>=2.6.8 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorboard<2.3.0,>=2.2.0->tensorflow==2.2.0) (3.6)\n", "Requirement already satisfied: requests<3,>=2.21.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorboard<2.3.0,>=2.2.0->tensorflow==2.2.0) (2.31.0)\n", "Requirement already satisfied: setuptools>=41.0.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorboard<2.3.0,>=2.2.0->tensorflow==2.2.0) (41.2.0)\n", "Collecting tensorboard-plugin-wit>=1.6.0 (from tensorboard<2.3.0,>=2.2.0->tensorflow==2.2.0)\n", " Using cached tensorboard_plugin_wit-1.8.1-py3-none-any.whl.metadata (873 bytes)\n", "Requirement already satisfied: werkzeug>=0.11.15 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorboard<2.3.0,>=2.2.0->tensorflow==2.2.0) (3.0.2)\n", "Collecting cachetools<5.0,>=2.0.0 (from google-auth<2,>=1.6.3->tensorboard<2.3.0,>=2.2.0->tensorflow==2.2.0)\n", " Using cached cachetools-4.2.4-py3-none-any.whl.metadata (4.8 kB)\n", "Requirement already satisfied: pyasn1-modules>=0.2.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from google-auth<2,>=1.6.3->tensorboard<2.3.0,>=2.2.0->tensorflow==2.2.0) (0.4.0)\n", "Requirement already satisfied: rsa<5,>=3.1.4 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from google-auth<2,>=1.6.3->tensorboard<2.3.0,>=2.2.0->tensorflow==2.2.0) (4.9)\n", "Requirement already satisfied: requests-oauthlib>=0.7.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from google-auth-oauthlib<0.5,>=0.4.1->tensorboard<2.3.0,>=2.2.0->tensorflow==2.2.0) (2.0.0)\n", "Requirement already satisfied: importlib-metadata>=4.4 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from markdown>=2.6.8->tensorboard<2.3.0,>=2.2.0->tensorflow==2.2.0) (7.1.0)\n", "Requirement already satisfied: charset-normalizer<4,>=2 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from requests<3,>=2.21.0->tensorboard<2.3.0,>=2.2.0->tensorflow==2.2.0) (3.3.2)\n", "Requirement already satisfied: idna<4,>=2.5 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from requests<3,>=2.21.0->tensorboard<2.3.0,>=2.2.0->tensorflow==2.2.0) (3.6)\n", "Requirement already satisfied: urllib3<3,>=1.21.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from requests<3,>=2.21.0->tensorboard<2.3.0,>=2.2.0->tensorflow==2.2.0) (2.2.1)\n", "Requirement already satisfied: certifi>=2017.4.17 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from requests<3,>=2.21.0->tensorboard<2.3.0,>=2.2.0->tensorflow==2.2.0) (2024.2.2)\n", "Requirement already satisfied: MarkupSafe>=2.1.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from werkzeug>=0.11.15->tensorboard<2.3.0,>=2.2.0->tensorflow==2.2.0) (2.1.5)\n", "Requirement already satisfied: zipp>=0.5 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from importlib-metadata>=4.4->markdown>=2.6.8->tensorboard<2.3.0,>=2.2.0->tensorflow==2.2.0) (3.18.1)\n", "Requirement already satisfied: pyasn1<0.7.0,>=0.4.6 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from pyasn1-modules>=0.2.1->google-auth<2,>=1.6.3->tensorboard<2.3.0,>=2.2.0->tensorflow==2.2.0) (0.6.0)\n", "Requirement already satisfied: oauthlib>=3.0.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from requests-oauthlib>=0.7.0->google-auth-oauthlib<0.5,>=0.4.1->tensorboard<2.3.0,>=2.2.0->tensorflow==2.2.0) (3.2.2)\n", "Downloading tensorflow-2.2.0-cp38-cp38-win_amd64.whl (459.2 MB)\n", " ---------------------------------------- 0.0/459.2 MB ? eta -:--:--\n", " ---------------------------------------- 0.1/459.2 MB 871.5 kB/s eta 0:08:47\n", " ---------------------------------------- 0.1/459.2 MB 1.3 MB/s eta 0:05:52\n", " ---------------------------------------- 0.2/459.2 MB 2.1 MB/s eta 0:03:35\n", " ---------------------------------------- 0.3/459.2 MB 1.9 MB/s eta 0:04:02\n", " ---------------------------------------- 0.4/459.2 MB 2.1 MB/s eta 0:03:37\n", " ---------------------------------------- 0.6/459.2 MB 2.0 MB/s eta 0:03:45\n", " ---------------------------------------- 0.6/459.2 MB 2.0 MB/s eta 0:03:45\n", " ---------------------------------------- 0.6/459.2 MB 2.0 MB/s eta 0:03:45\n", " ---------------------------------------- 0.9/459.2 MB 2.1 MB/s eta 0:03:43\n", " ---------------------------------------- 0.9/459.2 MB 2.1 MB/s eta 0:03:36\n", " ---------------------------------------- 1.1/459.2 MB 2.2 MB/s eta 0:03:26\n", " ---------------------------------------- 1.1/459.2 MB 2.2 MB/s eta 0:03:26\n", " ---------------------------------------- 1.3/459.2 MB 2.1 MB/s eta 0:03:34\n", " ---------------------------------------- 1.5/459.2 MB 2.3 MB/s eta 0:03:21\n", " ---------------------------------------- 1.6/459.2 MB 2.3 MB/s eta 0:03:21\n", " ---------------------------------------- 1.7/459.2 MB 2.2 MB/s eta 0:03:26\n", " ---------------------------------------- 1.8/459.2 MB 2.2 MB/s eta 0:03:30\n", " ---------------------------------------- 2.0/459.2 MB 2.3 MB/s eta 0:03:22\n", " ---------------------------------------- 2.1/459.2 MB 2.2 MB/s eta 0:03:24\n", " ---------------------------------------- 2.2/459.2 MB 2.3 MB/s eta 0:03:22\n", " ---------------------------------------- 2.2/459.2 MB 2.2 MB/s eta 0:03:28\n", " ---------------------------------------- 2.4/459.2 MB 2.2 MB/s eta 0:03:25\n", " ---------------------------------------- 2.5/459.2 MB 2.2 MB/s eta 0:03:25\n", " ---------------------------------------- 2.6/459.2 MB 2.2 MB/s eta 0:03:26\n", " ---------------------------------------- 2.7/459.2 MB 2.2 MB/s eta 0:03:26\n", " ---------------------------------------- 2.8/459.2 MB 2.2 MB/s eta 0:03:25\n", " ---------------------------------------- 2.9/459.2 MB 2.2 MB/s eta 0:03:24\n", " ---------------------------------------- 2.9/459.2 MB 2.2 MB/s eta 0:03:27\n", " ---------------------------------------- 3.1/459.2 MB 2.2 MB/s eta 0:03:27\n", " ---------------------------------------- 3.1/459.2 MB 2.2 MB/s eta 0:03:30\n", " ---------------------------------------- 3.1/459.2 MB 2.2 MB/s eta 0:03:30\n", " ---------------------------------------- 3.1/459.2 MB 2.2 MB/s eta 0:03:30\n", " ---------------------------------------- 3.1/459.2 MB 2.2 MB/s eta 0:03:30\n", " ---------------------------------------- 3.1/459.2 MB 2.2 MB/s eta 0:03:30\n", " ---------------------------------------- 3.1/459.2 MB 2.2 MB/s eta 0:03:30\n", " ---------------------------------------- 3.1/459.2 MB 2.2 MB/s eta 0:03:30\n", " ---------------------------------------- 3.1/459.2 MB 2.2 MB/s eta 0:03:30\n", " ---------------------------------------- 3.1/459.2 MB 2.2 MB/s eta 0:03:30\n", " ---------------------------------------- 3.1/459.2 MB 2.2 MB/s eta 0:03:30\n", " ---------------------------------------- 3.1/459.2 MB 2.2 MB/s eta 0:03:30\n", " ---------------------------------------- 3.1/459.2 MB 2.2 MB/s eta 0:03:30\n", " ---------------------------------------- 3.1/459.2 MB 2.2 MB/s eta 0:03:30\n", " ---------------------------------------- 3.1/459.2 MB 2.2 MB/s eta 0:03:30\n", " ---------------------------------------- 3.1/459.2 MB 2.2 MB/s eta 0:03:30\n", " ---------------------------------------- 3.1/459.2 MB 2.2 MB/s eta 0:03:30\n", " ---------------------------------------- 3.1/459.2 MB 2.2 MB/s eta 0:03:30\n", " ---------------------------------------- 3.1/459.2 MB 2.2 MB/s eta 0:03:30\n", " ---------------------------------------- 3.3/459.2 MB 1.4 MB/s eta 0:05:20\n", " ---------------------------------------- 3.4/459.2 MB 1.4 MB/s eta 0:05:15\n", " ---------------------------------------- 3.6/459.2 MB 1.5 MB/s eta 0:05:08\n", " ---------------------------------------- 3.7/459.2 MB 1.5 MB/s eta 0:05:03\n", " ---------------------------------------- 3.9/459.2 MB 1.5 MB/s eta 0:05:00\n", " ---------------------------------------- 4.1/459.2 MB 1.6 MB/s eta 0:04:53\n", " ---------------------------------------- 4.2/459.2 MB 1.6 MB/s eta 0:04:50\n", " ---------------------------------------- 4.4/459.2 MB 1.6 MB/s eta 0:04:47\n", " ---------------------------------------- 4.5/459.2 MB 1.6 MB/s eta 0:04:43\n", " ---------------------------------------- 4.6/459.2 MB 1.6 MB/s eta 0:04:41\n", " ---------------------------------------- 4.8/459.2 MB 1.6 MB/s eta 0:04:39\n", " ---------------------------------------- 4.9/459.2 MB 1.7 MB/s eta 0:04:35\n", " ---------------------------------------- 5.1/459.2 MB 1.7 MB/s eta 0:04:32\n", " ---------------------------------------- 5.2/459.2 MB 1.7 MB/s eta 0:04:31\n", " ---------------------------------------- 5.4/459.2 MB 1.7 MB/s eta 0:04:29\n", " ---------------------------------------- 5.6/459.2 MB 1.7 MB/s eta 0:04:25\n", " ---------------------------------------- 5.7/459.2 MB 1.7 MB/s eta 0:04:23\n", " --------------------------------------- 5.8/459.2 MB 1.7 MB/s eta 0:04:21\n", " --------------------------------------- 6.0/459.2 MB 1.8 MB/s eta 0:04:19\n", " --------------------------------------- 6.1/459.2 MB 1.8 MB/s eta 0:04:18\n", " --------------------------------------- 6.2/459.2 MB 1.8 MB/s eta 0:04:19\n", " --------------------------------------- 6.4/459.2 MB 1.8 MB/s eta 0:04:16\n", " --------------------------------------- 6.5/459.2 MB 1.8 MB/s eta 0:04:14\n", " --------------------------------------- 6.6/459.2 MB 1.8 MB/s eta 0:04:13\n", " --------------------------------------- 6.8/459.2 MB 1.8 MB/s eta 0:04:12\n", " --------------------------------------- 6.9/459.2 MB 1.8 MB/s eta 0:04:10\n", " --------------------------------------- 7.0/459.2 MB 1.8 MB/s eta 0:04:09\n", " --------------------------------------- 7.1/459.2 MB 1.8 MB/s eta 0:04:08\n", " --------------------------------------- 7.2/459.2 MB 1.8 MB/s eta 0:04:07\n", " --------------------------------------- 7.3/459.2 MB 1.8 MB/s eta 0:04:06\n", " --------------------------------------- 7.4/459.2 MB 1.9 MB/s eta 0:04:05\n", " --------------------------------------- 7.6/459.2 MB 1.9 MB/s eta 0:04:04\n", " --------------------------------------- 7.7/459.2 MB 1.9 MB/s eta 0:04:03\n", " --------------------------------------- 7.8/459.2 MB 1.9 MB/s eta 0:04:03\n", " --------------------------------------- 7.8/459.2 MB 1.8 MB/s eta 0:04:05\n", " --------------------------------------- 7.9/459.2 MB 1.8 MB/s eta 0:04:07\n", " --------------------------------------- 8.0/459.2 MB 1.8 MB/s eta 0:04:06\n", " --------------------------------------- 8.0/459.2 MB 1.8 MB/s eta 0:04:07\n", " --------------------------------------- 8.2/459.2 MB 1.8 MB/s eta 0:04:06\n", " --------------------------------------- 8.2/459.2 MB 1.8 MB/s eta 0:04:07\n", " --------------------------------------- 8.3/459.2 MB 1.8 MB/s eta 0:04:06\n", " --------------------------------------- 8.4/459.2 MB 1.8 MB/s eta 0:04:05\n", " --------------------------------------- 8.5/459.2 MB 1.8 MB/s eta 0:04:07\n", " --------------------------------------- 8.7/459.2 MB 1.8 MB/s eta 0:04:05\n", " --------------------------------------- 8.8/459.2 MB 1.8 MB/s eta 0:04:04\n", " --------------------------------------- 8.9/459.2 MB 1.9 MB/s eta 0:04:03\n", " --------------------------------------- 9.1/459.2 MB 1.9 MB/s eta 0:04:02\n", " --------------------------------------- 9.2/459.2 MB 1.9 MB/s eta 0:04:02\n", " --------------------------------------- 9.2/459.2 MB 1.9 MB/s eta 0:04:04\n", " --------------------------------------- 9.3/459.2 MB 1.9 MB/s eta 0:04:02\n", " --------------------------------------- 9.5/459.2 MB 1.9 MB/s eta 0:04:02\n", " --------------------------------------- 9.6/459.2 MB 1.9 MB/s eta 0:04:01\n", " --------------------------------------- 9.7/459.2 MB 1.9 MB/s eta 0:04:01\n", " --------------------------------------- 9.9/459.2 MB 1.9 MB/s eta 0:03:59\n", " --------------------------------------- 10.0/459.2 MB 1.9 MB/s eta 0:03:58\n", " --------------------------------------- 10.1/459.2 MB 1.9 MB/s eta 0:03:58\n", " --------------------------------------- 10.2/459.2 MB 1.9 MB/s eta 0:03:57\n", " --------------------------------------- 10.3/459.2 MB 1.9 MB/s eta 0:03:57\n", " --------------------------------------- 10.5/459.2 MB 1.9 MB/s eta 0:03:56\n", " --------------------------------------- 10.6/459.2 MB 1.9 MB/s eta 0:03:55\n", " --------------------------------------- 10.7/459.2 MB 1.9 MB/s eta 0:03:54\n", " --------------------------------------- 10.8/459.2 MB 2.0 MB/s eta 0:03:49\n", " --------------------------------------- 10.9/459.2 MB 1.9 MB/s eta 0:03:51\n", " --------------------------------------- 11.0/459.2 MB 1.9 MB/s eta 0:03:53\n", " --------------------------------------- 11.1/459.2 MB 1.9 MB/s eta 0:03:55\n", " --------------------------------------- 11.3/459.2 MB 1.9 MB/s eta 0:03:54\n", " --------------------------------------- 11.4/459.2 MB 1.9 MB/s eta 0:03:52\n", " --------------------------------------- 11.4/459.2 MB 1.9 MB/s eta 0:03:52\n", " - -------------------------------------- 11.7/459.2 MB 1.9 MB/s eta 0:03:55\n", " - -------------------------------------- 11.8/459.2 MB 1.9 MB/s eta 0:03:56\n", " - -------------------------------------- 11.9/459.2 MB 1.9 MB/s eta 0:03:56\n", " - -------------------------------------- 12.0/459.2 MB 1.9 MB/s eta 0:03:55\n", " - -------------------------------------- 12.2/459.2 MB 1.9 MB/s eta 0:03:57\n", " - -------------------------------------- 12.3/459.2 MB 1.9 MB/s eta 0:03:58\n", " - -------------------------------------- 12.4/459.2 MB 1.9 MB/s eta 0:03:58\n", " - -------------------------------------- 12.5/459.2 MB 1.9 MB/s eta 0:03:57\n", " - -------------------------------------- 12.7/459.2 MB 1.9 MB/s eta 0:03:57\n", " - -------------------------------------- 12.7/459.2 MB 1.9 MB/s eta 0:03:58\n", " - -------------------------------------- 12.8/459.2 MB 1.9 MB/s eta 0:03:58\n", " - -------------------------------------- 13.0/459.2 MB 1.9 MB/s eta 0:03:58\n", " - -------------------------------------- 13.1/459.2 MB 1.9 MB/s eta 0:03:59\n", " - -------------------------------------- 13.3/459.2 MB 1.9 MB/s eta 0:03:58\n", " - -------------------------------------- 13.4/459.2 MB 1.9 MB/s eta 0:03:57\n", " - -------------------------------------- 13.5/459.2 MB 2.2 MB/s eta 0:03:23\n", " - -------------------------------------- 13.6/459.2 MB 2.2 MB/s eta 0:03:23\n", " - -------------------------------------- 13.8/459.2 MB 2.2 MB/s eta 0:03:23\n", " - -------------------------------------- 13.9/459.2 MB 2.2 MB/s eta 0:03:24\n", " - -------------------------------------- 14.0/459.2 MB 2.2 MB/s eta 0:03:25\n", " - -------------------------------------- 14.2/459.2 MB 2.2 MB/s eta 0:03:24\n", " - -------------------------------------- 14.2/459.2 MB 2.2 MB/s eta 0:03:26\n", " - -------------------------------------- 14.4/459.2 MB 2.2 MB/s eta 0:03:26\n", " - -------------------------------------- 14.4/459.2 MB 2.2 MB/s eta 0:03:26\n", " - -------------------------------------- 14.5/459.2 MB 2.2 MB/s eta 0:03:26\n", " - -------------------------------------- 14.7/459.2 MB 2.1 MB/s eta 0:03:29\n", " - -------------------------------------- 14.8/459.2 MB 2.1 MB/s eta 0:03:28\n", " - -------------------------------------- 14.9/459.2 MB 2.1 MB/s eta 0:03:29\n", " - -------------------------------------- 15.0/459.2 MB 2.1 MB/s eta 0:03:29\n", " - -------------------------------------- 15.2/459.2 MB 2.1 MB/s eta 0:03:29\n", " - -------------------------------------- 15.3/459.2 MB 2.1 MB/s eta 0:03:29\n", " - -------------------------------------- 15.4/459.2 MB 2.1 MB/s eta 0:03:31\n", " - -------------------------------------- 15.6/459.2 MB 2.1 MB/s eta 0:03:31\n", " - -------------------------------------- 15.7/459.2 MB 2.1 MB/s eta 0:03:32\n", " - -------------------------------------- 15.7/459.2 MB 2.1 MB/s eta 0:03:33\n", " - -------------------------------------- 15.8/459.2 MB 2.1 MB/s eta 0:03:33\n", " - -------------------------------------- 16.0/459.2 MB 2.1 MB/s eta 0:03:34\n", " - -------------------------------------- 16.1/459.2 MB 2.1 MB/s eta 0:03:34\n", " - -------------------------------------- 16.3/459.2 MB 2.1 MB/s eta 0:03:34\n", " - -------------------------------------- 16.4/459.2 MB 2.1 MB/s eta 0:03:34\n", " - -------------------------------------- 16.5/459.2 MB 2.1 MB/s eta 0:03:33\n", " - -------------------------------------- 16.7/459.2 MB 2.1 MB/s eta 0:03:35\n", " - -------------------------------------- 16.7/459.2 MB 2.1 MB/s eta 0:03:35\n", " - -------------------------------------- 16.9/459.2 MB 2.1 MB/s eta 0:03:36\n", " - -------------------------------------- 17.1/459.2 MB 2.1 MB/s eta 0:03:35\n", " - -------------------------------------- 17.2/459.2 MB 2.0 MB/s eta 0:03:37\n", " - -------------------------------------- 17.3/459.2 MB 2.1 MB/s eta 0:03:36\n", " - -------------------------------------- 17.4/459.2 MB 2.0 MB/s eta 0:03:36\n", " - -------------------------------------- 17.5/459.2 MB 2.0 MB/s eta 0:03:37\n", " - -------------------------------------- 17.6/459.2 MB 2.0 MB/s eta 0:03:38\n", " - -------------------------------------- 17.7/459.2 MB 2.0 MB/s eta 0:03:38\n", " - -------------------------------------- 17.7/459.2 MB 2.0 MB/s eta 0:03:38\n", " - -------------------------------------- 17.7/459.2 MB 2.0 MB/s eta 0:03:38\n", " - -------------------------------------- 17.9/459.2 MB 2.0 MB/s eta 0:03:45\n", " - -------------------------------------- 18.0/459.2 MB 2.0 MB/s eta 0:03:45\n", " - -------------------------------------- 18.0/459.2 MB 2.0 MB/s eta 0:03:46\n", " - -------------------------------------- 18.1/459.2 MB 2.0 MB/s eta 0:03:46\n", " - -------------------------------------- 18.1/459.2 MB 1.9 MB/s eta 0:03:47\n", " - -------------------------------------- 18.2/459.2 MB 1.9 MB/s eta 0:03:49\n", " - -------------------------------------- 18.2/459.2 MB 1.9 MB/s eta 0:03:50\n", " - -------------------------------------- 18.3/459.2 MB 1.9 MB/s eta 0:03:50\n", " - -------------------------------------- 18.3/459.2 MB 1.9 MB/s eta 0:03:51\n", " - -------------------------------------- 18.4/459.2 MB 1.9 MB/s eta 0:03:54\n", " - -------------------------------------- 18.5/459.2 MB 1.9 MB/s eta 0:03:54\n", " - -------------------------------------- 18.5/459.2 MB 1.9 MB/s eta 0:03:56\n", " - -------------------------------------- 18.6/459.2 MB 1.9 MB/s eta 0:03:57\n", " - -------------------------------------- 18.6/459.2 MB 1.8 MB/s eta 0:04:00\n", " - -------------------------------------- 18.7/459.2 MB 1.8 MB/s eta 0:04:00\n", " - -------------------------------------- 18.8/459.2 MB 1.8 MB/s eta 0:04:01\n", " - -------------------------------------- 18.8/459.2 MB 1.8 MB/s eta 0:04:03\n", " - -------------------------------------- 18.9/459.2 MB 1.8 MB/s eta 0:04:05\n", " - -------------------------------------- 18.9/459.2 MB 1.8 MB/s eta 0:04:07\n", " - -------------------------------------- 19.0/459.2 MB 1.8 MB/s eta 0:04:07\n", " - -------------------------------------- 19.1/459.2 MB 1.8 MB/s eta 0:04:09\n", " - -------------------------------------- 19.2/459.2 MB 1.8 MB/s eta 0:04:10\n", " - -------------------------------------- 19.2/459.2 MB 1.8 MB/s eta 0:04:11\n", " - -------------------------------------- 19.3/459.2 MB 1.7 MB/s eta 0:04:14\n", " - -------------------------------------- 19.4/459.2 MB 1.7 MB/s eta 0:04:14\n", " - -------------------------------------- 19.4/459.2 MB 1.7 MB/s eta 0:04:15\n", " - -------------------------------------- 19.5/459.2 MB 1.7 MB/s eta 0:04:17\n", " - -------------------------------------- 19.6/459.2 MB 1.7 MB/s eta 0:04:16\n", " - -------------------------------------- 19.7/459.2 MB 1.7 MB/s eta 0:04:18\n", " - -------------------------------------- 19.8/459.2 MB 1.7 MB/s eta 0:04:20\n", " - -------------------------------------- 19.9/459.2 MB 1.7 MB/s eta 0:04:22\n", " - -------------------------------------- 19.9/459.2 MB 1.7 MB/s eta 0:04:22\n", " - -------------------------------------- 20.0/459.2 MB 1.7 MB/s eta 0:04:24\n", " - -------------------------------------- 20.1/459.2 MB 1.7 MB/s eta 0:04:25\n", " - -------------------------------------- 20.2/459.2 MB 1.6 MB/s eta 0:04:27\n", " - -------------------------------------- 20.2/459.2 MB 1.6 MB/s eta 0:04:28\n", " - -------------------------------------- 20.3/459.2 MB 1.6 MB/s eta 0:04:29\n", " - -------------------------------------- 20.4/459.2 MB 1.6 MB/s eta 0:04:31\n", " - -------------------------------------- 20.5/459.2 MB 1.6 MB/s eta 0:04:31\n", " - -------------------------------------- 20.6/459.2 MB 1.6 MB/s eta 0:04:32\n", " - -------------------------------------- 20.6/459.2 MB 1.6 MB/s eta 0:04:33\n", " - -------------------------------------- 20.7/459.2 MB 1.6 MB/s eta 0:04:34\n", " - -------------------------------------- 20.8/459.2 MB 1.6 MB/s eta 0:04:35\n", " - -------------------------------------- 20.9/459.2 MB 1.6 MB/s eta 0:04:37\n", " - -------------------------------------- 21.0/459.2 MB 1.6 MB/s eta 0:04:38\n", " - -------------------------------------- 21.1/459.2 MB 1.6 MB/s eta 0:04:38\n", " - -------------------------------------- 21.2/459.2 MB 1.6 MB/s eta 0:04:39\n", " - -------------------------------------- 21.3/459.2 MB 1.6 MB/s eta 0:04:41\n", " - -------------------------------------- 21.4/459.2 MB 1.6 MB/s eta 0:04:41\n", " - -------------------------------------- 21.5/459.2 MB 1.6 MB/s eta 0:04:43\n", " - -------------------------------------- 21.6/459.2 MB 1.5 MB/s eta 0:04:44\n", " - -------------------------------------- 21.7/459.2 MB 1.6 MB/s eta 0:04:41\n", " - -------------------------------------- 21.8/459.2 MB 1.5 MB/s eta 0:04:44\n", " - -------------------------------------- 21.9/459.2 MB 1.5 MB/s eta 0:04:46\n", " - -------------------------------------- 22.0/459.2 MB 1.5 MB/s eta 0:04:46\n", " - -------------------------------------- 22.1/459.2 MB 1.5 MB/s eta 0:04:46\n", " - -------------------------------------- 22.2/459.2 MB 1.5 MB/s eta 0:04:46\n", " - -------------------------------------- 22.3/459.2 MB 1.5 MB/s eta 0:04:45\n", " - -------------------------------------- 22.4/459.2 MB 1.5 MB/s eta 0:04:46\n", " - -------------------------------------- 22.5/459.2 MB 1.5 MB/s eta 0:04:47\n", " - -------------------------------------- 22.6/459.2 MB 1.5 MB/s eta 0:04:48\n", " - -------------------------------------- 22.7/459.2 MB 1.5 MB/s eta 0:04:48\n", " - -------------------------------------- 22.8/459.2 MB 1.5 MB/s eta 0:04:48\n", " - -------------------------------------- 22.9/459.2 MB 1.5 MB/s eta 0:04:48\n", " -- ------------------------------------- 23.0/459.2 MB 1.5 MB/s eta 0:04:48\n", " -- ------------------------------------- 23.1/459.2 MB 1.5 MB/s eta 0:04:48\n", " -- ------------------------------------- 23.2/459.2 MB 1.5 MB/s eta 0:04:49\n", " -- ------------------------------------- 23.4/459.2 MB 1.5 MB/s eta 0:04:49\n", " -- ------------------------------------- 23.5/459.2 MB 1.5 MB/s eta 0:04:49\n", " -- ------------------------------------- 23.6/459.2 MB 1.5 MB/s eta 0:04:48\n", " -- ------------------------------------- 23.7/459.2 MB 1.5 MB/s eta 0:04:49\n", " -- ------------------------------------- 23.8/459.2 MB 1.5 MB/s eta 0:04:48\n", " -- ------------------------------------- 24.0/459.2 MB 1.5 MB/s eta 0:04:48\n", " -- ------------------------------------- 24.1/459.2 MB 1.5 MB/s eta 0:04:50\n", " -- ------------------------------------- 24.2/459.2 MB 1.5 MB/s eta 0:04:49\n", " -- ------------------------------------- 24.3/459.2 MB 1.5 MB/s eta 0:04:49\n", " -- ------------------------------------- 24.5/459.2 MB 1.5 MB/s eta 0:04:49\n", " -- ------------------------------------- 24.6/459.2 MB 1.5 MB/s eta 0:04:49\n", " -- ------------------------------------- 24.7/459.2 MB 1.5 MB/s eta 0:04:48\n", " -- ------------------------------------- 24.8/459.2 MB 1.5 MB/s eta 0:04:47\n", " -- ------------------------------------- 25.0/459.2 MB 1.5 MB/s eta 0:04:47\n", " -- ------------------------------------- 25.1/459.2 MB 1.5 MB/s eta 0:04:47\n", " -- ------------------------------------- 25.2/459.2 MB 1.5 MB/s eta 0:04:46\n", " -- ------------------------------------- 25.4/459.2 MB 1.5 MB/s eta 0:04:47\n", " -- ------------------------------------- 25.5/459.2 MB 1.5 MB/s eta 0:04:47\n", " -- ------------------------------------- 25.6/459.2 MB 1.5 MB/s eta 0:04:45\n", " -- ------------------------------------- 25.8/459.2 MB 1.5 MB/s eta 0:04:45\n", " -- ------------------------------------- 25.9/459.2 MB 1.5 MB/s eta 0:04:44\n", " -- ------------------------------------- 26.1/459.2 MB 1.5 MB/s eta 0:04:42\n", " -- ------------------------------------- 26.1/459.2 MB 1.5 MB/s eta 0:04:43\n", " -- ------------------------------------- 26.3/459.2 MB 1.5 MB/s eta 0:04:41\n", " -- ------------------------------------- 26.4/459.2 MB 1.5 MB/s eta 0:04:43\n", " -- ------------------------------------- 26.5/459.2 MB 1.5 MB/s eta 0:04:42\n", " -- ------------------------------------- 26.6/459.2 MB 1.5 MB/s eta 0:04:42\n", " -- ------------------------------------- 26.7/459.2 MB 1.5 MB/s eta 0:04:42\n", " -- ------------------------------------- 26.8/459.2 MB 1.5 MB/s eta 0:04:41\n", " -- ------------------------------------- 27.0/459.2 MB 1.5 MB/s eta 0:04:42\n", " -- ------------------------------------- 27.1/459.2 MB 1.5 MB/s eta 0:04:42\n", " -- ------------------------------------- 27.2/459.2 MB 1.5 MB/s eta 0:04:41\n", " -- ------------------------------------- 27.4/459.2 MB 1.5 MB/s eta 0:04:41\n", " -- ------------------------------------- 27.5/459.2 MB 1.5 MB/s eta 0:04:40\n", " -- ------------------------------------- 27.6/459.2 MB 1.5 MB/s eta 0:04:39\n", " -- ------------------------------------- 27.8/459.2 MB 1.6 MB/s eta 0:04:37\n", " -- ------------------------------------- 27.9/459.2 MB 1.6 MB/s eta 0:04:37\n", " -- ------------------------------------- 28.0/459.2 MB 1.6 MB/s eta 0:04:30\n", " -- ------------------------------------- 28.1/459.2 MB 1.6 MB/s eta 0:04:30\n", " -- ------------------------------------- 28.2/459.2 MB 1.6 MB/s eta 0:04:29\n", " -- ------------------------------------- 28.3/459.2 MB 1.6 MB/s eta 0:04:24\n", " -- ------------------------------------- 28.5/459.2 MB 1.7 MB/s eta 0:04:20\n", " -- ------------------------------------- 28.7/459.2 MB 1.7 MB/s eta 0:04:14\n", " -- ------------------------------------- 28.8/459.2 MB 1.7 MB/s eta 0:04:10\n", " -- ------------------------------------- 28.9/459.2 MB 1.7 MB/s eta 0:04:08\n", " -- ------------------------------------- 29.1/459.2 MB 1.8 MB/s eta 0:04:04\n", " -- ------------------------------------- 29.2/459.2 MB 1.8 MB/s eta 0:04:01\n", " -- ------------------------------------- 29.3/459.2 MB 1.8 MB/s eta 0:03:58\n", " -- ------------------------------------- 29.4/459.2 MB 1.8 MB/s eta 0:03:56\n", " -- ------------------------------------- 29.5/459.2 MB 1.8 MB/s eta 0:03:53\n", " -- ------------------------------------- 29.6/459.2 MB 1.9 MB/s eta 0:03:51\n", " -- ------------------------------------- 29.7/459.2 MB 1.9 MB/s eta 0:03:49\n", " -- ------------------------------------- 29.9/459.2 MB 1.9 MB/s eta 0:03:47\n", " -- ------------------------------------- 30.0/459.2 MB 1.9 MB/s eta 0:03:44\n", " -- ------------------------------------- 30.1/459.2 MB 1.9 MB/s eta 0:03:43\n", " -- ------------------------------------- 30.2/459.2 MB 2.0 MB/s eta 0:03:40\n", " -- ------------------------------------- 30.3/459.2 MB 1.9 MB/s eta 0:03:41\n", " -- ------------------------------------- 30.5/459.2 MB 2.0 MB/s eta 0:03:37\n", " -- ------------------------------------- 30.6/459.2 MB 2.0 MB/s eta 0:03:35\n", " -- ------------------------------------- 30.8/459.2 MB 2.0 MB/s eta 0:03:32\n", " -- ------------------------------------- 31.0/459.2 MB 2.0 MB/s eta 0:03:30\n", " -- ------------------------------------- 31.1/459.2 MB 2.1 MB/s eta 0:03:28\n", " -- ------------------------------------- 31.2/459.2 MB 2.1 MB/s eta 0:03:27\n", " -- ------------------------------------- 31.4/459.2 MB 2.1 MB/s eta 0:03:24\n", " -- ------------------------------------- 31.5/459.2 MB 2.1 MB/s eta 0:03:24\n", " -- ------------------------------------- 31.7/459.2 MB 2.1 MB/s eta 0:03:23\n", " -- ------------------------------------- 31.8/459.2 MB 2.1 MB/s eta 0:03:22\n", " -- ------------------------------------- 31.9/459.2 MB 2.1 MB/s eta 0:03:20\n", " -- ------------------------------------- 32.1/459.2 MB 2.1 MB/s eta 0:03:19\n", " -- ------------------------------------- 32.2/459.2 MB 2.2 MB/s eta 0:03:17\n", " -- ------------------------------------- 32.3/459.2 MB 2.2 MB/s eta 0:03:17\n", " -- ------------------------------------- 32.5/459.2 MB 2.2 MB/s eta 0:03:17\n", " -- ------------------------------------- 32.6/459.2 MB 2.2 MB/s eta 0:03:15\n", " -- ------------------------------------- 32.8/459.2 MB 2.2 MB/s eta 0:03:15\n", " -- ------------------------------------- 32.9/459.2 MB 2.2 MB/s eta 0:03:13\n", " -- ------------------------------------- 33.1/459.2 MB 2.2 MB/s eta 0:03:12\n", " -- ------------------------------------- 33.2/459.2 MB 2.2 MB/s eta 0:03:11\n", " -- ------------------------------------- 33.4/459.2 MB 2.2 MB/s eta 0:03:10\n", " -- ------------------------------------- 33.5/459.2 MB 2.3 MB/s eta 0:03:09\n", " -- ------------------------------------- 33.7/459.2 MB 2.3 MB/s eta 0:03:08\n", " -- ------------------------------------- 33.8/459.2 MB 2.3 MB/s eta 0:03:08\n", " -- ------------------------------------- 34.0/459.2 MB 2.3 MB/s eta 0:03:06\n", " -- ------------------------------------- 34.2/459.2 MB 2.3 MB/s eta 0:03:06\n", " -- ------------------------------------- 34.3/459.2 MB 2.3 MB/s eta 0:03:05\n", " --- ------------------------------------ 34.5/459.2 MB 2.3 MB/s eta 0:03:04\n", " --- ------------------------------------ 34.6/459.2 MB 2.3 MB/s eta 0:03:03\n", " --- ------------------------------------ 34.8/459.2 MB 2.3 MB/s eta 0:03:03\n", " --- ------------------------------------ 34.9/459.2 MB 2.3 MB/s eta 0:03:02\n", " --- ------------------------------------ 35.0/459.2 MB 2.3 MB/s eta 0:03:02\n", " --- ------------------------------------ 35.1/459.2 MB 2.3 MB/s eta 0:03:01\n", " --- ------------------------------------ 35.3/459.2 MB 2.3 MB/s eta 0:03:01\n", " --- ------------------------------------ 35.4/459.2 MB 2.3 MB/s eta 0:03:01\n", " --- ------------------------------------ 35.5/459.2 MB 2.4 MB/s eta 0:03:00\n", " --- ------------------------------------ 35.6/459.2 MB 2.4 MB/s eta 0:03:00\n", " --- ------------------------------------ 35.7/459.2 MB 2.4 MB/s eta 0:03:00\n", " --- ------------------------------------ 35.8/459.2 MB 2.4 MB/s eta 0:03:00\n", " --- ------------------------------------ 35.9/459.2 MB 2.4 MB/s eta 0:03:00\n", " --- ------------------------------------ 36.0/459.2 MB 2.4 MB/s eta 0:02:59\n", " --- ------------------------------------ 36.2/459.2 MB 2.4 MB/s eta 0:02:59\n", " --- ------------------------------------ 36.3/459.2 MB 2.4 MB/s eta 0:02:59\n", " --- ------------------------------------ 36.4/459.2 MB 2.4 MB/s eta 0:02:58\n", " --- ------------------------------------ 36.5/459.2 MB 2.4 MB/s eta 0:02:58\n", " --- ------------------------------------ 36.6/459.2 MB 2.4 MB/s eta 0:02:57\n", " --- ------------------------------------ 36.8/459.2 MB 2.4 MB/s eta 0:02:57\n", " --- ------------------------------------ 36.9/459.2 MB 2.4 MB/s eta 0:02:58\n", " --- ------------------------------------ 37.0/459.2 MB 2.4 MB/s eta 0:02:58\n", " --- ------------------------------------ 37.1/459.2 MB 2.4 MB/s eta 0:02:57\n", " --- ------------------------------------ 37.2/459.2 MB 2.4 MB/s eta 0:02:56\n", " --- ------------------------------------ 37.3/459.2 MB 2.4 MB/s eta 0:02:56\n", " --- ------------------------------------ 37.4/459.2 MB 2.4 MB/s eta 0:02:56\n", " --- ------------------------------------ 37.6/459.2 MB 2.4 MB/s eta 0:02:56\n", " --- ------------------------------------ 37.7/459.2 MB 2.4 MB/s eta 0:02:56\n", " --- ------------------------------------ 37.9/459.2 MB 2.4 MB/s eta 0:02:56\n", " --- ------------------------------------ 38.1/459.2 MB 2.4 MB/s eta 0:02:56\n", " --- ------------------------------------ 38.1/459.2 MB 2.4 MB/s eta 0:02:56\n", " --- ------------------------------------ 38.3/459.2 MB 2.4 MB/s eta 0:02:57\n", " --- ------------------------------------ 38.5/459.2 MB 2.4 MB/s eta 0:02:57\n", " --- ------------------------------------ 38.6/459.2 MB 2.4 MB/s eta 0:02:57\n", " --- ------------------------------------ 38.7/459.2 MB 2.4 MB/s eta 0:02:58\n", " --- ------------------------------------ 38.9/459.2 MB 2.4 MB/s eta 0:02:58\n", " --- ------------------------------------ 39.0/459.2 MB 2.4 MB/s eta 0:02:58\n", " --- ------------------------------------ 39.1/459.2 MB 2.4 MB/s eta 0:02:59\n", " --- ------------------------------------ 39.2/459.2 MB 2.3 MB/s eta 0:02:59\n", " --- ------------------------------------ 39.3/459.2 MB 2.3 MB/s eta 0:02:59\n", " --- ------------------------------------ 39.4/459.2 MB 2.3 MB/s eta 0:03:01\n", " --- ------------------------------------ 39.5/459.2 MB 2.3 MB/s eta 0:03:02\n", " --- ------------------------------------ 39.7/459.2 MB 2.3 MB/s eta 0:03:02\n", " --- ------------------------------------ 39.8/459.2 MB 2.3 MB/s eta 0:03:02\n", " --- ------------------------------------ 40.0/459.2 MB 2.3 MB/s eta 0:03:02\n", " --- ------------------------------------ 40.1/459.2 MB 2.3 MB/s eta 0:03:02\n", " --- ------------------------------------ 40.2/459.2 MB 2.3 MB/s eta 0:03:03\n", " --- ------------------------------------ 40.4/459.2 MB 2.3 MB/s eta 0:03:02\n", " --- ------------------------------------ 40.5/459.2 MB 2.3 MB/s eta 0:03:01\n", " --- ------------------------------------ 40.6/459.2 MB 2.3 MB/s eta 0:03:01\n", " --- ------------------------------------ 40.7/459.2 MB 2.3 MB/s eta 0:03:03\n", " --- ------------------------------------ 40.9/459.2 MB 2.3 MB/s eta 0:03:03\n", " --- ------------------------------------ 41.0/459.2 MB 2.3 MB/s eta 0:03:03\n", " --- ------------------------------------ 41.1/459.2 MB 2.3 MB/s eta 0:03:03\n", " --- ------------------------------------ 41.3/459.2 MB 2.3 MB/s eta 0:03:03\n", " --- ------------------------------------ 41.4/459.2 MB 2.3 MB/s eta 0:03:04\n", " --- ------------------------------------ 41.5/459.2 MB 2.3 MB/s eta 0:03:04\n", " --- ------------------------------------ 41.7/459.2 MB 2.3 MB/s eta 0:03:04\n", " --- ------------------------------------ 41.8/459.2 MB 2.3 MB/s eta 0:03:03\n", " --- ------------------------------------ 41.9/459.2 MB 2.3 MB/s eta 0:03:05\n", " --- ------------------------------------ 42.1/459.2 MB 2.3 MB/s eta 0:03:05\n", " --- ------------------------------------ 42.2/459.2 MB 2.3 MB/s eta 0:03:04\n", " --- ------------------------------------ 42.3/459.2 MB 2.3 MB/s eta 0:03:04\n", " --- ------------------------------------ 42.3/459.2 MB 2.3 MB/s eta 0:03:04\n", " --- ------------------------------------ 42.5/459.2 MB 2.3 MB/s eta 0:03:06\n", " --- ------------------------------------ 42.6/459.2 MB 2.3 MB/s eta 0:03:05\n", " --- ------------------------------------ 42.8/459.2 MB 2.3 MB/s eta 0:03:05\n", " --- ------------------------------------ 42.9/459.2 MB 2.3 MB/s eta 0:03:05\n", " --- ------------------------------------ 43.0/459.2 MB 2.3 MB/s eta 0:03:04\n", " --- ------------------------------------ 43.2/459.2 MB 2.3 MB/s eta 0:03:04\n", " --- ------------------------------------ 43.3/459.2 MB 2.3 MB/s eta 0:03:04\n", " --- ------------------------------------ 43.4/459.2 MB 2.3 MB/s eta 0:03:04\n", " --- ------------------------------------ 43.5/459.2 MB 2.3 MB/s eta 0:03:04\n", " --- ------------------------------------ 43.5/459.2 MB 2.3 MB/s eta 0:03:05\n", " --- ------------------------------------ 43.6/459.2 MB 2.2 MB/s eta 0:03:06\n", " --- ------------------------------------ 43.7/459.2 MB 2.2 MB/s eta 0:03:06\n", " --- ------------------------------------ 43.8/459.2 MB 2.2 MB/s eta 0:03:06\n", " --- ------------------------------------ 43.9/459.2 MB 2.2 MB/s eta 0:03:07\n", " --- ------------------------------------ 43.9/459.2 MB 2.2 MB/s eta 0:03:07\n", " --- ------------------------------------ 44.0/459.2 MB 2.2 MB/s eta 0:03:09\n", " --- ------------------------------------ 44.2/459.2 MB 2.2 MB/s eta 0:03:09\n", " --- ------------------------------------ 44.3/459.2 MB 2.2 MB/s eta 0:03:09\n", " --- ------------------------------------ 44.4/459.2 MB 2.2 MB/s eta 0:03:08\n", " --- ------------------------------------ 44.5/459.2 MB 2.2 MB/s eta 0:03:08\n", " --- ------------------------------------ 44.7/459.2 MB 2.2 MB/s eta 0:03:09\n", " --- ------------------------------------ 44.8/459.2 MB 2.2 MB/s eta 0:03:08\n", " --- ------------------------------------ 44.9/459.2 MB 2.2 MB/s eta 0:03:08\n", " --- ------------------------------------ 45.0/459.2 MB 2.2 MB/s eta 0:03:08\n", " --- ------------------------------------ 45.1/459.2 MB 2.2 MB/s eta 0:03:08\n", " --- ------------------------------------ 45.3/459.2 MB 2.2 MB/s eta 0:03:08\n", " --- ------------------------------------ 45.4/459.2 MB 2.2 MB/s eta 0:03:08\n", " --- ------------------------------------ 45.6/459.2 MB 2.2 MB/s eta 0:03:08\n", " --- ------------------------------------ 45.7/459.2 MB 2.2 MB/s eta 0:03:08\n", " --- ------------------------------------ 45.8/459.2 MB 2.2 MB/s eta 0:03:08\n", " ---- ----------------------------------- 46.0/459.2 MB 2.2 MB/s eta 0:03:08\n", " ---- ----------------------------------- 46.1/459.2 MB 2.2 MB/s eta 0:03:09\n", " ---- ----------------------------------- 46.3/459.2 MB 2.2 MB/s eta 0:03:08\n", " ---- ----------------------------------- 46.3/459.2 MB 2.2 MB/s eta 0:03:10\n", " ---- ----------------------------------- 46.5/459.2 MB 2.2 MB/s eta 0:03:10\n", " ---- ----------------------------------- 46.7/459.2 MB 2.2 MB/s eta 0:03:09\n", " ---- ----------------------------------- 46.8/459.2 MB 2.2 MB/s eta 0:03:09\n", " ---- ----------------------------------- 46.8/459.2 MB 2.2 MB/s eta 0:03:09\n", " ---- ----------------------------------- 47.1/459.2 MB 2.2 MB/s eta 0:03:09\n", " ---- ----------------------------------- 47.2/459.2 MB 2.2 MB/s eta 0:03:10\n", " ---- ----------------------------------- 47.3/459.2 MB 2.2 MB/s eta 0:03:11\n", " ---- ----------------------------------- 47.4/459.2 MB 2.2 MB/s eta 0:03:11\n", " ---- ----------------------------------- 47.6/459.2 MB 2.2 MB/s eta 0:03:12\n", " ---- ----------------------------------- 47.7/459.2 MB 2.2 MB/s eta 0:03:12\n", " ---- ----------------------------------- 47.8/459.2 MB 2.2 MB/s eta 0:03:11\n", " ---- ----------------------------------- 48.0/459.2 MB 2.2 MB/s eta 0:03:11\n", " ---- ----------------------------------- 48.1/459.2 MB 2.2 MB/s eta 0:03:11\n", " ---- ----------------------------------- 48.3/459.2 MB 2.2 MB/s eta 0:03:11\n", " ---- ----------------------------------- 48.4/459.2 MB 2.2 MB/s eta 0:03:11\n", " ---- ----------------------------------- 48.5/459.2 MB 2.1 MB/s eta 0:03:12\n", " ---- ----------------------------------- 48.7/459.2 MB 2.1 MB/s eta 0:03:12\n", " ---- ----------------------------------- 48.9/459.2 MB 2.2 MB/s eta 0:03:10\n", " ---- ----------------------------------- 49.0/459.2 MB 2.2 MB/s eta 0:03:10\n", " ---- ----------------------------------- 49.1/459.2 MB 2.2 MB/s eta 0:03:10\n", " ---- ----------------------------------- 49.2/459.2 MB 2.2 MB/s eta 0:03:10\n", " ---- ----------------------------------- 49.4/459.2 MB 2.2 MB/s eta 0:03:09\n", " ---- ----------------------------------- 49.5/459.2 MB 2.2 MB/s eta 0:03:08\n", " ---- ----------------------------------- 49.6/459.2 MB 2.2 MB/s eta 0:03:07\n", " ---- ----------------------------------- 49.7/459.2 MB 2.2 MB/s eta 0:03:06\n", " ---- ----------------------------------- 49.8/459.2 MB 2.2 MB/s eta 0:03:06\n", " ---- ----------------------------------- 50.0/459.2 MB 2.2 MB/s eta 0:03:06\n", " ---- ----------------------------------- 50.1/459.2 MB 2.2 MB/s eta 0:03:05\n", " ---- ----------------------------------- 50.2/459.2 MB 2.2 MB/s eta 0:03:04\n", " ---- ----------------------------------- 50.4/459.2 MB 2.2 MB/s eta 0:03:05\n", " ---- ----------------------------------- 50.5/459.2 MB 2.2 MB/s eta 0:03:04\n", " ---- ----------------------------------- 50.6/459.2 MB 2.2 MB/s eta 0:03:04\n", " ---- ----------------------------------- 50.8/459.2 MB 2.2 MB/s eta 0:03:03\n", " ---- ----------------------------------- 50.9/459.2 MB 2.2 MB/s eta 0:03:03\n", " ---- ----------------------------------- 51.1/459.2 MB 2.3 MB/s eta 0:03:02\n", " ---- ----------------------------------- 51.1/459.2 MB 2.2 MB/s eta 0:03:02\n", " ---- ----------------------------------- 51.2/459.2 MB 2.2 MB/s eta 0:03:04\n", " ---- ----------------------------------- 51.5/459.2 MB 2.2 MB/s eta 0:03:02\n", " ---- ----------------------------------- 51.6/459.2 MB 2.2 MB/s eta 0:03:03\n", " ---- ----------------------------------- 51.7/459.2 MB 2.2 MB/s eta 0:03:03\n", " ---- ----------------------------------- 51.8/459.2 MB 2.2 MB/s eta 0:03:03\n", " ---- ----------------------------------- 52.0/459.2 MB 2.2 MB/s eta 0:03:02\n", " ---- ----------------------------------- 52.0/459.2 MB 2.2 MB/s eta 0:03:01\n", " ---- ----------------------------------- 52.2/459.2 MB 2.2 MB/s eta 0:03:01\n", " ---- ----------------------------------- 52.3/459.2 MB 2.2 MB/s eta 0:03:03\n", " ---- ----------------------------------- 52.4/459.2 MB 2.2 MB/s eta 0:03:02\n", " ---- ----------------------------------- 52.5/459.2 MB 2.2 MB/s eta 0:03:02\n", " ---- ----------------------------------- 52.7/459.2 MB 2.2 MB/s eta 0:03:02\n", " ---- ----------------------------------- 52.8/459.2 MB 2.2 MB/s eta 0:03:01\n", " ---- ----------------------------------- 52.9/459.2 MB 2.2 MB/s eta 0:03:02\n", " ---- ----------------------------------- 53.0/459.2 MB 2.2 MB/s eta 0:03:01\n", " ---- ----------------------------------- 53.1/459.2 MB 2.2 MB/s eta 0:03:01\n", " ---- ----------------------------------- 53.3/459.2 MB 2.2 MB/s eta 0:03:02\n", " ---- ----------------------------------- 53.4/459.2 MB 2.2 MB/s eta 0:03:02\n", " ---- ----------------------------------- 53.5/459.2 MB 2.2 MB/s eta 0:03:02\n", " ---- ----------------------------------- 53.6/459.2 MB 2.2 MB/s eta 0:03:03\n", " ---- ----------------------------------- 53.7/459.2 MB 2.2 MB/s eta 0:03:03\n", " ---- ----------------------------------- 53.8/459.2 MB 2.2 MB/s eta 0:03:01\n", " ---- ----------------------------------- 53.9/459.2 MB 2.2 MB/s eta 0:03:01\n", " ---- ----------------------------------- 54.0/459.2 MB 2.2 MB/s eta 0:03:01\n", " ---- ----------------------------------- 54.1/459.2 MB 2.3 MB/s eta 0:03:00\n", " ---- ----------------------------------- 54.3/459.2 MB 2.3 MB/s eta 0:02:59\n", " ---- ----------------------------------- 54.3/459.2 MB 2.3 MB/s eta 0:03:00\n", " ---- ----------------------------------- 54.4/459.2 MB 2.3 MB/s eta 0:03:00\n", " ---- ----------------------------------- 54.6/459.2 MB 2.3 MB/s eta 0:03:00\n", " ---- ----------------------------------- 54.7/459.2 MB 2.3 MB/s eta 0:03:00\n", " ---- ----------------------------------- 54.7/459.2 MB 2.2 MB/s eta 0:03:01\n", " ---- ----------------------------------- 54.8/459.2 MB 2.2 MB/s eta 0:03:01\n", " ---- ----------------------------------- 55.0/459.2 MB 2.2 MB/s eta 0:03:01\n", " ---- ----------------------------------- 55.1/459.2 MB 2.2 MB/s eta 0:03:00\n", " ---- ----------------------------------- 55.2/459.2 MB 2.2 MB/s eta 0:03:01\n", " ---- ----------------------------------- 55.4/459.2 MB 2.2 MB/s eta 0:03:00\n", " ---- ----------------------------------- 55.5/459.2 MB 2.2 MB/s eta 0:03:00\n", " ---- ----------------------------------- 55.7/459.2 MB 2.2 MB/s eta 0:03:00\n", " ---- ----------------------------------- 55.8/459.2 MB 2.2 MB/s eta 0:03:00\n", " ---- ----------------------------------- 56.0/459.2 MB 2.2 MB/s eta 0:03:00\n", " ---- ----------------------------------- 56.1/459.2 MB 2.2 MB/s eta 0:03:00\n", " ---- ----------------------------------- 56.3/459.2 MB 2.2 MB/s eta 0:03:00\n", " ---- ----------------------------------- 56.4/459.2 MB 2.2 MB/s eta 0:03:00\n", " ---- ----------------------------------- 56.6/459.2 MB 2.3 MB/s eta 0:02:58\n", " ---- ----------------------------------- 56.7/459.2 MB 2.3 MB/s eta 0:02:58\n", " ---- ----------------------------------- 56.8/459.2 MB 2.3 MB/s eta 0:02:58\n", " ---- ----------------------------------- 56.9/459.2 MB 2.3 MB/s eta 0:02:59\n", " ---- ----------------------------------- 56.9/459.2 MB 2.3 MB/s eta 0:02:59\n", " ---- ----------------------------------- 57.1/459.2 MB 2.3 MB/s eta 0:02:57\n", " ---- ----------------------------------- 57.2/459.2 MB 2.3 MB/s eta 0:02:59\n", " ---- ----------------------------------- 57.3/459.2 MB 2.2 MB/s eta 0:03:00\n", " ----- ---------------------------------- 57.5/459.2 MB 2.2 MB/s eta 0:03:00\n", " ----- ---------------------------------- 57.6/459.2 MB 2.2 MB/s eta 0:02:59\n", " ----- ---------------------------------- 57.7/459.2 MB 2.2 MB/s eta 0:03:00\n", " ----- ---------------------------------- 57.8/459.2 MB 2.3 MB/s eta 0:02:59\n", " ----- ---------------------------------- 58.0/459.2 MB 2.2 MB/s eta 0:02:59\n", " ----- ---------------------------------- 58.1/459.2 MB 2.2 MB/s eta 0:03:00\n", " ----- ---------------------------------- 58.2/459.2 MB 2.2 MB/s eta 0:03:00\n", " ----- ---------------------------------- 58.3/459.2 MB 2.2 MB/s eta 0:03:00\n", " ----- ---------------------------------- 58.4/459.2 MB 2.2 MB/s eta 0:03:00\n", " ----- ---------------------------------- 58.5/459.2 MB 2.2 MB/s eta 0:03:01\n", " ----- ---------------------------------- 58.6/459.2 MB 2.2 MB/s eta 0:03:00\n", " ----- ---------------------------------- 58.8/459.2 MB 2.2 MB/s eta 0:03:00\n", " ----- ---------------------------------- 58.9/459.2 MB 2.2 MB/s eta 0:03:01\n", " ----- ---------------------------------- 59.1/459.2 MB 2.2 MB/s eta 0:03:02\n", " ----- ---------------------------------- 59.2/459.2 MB 2.2 MB/s eta 0:03:01\n", " ----- ---------------------------------- 59.3/459.2 MB 2.2 MB/s eta 0:03:02\n", " ----- ---------------------------------- 59.5/459.2 MB 2.2 MB/s eta 0:03:02\n", " ----- ---------------------------------- 59.6/459.2 MB 2.2 MB/s eta 0:03:02\n", " ----- ---------------------------------- 59.7/459.2 MB 2.2 MB/s eta 0:03:03\n", " ----- ---------------------------------- 59.9/459.2 MB 2.2 MB/s eta 0:03:03\n", " ----- ---------------------------------- 60.0/459.2 MB 2.2 MB/s eta 0:03:03\n", " ----- ---------------------------------- 60.1/459.2 MB 2.2 MB/s eta 0:03:03\n", " ----- ---------------------------------- 60.3/459.2 MB 2.2 MB/s eta 0:03:03\n", " ----- ---------------------------------- 60.4/459.2 MB 2.2 MB/s eta 0:03:04\n", " ----- ---------------------------------- 60.6/459.2 MB 2.2 MB/s eta 0:03:04\n", " ----- ---------------------------------- 60.7/459.2 MB 2.2 MB/s eta 0:03:03\n", " ----- ---------------------------------- 60.8/459.2 MB 2.2 MB/s eta 0:03:04\n", " ----- ---------------------------------- 60.9/459.2 MB 2.2 MB/s eta 0:03:03\n", " ----- ---------------------------------- 61.0/459.2 MB 2.2 MB/s eta 0:03:04\n", " ----- ---------------------------------- 61.2/459.2 MB 2.2 MB/s eta 0:03:04\n", " ----- ---------------------------------- 61.3/459.2 MB 2.2 MB/s eta 0:03:05\n", " ----- ---------------------------------- 61.4/459.2 MB 2.2 MB/s eta 0:03:03\n", " ----- ---------------------------------- 61.6/459.2 MB 2.2 MB/s eta 0:03:04\n", " ----- ---------------------------------- 61.7/459.2 MB 2.2 MB/s eta 0:03:03\n", " ----- ---------------------------------- 61.9/459.2 MB 2.2 MB/s eta 0:03:03\n", " ----- ---------------------------------- 62.0/459.2 MB 2.2 MB/s eta 0:03:02\n", " ----- ---------------------------------- 62.1/459.2 MB 2.2 MB/s eta 0:03:01\n", " ----- ---------------------------------- 62.3/459.2 MB 2.2 MB/s eta 0:03:01\n", " ----- ---------------------------------- 62.4/459.2 MB 2.2 MB/s eta 0:03:01\n", " ----- ---------------------------------- 62.5/459.2 MB 2.2 MB/s eta 0:03:01\n", " ----- ---------------------------------- 62.6/459.2 MB 2.2 MB/s eta 0:03:02\n", " ----- ---------------------------------- 62.8/459.2 MB 2.2 MB/s eta 0:03:00\n", " ----- ---------------------------------- 63.0/459.2 MB 2.2 MB/s eta 0:03:00\n", " ----- ---------------------------------- 63.1/459.2 MB 2.2 MB/s eta 0:03:01\n", " ----- ---------------------------------- 63.2/459.2 MB 2.2 MB/s eta 0:03:00\n", " ----- ---------------------------------- 63.4/459.2 MB 2.2 MB/s eta 0:03:00\n", " ----- ---------------------------------- 63.5/459.2 MB 2.2 MB/s eta 0:02:59\n", " ----- ---------------------------------- 63.6/459.2 MB 2.2 MB/s eta 0:02:59\n", " ----- ---------------------------------- 63.8/459.2 MB 2.2 MB/s eta 0:02:58\n", " ----- ---------------------------------- 63.9/459.2 MB 2.2 MB/s eta 0:02:58\n", " ----- ---------------------------------- 64.0/459.2 MB 2.2 MB/s eta 0:02:58\n", " ----- ---------------------------------- 64.1/459.2 MB 2.2 MB/s eta 0:02:57\n", " ----- ---------------------------------- 64.3/459.2 MB 2.2 MB/s eta 0:02:57\n", " ----- ---------------------------------- 64.4/459.2 MB 2.2 MB/s eta 0:02:57\n", " ----- ---------------------------------- 64.5/459.2 MB 2.2 MB/s eta 0:02:56\n", " ----- ---------------------------------- 64.7/459.2 MB 2.2 MB/s eta 0:02:57\n", " ----- ---------------------------------- 64.8/459.2 MB 2.2 MB/s eta 0:02:56\n", " ----- ---------------------------------- 65.0/459.2 MB 2.2 MB/s eta 0:02:56\n", " ----- ---------------------------------- 65.2/459.2 MB 2.3 MB/s eta 0:02:56\n", " ----- ---------------------------------- 65.3/459.2 MB 2.2 MB/s eta 0:02:56\n", " ----- ---------------------------------- 65.5/459.2 MB 2.3 MB/s eta 0:02:55\n", " ----- ---------------------------------- 65.6/459.2 MB 2.2 MB/s eta 0:02:55\n", " ----- ---------------------------------- 65.6/459.2 MB 2.2 MB/s eta 0:02:55\n", " ----- ---------------------------------- 65.9/459.2 MB 2.2 MB/s eta 0:02:56\n", " ----- ---------------------------------- 66.0/459.2 MB 2.2 MB/s eta 0:02:56\n", " ----- ---------------------------------- 66.1/459.2 MB 2.2 MB/s eta 0:02:57\n", " ----- ---------------------------------- 66.2/459.2 MB 2.2 MB/s eta 0:02:57\n", " ----- ---------------------------------- 66.3/459.2 MB 2.2 MB/s eta 0:02:58\n", " ----- ---------------------------------- 66.5/459.2 MB 2.2 MB/s eta 0:02:57\n", " ----- ---------------------------------- 66.6/459.2 MB 2.2 MB/s eta 0:02:59\n", " ----- ---------------------------------- 66.7/459.2 MB 2.2 MB/s eta 0:02:58\n", " ----- ---------------------------------- 66.9/459.2 MB 2.2 MB/s eta 0:02:58\n", " ----- ---------------------------------- 67.0/459.2 MB 2.2 MB/s eta 0:02:59\n", " ----- ---------------------------------- 67.0/459.2 MB 2.2 MB/s eta 0:02:59\n", " ----- ---------------------------------- 67.1/459.2 MB 2.2 MB/s eta 0:03:03\n", " ----- ---------------------------------- 67.1/459.2 MB 2.2 MB/s eta 0:03:02\n", " ----- ---------------------------------- 67.2/459.2 MB 2.2 MB/s eta 0:03:02\n", " ----- ---------------------------------- 67.2/459.2 MB 2.1 MB/s eta 0:03:03\n", " ----- ---------------------------------- 67.2/459.2 MB 2.1 MB/s eta 0:03:05\n", " ----- ---------------------------------- 67.2/459.2 MB 2.1 MB/s eta 0:03:05\n", " ----- ---------------------------------- 67.3/459.2 MB 2.1 MB/s eta 0:03:09\n", " ----- ---------------------------------- 67.3/459.2 MB 2.1 MB/s eta 0:03:11\n", " ----- ---------------------------------- 67.3/459.2 MB 2.0 MB/s eta 0:03:12\n", " ----- ---------------------------------- 67.4/459.2 MB 2.0 MB/s eta 0:03:14\n", " ----- ---------------------------------- 67.4/459.2 MB 2.0 MB/s eta 0:03:14\n", " ----- ---------------------------------- 67.5/459.2 MB 2.0 MB/s eta 0:03:19\n", " ----- ---------------------------------- 67.5/459.2 MB 2.0 MB/s eta 0:03:19\n", " ----- ---------------------------------- 67.5/459.2 MB 1.9 MB/s eta 0:03:22\n", " ----- ---------------------------------- 67.5/459.2 MB 1.9 MB/s eta 0:03:22\n", " ----- ---------------------------------- 67.5/459.2 MB 1.9 MB/s eta 0:03:26\n", " ----- ---------------------------------- 67.5/459.2 MB 1.9 MB/s eta 0:03:28\n", " ----- ---------------------------------- 67.5/459.2 MB 1.9 MB/s eta 0:03:28\n", " ----- ---------------------------------- 67.5/459.2 MB 1.9 MB/s eta 0:03:31\n", " ----- ---------------------------------- 67.5/459.2 MB 1.9 MB/s eta 0:03:31\n", " ----- ---------------------------------- 67.5/459.2 MB 1.8 MB/s eta 0:03:35\n", " ----- ---------------------------------- 67.5/459.2 MB 1.8 MB/s eta 0:03:37\n", " ----- ---------------------------------- 67.6/459.2 MB 1.8 MB/s eta 0:03:39\n", " ----- ---------------------------------- 67.6/459.2 MB 1.8 MB/s eta 0:03:39\n", " ----- ---------------------------------- 67.6/459.2 MB 1.8 MB/s eta 0:03:43\n", " ----- ---------------------------------- 67.6/459.2 MB 1.7 MB/s eta 0:03:45\n", " ----- ---------------------------------- 67.6/459.2 MB 1.7 MB/s eta 0:03:47\n", " ----- ---------------------------------- 67.6/459.2 MB 1.7 MB/s eta 0:03:49\n", " ----- ---------------------------------- 67.6/459.2 MB 1.7 MB/s eta 0:03:51\n", " ----- ---------------------------------- 67.7/459.2 MB 1.7 MB/s eta 0:03:53\n", " ----- ---------------------------------- 67.7/459.2 MB 1.7 MB/s eta 0:03:56\n", " ----- ---------------------------------- 67.7/459.2 MB 1.6 MB/s eta 0:03:58\n", " ----- ---------------------------------- 67.7/459.2 MB 1.6 MB/s eta 0:04:00\n", " ----- ---------------------------------- 67.7/459.2 MB 1.6 MB/s eta 0:04:01\n", " ----- ---------------------------------- 67.8/459.2 MB 1.6 MB/s eta 0:04:04\n", " ----- ---------------------------------- 67.8/459.2 MB 1.6 MB/s eta 0:04:05\n", " ----- ---------------------------------- 67.8/459.2 MB 1.6 MB/s eta 0:04:07\n", " ----- ---------------------------------- 67.8/459.2 MB 1.6 MB/s eta 0:04:08\n", " ----- ---------------------------------- 67.9/459.2 MB 1.6 MB/s eta 0:04:10\n", " ----- ---------------------------------- 67.9/459.2 MB 1.6 MB/s eta 0:04:11\n", " ----- ---------------------------------- 67.9/459.2 MB 1.5 MB/s eta 0:04:14\n", " ----- ---------------------------------- 67.9/459.2 MB 1.5 MB/s eta 0:04:14\n", " ----- ---------------------------------- 68.0/459.2 MB 1.5 MB/s eta 0:04:16\n", " ----- ---------------------------------- 68.0/459.2 MB 1.5 MB/s eta 0:04:19\n", " ----- ---------------------------------- 68.0/459.2 MB 1.5 MB/s eta 0:04:21\n", " ----- ---------------------------------- 68.1/459.2 MB 1.5 MB/s eta 0:04:22\n", " ----- ---------------------------------- 68.1/459.2 MB 1.5 MB/s eta 0:04:23\n", " ----- ---------------------------------- 68.1/459.2 MB 1.5 MB/s eta 0:04:23\n", " ----- ---------------------------------- 68.1/459.2 MB 1.5 MB/s eta 0:04:25\n", " ----- ---------------------------------- 68.1/459.2 MB 1.5 MB/s eta 0:04:28\n", " ----- ---------------------------------- 68.2/459.2 MB 1.5 MB/s eta 0:04:30\n", " ----- ---------------------------------- 68.2/459.2 MB 1.4 MB/s eta 0:04:30\n", " ----- ---------------------------------- 68.3/459.2 MB 1.4 MB/s eta 0:04:33\n", " ----- ---------------------------------- 68.3/459.2 MB 1.4 MB/s eta 0:04:33\n", " ----- ---------------------------------- 68.4/459.2 MB 1.4 MB/s eta 0:04:35\n", " ----- ---------------------------------- 68.4/459.2 MB 1.4 MB/s eta 0:04:36\n", " ----- ---------------------------------- 68.4/459.2 MB 1.4 MB/s eta 0:04:38\n", " ----- ---------------------------------- 68.5/459.2 MB 1.4 MB/s eta 0:04:39\n", " ----- ---------------------------------- 68.5/459.2 MB 1.4 MB/s eta 0:04:41\n", " ----- ---------------------------------- 68.5/459.2 MB 1.4 MB/s eta 0:04:42\n", " ----- ---------------------------------- 68.6/459.2 MB 1.4 MB/s eta 0:04:43\n", " ----- ---------------------------------- 68.6/459.2 MB 1.4 MB/s eta 0:04:45\n", " ----- ---------------------------------- 68.6/459.2 MB 1.4 MB/s eta 0:04:46\n", " ----- ---------------------------------- 68.7/459.2 MB 1.4 MB/s eta 0:04:47\n", " ----- ---------------------------------- 68.7/459.2 MB 1.4 MB/s eta 0:04:48\n", " ----- ---------------------------------- 68.8/459.2 MB 1.4 MB/s eta 0:04:49\n", " ----- ---------------------------------- 68.8/459.2 MB 1.3 MB/s eta 0:04:50\n", " ----- ---------------------------------- 68.9/459.2 MB 1.3 MB/s eta 0:04:51\n", " ------ --------------------------------- 68.9/459.2 MB 1.3 MB/s eta 0:04:53\n", " ------ --------------------------------- 69.0/459.2 MB 1.3 MB/s eta 0:04:54\n", " ------ --------------------------------- 69.0/459.2 MB 1.3 MB/s eta 0:04:55\n", " ------ --------------------------------- 69.1/459.2 MB 1.3 MB/s eta 0:04:58\n", " ------ --------------------------------- 69.1/459.2 MB 1.3 MB/s eta 0:04:59\n", " ------ --------------------------------- 69.2/459.2 MB 1.3 MB/s eta 0:05:00\n", " ------ --------------------------------- 69.3/459.2 MB 1.3 MB/s eta 0:05:01\n", " ------ --------------------------------- 69.3/459.2 MB 1.3 MB/s eta 0:05:02\n", " ------ --------------------------------- 69.4/459.2 MB 1.3 MB/s eta 0:05:04\n", " ------ --------------------------------- 69.4/459.2 MB 1.3 MB/s eta 0:05:06\n", " ------ --------------------------------- 69.5/459.2 MB 1.3 MB/s eta 0:05:06\n", " ------ --------------------------------- 69.6/459.2 MB 1.3 MB/s eta 0:05:08\n", " ------ --------------------------------- 69.6/459.2 MB 1.3 MB/s eta 0:05:09\n", " ------ --------------------------------- 69.7/459.2 MB 1.3 MB/s eta 0:05:10\n", " ------ --------------------------------- 69.7/459.2 MB 1.2 MB/s eta 0:05:13\n", " ------ --------------------------------- 69.8/459.2 MB 1.2 MB/s eta 0:05:13\n", " ------ --------------------------------- 69.8/459.2 MB 1.2 MB/s eta 0:05:15\n", " ------ --------------------------------- 69.9/459.2 MB 1.2 MB/s eta 0:05:15\n", " ------ --------------------------------- 70.0/459.2 MB 1.2 MB/s eta 0:05:17\n", " ------ --------------------------------- 70.0/459.2 MB 1.2 MB/s eta 0:05:19\n", " ------ --------------------------------- 70.1/459.2 MB 1.2 MB/s eta 0:05:18\n", " ------ --------------------------------- 70.2/459.2 MB 1.2 MB/s eta 0:05:20\n", " ------ --------------------------------- 70.2/459.2 MB 1.2 MB/s eta 0:05:22\n", " ------ --------------------------------- 70.2/459.2 MB 1.2 MB/s eta 0:05:23\n", " ------ --------------------------------- 70.3/459.2 MB 1.2 MB/s eta 0:05:24\n", " ------ --------------------------------- 70.4/459.2 MB 1.2 MB/s eta 0:05:25\n", " ------ --------------------------------- 70.5/459.2 MB 1.2 MB/s eta 0:05:26\n", " ------ --------------------------------- 70.6/459.2 MB 1.2 MB/s eta 0:05:28\n", " ------ --------------------------------- 70.6/459.2 MB 1.2 MB/s eta 0:05:28\n", " ------ --------------------------------- 70.7/459.2 MB 1.2 MB/s eta 0:05:30\n", " ------ --------------------------------- 70.8/459.2 MB 1.2 MB/s eta 0:05:30\n", " ------ --------------------------------- 70.9/459.2 MB 1.2 MB/s eta 0:05:31\n", " ------ --------------------------------- 71.0/459.2 MB 1.2 MB/s eta 0:05:33\n", " ------ --------------------------------- 71.1/459.2 MB 1.2 MB/s eta 0:05:33\n", " ------ --------------------------------- 71.1/459.2 MB 1.2 MB/s eta 0:05:34\n", " ------ --------------------------------- 71.2/459.2 MB 1.2 MB/s eta 0:05:35\n", " ------ --------------------------------- 71.3/459.2 MB 1.2 MB/s eta 0:05:34\n", " ------ --------------------------------- 71.4/459.2 MB 1.2 MB/s eta 0:05:35\n", " ------ --------------------------------- 71.4/459.2 MB 1.2 MB/s eta 0:05:36\n", " ------ --------------------------------- 71.5/459.2 MB 1.2 MB/s eta 0:05:37\n", " ------ --------------------------------- 71.6/459.2 MB 1.1 MB/s eta 0:05:38\n", " ------ --------------------------------- 71.7/459.2 MB 1.1 MB/s eta 0:05:38\n", " ------ --------------------------------- 71.8/459.2 MB 1.1 MB/s eta 0:05:40\n", " ------ --------------------------------- 71.8/459.2 MB 1.1 MB/s eta 0:05:41\n", " ------ --------------------------------- 71.9/459.2 MB 1.1 MB/s eta 0:05:41\n", " ------ --------------------------------- 72.0/459.2 MB 1.1 MB/s eta 0:05:42\n", " ------ --------------------------------- 72.1/459.2 MB 1.1 MB/s eta 0:05:42\n", " ------ --------------------------------- 72.2/459.2 MB 1.1 MB/s eta 0:05:43\n", " ------ --------------------------------- 72.2/459.2 MB 1.1 MB/s eta 0:05:44\n", " ------ --------------------------------- 72.4/459.2 MB 1.1 MB/s eta 0:05:46\n", " ------ --------------------------------- 72.5/459.2 MB 1.1 MB/s eta 0:05:46\n", " ------ --------------------------------- 72.6/459.2 MB 1.1 MB/s eta 0:05:47\n", " ------ --------------------------------- 72.6/459.2 MB 1.1 MB/s eta 0:05:47\n", " ------ --------------------------------- 72.8/459.2 MB 1.1 MB/s eta 0:05:48\n", " ------ --------------------------------- 72.8/459.2 MB 1.1 MB/s eta 0:05:48\n", " ------ --------------------------------- 72.9/459.2 MB 1.1 MB/s eta 0:05:49\n", " ------ --------------------------------- 73.0/459.2 MB 1.1 MB/s eta 0:05:50\n", " ------ --------------------------------- 73.2/459.2 MB 1.1 MB/s eta 0:05:50\n", " ------ --------------------------------- 73.3/459.2 MB 1.1 MB/s eta 0:05:50\n", " ------ --------------------------------- 73.4/459.2 MB 1.1 MB/s eta 0:05:51\n", " ------ --------------------------------- 73.5/459.2 MB 1.1 MB/s eta 0:05:51\n", " ------ --------------------------------- 73.6/459.2 MB 1.1 MB/s eta 0:05:52\n", " ------ --------------------------------- 73.7/459.2 MB 1.1 MB/s eta 0:05:53\n", " ------ --------------------------------- 73.9/459.2 MB 1.1 MB/s eta 0:05:52\n", " ------ --------------------------------- 73.9/459.2 MB 1.1 MB/s eta 0:05:53\n", " ------ --------------------------------- 74.1/459.2 MB 1.1 MB/s eta 0:05:54\n", " ------ --------------------------------- 74.2/459.2 MB 1.1 MB/s eta 0:05:54\n", " ------ --------------------------------- 74.3/459.2 MB 1.1 MB/s eta 0:05:54\n", " ------ --------------------------------- 74.4/459.2 MB 1.1 MB/s eta 0:05:55\n", " ------ --------------------------------- 74.6/459.2 MB 1.1 MB/s eta 0:05:54\n", " ------ --------------------------------- 74.7/459.2 MB 1.1 MB/s eta 0:05:53\n", " ------ --------------------------------- 74.9/459.2 MB 1.1 MB/s eta 0:05:53\n", " ------ --------------------------------- 75.0/459.2 MB 1.1 MB/s eta 0:05:53\n", " ------ --------------------------------- 75.2/459.2 MB 1.1 MB/s eta 0:05:54\n", " ------ --------------------------------- 75.3/459.2 MB 1.1 MB/s eta 0:05:53\n", " ------ --------------------------------- 75.5/459.2 MB 1.1 MB/s eta 0:05:53\n", " ------ --------------------------------- 75.6/459.2 MB 1.1 MB/s eta 0:05:53\n", " ------ --------------------------------- 75.8/459.2 MB 1.1 MB/s eta 0:05:53\n", " ------ --------------------------------- 75.9/459.2 MB 1.1 MB/s eta 0:05:51\n", " ------ --------------------------------- 76.1/459.2 MB 1.1 MB/s eta 0:05:53\n", " ------ --------------------------------- 76.2/459.2 MB 1.1 MB/s eta 0:05:51\n", " ------ --------------------------------- 76.4/459.2 MB 1.1 MB/s eta 0:05:51\n", " ------ --------------------------------- 76.5/459.2 MB 1.1 MB/s eta 0:05:51\n", " ------ --------------------------------- 76.6/459.2 MB 1.1 MB/s eta 0:05:51\n", " ------ --------------------------------- 76.7/459.2 MB 1.1 MB/s eta 0:05:51\n", " ------ --------------------------------- 76.9/459.2 MB 1.1 MB/s eta 0:05:51\n", " ------ --------------------------------- 77.0/459.2 MB 1.1 MB/s eta 0:05:51\n", " ------ --------------------------------- 77.1/459.2 MB 1.1 MB/s eta 0:05:51\n", " ------ --------------------------------- 77.3/459.2 MB 1.1 MB/s eta 0:05:47\n", " ------ --------------------------------- 77.4/459.2 MB 1.1 MB/s eta 0:05:44\n", " ------ --------------------------------- 77.6/459.2 MB 1.1 MB/s eta 0:05:37\n", " ------ --------------------------------- 77.7/459.2 MB 1.2 MB/s eta 0:05:30\n", " ------ --------------------------------- 77.8/459.2 MB 1.3 MB/s eta 0:05:01\n", " ------ --------------------------------- 77.9/459.2 MB 1.3 MB/s eta 0:04:48\n", " ------ --------------------------------- 78.1/459.2 MB 1.4 MB/s eta 0:04:37\n", " ------ --------------------------------- 78.2/459.2 MB 1.4 MB/s eta 0:04:30\n", " ------ --------------------------------- 78.3/459.2 MB 1.5 MB/s eta 0:04:23\n", " ------ --------------------------------- 78.4/459.2 MB 1.5 MB/s eta 0:04:17\n", " ------ --------------------------------- 78.6/459.2 MB 1.5 MB/s eta 0:04:11\n", " ------ --------------------------------- 78.7/459.2 MB 1.5 MB/s eta 0:04:06\n", " ------ --------------------------------- 78.9/459.2 MB 1.6 MB/s eta 0:04:00\n", " ------ --------------------------------- 79.0/459.2 MB 1.6 MB/s eta 0:03:54\n", " ------ --------------------------------- 79.2/459.2 MB 1.7 MB/s eta 0:03:50\n", " ------ --------------------------------- 79.3/459.2 MB 1.7 MB/s eta 0:03:46\n", " ------ --------------------------------- 79.4/459.2 MB 1.7 MB/s eta 0:03:43\n", " ------ --------------------------------- 79.6/459.2 MB 1.7 MB/s eta 0:03:38\n", " ------ --------------------------------- 79.7/459.2 MB 1.8 MB/s eta 0:03:36\n", " ------ --------------------------------- 79.9/459.2 MB 1.8 MB/s eta 0:03:33\n", " ------ --------------------------------- 80.0/459.2 MB 1.8 MB/s eta 0:03:28\n", " ------ --------------------------------- 80.1/459.2 MB 1.8 MB/s eta 0:03:25\n", " ------ --------------------------------- 80.2/459.2 MB 1.9 MB/s eta 0:03:25\n", " ------ --------------------------------- 80.4/459.2 MB 1.9 MB/s eta 0:03:22\n", " ------- -------------------------------- 80.5/459.2 MB 1.9 MB/s eta 0:03:18\n", " ------- -------------------------------- 80.7/459.2 MB 1.9 MB/s eta 0:03:15\n", " ------- -------------------------------- 80.8/459.2 MB 2.0 MB/s eta 0:03:14\n", " ------- -------------------------------- 81.0/459.2 MB 2.0 MB/s eta 0:03:11\n", " ------- -------------------------------- 81.0/459.2 MB 2.0 MB/s eta 0:03:11\n", " ------- -------------------------------- 81.1/459.2 MB 2.0 MB/s eta 0:03:12\n", " ------- -------------------------------- 81.2/459.2 MB 2.0 MB/s eta 0:03:08\n", " ------- -------------------------------- 81.2/459.2 MB 2.0 MB/s eta 0:03:08\n", " ------- -------------------------------- 81.3/459.2 MB 2.0 MB/s eta 0:03:12\n", " ------- -------------------------------- 81.3/459.2 MB 2.0 MB/s eta 0:03:12\n", " ------- -------------------------------- 81.4/459.2 MB 2.0 MB/s eta 0:03:13\n", " ------- -------------------------------- 81.4/459.2 MB 2.0 MB/s eta 0:03:13\n", " ------- -------------------------------- 81.4/459.2 MB 2.0 MB/s eta 0:03:13\n", " ------- -------------------------------- 81.5/459.2 MB 1.9 MB/s eta 0:03:17\n", " ------- -------------------------------- 81.5/459.2 MB 1.9 MB/s eta 0:03:18\n", " ------- -------------------------------- 81.6/459.2 MB 1.9 MB/s eta 0:03:19\n", " ------- -------------------------------- 81.6/459.2 MB 1.9 MB/s eta 0:03:21\n", " ------- -------------------------------- 81.6/459.2 MB 1.9 MB/s eta 0:03:22\n", " ------- -------------------------------- 81.6/459.2 MB 1.9 MB/s eta 0:03:22\n", " ------- -------------------------------- 81.7/459.2 MB 1.8 MB/s eta 0:03:25\n", " ------- -------------------------------- 81.7/459.2 MB 1.8 MB/s eta 0:03:25\n", " ------- -------------------------------- 81.7/459.2 MB 1.8 MB/s eta 0:03:25\n", " ------- -------------------------------- 81.7/459.2 MB 1.8 MB/s eta 0:03:29\n", " ------- -------------------------------- 81.7/459.2 MB 1.8 MB/s eta 0:03:29\n", " ------- -------------------------------- 81.7/459.2 MB 1.8 MB/s eta 0:03:29\n", " ------- -------------------------------- 81.7/459.2 MB 1.8 MB/s eta 0:03:29\n", " ------- -------------------------------- 81.8/459.2 MB 1.8 MB/s eta 0:03:35\n", " ------- -------------------------------- 81.8/459.2 MB 1.8 MB/s eta 0:03:35\n", " ------- -------------------------------- 81.8/459.2 MB 1.7 MB/s eta 0:03:37\n", " ------- -------------------------------- 81.8/459.2 MB 1.7 MB/s eta 0:03:37\n", " ------- -------------------------------- 81.8/459.2 MB 1.7 MB/s eta 0:03:42\n", " ------- -------------------------------- 81.8/459.2 MB 1.7 MB/s eta 0:03:42\n", " ------- -------------------------------- 81.8/459.2 MB 1.7 MB/s eta 0:03:42\n", " ------- -------------------------------- 81.8/459.2 MB 1.7 MB/s eta 0:03:48\n", " ------- -------------------------------- 81.8/459.2 MB 1.7 MB/s eta 0:03:48\n", " ------- -------------------------------- 81.8/459.2 MB 1.7 MB/s eta 0:03:48\n", " ------- -------------------------------- 81.8/459.2 MB 1.6 MB/s eta 0:03:55\n", " ------- -------------------------------- 81.8/459.2 MB 1.6 MB/s eta 0:03:55\n", " ------- -------------------------------- 81.8/459.2 MB 1.6 MB/s eta 0:03:55\n", " ------- -------------------------------- 81.8/459.2 MB 1.6 MB/s eta 0:03:55\n", " ------- -------------------------------- 81.8/459.2 MB 1.6 MB/s eta 0:03:55\n", " ------- -------------------------------- 81.8/459.2 MB 1.6 MB/s eta 0:03:55\n", " ------- -------------------------------- 81.9/459.2 MB 1.5 MB/s eta 0:04:06\n", " ------- -------------------------------- 81.9/459.2 MB 1.5 MB/s eta 0:04:06\n", " ------- -------------------------------- 81.9/459.2 MB 1.5 MB/s eta 0:04:06\n", " ------- -------------------------------- 81.9/459.2 MB 1.5 MB/s eta 0:04:06\n", " ------- -------------------------------- 81.9/459.2 MB 1.5 MB/s eta 0:04:14\n", " ------- -------------------------------- 81.9/459.2 MB 1.5 MB/s eta 0:04:14\n", " ------- -------------------------------- 81.9/459.2 MB 1.5 MB/s eta 0:04:14\n", " ------- -------------------------------- 81.9/459.2 MB 1.5 MB/s eta 0:04:14\n", " ------- -------------------------------- 81.9/459.2 MB 1.5 MB/s eta 0:04:14\n", " ------- -------------------------------- 81.9/459.2 MB 1.5 MB/s eta 0:04:14\n", " ------- -------------------------------- 81.9/459.2 MB 1.5 MB/s eta 0:04:14\n", " ------- -------------------------------- 81.9/459.2 MB 1.5 MB/s eta 0:04:14\n", " ------- -------------------------------- 81.9/459.2 MB 1.5 MB/s eta 0:04:14\n", " ------- -------------------------------- 81.9/459.2 MB 1.5 MB/s eta 0:04:14\n", " ------- -------------------------------- 81.9/459.2 MB 1.5 MB/s eta 0:04:14\n", " ------- -------------------------------- 81.9/459.2 MB 1.4 MB/s eta 0:04:37\n", " ------- -------------------------------- 81.9/459.2 MB 1.4 MB/s eta 0:04:37\n", " ------- -------------------------------- 81.9/459.2 MB 1.4 MB/s eta 0:04:37\n", " ------- -------------------------------- 81.9/459.2 MB 1.4 MB/s eta 0:04:37\n", " ------- -------------------------------- 81.9/459.2 MB 1.4 MB/s eta 0:04:37\n", " ------- -------------------------------- 81.9/459.2 MB 1.3 MB/s eta 0:04:49\n", " ------- -------------------------------- 81.9/459.2 MB 1.3 MB/s eta 0:04:49\n", " ------- -------------------------------- 81.9/459.2 MB 1.3 MB/s eta 0:04:49\n", " ------- -------------------------------- 81.9/459.2 MB 1.3 MB/s eta 0:04:49\n", " ------- -------------------------------- 81.9/459.2 MB 1.3 MB/s eta 0:04:49\n", " ------- -------------------------------- 81.9/459.2 MB 1.3 MB/s eta 0:04:49\n", " ------- -------------------------------- 81.9/459.2 MB 1.3 MB/s eta 0:05:02\n", " ------- -------------------------------- 81.9/459.2 MB 1.3 MB/s eta 0:05:02\n", " ------- -------------------------------- 81.9/459.2 MB 1.3 MB/s eta 0:05:02\n", " ------- -------------------------------- 81.9/459.2 MB 1.3 MB/s eta 0:05:02\n", " ------- -------------------------------- 81.9/459.2 MB 1.3 MB/s eta 0:05:02\n", " ------- -------------------------------- 81.9/459.2 MB 1.3 MB/s eta 0:05:02\n", " ------- -------------------------------- 81.9/459.2 MB 1.3 MB/s eta 0:05:02\n", " ------- -------------------------------- 82.0/459.2 MB 1.2 MB/s eta 0:05:16\n", " ------- -------------------------------- 82.0/459.2 MB 1.2 MB/s eta 0:05:16\n", " ------- -------------------------------- 82.0/459.2 MB 1.2 MB/s eta 0:05:16\n", " ------- -------------------------------- 82.0/459.2 MB 1.2 MB/s eta 0:05:16\n", " ------- -------------------------------- 82.0/459.2 MB 1.2 MB/s eta 0:05:16\n", " ------- -------------------------------- 82.0/459.2 MB 1.2 MB/s eta 0:05:16\n", " ------- -------------------------------- 82.0/459.2 MB 1.2 MB/s eta 0:05:16\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:29\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:29\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:29\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:29\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:29\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:29\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:29\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:43\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:43\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:43\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:43\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:43\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:54\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:54\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:54\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:54\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:54\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:54\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:54\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:54\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:54\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:54\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:54\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:54\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:54\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:54\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:54\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:54\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:54\n", " ------- -------------------------------- 82.0/459.2 MB 1.1 MB/s eta 0:05:54\n", " ------ -------------------------------- 82.0/459.2 MB 971.4 kB/s eta 0:06:29\n", " ------ -------------------------------- 82.0/459.2 MB 971.4 kB/s eta 0:06:29\n", " ------ -------------------------------- 82.0/459.2 MB 971.4 kB/s eta 0:06:29\n", " ------ -------------------------------- 82.0/459.2 MB 971.4 kB/s eta 0:06:29\n", " ------ -------------------------------- 82.0/459.2 MB 948.9 kB/s eta 0:06:38\n", " ------ -------------------------------- 82.0/459.2 MB 948.9 kB/s eta 0:06:38\n", " ------ -------------------------------- 82.0/459.2 MB 948.9 kB/s eta 0:06:38\n", " ------ -------------------------------- 82.0/459.2 MB 948.9 kB/s eta 0:06:38\n", " ------ -------------------------------- 82.0/459.2 MB 928.6 kB/s eta 0:06:47\n", " ------ -------------------------------- 82.1/459.2 MB 920.9 kB/s eta 0:06:50\n", " ------ -------------------------------- 82.1/459.2 MB 920.9 kB/s eta 0:06:50\n", " ------ -------------------------------- 82.1/459.2 MB 911.8 kB/s eta 0:06:54\n", " ------ -------------------------------- 82.1/459.2 MB 911.8 kB/s eta 0:06:54\n", " ------ -------------------------------- 82.1/459.2 MB 904.2 kB/s eta 0:06:58\n", " ------ -------------------------------- 82.1/459.2 MB 899.3 kB/s eta 0:07:00\n", " ------ -------------------------------- 82.1/459.2 MB 899.3 kB/s eta 0:07:00\n", " ------ -------------------------------- 82.1/459.2 MB 891.9 kB/s eta 0:07:03\n", " ------ -------------------------------- 82.1/459.2 MB 891.9 kB/s eta 0:07:03\n", " ------ -------------------------------- 82.2/459.2 MB 884.7 kB/s eta 0:07:07\n", " ------ -------------------------------- 82.2/459.2 MB 880.0 kB/s eta 0:07:09\n", " ------ -------------------------------- 82.2/459.2 MB 880.0 kB/s eta 0:07:09\n", " ------ -------------------------------- 82.2/459.2 MB 874.1 kB/s eta 0:07:12\n", " ------ -------------------------------- 82.2/459.2 MB 869.5 kB/s eta 0:07:14\n", " ------ -------------------------------- 82.2/459.2 MB 867.1 kB/s eta 0:07:15\n", " ------ -------------------------------- 82.3/459.2 MB 864.9 kB/s eta 0:07:16\n", " ------ -------------------------------- 82.3/459.2 MB 862.5 kB/s eta 0:07:17\n", " ------ -------------------------------- 82.3/459.2 MB 858.1 kB/s eta 0:07:20\n", " ------ -------------------------------- 82.3/459.2 MB 854.7 kB/s eta 0:07:21\n", " ------ -------------------------------- 82.3/459.2 MB 853.6 kB/s eta 0:07:22\n", " ------ -------------------------------- 82.4/459.2 MB 850.3 kB/s eta 0:07:24\n", " ------ -------------------------------- 82.4/459.2 MB 847.0 kB/s eta 0:07:25\n", " ------- ------------------------------- 82.4/459.2 MB 843.7 kB/s eta 0:07:27\n", " ------- ------------------------------- 82.5/459.2 MB 841.5 kB/s eta 0:07:28\n", " ------- ------------------------------- 82.5/459.2 MB 838.3 kB/s eta 0:07:30\n", " ------- ------------------------------- 82.5/459.2 MB 834.0 kB/s eta 0:07:32\n", " ------- ------------------------------- 82.6/459.2 MB 833.0 kB/s eta 0:07:33\n", " ------- ------------------------------- 82.6/459.2 MB 829.8 kB/s eta 0:07:34\n", " ------- ------------------------------- 82.6/459.2 MB 827.7 kB/s eta 0:07:35\n", " ------- ------------------------------- 82.7/459.2 MB 823.5 kB/s eta 0:07:38\n", " ------- ------------------------------- 82.7/459.2 MB 821.5 kB/s eta 0:07:39\n", " ------- ------------------------------- 82.7/459.2 MB 818.4 kB/s eta 0:07:40\n", " ------- ------------------------------- 82.8/459.2 MB 817.4 kB/s eta 0:07:41\n", " ------- ------------------------------- 82.8/459.2 MB 816.4 kB/s eta 0:07:42\n", " ------- ------------------------------- 82.9/459.2 MB 811.2 kB/s eta 0:07:44\n", " ------- ------------------------------- 82.9/459.2 MB 811.3 kB/s eta 0:07:44\n", " ------- ------------------------------- 82.9/459.2 MB 809.3 kB/s eta 0:07:45\n", " ------- ------------------------------- 83.0/459.2 MB 805.3 kB/s eta 0:07:48\n", " ------- ------------------------------- 83.0/459.2 MB 804.3 kB/s eta 0:07:48\n", " ------- ------------------------------- 83.1/459.2 MB 802.3 kB/s eta 0:07:49\n", " ------- ------------------------------- 83.1/459.2 MB 801.4 kB/s eta 0:07:50\n", " ------- ------------------------------- 83.1/459.2 MB 797.5 kB/s eta 0:07:52\n", " ------- ------------------------------- 83.2/459.2 MB 795.5 kB/s eta 0:07:53\n", " ------- ------------------------------- 83.2/459.2 MB 793.6 kB/s eta 0:07:54\n", " ------- ------------------------------- 83.3/459.2 MB 791.7 kB/s eta 0:07:55\n", " ------- ------------------------------- 83.3/459.2 MB 790.7 kB/s eta 0:07:56\n", " ------- ------------------------------- 83.4/459.2 MB 787.8 kB/s eta 0:07:57\n", " ------- ------------------------------- 83.4/459.2 MB 785.0 kB/s eta 0:07:59\n", " ------- ------------------------------- 83.5/459.2 MB 783.2 kB/s eta 0:08:00\n", " ------- ------------------------------- 83.5/459.2 MB 781.3 kB/s eta 0:08:01\n", " ------- ------------------------------- 83.6/459.2 MB 779.4 kB/s eta 0:08:02\n", " ------- ------------------------------- 83.6/459.2 MB 778.5 kB/s eta 0:08:03\n", " ------- ------------------------------- 83.7/459.2 MB 775.7 kB/s eta 0:08:05\n", " ------- ------------------------------- 83.7/459.2 MB 775.7 kB/s eta 0:08:04\n", " ------- ------------------------------- 83.8/459.2 MB 772.1 kB/s eta 0:08:07\n", " ------- ------------------------------- 83.9/459.2 MB 771.1 kB/s eta 0:08:07\n", " ------- ------------------------------- 83.9/459.2 MB 770.2 kB/s eta 0:08:08\n", " ------- ------------------------------- 84.0/459.2 MB 766.7 kB/s eta 0:08:10\n", " ------- ------------------------------- 84.1/459.2 MB 765.8 kB/s eta 0:08:10\n", " ------- ------------------------------- 84.1/459.2 MB 764.0 kB/s eta 0:08:11\n", " ------- ------------------------------- 84.2/459.2 MB 761.3 kB/s eta 0:08:13\n", " ------- ------------------------------- 84.2/459.2 MB 759.6 kB/s eta 0:08:14\n", " ------- ------------------------------- 84.3/459.2 MB 758.7 kB/s eta 0:08:15\n", " ------- ------------------------------- 84.4/459.2 MB 756.9 kB/s eta 0:08:16\n", " ------- ------------------------------- 84.4/459.2 MB 755.1 kB/s eta 0:08:17\n", " ------- ------------------------------- 84.5/459.2 MB 754.3 kB/s eta 0:08:17\n", " ------- ------------------------------- 84.6/459.2 MB 753.4 kB/s eta 0:08:18\n", " ------- ------------------------------- 84.6/459.2 MB 749.1 kB/s eta 0:08:20\n", " ------- ------------------------------- 84.7/459.2 MB 748.2 kB/s eta 0:08:21\n", " ------- ------------------------------- 84.8/459.2 MB 747.4 kB/s eta 0:08:21\n", " ------- ------------------------------- 84.9/459.2 MB 744.8 kB/s eta 0:08:23\n", " ------- ------------------------------- 85.0/459.2 MB 744.0 kB/s eta 0:08:24\n", " ------- ------------------------------- 85.0/459.2 MB 741.4 kB/s eta 0:08:25\n", " ------- ------------------------------- 85.1/459.2 MB 740.6 kB/s eta 0:08:26\n", " ------- ------------------------------- 85.2/459.2 MB 739.7 kB/s eta 0:08:26\n", " ------- ------------------------------- 85.2/459.2 MB 738.1 kB/s eta 0:08:27\n", " ------- ------------------------------- 85.3/459.2 MB 736.5 kB/s eta 0:08:28\n", " ------- ------------------------------- 85.4/459.2 MB 735.6 kB/s eta 0:08:29\n", " ------- ------------------------------- 85.5/459.2 MB 733.2 kB/s eta 0:08:30\n", " ------- ------------------------------- 85.5/459.2 MB 734.0 kB/s eta 0:08:30\n", " ------- ------------------------------- 85.6/459.2 MB 731.5 kB/s eta 0:08:31\n", " ------- ------------------------------- 85.7/459.2 MB 729.1 kB/s eta 0:08:33\n", " ------- ------------------------------- 85.8/459.2 MB 728.3 kB/s eta 0:08:33\n", " ------- ------------------------------- 85.9/459.2 MB 727.4 kB/s eta 0:08:34\n", " ------- ------------------------------- 86.0/459.2 MB 726.6 kB/s eta 0:08:34\n", " ------- ------------------------------- 86.1/459.2 MB 725.8 kB/s eta 0:08:35\n", " ------- ------------------------------- 86.2/459.2 MB 727.5 kB/s eta 0:08:33\n", " ------- ------------------------------- 86.3/459.2 MB 725.1 kB/s eta 0:08:35\n", " ------- ------------------------------- 86.4/459.2 MB 724.2 kB/s eta 0:08:35\n", " ------- ------------------------------- 86.5/459.2 MB 724.2 kB/s eta 0:08:35\n", " ------- ------------------------------- 86.6/459.2 MB 723.4 kB/s eta 0:08:35\n", " ------- ------------------------------- 86.8/459.2 MB 724.2 kB/s eta 0:08:35\n", " ------- ------------------------------- 86.9/459.2 MB 725.0 kB/s eta 0:08:34\n", " ------- ------------------------------- 87.0/459.2 MB 724.2 kB/s eta 0:08:34\n", " ------- ------------------------------- 87.1/459.2 MB 725.0 kB/s eta 0:08:34\n", " ------- ------------------------------- 87.3/459.2 MB 725.8 kB/s eta 0:08:33\n", " ------- ------------------------------- 87.4/459.2 MB 725.1 kB/s eta 0:08:33\n", " ------- ------------------------------- 87.6/459.2 MB 725.0 kB/s eta 0:08:33\n", " ------- ------------------------------- 87.7/459.2 MB 725.8 kB/s eta 0:08:32\n", " ------- ------------------------------- 87.9/459.2 MB 726.6 kB/s eta 0:08:31\n", " ------- ------------------------------- 88.0/459.2 MB 724.2 kB/s eta 0:08:33\n", " ------- ------------------------------- 88.1/459.2 MB 725.0 kB/s eta 0:08:32\n", " ------- ------------------------------- 88.3/459.2 MB 725.1 kB/s eta 0:08:32\n", " ------- ------------------------------- 88.4/459.2 MB 725.0 kB/s eta 0:08:32\n", " ------- ------------------------------- 88.6/459.2 MB 725.1 kB/s eta 0:08:32\n", " ------- ------------------------------- 88.8/459.2 MB 725.0 kB/s eta 0:08:31\n", " ------- ------------------------------- 88.9/459.2 MB 724.2 kB/s eta 0:08:32\n", " ------- ------------------------------- 89.0/459.2 MB 725.9 kB/s eta 0:08:31\n", " ------- ------------------------------- 89.1/459.2 MB 725.0 kB/s eta 0:08:31\n", " ------- ------------------------------- 89.3/459.2 MB 723.4 kB/s eta 0:08:32\n", " ------- ------------------------------- 89.4/459.2 MB 725.0 kB/s eta 0:08:31\n", " ------- ------------------------------- 89.5/459.2 MB 724.2 kB/s eta 0:08:31\n", " ------- ------------------------------- 89.7/459.2 MB 724.2 kB/s eta 0:08:31\n", " ------- ------------------------------- 89.8/459.2 MB 723.4 kB/s eta 0:08:31\n", " ------- ------------------------------- 90.0/459.2 MB 723.4 kB/s eta 0:08:31\n", " ------- ------------------------------- 90.1/459.2 MB 723.5 kB/s eta 0:08:31\n", " ------- ------------------------------- 90.2/459.2 MB 723.5 kB/s eta 0:08:30\n", " ------- ------------------------------- 90.4/459.2 MB 725.1 kB/s eta 0:08:29\n", " ------- ------------------------------- 90.6/459.2 MB 725.1 kB/s eta 0:08:29\n", " ------- ------------------------------- 90.7/459.2 MB 725.1 kB/s eta 0:08:29\n", " ------- ------------------------------- 90.8/459.2 MB 725.0 kB/s eta 0:08:29\n", " ------- ------------------------------- 91.0/459.2 MB 724.2 kB/s eta 0:08:29\n", " ------- ------------------------------- 91.0/459.2 MB 724.2 kB/s eta 0:08:29\n", " ------- ------------------------------- 91.1/459.2 MB 721.8 kB/s eta 0:08:30\n", " ------- ------------------------------- 91.2/459.2 MB 719.5 kB/s eta 0:08:32\n", " ------- ------------------------------- 91.3/459.2 MB 720.3 kB/s eta 0:08:31\n", " ------- ------------------------------- 91.3/459.2 MB 720.3 kB/s eta 0:08:31\n", " ------- ------------------------------- 91.3/459.2 MB 718.7 kB/s eta 0:08:32\n", " ------- ------------------------------- 91.4/459.2 MB 714.7 kB/s eta 0:08:35\n", " ------- ------------------------------- 91.5/459.2 MB 710.8 kB/s eta 0:08:38\n", " ------- ------------------------------- 91.5/459.2 MB 710.8 kB/s eta 0:08:38\n", " ------- ------------------------------- 91.5/459.2 MB 717.9 kB/s eta 0:08:33\n", " ------- ------------------------------- 91.5/459.2 MB 717.9 kB/s eta 0:08:33\n", " ------- ------------------------------- 91.5/459.2 MB 711.6 kB/s eta 0:08:37\n", " ------- ------------------------------- 91.6/459.2 MB 709.4 kB/s eta 0:08:39\n", " ------- ------------------------------- 91.6/459.2 MB 706.3 kB/s eta 0:08:41\n", " ------- ------------------------------- 91.6/459.2 MB 704.0 kB/s eta 0:08:43\n", " ------- ------------------------------- 91.6/459.2 MB 699.5 kB/s eta 0:08:46\n", " ------- ------------------------------- 91.6/459.2 MB 704.0 kB/s eta 0:08:43\n", " ------- ------------------------------- 91.7/459.2 MB 701.7 kB/s eta 0:08:44\n", " ------- ------------------------------- 91.7/459.2 MB 696.5 kB/s eta 0:08:48\n", " ------- ------------------------------- 91.7/459.2 MB 696.5 kB/s eta 0:08:48\n", " ------- ------------------------------- 91.7/459.2 MB 696.5 kB/s eta 0:08:48\n", " ------- ------------------------------- 91.7/459.2 MB 691.3 kB/s eta 0:08:52\n", " ------- ------------------------------- 91.7/459.2 MB 691.3 kB/s eta 0:08:52\n", " ------- ------------------------------- 91.8/459.2 MB 687.0 kB/s eta 0:08:55\n", " ------- ------------------------------- 91.8/459.2 MB 687.0 kB/s eta 0:08:55\n", " ------- ------------------------------- 91.8/459.2 MB 684.8 kB/s eta 0:08:57\n", " ------- ------------------------------- 91.8/459.2 MB 684.8 kB/s eta 0:08:57\n", " ------- ------------------------------- 91.8/459.2 MB 682.7 kB/s eta 0:08:59\n", " ------- ------------------------------- 91.8/459.2 MB 682.7 kB/s eta 0:08:59\n", " ------- ------------------------------- 91.8/459.2 MB 682.7 kB/s eta 0:08:59\n", " ------- ------------------------------- 91.8/459.2 MB 682.7 kB/s eta 0:08:59\n", " ------- ------------------------------- 91.8/459.2 MB 682.7 kB/s eta 0:08:59\n", " ------- ------------------------------- 91.9/459.2 MB 675.0 kB/s eta 0:09:05\n", " ------- ------------------------------- 91.9/459.2 MB 675.0 kB/s eta 0:09:05\n", " ------- ------------------------------- 91.9/459.2 MB 669.4 kB/s eta 0:09:09\n", " ------- ------------------------------- 91.9/459.2 MB 665.4 kB/s eta 0:09:13\n", " ------- ------------------------------- 91.9/459.2 MB 665.4 kB/s eta 0:09:13\n", " ------- ------------------------------- 91.9/459.2 MB 665.4 kB/s eta 0:09:13\n", " ------- ------------------------------- 91.9/459.2 MB 660.6 kB/s eta 0:09:16\n", " ------- ------------------------------- 91.9/459.2 MB 656.6 kB/s eta 0:09:20\n", " ------- ------------------------------- 91.9/459.2 MB 656.6 kB/s eta 0:09:20\n", " ------- ------------------------------- 91.9/459.2 MB 656.6 kB/s eta 0:09:20\n", " ------- ------------------------------- 92.0/459.2 MB 656.0 kB/s eta 0:09:20\n", " ------- ------------------------------- 92.0/459.2 MB 656.0 kB/s eta 0:09:20\n", " ------- ------------------------------- 92.0/459.2 MB 656.0 kB/s eta 0:09:20\n", " ------- ------------------------------- 92.0/459.2 MB 656.7 kB/s eta 0:09:20\n", " ------- ------------------------------- 92.0/459.2 MB 656.7 kB/s eta 0:09:20\n", " ------- ------------------------------- 92.0/459.2 MB 656.7 kB/s eta 0:09:20\n", " ------- ------------------------------- 92.0/459.2 MB 650.2 kB/s eta 0:09:25\n", " ------- ------------------------------- 92.0/459.2 MB 650.2 kB/s eta 0:09:25\n", " ------- ------------------------------- 92.0/459.2 MB 650.2 kB/s eta 0:09:25\n", " ------- ------------------------------- 92.0/459.2 MB 645.0 kB/s eta 0:09:30\n", " ------- ------------------------------- 92.0/459.2 MB 645.0 kB/s eta 0:09:30\n", " ------- ------------------------------- 92.0/459.2 MB 640.6 kB/s eta 0:09:34\n", " ------- ------------------------------- 92.0/459.2 MB 640.6 kB/s eta 0:09:34\n", " ------- ------------------------------- 92.0/459.2 MB 645.7 kB/s eta 0:09:29\n", " ------- ------------------------------- 92.1/459.2 MB 650.1 kB/s eta 0:09:25\n", " ------- ------------------------------- 92.1/459.2 MB 654.7 kB/s eta 0:09:21\n", " ------- ------------------------------- 92.1/459.2 MB 664.7 kB/s eta 0:09:13\n", " ------- ------------------------------- 92.1/459.2 MB 662.6 kB/s eta 0:09:14\n", " ------- ------------------------------- 92.1/459.2 MB 700.2 kB/s eta 0:08:45\n", " ------- ------------------------------- 92.1/459.2 MB 698.0 kB/s eta 0:08:46\n", " ------- ------------------------------- 92.1/459.2 MB 729.0 kB/s eta 0:08:24\n", " ------- ------------------------------- 92.2/459.2 MB 744.8 kB/s eta 0:08:13\n", " ------- ------------------------------- 92.2/459.2 MB 784.1 kB/s eta 0:07:49\n", " ------- ------------------------------- 92.2/459.2 MB 781.3 kB/s eta 0:07:50\n", " ------- ------------------------------- 92.2/459.2 MB 860.4 kB/s eta 0:07:07\n", " ------- ------------------------------- 92.3/459.2 MB 876.4 kB/s eta 0:06:59\n", " ------- ------------------------------- 92.3/459.2 MB 899.3 kB/s eta 0:06:48\n", " ------- ------------------------------- 92.3/459.2 MB 910.6 kB/s eta 0:06:43\n", " ------- ------------------------------- 92.3/459.2 MB 910.6 kB/s eta 0:06:43\n", " ------- ------------------------------- 92.4/459.2 MB 919.5 kB/s eta 0:06:39\n", " ------- ------------------------------- 92.4/459.2 MB 924.7 kB/s eta 0:06:37\n", " ------- ------------------------------- 92.4/459.2 MB 919.5 kB/s eta 0:06:39\n", " ------- ------------------------------- 92.4/459.2 MB 919.5 kB/s eta 0:06:39\n", " ------- ------------------------------- 92.4/459.2 MB 922.1 kB/s eta 0:06:38\n", " ------- ------------------------------- 92.5/459.2 MB 917.0 kB/s eta 0:06:40\n", " ------- ------------------------------- 92.5/459.2 MB 919.5 kB/s eta 0:06:39\n", " ------- ------------------------------- 92.5/459.2 MB 919.5 kB/s eta 0:06:39\n", " ------- ------------------------------- 92.5/459.2 MB 913.1 kB/s eta 0:06:42\n", " ------- ------------------------------- 92.5/459.2 MB 910.6 kB/s eta 0:06:43\n", " ------- ------------------------------- 92.5/459.2 MB 913.1 kB/s eta 0:06:42\n", " ------- ------------------------------- 92.5/459.2 MB 913.1 kB/s eta 0:06:42\n", " ------- ------------------------------- 92.5/459.2 MB 904.3 kB/s eta 0:06:46\n", " ------- ------------------------------- 92.6/459.2 MB 906.8 kB/s eta 0:06:45\n", " ------- ------------------------------- 92.6/459.2 MB 903.0 kB/s eta 0:06:46\n", " ------- ------------------------------- 92.6/459.2 MB 901.8 kB/s eta 0:06:47\n", " ------- ------------------------------- 92.6/459.2 MB 904.2 kB/s eta 0:06:46\n", " ------- ------------------------------- 92.6/459.2 MB 901.9 kB/s eta 0:06:47\n", " ------- ------------------------------- 92.7/459.2 MB 899.3 kB/s eta 0:06:48\n", " ------- ------------------------------- 92.7/459.2 MB 895.6 kB/s eta 0:06:50\n", " ------- ------------------------------- 92.7/459.2 MB 898.1 kB/s eta 0:06:49\n", " ------- ------------------------------- 92.7/459.2 MB 895.6 kB/s eta 0:06:50\n", " ------- ------------------------------- 92.8/459.2 MB 891.9 kB/s eta 0:06:51\n", " ------- ------------------------------- 92.8/459.2 MB 895.6 kB/s eta 0:06:50\n", " ------- ------------------------------- 92.8/459.2 MB 893.2 kB/s eta 0:06:51\n", " ------- ------------------------------- 92.8/459.2 MB 889.5 kB/s eta 0:06:52\n", " ------- ------------------------------- 92.9/459.2 MB 891.9 kB/s eta 0:06:51\n", " ------- ------------------------------- 92.9/459.2 MB 891.9 kB/s eta 0:06:51\n", " ------- ------------------------------- 92.9/459.2 MB 888.3 kB/s eta 0:06:53\n", " ------- ------------------------------- 92.9/459.2 MB 888.3 kB/s eta 0:06:53\n", " ------- ------------------------------- 93.0/459.2 MB 887.1 kB/s eta 0:06:53\n", " ------- ------------------------------- 93.0/459.2 MB 888.3 kB/s eta 0:06:53\n", " ------- ------------------------------- 93.1/459.2 MB 885.9 kB/s eta 0:06:54\n", " ------- ------------------------------- 93.1/459.2 MB 888.3 kB/s eta 0:06:53\n", " ------- ------------------------------- 93.1/459.2 MB 887.2 kB/s eta 0:06:53\n", " ------- ------------------------------- 93.2/459.2 MB 884.8 kB/s eta 0:06:54\n", " ------- ------------------------------- 93.2/459.2 MB 885.9 kB/s eta 0:06:54\n", " ------- ------------------------------- 93.2/459.2 MB 882.3 kB/s eta 0:06:55\n", " ------- ------------------------------- 93.3/459.2 MB 882.3 kB/s eta 0:06:55\n", " ------- ------------------------------- 93.3/459.2 MB 881.1 kB/s eta 0:06:56\n", " ------- ------------------------------- 93.4/459.2 MB 884.7 kB/s eta 0:06:54\n", " ------- ------------------------------- 93.4/459.2 MB 882.3 kB/s eta 0:06:55\n", " ------- ------------------------------- 93.5/459.2 MB 882.3 kB/s eta 0:06:55\n", " ------- ------------------------------- 93.5/459.2 MB 882.4 kB/s eta 0:06:55\n", " ------- ------------------------------- 93.5/459.2 MB 880.0 kB/s eta 0:06:56\n", " ------- ------------------------------- 93.6/459.2 MB 877.6 kB/s eta 0:06:57\n", " ------- ------------------------------- 93.6/459.2 MB 877.6 kB/s eta 0:06:57\n", " ------- ------------------------------- 93.7/459.2 MB 878.8 kB/s eta 0:06:56\n", " ------- ------------------------------- 93.7/459.2 MB 878.8 kB/s eta 0:06:56\n", " ------- ------------------------------- 93.8/459.2 MB 877.6 kB/s eta 0:06:57\n", " ------- ------------------------------- 93.8/459.2 MB 876.4 kB/s eta 0:06:57\n", " ------- ------------------------------- 93.8/459.2 MB 875.2 kB/s eta 0:06:58\n", " ------- ------------------------------- 93.9/459.2 MB 875.2 kB/s eta 0:06:58\n", " ------- ------------------------------- 94.0/459.2 MB 876.4 kB/s eta 0:06:57\n", " ------- ------------------------------- 94.0/459.2 MB 876.4 kB/s eta 0:06:57\n", " ------- ------------------------------- 94.1/459.2 MB 875.2 kB/s eta 0:06:58\n", " ------- ------------------------------- 94.1/459.2 MB 874.1 kB/s eta 0:06:58\n", " -------- ------------------------------ 94.2/459.2 MB 874.1 kB/s eta 0:06:58\n", " -------- ------------------------------ 94.3/459.2 MB 874.1 kB/s eta 0:06:58\n", " -------- ------------------------------ 94.3/459.2 MB 876.4 kB/s eta 0:06:57\n", " -------- ------------------------------ 94.4/459.2 MB 876.4 kB/s eta 0:06:57\n", " -------- ------------------------------ 94.4/459.2 MB 875.2 kB/s eta 0:06:57\n", " -------- ------------------------------ 94.5/459.2 MB 875.3 kB/s eta 0:06:57\n", " -------- ------------------------------ 94.6/459.2 MB 875.3 kB/s eta 0:06:57\n", " -------- ------------------------------ 94.6/459.2 MB 875.3 kB/s eta 0:06:57\n", " -------- ------------------------------ 94.7/459.2 MB 874.1 kB/s eta 0:06:57\n", " -------- ------------------------------ 94.7/459.2 MB 872.9 kB/s eta 0:06:58\n", " -------- ------------------------------ 94.7/459.2 MB 868.3 kB/s eta 0:07:00\n", " -------- ------------------------------ 94.7/459.2 MB 868.3 kB/s eta 0:07:00\n", " -------- ------------------------------ 94.8/459.2 MB 862.6 kB/s eta 0:07:03\n", " -------- ------------------------------ 94.8/459.2 MB 864.8 kB/s eta 0:07:02\n", " -------- ------------------------------ 94.9/459.2 MB 860.4 kB/s eta 0:07:04\n", " -------- ------------------------------ 94.9/459.2 MB 859.1 kB/s eta 0:07:05\n", " -------- ------------------------------ 94.9/459.2 MB 857.0 kB/s eta 0:07:06\n", " -------- ------------------------------ 95.0/459.2 MB 853.5 kB/s eta 0:07:07\n", " -------- ------------------------------ 95.0/459.2 MB 851.3 kB/s eta 0:07:08\n", " -------- ------------------------------ 95.0/459.2 MB 848.0 kB/s eta 0:07:10\n", " -------- ------------------------------ 95.1/459.2 MB 843.7 kB/s eta 0:07:12\n", " -------- ------------------------------ 95.1/459.2 MB 842.6 kB/s eta 0:07:13\n", " -------- ------------------------------ 95.1/459.2 MB 842.6 kB/s eta 0:07:13\n", " -------- ------------------------------ 95.2/459.2 MB 838.3 kB/s eta 0:07:15\n", " -------- ------------------------------ 95.2/459.2 MB 837.2 kB/s eta 0:07:15\n", " -------- ------------------------------ 95.3/459.2 MB 836.1 kB/s eta 0:07:16\n", " -------- ------------------------------ 95.3/459.2 MB 831.9 kB/s eta 0:07:18\n", " -------- ------------------------------ 95.3/459.2 MB 831.9 kB/s eta 0:07:18\n", " -------- ------------------------------ 95.4/459.2 MB 828.7 kB/s eta 0:07:19\n", " -------- ------------------------------ 95.4/459.2 MB 825.6 kB/s eta 0:07:21\n", " -------- ------------------------------ 95.5/459.2 MB 824.5 kB/s eta 0:07:22\n", " -------- ------------------------------ 95.5/459.2 MB 823.5 kB/s eta 0:07:22\n", " -------- ------------------------------ 95.6/459.2 MB 822.5 kB/s eta 0:07:23\n", " -------- ------------------------------ 95.6/459.2 MB 819.4 kB/s eta 0:07:24\n", " -------- ------------------------------ 95.7/459.2 MB 819.4 kB/s eta 0:07:24\n", " -------- ------------------------------ 95.7/459.2 MB 816.4 kB/s eta 0:07:26\n", " -------- ------------------------------ 95.8/459.2 MB 815.3 kB/s eta 0:07:26\n", " -------- ------------------------------ 95.8/459.2 MB 813.2 kB/s eta 0:07:27\n", " -------- ------------------------------ 95.9/459.2 MB 813.3 kB/s eta 0:07:27\n", " -------- ------------------------------ 95.9/459.2 MB 811.2 kB/s eta 0:07:28\n", " -------- ------------------------------ 96.0/459.2 MB 809.3 kB/s eta 0:07:29\n", " -------- ------------------------------ 96.1/459.2 MB 808.2 kB/s eta 0:07:30\n", " -------- ------------------------------ 96.1/459.2 MB 806.3 kB/s eta 0:07:31\n", " -------- ------------------------------ 96.2/459.2 MB 804.3 kB/s eta 0:07:32\n", " -------- ------------------------------ 96.2/459.2 MB 802.3 kB/s eta 0:07:33\n", " -------- ------------------------------ 96.3/459.2 MB 801.3 kB/s eta 0:07:33\n", " -------- ------------------------------ 96.3/459.2 MB 800.4 kB/s eta 0:07:34\n", " -------- ------------------------------ 96.4/459.2 MB 797.4 kB/s eta 0:07:35\n", " -------- ------------------------------ 96.5/459.2 MB 794.5 kB/s eta 0:07:37\n", " -------- ------------------------------ 96.5/459.2 MB 792.6 kB/s eta 0:07:38\n", " -------- ------------------------------ 96.6/459.2 MB 791.7 kB/s eta 0:07:39\n", " -------- ------------------------------ 96.7/459.2 MB 789.8 kB/s eta 0:07:40\n", " -------- ------------------------------ 96.7/459.2 MB 786.9 kB/s eta 0:07:41\n", " -------- ------------------------------ 96.8/459.2 MB 787.8 kB/s eta 0:07:40\n", " -------- ------------------------------ 96.9/459.2 MB 785.0 kB/s eta 0:07:42\n", " -------- ------------------------------ 97.0/459.2 MB 783.2 kB/s eta 0:07:43\n", " -------- ------------------------------ 97.0/459.2 MB 782.2 kB/s eta 0:07:44\n", " -------- ------------------------------ 97.1/459.2 MB 780.3 kB/s eta 0:07:45\n", " -------- ------------------------------ 97.2/459.2 MB 779.4 kB/s eta 0:07:45\n", " -------- ------------------------------ 97.2/459.2 MB 777.5 kB/s eta 0:07:46\n", " -------- ------------------------------ 97.3/459.2 MB 776.7 kB/s eta 0:07:46\n", " -------- ------------------------------ 97.4/459.2 MB 773.9 kB/s eta 0:07:48\n", " -------- ------------------------------ 97.4/459.2 MB 772.1 kB/s eta 0:07:49\n", " -------- ------------------------------ 97.5/459.2 MB 770.3 kB/s eta 0:07:50\n", " -------- ------------------------------ 97.6/459.2 MB 768.5 kB/s eta 0:07:51\n", " -------- ------------------------------ 97.6/459.2 MB 764.8 kB/s eta 0:07:53\n", " -------- ------------------------------ 97.7/459.2 MB 762.2 kB/s eta 0:07:55\n", " -------- ------------------------------ 97.7/459.2 MB 760.4 kB/s eta 0:07:56\n", " -------- ------------------------------ 97.7/459.2 MB 757.8 kB/s eta 0:07:57\n", " -------- ------------------------------ 97.8/459.2 MB 757.8 kB/s eta 0:07:57\n", " -------- ------------------------------ 97.8/459.2 MB 753.4 kB/s eta 0:08:00\n", " -------- ------------------------------ 97.9/459.2 MB 752.5 kB/s eta 0:08:01\n", " -------- ------------------------------ 97.9/459.2 MB 749.1 kB/s eta 0:08:03\n", " -------- ------------------------------ 97.9/459.2 MB 746.5 kB/s eta 0:08:04\n", " -------- ------------------------------ 98.0/459.2 MB 744.8 kB/s eta 0:08:05\n", " -------- ------------------------------ 98.0/459.2 MB 739.8 kB/s eta 0:08:09\n", " -------- ------------------------------ 98.0/459.2 MB 739.0 kB/s eta 0:08:09\n", " -------- ------------------------------ 98.1/459.2 MB 734.8 kB/s eta 0:08:12\n", " -------- ------------------------------ 98.1/459.2 MB 732.4 kB/s eta 0:08:13\n", " -------- ------------------------------ 98.2/459.2 MB 732.4 kB/s eta 0:08:13\n", " -------- ------------------------------ 98.2/459.2 MB 730.7 kB/s eta 0:08:15\n", " -------- ------------------------------ 98.3/459.2 MB 725.8 kB/s eta 0:08:18\n", " -------- ------------------------------ 98.3/459.2 MB 724.2 kB/s eta 0:08:19\n", " -------- ------------------------------ 98.4/459.2 MB 722.6 kB/s eta 0:08:20\n", " -------- ------------------------------ 98.4/459.2 MB 720.3 kB/s eta 0:08:21\n", " -------- ------------------------------ 98.5/459.2 MB 717.9 kB/s eta 0:08:23\n", " -------- ------------------------------ 98.5/459.2 MB 717.1 kB/s eta 0:08:23\n", " -------- ------------------------------ 98.6/459.2 MB 714.0 kB/s eta 0:08:26\n", " -------- ------------------------------ 98.6/459.2 MB 714.8 kB/s eta 0:08:25\n", " -------- ------------------------------ 98.7/459.2 MB 710.8 kB/s eta 0:08:28\n", " -------- ------------------------------ 98.7/459.2 MB 707.8 kB/s eta 0:08:30\n", " -------- ------------------------------ 98.8/459.2 MB 705.5 kB/s eta 0:08:31\n", " -------- ------------------------------ 98.8/459.2 MB 703.3 kB/s eta 0:08:33\n", " -------- ------------------------------ 98.9/459.2 MB 701.0 kB/s eta 0:08:34\n", " -------- ------------------------------ 98.9/459.2 MB 700.2 kB/s eta 0:08:35\n", " -------- ------------------------------ 99.0/459.2 MB 697.9 kB/s eta 0:08:37\n", " -------- ------------------------------ 99.0/459.2 MB 697.2 kB/s eta 0:08:37\n", " -------- ------------------------------ 99.1/459.2 MB 695.8 kB/s eta 0:08:38\n", " -------- ------------------------------ 99.1/459.2 MB 693.5 kB/s eta 0:08:40\n", " -------- ------------------------------ 99.2/459.2 MB 693.5 kB/s eta 0:08:40\n", " -------- ------------------------------ 99.3/459.2 MB 690.6 kB/s eta 0:08:42\n", " -------- ------------------------------ 99.3/459.2 MB 689.9 kB/s eta 0:08:42\n", " -------- ------------------------------ 99.4/459.2 MB 687.7 kB/s eta 0:08:44\n", " -------- ------------------------------ 99.4/459.2 MB 686.3 kB/s eta 0:08:45\n", " -------- ------------------------------ 99.5/459.2 MB 684.8 kB/s eta 0:08:46\n", " -------- ------------------------------ 99.6/459.2 MB 684.1 kB/s eta 0:08:46\n", " -------- ------------------------------ 99.6/459.2 MB 682.7 kB/s eta 0:08:47\n", " -------- ------------------------------ 99.7/459.2 MB 682.0 kB/s eta 0:08:48\n", " -------- ------------------------------ 99.7/459.2 MB 681.3 kB/s eta 0:08:48\n", " -------- ------------------------------ 99.8/459.2 MB 679.2 kB/s eta 0:08:50\n", " -------- ------------------------------ 99.9/459.2 MB 678.5 kB/s eta 0:08:50\n", " -------- ------------------------------ 99.9/459.2 MB 677.0 kB/s eta 0:08:51\n", " -------- ----------------------------- 100.0/459.2 MB 675.0 kB/s eta 0:08:53\n", " -------- ----------------------------- 100.1/459.2 MB 673.6 kB/s eta 0:08:54\n", " -------- ----------------------------- 100.2/459.2 MB 672.2 kB/s eta 0:08:55\n", " -------- ----------------------------- 100.2/459.2 MB 670.8 kB/s eta 0:08:56\n", " -------- ----------------------------- 100.3/459.2 MB 670.1 kB/s eta 0:08:56\n", " -------- ----------------------------- 100.4/459.2 MB 668.1 kB/s eta 0:08:58\n", " -------- ----------------------------- 100.4/459.2 MB 666.7 kB/s eta 0:08:59\n", " -------- ----------------------------- 100.5/459.2 MB 664.7 kB/s eta 0:09:00\n", " -------- ----------------------------- 100.6/459.2 MB 663.3 kB/s eta 0:09:01\n", " -------- ----------------------------- 100.6/459.2 MB 662.6 kB/s eta 0:09:02\n", " -------- ----------------------------- 100.7/459.2 MB 660.0 kB/s eta 0:09:04\n", " -------- ----------------------------- 100.8/459.2 MB 659.3 kB/s eta 0:09:04\n", " -------- ----------------------------- 100.9/459.2 MB 658.7 kB/s eta 0:09:04\n", " -------- ----------------------------- 101.0/459.2 MB 657.3 kB/s eta 0:09:05\n", " -------- ----------------------------- 101.0/459.2 MB 656.0 kB/s eta 0:09:06\n", " -------- ----------------------------- 101.1/459.2 MB 655.4 kB/s eta 0:09:07\n", " -------- ----------------------------- 101.2/459.2 MB 654.7 kB/s eta 0:09:07\n", " -------- ----------------------------- 101.3/459.2 MB 656.7 kB/s eta 0:09:06\n", " -------- ----------------------------- 101.3/459.2 MB 655.4 kB/s eta 0:09:07\n", " -------- ----------------------------- 101.4/459.2 MB 656.0 kB/s eta 0:09:06\n", " -------- ----------------------------- 101.5/459.2 MB 660.0 kB/s eta 0:09:02\n", " -------- ----------------------------- 101.6/459.2 MB 658.7 kB/s eta 0:09:03\n", " -------- ----------------------------- 101.6/459.2 MB 659.3 kB/s eta 0:09:03\n", " -------- ----------------------------- 101.7/459.2 MB 659.3 kB/s eta 0:09:03\n", " -------- ----------------------------- 101.8/459.2 MB 668.8 kB/s eta 0:08:55\n", " -------- ----------------------------- 101.9/459.2 MB 677.8 kB/s eta 0:08:48\n", " -------- ----------------------------- 102.0/459.2 MB 689.9 kB/s eta 0:08:38\n", " -------- ----------------------------- 102.0/459.2 MB 701.0 kB/s eta 0:08:30\n", " -------- ----------------------------- 102.2/459.2 MB 737.3 kB/s eta 0:08:05\n", " -------- ----------------------------- 102.2/459.2 MB 766.6 kB/s eta 0:07:46\n", " -------- ----------------------------- 102.3/459.2 MB 791.7 kB/s eta 0:07:31\n", " -------- ----------------------------- 102.4/459.2 MB 816.4 kB/s eta 0:07:17\n", " -------- ----------------------------- 102.5/459.2 MB 830.8 kB/s eta 0:07:10\n", " -------- ----------------------------- 102.6/459.2 MB 853.6 kB/s eta 0:06:58\n", " -------- ----------------------------- 102.8/459.2 MB 882.3 kB/s eta 0:06:44\n", " -------- ----------------------------- 102.9/459.2 MB 904.2 kB/s eta 0:06:35\n", " -------- ----------------------------- 103.0/459.2 MB 923.4 kB/s eta 0:06:26\n", " -------- ----------------------------- 103.1/459.2 MB 939.3 kB/s eta 0:06:20\n", " -------- ----------------------------- 103.2/459.2 MB 948.9 kB/s eta 0:06:16\n", " -------- ----------------------------- 103.3/459.2 MB 962.8 kB/s eta 0:06:10\n", " -------- ----------------------------- 103.4/459.2 MB 974.3 kB/s eta 0:06:06\n", " -------- ----------------------------- 103.6/459.2 MB 989.0 kB/s eta 0:06:00\n", " -------- ----------------------------- 103.6/459.2 MB 993.5 kB/s eta 0:05:58\n", " --------- ------------------------------ 103.7/459.2 MB 1.0 MB/s eta 0:05:56\n", " --------- ------------------------------ 103.8/459.2 MB 1.0 MB/s eta 0:05:52\n", " --------- ------------------------------ 104.0/459.2 MB 1.0 MB/s eta 0:05:48\n", " --------- ------------------------------ 104.1/459.2 MB 1.0 MB/s eta 0:05:45\n", " --------- ------------------------------ 104.2/459.2 MB 1.0 MB/s eta 0:05:43\n", " --------- ------------------------------ 104.3/459.2 MB 1.0 MB/s eta 0:05:40\n", " --------- ------------------------------ 104.4/459.2 MB 1.1 MB/s eta 0:05:38\n", " --------- ------------------------------ 104.6/459.2 MB 1.1 MB/s eta 0:05:34\n", " --------- ------------------------------ 104.7/459.2 MB 1.1 MB/s eta 0:05:32\n", " --------- ------------------------------ 104.8/459.2 MB 1.1 MB/s eta 0:05:30\n", " --------- ------------------------------ 104.9/459.2 MB 1.1 MB/s eta 0:05:25\n", " --------- ------------------------------ 105.1/459.2 MB 1.1 MB/s eta 0:05:19\n", " --------- ------------------------------ 105.2/459.2 MB 1.1 MB/s eta 0:05:11\n", " --------- ------------------------------ 105.4/459.2 MB 1.2 MB/s eta 0:05:05\n", " --------- ------------------------------ 105.5/459.2 MB 1.2 MB/s eta 0:04:59\n", " --------- ------------------------------ 105.6/459.2 MB 1.2 MB/s eta 0:04:56\n", " --------- ------------------------------ 105.7/459.2 MB 1.2 MB/s eta 0:04:51\n", " --------- ------------------------------ 105.9/459.2 MB 1.2 MB/s eta 0:04:48\n", " --------- ------------------------------ 106.0/459.2 MB 1.2 MB/s eta 0:04:44\n", " --------- ------------------------------ 106.2/459.2 MB 1.3 MB/s eta 0:04:41\n", " --------- ------------------------------ 106.3/459.2 MB 1.3 MB/s eta 0:04:37\n", " --------- ------------------------------ 106.4/459.2 MB 1.3 MB/s eta 0:04:35\n", " --------- ------------------------------ 106.6/459.2 MB 1.3 MB/s eta 0:04:31\n", " --------- ------------------------------ 106.7/459.2 MB 1.3 MB/s eta 0:04:30\n", " --------- ------------------------------ 106.8/459.2 MB 1.3 MB/s eta 0:04:26\n", " --------- ------------------------------ 107.0/459.2 MB 1.3 MB/s eta 0:04:25\n", " --------- ------------------------------ 107.1/459.2 MB 1.3 MB/s eta 0:04:23\n", " --------- ------------------------------ 107.2/459.2 MB 1.3 MB/s eta 0:04:21\n", " --------- ------------------------------ 107.4/459.2 MB 1.4 MB/s eta 0:04:19\n", " --------- ------------------------------ 107.6/459.2 MB 1.4 MB/s eta 0:04:16\n", " --------- ------------------------------ 107.7/459.2 MB 1.4 MB/s eta 0:04:13\n", " --------- ------------------------------ 107.8/459.2 MB 1.4 MB/s eta 0:04:10\n", " --------- ------------------------------ 108.0/459.2 MB 1.4 MB/s eta 0:04:05\n", " --------- ------------------------------ 108.2/459.2 MB 1.5 MB/s eta 0:03:56\n", " --------- ------------------------------ 108.3/459.2 MB 1.5 MB/s eta 0:03:50\n", " --------- ------------------------------ 108.5/459.2 MB 1.6 MB/s eta 0:03:45\n", " --------- ------------------------------ 108.6/459.2 MB 1.6 MB/s eta 0:03:40\n", " --------- ------------------------------ 108.8/459.2 MB 1.6 MB/s eta 0:03:36\n", " --------- ------------------------------ 108.9/459.2 MB 1.7 MB/s eta 0:03:31\n", " --------- ------------------------------ 109.1/459.2 MB 1.7 MB/s eta 0:03:27\n", " --------- ------------------------------ 109.2/459.2 MB 1.7 MB/s eta 0:03:24\n", " --------- ------------------------------ 109.4/459.2 MB 1.8 MB/s eta 0:03:20\n", " --------- ------------------------------ 109.5/459.2 MB 1.8 MB/s eta 0:03:18\n", " --------- ------------------------------ 109.6/459.2 MB 1.8 MB/s eta 0:03:16\n", " --------- ------------------------------ 109.8/459.2 MB 1.8 MB/s eta 0:03:13\n", " --------- ------------------------------ 109.9/459.2 MB 1.8 MB/s eta 0:03:10\n", " --------- ------------------------------ 110.0/459.2 MB 1.9 MB/s eta 0:03:09\n", " --------- ------------------------------ 110.2/459.2 MB 1.9 MB/s eta 0:03:07\n", " --------- ------------------------------ 110.3/459.2 MB 1.9 MB/s eta 0:03:04\n", " --------- ------------------------------ 110.4/459.2 MB 1.9 MB/s eta 0:03:03\n", " --------- ------------------------------ 110.5/459.2 MB 1.9 MB/s eta 0:03:02\n", " --------- ------------------------------ 110.6/459.2 MB 1.9 MB/s eta 0:03:02\n", " --------- ------------------------------ 110.7/459.2 MB 2.0 MB/s eta 0:02:58\n", " --------- ------------------------------ 110.9/459.2 MB 2.0 MB/s eta 0:02:55\n", " --------- ------------------------------ 111.0/459.2 MB 2.0 MB/s eta 0:02:53\n", " --------- ------------------------------ 111.0/459.2 MB 2.0 MB/s eta 0:02:53\n", " --------- ------------------------------ 111.2/459.2 MB 2.0 MB/s eta 0:02:52\n", " --------- ------------------------------ 111.3/459.2 MB 2.1 MB/s eta 0:02:49\n", " --------- ------------------------------ 111.5/459.2 MB 2.1 MB/s eta 0:02:49\n", " --------- ------------------------------ 111.5/459.2 MB 2.0 MB/s eta 0:02:51\n", " --------- ------------------------------ 111.6/459.2 MB 2.1 MB/s eta 0:02:49\n", " --------- ------------------------------ 111.8/459.2 MB 2.1 MB/s eta 0:02:48\n", " --------- ------------------------------ 111.9/459.2 MB 2.1 MB/s eta 0:02:46\n", " --------- ------------------------------ 112.1/459.2 MB 2.1 MB/s eta 0:02:45\n", " --------- ------------------------------ 112.2/459.2 MB 2.1 MB/s eta 0:02:44\n", " --------- ------------------------------ 112.4/459.2 MB 2.1 MB/s eta 0:02:43\n", " --------- ------------------------------ 112.5/459.2 MB 2.2 MB/s eta 0:02:41\n", " --------- ------------------------------ 112.7/459.2 MB 2.2 MB/s eta 0:02:41\n", " --------- ------------------------------ 112.8/459.2 MB 2.2 MB/s eta 0:02:40\n", " --------- ------------------------------ 112.9/459.2 MB 2.2 MB/s eta 0:02:39\n", " --------- ------------------------------ 113.0/459.2 MB 2.2 MB/s eta 0:02:39\n", " --------- ------------------------------ 113.1/459.2 MB 2.2 MB/s eta 0:02:38\n", " --------- ------------------------------ 113.2/459.2 MB 2.2 MB/s eta 0:02:37\n", " --------- ------------------------------ 113.3/459.2 MB 2.2 MB/s eta 0:02:37\n", " --------- ------------------------------ 113.5/459.2 MB 2.2 MB/s eta 0:02:36\n", " --------- ------------------------------ 113.6/459.2 MB 2.2 MB/s eta 0:02:36\n", " --------- ------------------------------ 113.7/459.2 MB 2.2 MB/s eta 0:02:34\n", " --------- ------------------------------ 113.9/459.2 MB 2.3 MB/s eta 0:02:33\n", " --------- ------------------------------ 114.0/459.2 MB 2.3 MB/s eta 0:02:32\n", " --------- ------------------------------ 114.2/459.2 MB 2.3 MB/s eta 0:02:32\n", " --------- ------------------------------ 114.3/459.2 MB 2.3 MB/s eta 0:02:31\n", " --------- ------------------------------ 114.5/459.2 MB 2.3 MB/s eta 0:02:31\n", " --------- ------------------------------ 114.6/459.2 MB 2.3 MB/s eta 0:02:29\n", " --------- ------------------------------ 114.8/459.2 MB 2.3 MB/s eta 0:02:29\n", " --------- ------------------------------ 114.8/459.2 MB 2.3 MB/s eta 0:02:29\n", " ---------- ----------------------------- 115.1/459.2 MB 2.3 MB/s eta 0:02:29\n", " ---------- ----------------------------- 115.1/459.2 MB 2.3 MB/s eta 0:02:29\n", " ---------- ----------------------------- 115.3/459.2 MB 2.3 MB/s eta 0:02:31\n", " ---------- ----------------------------- 115.4/459.2 MB 2.3 MB/s eta 0:02:31\n", " ---------- ----------------------------- 115.5/459.2 MB 2.3 MB/s eta 0:02:31\n", " ---------- ----------------------------- 115.7/459.2 MB 2.3 MB/s eta 0:02:31\n", " ---------- ----------------------------- 115.8/459.2 MB 2.3 MB/s eta 0:02:31\n", " ---------- ----------------------------- 115.9/459.2 MB 2.3 MB/s eta 0:02:31\n", " ---------- ----------------------------- 116.0/459.2 MB 2.3 MB/s eta 0:02:30\n", " ---------- ----------------------------- 116.2/459.2 MB 2.3 MB/s eta 0:02:30\n", " ---------- ----------------------------- 116.3/459.2 MB 2.3 MB/s eta 0:02:30\n", " ---------- ----------------------------- 116.4/459.2 MB 2.3 MB/s eta 0:02:31\n", " ---------- ----------------------------- 116.6/459.2 MB 2.3 MB/s eta 0:02:31\n", " ---------- ----------------------------- 116.7/459.2 MB 2.3 MB/s eta 0:02:30\n", " ---------- ----------------------------- 116.8/459.2 MB 2.3 MB/s eta 0:02:30\n", " ---------- ----------------------------- 117.0/459.2 MB 2.3 MB/s eta 0:02:31\n", " ---------- ----------------------------- 117.1/459.2 MB 2.3 MB/s eta 0:02:31\n", " ---------- ----------------------------- 117.2/459.2 MB 2.3 MB/s eta 0:02:31\n", " ---------- ----------------------------- 117.3/459.2 MB 2.3 MB/s eta 0:02:31\n", " ---------- ----------------------------- 117.5/459.2 MB 2.3 MB/s eta 0:02:31\n", " ---------- ----------------------------- 117.6/459.2 MB 2.3 MB/s eta 0:02:31\n", " ---------- ----------------------------- 117.7/459.2 MB 2.3 MB/s eta 0:02:31\n", " ---------- ----------------------------- 117.9/459.2 MB 2.3 MB/s eta 0:02:31\n", " ---------- ----------------------------- 118.0/459.2 MB 2.3 MB/s eta 0:02:31\n", " ---------- ----------------------------- 118.1/459.2 MB 2.3 MB/s eta 0:02:31\n", " ---------- ----------------------------- 118.3/459.2 MB 2.3 MB/s eta 0:02:31\n", " ---------- ----------------------------- 118.4/459.2 MB 2.3 MB/s eta 0:02:31\n", " ---------- ----------------------------- 118.5/459.2 MB 2.3 MB/s eta 0:02:31\n", " ---------- ----------------------------- 118.7/459.2 MB 2.3 MB/s eta 0:02:32\n", " ---------- ----------------------------- 118.8/459.2 MB 2.2 MB/s eta 0:02:32\n", " ---------- ----------------------------- 118.9/459.2 MB 2.2 MB/s eta 0:02:32\n", " ---------- ----------------------------- 119.0/459.2 MB 2.2 MB/s eta 0:02:33\n", " ---------- ----------------------------- 119.2/459.2 MB 2.2 MB/s eta 0:02:33\n", " ---------- ----------------------------- 119.4/459.2 MB 2.2 MB/s eta 0:02:33\n", " ---------- ----------------------------- 119.5/459.2 MB 2.2 MB/s eta 0:02:33\n", " ---------- ----------------------------- 119.6/459.2 MB 2.2 MB/s eta 0:02:32\n", " ---------- ----------------------------- 119.7/459.2 MB 2.2 MB/s eta 0:02:32\n", " ---------- ----------------------------- 119.9/459.2 MB 2.2 MB/s eta 0:02:33\n", " ---------- ----------------------------- 120.1/459.2 MB 2.2 MB/s eta 0:02:33\n", " ---------- ----------------------------- 120.2/459.2 MB 2.2 MB/s eta 0:02:33\n", " ---------- ----------------------------- 120.2/459.2 MB 2.2 MB/s eta 0:02:34\n", " ---------- ----------------------------- 120.3/459.2 MB 2.2 MB/s eta 0:02:34\n", " ---------- ----------------------------- 120.5/459.2 MB 2.2 MB/s eta 0:02:35\n", " ---------- ----------------------------- 120.6/459.2 MB 2.2 MB/s eta 0:02:35\n", " ---------- ----------------------------- 120.8/459.2 MB 2.2 MB/s eta 0:02:34\n", " ---------- ----------------------------- 120.8/459.2 MB 2.2 MB/s eta 0:02:35\n", " ---------- ----------------------------- 121.0/459.2 MB 2.2 MB/s eta 0:02:35\n", " ---------- ----------------------------- 121.1/459.2 MB 2.2 MB/s eta 0:02:35\n", " ---------- ----------------------------- 121.3/459.2 MB 2.2 MB/s eta 0:02:34\n", " ---------- ----------------------------- 121.4/459.2 MB 2.2 MB/s eta 0:02:35\n", " ---------- ----------------------------- 121.5/459.2 MB 2.2 MB/s eta 0:02:36\n", " ---------- ----------------------------- 121.7/459.2 MB 2.2 MB/s eta 0:02:34\n", " ---------- ----------------------------- 121.9/459.2 MB 2.2 MB/s eta 0:02:33\n", " ---------- ----------------------------- 122.0/459.2 MB 2.2 MB/s eta 0:02:34\n", " ---------- ----------------------------- 122.1/459.2 MB 2.2 MB/s eta 0:02:33\n", " ---------- ----------------------------- 122.3/459.2 MB 2.2 MB/s eta 0:02:33\n", " ---------- ----------------------------- 122.4/459.2 MB 2.2 MB/s eta 0:02:33\n", " ---------- ----------------------------- 122.6/459.2 MB 2.2 MB/s eta 0:02:33\n", " ---------- ----------------------------- 122.7/459.2 MB 2.2 MB/s eta 0:02:34\n", " ---------- ----------------------------- 122.9/459.2 MB 2.2 MB/s eta 0:02:33\n", " ---------- ----------------------------- 123.1/459.2 MB 2.2 MB/s eta 0:02:33\n", " ---------- ----------------------------- 123.2/459.2 MB 2.2 MB/s eta 0:02:34\n", " ---------- ----------------------------- 123.4/459.2 MB 2.2 MB/s eta 0:02:34\n", " ---------- ----------------------------- 123.6/459.2 MB 2.2 MB/s eta 0:02:33\n", " ---------- ----------------------------- 123.7/459.2 MB 2.2 MB/s eta 0:02:34\n", " ---------- ----------------------------- 123.9/459.2 MB 2.2 MB/s eta 0:02:34\n", " ---------- ----------------------------- 124.0/459.2 MB 2.2 MB/s eta 0:02:33\n", " ---------- ----------------------------- 124.1/459.2 MB 2.2 MB/s eta 0:02:33\n", " ---------- ----------------------------- 124.3/459.2 MB 2.2 MB/s eta 0:02:33\n", " ---------- ----------------------------- 124.4/459.2 MB 2.2 MB/s eta 0:02:33\n", " ---------- ----------------------------- 124.6/459.2 MB 2.2 MB/s eta 0:02:33\n", " ---------- ----------------------------- 124.7/459.2 MB 2.2 MB/s eta 0:02:34\n", " ---------- ----------------------------- 124.9/459.2 MB 2.2 MB/s eta 0:02:34\n", " ---------- ----------------------------- 125.0/459.2 MB 2.2 MB/s eta 0:02:32\n", " ---------- ----------------------------- 125.2/459.2 MB 2.2 MB/s eta 0:02:32\n", " ---------- ----------------------------- 125.3/459.2 MB 2.2 MB/s eta 0:02:33\n", " ---------- ----------------------------- 125.4/459.2 MB 2.2 MB/s eta 0:02:32\n", " ---------- ----------------------------- 125.5/459.2 MB 2.2 MB/s eta 0:02:33\n", " ---------- ----------------------------- 125.7/459.2 MB 2.2 MB/s eta 0:02:31\n", " ---------- ----------------------------- 125.8/459.2 MB 2.2 MB/s eta 0:02:32\n", " ---------- ----------------------------- 126.0/459.2 MB 2.2 MB/s eta 0:02:32\n", " ---------- ----------------------------- 126.1/459.2 MB 2.2 MB/s eta 0:02:32\n", " ---------- ----------------------------- 126.2/459.2 MB 2.2 MB/s eta 0:02:32\n", " ----------- ---------------------------- 126.4/459.2 MB 2.2 MB/s eta 0:02:31\n", " ----------- ---------------------------- 126.5/459.2 MB 2.2 MB/s eta 0:02:31\n", " ----------- ---------------------------- 126.6/459.2 MB 2.2 MB/s eta 0:02:31\n", " ----------- ---------------------------- 126.8/459.2 MB 2.2 MB/s eta 0:02:31\n", " ----------- ---------------------------- 126.9/459.2 MB 2.2 MB/s eta 0:02:31\n", " ----------- ---------------------------- 127.0/459.2 MB 2.2 MB/s eta 0:02:31\n", " ----------- ---------------------------- 127.2/459.2 MB 2.2 MB/s eta 0:02:31\n", " ----------- ---------------------------- 127.3/459.2 MB 2.2 MB/s eta 0:02:30\n", " ----------- ---------------------------- 127.4/459.2 MB 2.2 MB/s eta 0:02:31\n", " ----------- ---------------------------- 127.5/459.2 MB 2.2 MB/s eta 0:02:31\n", " ----------- ---------------------------- 127.5/459.2 MB 2.2 MB/s eta 0:02:33\n", " ----------- ---------------------------- 127.5/459.2 MB 2.1 MB/s eta 0:02:35\n", " ----------- ---------------------------- 127.6/459.2 MB 2.2 MB/s eta 0:02:34\n", " ----------- ---------------------------- 127.7/459.2 MB 2.1 MB/s eta 0:02:35\n", " ----------- ---------------------------- 127.8/459.2 MB 2.1 MB/s eta 0:02:35\n", " ----------- ---------------------------- 128.0/459.2 MB 2.1 MB/s eta 0:02:35\n", " ----------- ---------------------------- 128.1/459.2 MB 2.1 MB/s eta 0:02:35\n", " ----------- ---------------------------- 128.3/459.2 MB 2.1 MB/s eta 0:02:35\n", " ----------- ---------------------------- 128.4/459.2 MB 2.1 MB/s eta 0:02:35\n", " ----------- ---------------------------- 128.6/459.2 MB 2.1 MB/s eta 0:02:34\n", " ----------- ---------------------------- 128.7/459.2 MB 2.2 MB/s eta 0:02:34\n", " ----------- ---------------------------- 128.9/459.2 MB 2.2 MB/s eta 0:02:33\n", " ----------- ---------------------------- 129.1/459.2 MB 2.2 MB/s eta 0:02:32\n", " ----------- ---------------------------- 129.2/459.2 MB 2.2 MB/s eta 0:02:32\n", " ----------- ---------------------------- 129.4/459.2 MB 2.2 MB/s eta 0:02:32\n", " ----------- ---------------------------- 129.4/459.2 MB 2.2 MB/s eta 0:02:32\n", " ----------- ---------------------------- 129.5/459.2 MB 2.1 MB/s eta 0:02:34\n", " ----------- ---------------------------- 129.6/459.2 MB 2.2 MB/s eta 0:02:33\n", " ----------- ---------------------------- 129.7/459.2 MB 2.1 MB/s eta 0:02:34\n", " ----------- ---------------------------- 129.9/459.2 MB 2.1 MB/s eta 0:02:34\n", " ----------- ---------------------------- 130.0/459.2 MB 2.1 MB/s eta 0:02:35\n", " ----------- ---------------------------- 130.1/459.2 MB 2.1 MB/s eta 0:02:35\n", " ----------- ---------------------------- 130.2/459.2 MB 2.1 MB/s eta 0:02:34\n", " ----------- ---------------------------- 130.4/459.2 MB 2.1 MB/s eta 0:02:35\n", " ----------- ---------------------------- 130.4/459.2 MB 2.1 MB/s eta 0:02:35\n", " ----------- ---------------------------- 130.6/459.2 MB 2.2 MB/s eta 0:02:33\n", " ----------- ---------------------------- 130.7/459.2 MB 2.2 MB/s eta 0:02:33\n", " ----------- ---------------------------- 130.9/459.2 MB 2.1 MB/s eta 0:02:33\n", " ----------- ---------------------------- 131.0/459.2 MB 2.2 MB/s eta 0:02:33\n", " ----------- ---------------------------- 131.1/459.2 MB 2.2 MB/s eta 0:02:33\n", " ----------- ---------------------------- 131.3/459.2 MB 2.2 MB/s eta 0:02:33\n", " ----------- ---------------------------- 131.4/459.2 MB 2.1 MB/s eta 0:02:33\n", " ----------- ---------------------------- 131.5/459.2 MB 2.2 MB/s eta 0:02:33\n", " ----------- ---------------------------- 131.6/459.2 MB 2.2 MB/s eta 0:02:33\n", " ----------- ---------------------------- 131.7/459.2 MB 2.2 MB/s eta 0:02:32\n", " ----------- ---------------------------- 131.8/459.2 MB 2.2 MB/s eta 0:02:33\n", " ----------- ---------------------------- 131.9/459.2 MB 2.1 MB/s eta 0:02:33\n", " ----------- ---------------------------- 132.0/459.2 MB 2.1 MB/s eta 0:02:33\n", " ----------- ---------------------------- 132.1/459.2 MB 2.1 MB/s eta 0:02:34\n", " ----------- ---------------------------- 132.2/459.2 MB 2.1 MB/s eta 0:02:35\n", " ----------- ---------------------------- 132.3/459.2 MB 2.1 MB/s eta 0:02:35\n", " ----------- ---------------------------- 132.3/459.2 MB 2.1 MB/s eta 0:02:35\n", " ----------- ---------------------------- 132.4/459.2 MB 2.1 MB/s eta 0:02:36\n", " ----------- ---------------------------- 132.5/459.2 MB 2.1 MB/s eta 0:02:36\n", " ----------- ---------------------------- 132.6/459.2 MB 2.1 MB/s eta 0:02:37\n", " ----------- ---------------------------- 132.7/459.2 MB 2.1 MB/s eta 0:02:37\n", " ----------- ---------------------------- 132.9/459.2 MB 2.1 MB/s eta 0:02:38\n", " ----------- ---------------------------- 132.9/459.2 MB 2.1 MB/s eta 0:02:38\n", " ----------- ---------------------------- 133.1/459.2 MB 2.1 MB/s eta 0:02:38\n", " ----------- ---------------------------- 133.2/459.2 MB 2.1 MB/s eta 0:02:39\n", " ----------- ---------------------------- 133.2/459.2 MB 2.1 MB/s eta 0:02:39\n", " ----------- ---------------------------- 133.3/459.2 MB 2.0 MB/s eta 0:02:41\n", " ----------- ---------------------------- 133.4/459.2 MB 2.0 MB/s eta 0:02:40\n", " ----------- ---------------------------- 133.4/459.2 MB 2.0 MB/s eta 0:02:43\n", " ----------- ---------------------------- 133.5/459.2 MB 2.0 MB/s eta 0:02:43\n", " ----------- ---------------------------- 133.5/459.2 MB 2.0 MB/s eta 0:02:43\n", " ----------- ---------------------------- 133.6/459.2 MB 2.0 MB/s eta 0:02:47\n", " ----------- ---------------------------- 133.6/459.2 MB 2.0 MB/s eta 0:02:47\n", " ----------- ---------------------------- 133.6/459.2 MB 1.9 MB/s eta 0:02:49\n", " ----------- ---------------------------- 133.6/459.2 MB 1.9 MB/s eta 0:02:51\n", " ----------- ---------------------------- 133.7/459.2 MB 1.9 MB/s eta 0:02:53\n", " ----------- ---------------------------- 133.7/459.2 MB 1.9 MB/s eta 0:02:54\n", " ----------- ---------------------------- 133.7/459.2 MB 1.8 MB/s eta 0:02:57\n", " ----------- ---------------------------- 133.7/459.2 MB 1.8 MB/s eta 0:02:57\n", " ----------- ---------------------------- 133.8/459.2 MB 1.8 MB/s eta 0:02:59\n", " ----------- ---------------------------- 133.8/459.2 MB 1.8 MB/s eta 0:03:02\n", " ----------- ---------------------------- 133.8/459.2 MB 1.8 MB/s eta 0:03:02\n", " ----------- ---------------------------- 133.9/459.2 MB 1.8 MB/s eta 0:03:05\n", " ----------- ---------------------------- 133.9/459.2 MB 1.7 MB/s eta 0:03:07\n", " ----------- ---------------------------- 133.9/459.2 MB 1.7 MB/s eta 0:03:08\n", " ----------- ---------------------------- 134.0/459.2 MB 1.7 MB/s eta 0:03:09\n", " ----------- ---------------------------- 134.0/459.2 MB 1.7 MB/s eta 0:03:12\n", " ----------- ---------------------------- 134.0/459.2 MB 1.7 MB/s eta 0:03:12\n", " ----------- ---------------------------- 134.0/459.2 MB 1.7 MB/s eta 0:03:15\n", " ----------- ---------------------------- 134.1/459.2 MB 1.7 MB/s eta 0:03:16\n", " ----------- ---------------------------- 134.1/459.2 MB 1.6 MB/s eta 0:03:18\n", " ----------- ---------------------------- 134.2/459.2 MB 1.6 MB/s eta 0:03:19\n", " ----------- ---------------------------- 134.2/459.2 MB 1.6 MB/s eta 0:03:21\n", " ----------- ---------------------------- 134.2/459.2 MB 1.6 MB/s eta 0:03:22\n", " ----------- ---------------------------- 134.3/459.2 MB 1.6 MB/s eta 0:03:23\n", " ----------- ---------------------------- 134.3/459.2 MB 1.6 MB/s eta 0:03:24\n", " ----------- ---------------------------- 134.3/459.2 MB 1.6 MB/s eta 0:03:26\n", " ----------- ---------------------------- 134.3/459.2 MB 1.6 MB/s eta 0:03:26\n", " ----------- ---------------------------- 134.3/459.2 MB 1.6 MB/s eta 0:03:26\n", " ----------- ---------------------------- 134.4/459.2 MB 1.5 MB/s eta 0:03:30\n", " ----------- ---------------------------- 134.4/459.2 MB 1.5 MB/s eta 0:03:33\n", " ----------- ---------------------------- 134.5/459.2 MB 1.5 MB/s eta 0:03:34\n", " ----------- ---------------------------- 134.5/459.2 MB 1.5 MB/s eta 0:03:36\n", " ----------- ---------------------------- 134.5/459.2 MB 1.5 MB/s eta 0:03:37\n", " ----------- ---------------------------- 134.5/459.2 MB 1.5 MB/s eta 0:03:40\n", " ----------- ---------------------------- 134.6/459.2 MB 1.5 MB/s eta 0:03:40\n", " ----------- ---------------------------- 134.6/459.2 MB 1.5 MB/s eta 0:03:41\n", " ----------- ---------------------------- 134.6/459.2 MB 1.5 MB/s eta 0:03:43\n", " ----------- ---------------------------- 134.7/459.2 MB 1.4 MB/s eta 0:03:45\n", " ----------- ---------------------------- 134.7/459.2 MB 1.4 MB/s eta 0:03:46\n", " ----------- ---------------------------- 134.7/459.2 MB 1.4 MB/s eta 0:03:47\n", " ----------- ---------------------------- 134.8/459.2 MB 1.4 MB/s eta 0:03:50\n", " ----------- ---------------------------- 134.8/459.2 MB 1.4 MB/s eta 0:03:50\n", " ----------- ---------------------------- 134.9/459.2 MB 1.4 MB/s eta 0:03:52\n", " ----------- ---------------------------- 134.9/459.2 MB 1.4 MB/s eta 0:03:53\n", " ----------- ---------------------------- 134.9/459.2 MB 1.4 MB/s eta 0:03:55\n", " ----------- ---------------------------- 135.0/459.2 MB 1.4 MB/s eta 0:03:56\n", " ----------- ---------------------------- 135.0/459.2 MB 1.4 MB/s eta 0:03:58\n", " ----------- ---------------------------- 135.1/459.2 MB 1.4 MB/s eta 0:03:59\n", " ----------- ---------------------------- 135.1/459.2 MB 1.4 MB/s eta 0:04:00\n", " ----------- ---------------------------- 135.2/459.2 MB 1.3 MB/s eta 0:04:01\n", " ----------- ---------------------------- 135.2/459.2 MB 1.3 MB/s eta 0:04:02\n", " ----------- ---------------------------- 135.2/459.2 MB 1.3 MB/s eta 0:04:03\n", " ----------- ---------------------------- 135.3/459.2 MB 1.3 MB/s eta 0:04:05\n", " ----------- ---------------------------- 135.4/459.2 MB 1.3 MB/s eta 0:04:07\n", " ----------- ---------------------------- 135.4/459.2 MB 1.3 MB/s eta 0:04:08\n", " ----------- ---------------------------- 135.4/459.2 MB 1.3 MB/s eta 0:04:09\n", " ----------- ---------------------------- 135.5/459.2 MB 1.3 MB/s eta 0:04:11\n", " ----------- ---------------------------- 135.6/459.2 MB 1.3 MB/s eta 0:04:12\n", " ----------- ---------------------------- 135.6/459.2 MB 1.3 MB/s eta 0:04:13\n", " ----------- ---------------------------- 135.7/459.2 MB 1.3 MB/s eta 0:04:12\n", " ----------- ---------------------------- 135.7/459.2 MB 1.3 MB/s eta 0:04:13\n", " ----------- ---------------------------- 135.8/459.2 MB 1.3 MB/s eta 0:04:15\n", " ----------- ---------------------------- 135.9/459.2 MB 1.3 MB/s eta 0:04:17\n", " ----------- ---------------------------- 135.9/459.2 MB 1.3 MB/s eta 0:04:18\n", " ----------- ---------------------------- 136.0/459.2 MB 1.3 MB/s eta 0:04:19\n", " ----------- ---------------------------- 136.0/459.2 MB 1.2 MB/s eta 0:04:20\n", " ----------- ---------------------------- 136.1/459.2 MB 1.2 MB/s eta 0:04:20\n", " ----------- ---------------------------- 136.2/459.2 MB 1.2 MB/s eta 0:04:21\n", " ----------- ---------------------------- 136.2/459.2 MB 1.2 MB/s eta 0:04:22\n", " ----------- ---------------------------- 136.3/459.2 MB 1.2 MB/s eta 0:04:23\n", " ----------- ---------------------------- 136.3/459.2 MB 1.2 MB/s eta 0:04:24\n", " ----------- ---------------------------- 136.4/459.2 MB 1.2 MB/s eta 0:04:25\n", " ----------- ---------------------------- 136.5/459.2 MB 1.2 MB/s eta 0:04:26\n", " ----------- ---------------------------- 136.6/459.2 MB 1.2 MB/s eta 0:04:28\n", " ----------- ---------------------------- 136.6/459.2 MB 1.2 MB/s eta 0:04:29\n", " ----------- ---------------------------- 136.7/459.2 MB 1.2 MB/s eta 0:04:29\n", " ----------- ---------------------------- 136.8/459.2 MB 1.2 MB/s eta 0:04:30\n", " ----------- ---------------------------- 136.8/459.2 MB 1.2 MB/s eta 0:04:30\n", " ----------- ---------------------------- 136.9/459.2 MB 1.2 MB/s eta 0:04:32\n", " ----------- ---------------------------- 137.0/459.2 MB 1.2 MB/s eta 0:04:33\n", " ----------- ---------------------------- 137.1/459.2 MB 1.2 MB/s eta 0:04:33\n", " ----------- ---------------------------- 137.2/459.2 MB 1.2 MB/s eta 0:04:34\n", " ----------- ---------------------------- 137.2/459.2 MB 1.2 MB/s eta 0:04:35\n", " ----------- ---------------------------- 137.3/459.2 MB 1.2 MB/s eta 0:04:35\n", " ----------- ---------------------------- 137.4/459.2 MB 1.2 MB/s eta 0:04:36\n", " ----------- ---------------------------- 137.5/459.2 MB 1.2 MB/s eta 0:04:37\n", " ----------- ---------------------------- 137.6/459.2 MB 1.2 MB/s eta 0:04:37\n", " ----------- ---------------------------- 137.6/459.2 MB 1.2 MB/s eta 0:04:37\n", " ----------- ---------------------------- 137.7/459.2 MB 1.2 MB/s eta 0:04:35\n", " ------------ --------------------------- 137.8/459.2 MB 1.2 MB/s eta 0:04:35\n", " ------------ --------------------------- 137.9/459.2 MB 1.2 MB/s eta 0:04:35\n", " ------------ --------------------------- 138.0/459.2 MB 1.2 MB/s eta 0:04:35\n", " ------------ --------------------------- 138.1/459.2 MB 1.2 MB/s eta 0:04:36\n", " ------------ --------------------------- 138.2/459.2 MB 1.2 MB/s eta 0:04:37\n", " ------------ --------------------------- 138.3/459.2 MB 1.2 MB/s eta 0:04:37\n", " ------------ --------------------------- 138.4/459.2 MB 1.2 MB/s eta 0:04:38\n", " ------------ --------------------------- 138.4/459.2 MB 1.2 MB/s eta 0:04:38\n", " ------------ --------------------------- 138.6/459.2 MB 1.2 MB/s eta 0:04:39\n", " ------------ --------------------------- 138.7/459.2 MB 1.2 MB/s eta 0:04:39\n", " ------------ --------------------------- 138.8/459.2 MB 1.1 MB/s eta 0:04:40\n", " ------------ --------------------------- 138.8/459.2 MB 1.1 MB/s eta 0:04:41\n", " ------------ --------------------------- 138.9/459.2 MB 1.1 MB/s eta 0:04:42\n", " ------------ --------------------------- 139.0/459.2 MB 1.1 MB/s eta 0:04:43\n", " ------------ --------------------------- 139.1/459.2 MB 1.1 MB/s eta 0:04:44\n", " ------------ --------------------------- 139.2/459.2 MB 1.1 MB/s eta 0:04:44\n", " ------------ --------------------------- 139.2/459.2 MB 1.1 MB/s eta 0:04:44\n", " ------------ --------------------------- 139.3/459.2 MB 1.1 MB/s eta 0:04:46\n", " ------------ --------------------------- 139.3/459.2 MB 1.1 MB/s eta 0:04:48\n", " ------------ --------------------------- 139.4/459.2 MB 1.1 MB/s eta 0:04:49\n", " ------------ --------------------------- 139.5/459.2 MB 1.1 MB/s eta 0:04:50\n", " ------------ --------------------------- 139.6/459.2 MB 1.1 MB/s eta 0:04:51\n", " ------------ --------------------------- 139.7/459.2 MB 1.1 MB/s eta 0:04:49\n", " ------------ --------------------------- 139.8/459.2 MB 1.1 MB/s eta 0:04:51\n", " ------------ --------------------------- 139.9/459.2 MB 1.1 MB/s eta 0:04:50\n", " ------------ --------------------------- 140.0/459.2 MB 1.1 MB/s eta 0:04:51\n", " ------------ --------------------------- 140.1/459.2 MB 1.1 MB/s eta 0:04:50\n", " ------------ --------------------------- 140.2/459.2 MB 1.1 MB/s eta 0:04:50\n", " ------------ --------------------------- 140.3/459.2 MB 1.1 MB/s eta 0:04:51\n", " ------------ --------------------------- 140.4/459.2 MB 1.1 MB/s eta 0:04:51\n", " ------------ --------------------------- 140.5/459.2 MB 1.1 MB/s eta 0:04:52\n", " ------------ --------------------------- 140.6/459.2 MB 1.1 MB/s eta 0:04:52\n", " ------------ --------------------------- 140.7/459.2 MB 1.1 MB/s eta 0:04:52\n", " ------------ --------------------------- 140.8/459.2 MB 1.1 MB/s eta 0:04:53\n", " ------------ --------------------------- 140.9/459.2 MB 1.1 MB/s eta 0:04:54\n", " ------------ --------------------------- 140.9/459.2 MB 1.1 MB/s eta 0:04:54\n", " ------------ --------------------------- 141.1/459.2 MB 1.1 MB/s eta 0:04:55\n", " ------------ --------------------------- 141.2/459.2 MB 1.1 MB/s eta 0:04:55\n", " ------------ --------------------------- 141.3/459.2 MB 1.1 MB/s eta 0:04:55\n", " ------------ --------------------------- 141.4/459.2 MB 1.1 MB/s eta 0:04:56\n", " ------------ --------------------------- 141.5/459.2 MB 1.1 MB/s eta 0:04:57\n", " ------------ --------------------------- 141.6/459.2 MB 1.1 MB/s eta 0:04:57\n", " ------------ --------------------------- 141.7/459.2 MB 1.1 MB/s eta 0:04:57\n", " ------------ --------------------------- 141.8/459.2 MB 1.1 MB/s eta 0:04:57\n", " ------------ --------------------------- 141.9/459.2 MB 1.1 MB/s eta 0:04:57\n", " ------------ --------------------------- 142.0/459.2 MB 1.1 MB/s eta 0:04:57\n", " ------------ --------------------------- 142.1/459.2 MB 1.1 MB/s eta 0:04:56\n", " ------------ --------------------------- 142.3/459.2 MB 1.1 MB/s eta 0:04:56\n", " ------------ --------------------------- 142.4/459.2 MB 1.1 MB/s eta 0:04:56\n", " ------------ --------------------------- 142.5/459.2 MB 1.1 MB/s eta 0:04:56\n", " ------------ --------------------------- 142.7/459.2 MB 1.1 MB/s eta 0:04:54\n", " ------------ --------------------------- 142.8/459.2 MB 1.1 MB/s eta 0:04:54\n", " ------------ --------------------------- 142.9/459.2 MB 1.1 MB/s eta 0:04:54\n", " ------------ --------------------------- 143.1/459.2 MB 1.1 MB/s eta 0:04:54\n", " ------------ --------------------------- 143.1/459.2 MB 1.1 MB/s eta 0:04:54\n", " ------------ --------------------------- 143.2/459.2 MB 1.1 MB/s eta 0:04:54\n", " ------------ --------------------------- 143.4/459.2 MB 1.1 MB/s eta 0:04:54\n", " ------------ --------------------------- 143.5/459.2 MB 1.1 MB/s eta 0:04:52\n", " ------------ --------------------------- 143.6/459.2 MB 1.1 MB/s eta 0:04:52\n", " ------------ --------------------------- 143.7/459.2 MB 1.1 MB/s eta 0:04:50\n", " ------------ --------------------------- 143.9/459.2 MB 1.1 MB/s eta 0:04:39\n", " ------------ --------------------------- 144.0/459.2 MB 1.2 MB/s eta 0:04:32\n", " ------------ --------------------------- 144.2/459.2 MB 1.2 MB/s eta 0:04:24\n", " ------------ --------------------------- 144.3/459.2 MB 1.2 MB/s eta 0:04:17\n", " ------------ --------------------------- 144.4/459.2 MB 1.2 MB/s eta 0:04:13\n", " ------------ --------------------------- 144.5/459.2 MB 1.3 MB/s eta 0:04:09\n", " ------------ --------------------------- 144.7/459.2 MB 1.3 MB/s eta 0:04:00\n", " ------------ --------------------------- 144.8/459.2 MB 1.4 MB/s eta 0:03:53\n", " ------------ --------------------------- 144.9/459.2 MB 1.4 MB/s eta 0:03:48\n", " ------------ --------------------------- 145.0/459.2 MB 1.4 MB/s eta 0:03:43\n", " ------------ --------------------------- 145.1/459.2 MB 1.4 MB/s eta 0:03:39\n", " ------------ --------------------------- 145.3/459.2 MB 1.5 MB/s eta 0:03:36\n", " ------------ --------------------------- 145.4/459.2 MB 1.5 MB/s eta 0:03:31\n", " ------------ --------------------------- 145.6/459.2 MB 1.5 MB/s eta 0:03:26\n", " ------------ --------------------------- 145.7/459.2 MB 1.5 MB/s eta 0:03:23\n", " ------------ --------------------------- 145.8/459.2 MB 1.6 MB/s eta 0:03:20\n", " ------------ --------------------------- 146.0/459.2 MB 1.6 MB/s eta 0:03:15\n", " ------------ --------------------------- 146.1/459.2 MB 1.6 MB/s eta 0:03:12\n", " ------------ --------------------------- 146.3/459.2 MB 1.6 MB/s eta 0:03:11\n", " ------------ --------------------------- 146.4/459.2 MB 1.7 MB/s eta 0:03:10\n", " ------------ --------------------------- 146.5/459.2 MB 1.7 MB/s eta 0:03:06\n", " ------------ --------------------------- 146.7/459.2 MB 1.7 MB/s eta 0:03:04\n", " ------------ --------------------------- 146.9/459.2 MB 1.7 MB/s eta 0:03:00\n", " ------------ --------------------------- 147.0/459.2 MB 1.8 MB/s eta 0:02:58\n", " ------------ --------------------------- 147.1/459.2 MB 1.8 MB/s eta 0:02:57\n", " ------------ --------------------------- 147.2/459.2 MB 1.8 MB/s eta 0:02:57\n", " ------------ --------------------------- 147.3/459.2 MB 1.8 MB/s eta 0:02:54\n", " ------------ --------------------------- 147.4/459.2 MB 1.8 MB/s eta 0:02:54\n", " ------------ --------------------------- 147.5/459.2 MB 1.8 MB/s eta 0:02:53\n", " ------------ --------------------------- 147.7/459.2 MB 1.8 MB/s eta 0:02:52\n", " ------------ --------------------------- 147.8/459.2 MB 1.8 MB/s eta 0:02:51\n", " ------------ --------------------------- 147.9/459.2 MB 1.8 MB/s eta 0:02:49\n", " ------------ --------------------------- 148.0/459.2 MB 1.9 MB/s eta 0:02:48\n", " ------------ --------------------------- 148.2/459.2 MB 1.9 MB/s eta 0:02:47\n", " ------------ --------------------------- 148.2/459.2 MB 1.9 MB/s eta 0:02:48\n", " ------------ --------------------------- 148.3/459.2 MB 1.9 MB/s eta 0:02:47\n", " ------------ --------------------------- 148.3/459.2 MB 1.9 MB/s eta 0:02:47\n", " ------------ --------------------------- 148.3/459.2 MB 1.9 MB/s eta 0:02:47\n", " ------------ --------------------------- 148.6/459.2 MB 1.9 MB/s eta 0:02:48\n", " ------------ --------------------------- 148.6/459.2 MB 1.8 MB/s eta 0:02:48\n", " ------------ --------------------------- 148.7/459.2 MB 1.8 MB/s eta 0:02:49\n", " ------------ --------------------------- 148.8/459.2 MB 1.8 MB/s eta 0:02:48\n", " ------------ --------------------------- 148.9/459.2 MB 1.8 MB/s eta 0:02:48\n", " ------------ --------------------------- 149.0/459.2 MB 1.9 MB/s eta 0:02:47\n", " ------------ --------------------------- 149.1/459.2 MB 1.9 MB/s eta 0:02:46\n", " ------------- -------------------------- 149.3/459.2 MB 1.9 MB/s eta 0:02:46\n", " ------------- -------------------------- 149.4/459.2 MB 1.9 MB/s eta 0:02:45\n", " ------------- -------------------------- 149.5/459.2 MB 1.9 MB/s eta 0:02:42\n", " ------------- -------------------------- 149.6/459.2 MB 1.9 MB/s eta 0:02:41\n", " ------------- -------------------------- 149.7/459.2 MB 1.9 MB/s eta 0:02:40\n", " ------------- -------------------------- 149.8/459.2 MB 1.9 MB/s eta 0:02:40\n", " ------------- -------------------------- 150.0/459.2 MB 1.9 MB/s eta 0:02:39\n", " ------------- -------------------------- 150.1/459.2 MB 2.0 MB/s eta 0:02:39\n", " ------------- -------------------------- 150.2/459.2 MB 2.0 MB/s eta 0:02:39\n", " ------------- -------------------------- 150.3/459.2 MB 2.0 MB/s eta 0:02:38\n", " ------------- -------------------------- 150.4/459.2 MB 2.0 MB/s eta 0:02:38\n", " ------------- -------------------------- 150.5/459.2 MB 2.0 MB/s eta 0:02:37\n", " ------------- -------------------------- 150.6/459.2 MB 2.0 MB/s eta 0:02:37\n", " ------------- -------------------------- 150.6/459.2 MB 2.0 MB/s eta 0:02:38\n", " ------------- -------------------------- 150.7/459.2 MB 2.0 MB/s eta 0:02:38\n", " ------------- -------------------------- 150.8/459.2 MB 2.0 MB/s eta 0:02:38\n", " ------------- -------------------------- 150.9/459.2 MB 2.0 MB/s eta 0:02:36\n", " ------------- -------------------------- 151.1/459.2 MB 2.0 MB/s eta 0:02:34\n", " ------------- -------------------------- 151.2/459.2 MB 2.0 MB/s eta 0:02:34\n", " ------------- -------------------------- 151.3/459.2 MB 2.0 MB/s eta 0:02:34\n", " ------------- -------------------------- 151.3/459.2 MB 2.0 MB/s eta 0:02:34\n", " ------------- -------------------------- 151.4/459.2 MB 2.0 MB/s eta 0:02:34\n", " ------------- -------------------------- 151.5/459.2 MB 2.0 MB/s eta 0:02:34\n", " ------------- -------------------------- 151.6/459.2 MB 2.0 MB/s eta 0:02:34\n", " ------------- -------------------------- 151.8/459.2 MB 2.0 MB/s eta 0:02:34\n", " ------------- -------------------------- 151.9/459.2 MB 2.0 MB/s eta 0:02:32\n", " ------------- -------------------------- 152.0/459.2 MB 2.0 MB/s eta 0:02:32\n", " ------------- -------------------------- 152.1/459.2 MB 2.0 MB/s eta 0:02:32\n", " ------------- -------------------------- 152.2/459.2 MB 2.0 MB/s eta 0:02:31\n", " ------------- -------------------------- 152.3/459.2 MB 2.0 MB/s eta 0:02:31\n", " ------------- -------------------------- 152.4/459.2 MB 2.0 MB/s eta 0:02:33\n", " ------------- -------------------------- 152.4/459.2 MB 2.0 MB/s eta 0:02:34\n", " ------------- -------------------------- 152.4/459.2 MB 2.0 MB/s eta 0:02:35\n", " ------------- -------------------------- 152.5/459.2 MB 2.0 MB/s eta 0:02:36\n", " ------------- -------------------------- 152.6/459.2 MB 2.0 MB/s eta 0:02:37\n", " ------------- -------------------------- 152.6/459.2 MB 1.9 MB/s eta 0:02:38\n", " ------------- -------------------------- 152.7/459.2 MB 1.9 MB/s eta 0:02:40\n", " ------------- -------------------------- 152.7/459.2 MB 1.9 MB/s eta 0:02:40\n", " ------------- -------------------------- 152.8/459.2 MB 1.9 MB/s eta 0:02:41\n", " ------------- -------------------------- 152.8/459.2 MB 1.9 MB/s eta 0:02:43\n", " ------------- -------------------------- 152.9/459.2 MB 1.9 MB/s eta 0:02:43\n", " ------------- -------------------------- 153.0/459.2 MB 1.9 MB/s eta 0:02:45\n", " ------------- -------------------------- 153.0/459.2 MB 1.8 MB/s eta 0:02:46\n", " ------------- -------------------------- 153.0/459.2 MB 1.8 MB/s eta 0:02:46\n", " ------------- -------------------------- 153.1/459.2 MB 1.8 MB/s eta 0:02:48\n", " ------------- -------------------------- 153.2/459.2 MB 1.8 MB/s eta 0:02:49\n", " ------------- -------------------------- 153.2/459.2 MB 1.8 MB/s eta 0:02:50\n", " ------------- -------------------------- 153.3/459.2 MB 1.8 MB/s eta 0:02:51\n", " ------------- -------------------------- 153.4/459.2 MB 1.8 MB/s eta 0:02:52\n", " ------------- -------------------------- 153.4/459.2 MB 1.8 MB/s eta 0:02:52\n", " ------------- -------------------------- 153.5/459.2 MB 1.8 MB/s eta 0:02:54\n", " ------------- -------------------------- 153.5/459.2 MB 1.8 MB/s eta 0:02:54\n", " ------------- -------------------------- 153.6/459.2 MB 1.8 MB/s eta 0:02:55\n", " ------------- -------------------------- 153.7/459.2 MB 1.7 MB/s eta 0:02:56\n", " ------------- -------------------------- 153.7/459.2 MB 1.7 MB/s eta 0:02:57\n", " ------------- -------------------------- 153.8/459.2 MB 1.7 MB/s eta 0:02:58\n", " ------------- -------------------------- 153.9/459.2 MB 1.7 MB/s eta 0:02:58\n", " ------------- -------------------------- 153.9/459.2 MB 1.7 MB/s eta 0:02:59\n", " ------------- -------------------------- 154.0/459.2 MB 1.7 MB/s eta 0:03:00\n", " ------------- -------------------------- 154.1/459.2 MB 1.7 MB/s eta 0:03:00\n", " ------------- -------------------------- 154.1/459.2 MB 1.7 MB/s eta 0:03:01\n", " ------------- -------------------------- 154.2/459.2 MB 1.7 MB/s eta 0:03:02\n", " ------------- -------------------------- 154.3/459.2 MB 1.7 MB/s eta 0:03:02\n", " ------------- -------------------------- 154.3/459.2 MB 1.7 MB/s eta 0:03:03\n", " ------------- -------------------------- 154.4/459.2 MB 1.7 MB/s eta 0:03:03\n", " ------------- -------------------------- 154.5/459.2 MB 1.7 MB/s eta 0:03:05\n", " ------------- -------------------------- 154.6/459.2 MB 1.6 MB/s eta 0:03:06\n", " ------------- -------------------------- 154.7/459.2 MB 1.6 MB/s eta 0:03:06\n", " ------------- -------------------------- 154.7/459.2 MB 1.6 MB/s eta 0:03:07\n", " ------------- -------------------------- 154.8/459.2 MB 1.6 MB/s eta 0:03:07\n", " ------------- -------------------------- 154.9/459.2 MB 1.6 MB/s eta 0:03:08\n", " ------------- -------------------------- 154.9/459.2 MB 1.6 MB/s eta 0:03:08\n", " ------------- -------------------------- 155.0/459.2 MB 1.6 MB/s eta 0:03:09\n", " ------------- -------------------------- 155.1/459.2 MB 1.6 MB/s eta 0:03:10\n", " ------------- -------------------------- 155.1/459.2 MB 1.6 MB/s eta 0:03:10\n", " ------------- -------------------------- 155.2/459.2 MB 1.6 MB/s eta 0:03:10\n", " ------------- -------------------------- 155.3/459.2 MB 1.6 MB/s eta 0:03:11\n", " ------------- -------------------------- 155.4/459.2 MB 1.6 MB/s eta 0:03:12\n", " ------------- -------------------------- 155.4/459.2 MB 1.6 MB/s eta 0:03:12\n", " ------------- -------------------------- 155.5/459.2 MB 1.6 MB/s eta 0:03:13\n", " ------------- -------------------------- 155.6/459.2 MB 1.6 MB/s eta 0:03:13\n", " ------------- -------------------------- 155.7/459.2 MB 1.6 MB/s eta 0:03:14\n", " ------------- -------------------------- 155.7/459.2 MB 1.6 MB/s eta 0:03:14\n", " ------------- -------------------------- 155.8/459.2 MB 1.6 MB/s eta 0:03:15\n", " ------------- -------------------------- 155.9/459.2 MB 1.6 MB/s eta 0:03:16\n", " ------------- -------------------------- 156.0/459.2 MB 1.6 MB/s eta 0:03:16\n", " ------------- -------------------------- 156.0/459.2 MB 1.5 MB/s eta 0:03:17\n", " ------------- -------------------------- 156.1/459.2 MB 1.5 MB/s eta 0:03:17\n", " ------------- -------------------------- 156.2/459.2 MB 1.5 MB/s eta 0:03:18\n", " ------------- -------------------------- 156.3/459.2 MB 1.5 MB/s eta 0:03:19\n", " ------------- -------------------------- 156.4/459.2 MB 1.5 MB/s eta 0:03:19\n", " ------------- -------------------------- 156.4/459.2 MB 1.5 MB/s eta 0:03:19\n", " ------------- -------------------------- 156.5/459.2 MB 1.5 MB/s eta 0:03:21\n", " ------------- -------------------------- 156.6/459.2 MB 1.5 MB/s eta 0:03:21\n", " ------------- -------------------------- 156.7/459.2 MB 1.5 MB/s eta 0:03:20\n", " ------------- -------------------------- 156.7/459.2 MB 1.5 MB/s eta 0:03:21\n", " ------------- -------------------------- 156.8/459.2 MB 1.5 MB/s eta 0:03:22\n", " ------------- -------------------------- 156.9/459.2 MB 1.5 MB/s eta 0:03:22\n", " ------------- -------------------------- 157.0/459.2 MB 1.5 MB/s eta 0:03:23\n", " ------------- -------------------------- 157.1/459.2 MB 1.5 MB/s eta 0:03:24\n", " ------------- -------------------------- 157.1/459.2 MB 1.5 MB/s eta 0:03:24\n", " ------------- -------------------------- 157.2/459.2 MB 1.5 MB/s eta 0:03:25\n", " ------------- -------------------------- 157.3/459.2 MB 1.5 MB/s eta 0:03:26\n", " ------------- -------------------------- 157.4/459.2 MB 1.5 MB/s eta 0:03:25\n", " ------------- -------------------------- 157.5/459.2 MB 1.5 MB/s eta 0:03:26\n", " ------------- -------------------------- 157.6/459.2 MB 1.5 MB/s eta 0:03:26\n", " ------------- -------------------------- 157.7/459.2 MB 1.5 MB/s eta 0:03:26\n", " ------------- -------------------------- 157.8/459.2 MB 1.5 MB/s eta 0:03:26\n", " ------------- -------------------------- 157.8/459.2 MB 1.5 MB/s eta 0:03:27\n", " ------------- -------------------------- 157.9/459.2 MB 1.5 MB/s eta 0:03:28\n", " ------------- -------------------------- 158.1/459.2 MB 1.5 MB/s eta 0:03:27\n", " ------------- -------------------------- 158.1/459.2 MB 1.5 MB/s eta 0:03:27\n", " ------------- -------------------------- 158.2/459.2 MB 1.5 MB/s eta 0:03:27\n", " ------------- -------------------------- 158.3/459.2 MB 1.4 MB/s eta 0:03:28\n", " ------------- -------------------------- 158.4/459.2 MB 1.4 MB/s eta 0:03:29\n", " ------------- -------------------------- 158.5/459.2 MB 1.5 MB/s eta 0:03:28\n", " ------------- -------------------------- 158.6/459.2 MB 1.5 MB/s eta 0:03:24\n", " ------------- -------------------------- 158.7/459.2 MB 1.5 MB/s eta 0:03:25\n", " ------------- -------------------------- 158.8/459.2 MB 1.5 MB/s eta 0:03:25\n", " ------------- -------------------------- 158.9/459.2 MB 1.5 MB/s eta 0:03:25\n", " ------------- -------------------------- 158.9/459.2 MB 1.5 MB/s eta 0:03:25\n", " ------------- -------------------------- 159.1/459.2 MB 1.5 MB/s eta 0:03:24\n", " ------------- -------------------------- 159.2/459.2 MB 1.5 MB/s eta 0:03:24\n", " ------------- -------------------------- 159.3/459.2 MB 1.5 MB/s eta 0:03:24\n", " ------------- -------------------------- 159.4/459.2 MB 1.5 MB/s eta 0:03:25\n", " ------------- -------------------------- 159.4/459.2 MB 1.5 MB/s eta 0:03:25\n", " ------------- -------------------------- 159.5/459.2 MB 1.5 MB/s eta 0:03:25\n", " ------------- -------------------------- 159.6/459.2 MB 1.5 MB/s eta 0:03:25\n", " ------------- -------------------------- 159.6/459.2 MB 1.5 MB/s eta 0:03:26\n", " ------------- -------------------------- 159.8/459.2 MB 1.5 MB/s eta 0:03:26\n", " ------------- -------------------------- 159.9/459.2 MB 1.5 MB/s eta 0:03:26\n", " ------------- -------------------------- 160.0/459.2 MB 1.5 MB/s eta 0:03:25\n", " ------------- -------------------------- 160.1/459.2 MB 1.5 MB/s eta 0:03:25\n", " ------------- -------------------------- 160.2/459.2 MB 1.5 MB/s eta 0:03:25\n", " ------------- -------------------------- 160.3/459.2 MB 1.5 MB/s eta 0:03:25\n", " ------------- -------------------------- 160.4/459.2 MB 1.5 MB/s eta 0:03:25\n", " ------------- -------------------------- 160.5/459.2 MB 1.5 MB/s eta 0:03:25\n", " ------------- -------------------------- 160.6/459.2 MB 1.5 MB/s eta 0:03:25\n", " -------------- ------------------------- 160.8/459.2 MB 1.5 MB/s eta 0:03:25\n", " -------------- ------------------------- 160.9/459.2 MB 1.5 MB/s eta 0:03:24\n", " -------------- ------------------------- 161.0/459.2 MB 1.5 MB/s eta 0:03:23\n", " -------------- ------------------------- 161.1/459.2 MB 1.5 MB/s eta 0:03:23\n", " -------------- ------------------------- 161.2/459.2 MB 1.5 MB/s eta 0:03:23\n", " -------------- ------------------------- 161.3/459.2 MB 1.5 MB/s eta 0:03:23\n", " -------------- ------------------------- 161.3/459.2 MB 1.5 MB/s eta 0:03:23\n", " -------------- ------------------------- 161.3/459.2 MB 1.5 MB/s eta 0:03:23\n", " -------------- ------------------------- 161.3/459.2 MB 1.4 MB/s eta 0:03:28\n", " -------------- ------------------------- 161.5/459.2 MB 1.4 MB/s eta 0:03:28\n", " -------------- ------------------------- 161.6/459.2 MB 1.4 MB/s eta 0:03:28\n", " -------------- ------------------------- 161.6/459.2 MB 1.4 MB/s eta 0:03:29\n", " -------------- ------------------------- 161.7/459.2 MB 1.4 MB/s eta 0:03:30\n", " -------------- ------------------------- 161.8/459.2 MB 1.4 MB/s eta 0:03:29\n", " -------------- ------------------------- 161.9/459.2 MB 1.4 MB/s eta 0:03:31\n", " -------------- ------------------------- 161.9/459.2 MB 1.4 MB/s eta 0:03:32\n", " -------------- ------------------------- 162.0/459.2 MB 1.4 MB/s eta 0:03:32\n", " -------------- ------------------------- 162.1/459.2 MB 1.4 MB/s eta 0:03:33\n", " -------------- ------------------------- 162.2/459.2 MB 1.4 MB/s eta 0:03:34\n", " -------------- ------------------------- 162.2/459.2 MB 1.4 MB/s eta 0:03:35\n", " -------------- ------------------------- 162.3/459.2 MB 1.4 MB/s eta 0:03:35\n", " -------------- ------------------------- 162.4/459.2 MB 1.4 MB/s eta 0:03:36\n", " -------------- ------------------------- 162.5/459.2 MB 1.4 MB/s eta 0:03:36\n", " -------------- ------------------------- 162.5/459.2 MB 1.4 MB/s eta 0:03:34\n", " -------------- ------------------------- 162.6/459.2 MB 1.4 MB/s eta 0:03:35\n", " -------------- ------------------------- 162.7/459.2 MB 1.4 MB/s eta 0:03:33\n", " -------------- ------------------------- 162.8/459.2 MB 1.4 MB/s eta 0:03:34\n", " -------------- ------------------------- 162.8/459.2 MB 1.4 MB/s eta 0:03:34\n", " -------------- ------------------------- 162.9/459.2 MB 1.4 MB/s eta 0:03:33\n", " -------------- ------------------------- 162.9/459.2 MB 1.4 MB/s eta 0:03:33\n", " -------------- ------------------------- 162.9/459.2 MB 1.4 MB/s eta 0:03:35\n", " -------------- ------------------------- 162.9/459.2 MB 1.4 MB/s eta 0:03:35\n", " -------------- ------------------------- 163.0/459.2 MB 1.4 MB/s eta 0:03:36\n", " -------------- ------------------------- 163.1/459.2 MB 1.4 MB/s eta 0:03:35\n", " -------------- ------------------------- 163.1/459.2 MB 1.4 MB/s eta 0:03:35\n", " -------------- ------------------------- 163.1/459.2 MB 1.4 MB/s eta 0:03:35\n", " -------------- ------------------------- 163.1/459.2 MB 1.4 MB/s eta 0:03:38\n", " -------------- ------------------------- 163.1/459.2 MB 1.4 MB/s eta 0:03:39\n", " -------------- ------------------------- 163.1/459.2 MB 1.4 MB/s eta 0:03:39\n", " -------------- ------------------------- 163.2/459.2 MB 1.3 MB/s eta 0:03:42\n", " -------------- ------------------------- 163.2/459.2 MB 1.3 MB/s eta 0:03:42\n", " -------------- ------------------------- 163.2/459.2 MB 1.3 MB/s eta 0:03:42\n", " -------------- ------------------------- 163.2/459.2 MB 1.3 MB/s eta 0:03:42\n", " -------------- ------------------------- 163.2/459.2 MB 1.3 MB/s eta 0:03:47\n", " -------------- ------------------------- 163.2/459.2 MB 1.3 MB/s eta 0:03:47\n", " -------------- ------------------------- 163.2/459.2 MB 1.3 MB/s eta 0:03:49\n", " -------------- ------------------------- 163.3/459.2 MB 1.3 MB/s eta 0:03:51\n", " -------------- ------------------------- 163.3/459.2 MB 1.3 MB/s eta 0:03:51\n", " -------------- ------------------------- 163.3/459.2 MB 1.3 MB/s eta 0:03:52\n", " -------------- ------------------------- 163.3/459.2 MB 1.3 MB/s eta 0:03:53\n", " -------------- ------------------------- 163.3/459.2 MB 1.3 MB/s eta 0:03:55\n", " -------------- ------------------------- 163.3/459.2 MB 1.3 MB/s eta 0:03:56\n", " -------------- ------------------------- 163.3/459.2 MB 1.3 MB/s eta 0:03:56\n", " -------------- ------------------------- 163.4/459.2 MB 1.2 MB/s eta 0:03:59\n", " -------------- ------------------------- 163.4/459.2 MB 1.2 MB/s eta 0:03:59\n", " -------------- ------------------------- 163.4/459.2 MB 1.2 MB/s eta 0:04:00\n", " -------------- ------------------------- 163.4/459.2 MB 1.2 MB/s eta 0:04:01\n", " -------------- ------------------------- 163.5/459.2 MB 1.2 MB/s eta 0:04:03\n", " -------------- ------------------------- 163.5/459.2 MB 1.2 MB/s eta 0:04:03\n", " -------------- ------------------------- 163.5/459.2 MB 1.2 MB/s eta 0:04:04\n", " -------------- ------------------------- 163.6/459.2 MB 1.2 MB/s eta 0:04:06\n", " -------------- ------------------------- 163.6/459.2 MB 1.2 MB/s eta 0:04:07\n", " -------------- ------------------------- 163.6/459.2 MB 1.2 MB/s eta 0:04:07\n", " -------------- ------------------------- 163.6/459.2 MB 1.2 MB/s eta 0:04:09\n", " -------------- ------------------------- 163.6/459.2 MB 1.2 MB/s eta 0:04:09\n", " -------------- ------------------------- 163.6/459.2 MB 1.2 MB/s eta 0:04:11\n", " -------------- ------------------------- 163.7/459.2 MB 1.2 MB/s eta 0:04:13\n", " -------------- ------------------------- 163.7/459.2 MB 1.2 MB/s eta 0:04:13\n", " -------------- ------------------------- 163.7/459.2 MB 1.2 MB/s eta 0:04:15\n", " -------------- ------------------------- 163.7/459.2 MB 1.2 MB/s eta 0:04:15\n", " -------------- ------------------------- 163.7/459.2 MB 1.1 MB/s eta 0:04:19\n", " -------------- ------------------------- 163.7/459.2 MB 1.1 MB/s eta 0:04:19\n", " -------------- ------------------------- 163.7/459.2 MB 1.1 MB/s eta 0:04:19\n", " -------------- ------------------------- 163.7/459.2 MB 1.1 MB/s eta 0:04:23\n", " -------------- ------------------------- 163.7/459.2 MB 1.1 MB/s eta 0:04:23\n", " -------------- ------------------------- 163.7/459.2 MB 1.1 MB/s eta 0:04:28\n", " -------------- ------------------------- 163.7/459.2 MB 1.1 MB/s eta 0:04:28\n", " -------------- ------------------------- 163.8/459.2 MB 1.1 MB/s eta 0:04:30\n", " -------------- ------------------------- 163.8/459.2 MB 1.1 MB/s eta 0:04:30\n", " -------------- ------------------------- 163.8/459.2 MB 1.1 MB/s eta 0:04:33\n", " -------------- ------------------------- 163.8/459.2 MB 1.1 MB/s eta 0:04:33\n", " -------------- ------------------------- 163.8/459.2 MB 1.1 MB/s eta 0:04:35\n", " -------------- ------------------------- 163.8/459.2 MB 1.1 MB/s eta 0:04:37\n", " -------------- ------------------------- 163.8/459.2 MB 1.1 MB/s eta 0:04:40\n", " -------------- ------------------------- 163.9/459.2 MB 1.1 MB/s eta 0:04:40\n", " -------------- ------------------------- 163.9/459.2 MB 1.1 MB/s eta 0:04:42\n", " -------------- ------------------------- 163.9/459.2 MB 1.0 MB/s eta 0:04:43\n", " -------------- ------------------------- 163.9/459.2 MB 1.0 MB/s eta 0:04:44\n", " -------------- ------------------------- 163.9/459.2 MB 1.0 MB/s eta 0:04:46\n", " -------------- ------------------------- 163.9/459.2 MB 1.0 MB/s eta 0:04:46\n", " -------------- ------------------------- 164.0/459.2 MB 1.0 MB/s eta 0:04:47\n", " -------------- ------------------------- 164.0/459.2 MB 1.0 MB/s eta 0:04:49\n", " -------------- ------------------------- 164.0/459.2 MB 1.0 MB/s eta 0:04:49\n", " -------------- ------------------------- 164.0/459.2 MB 1.0 MB/s eta 0:04:50\n", " -------------- ------------------------- 164.0/459.2 MB 1.0 MB/s eta 0:04:52\n", " -------------- ------------------------- 164.0/459.2 MB 1.0 MB/s eta 0:04:53\n", " -------------- ------------------------- 164.1/459.2 MB 1.0 MB/s eta 0:04:53\n", " -------------- ------------------------- 164.1/459.2 MB 1.0 MB/s eta 0:04:54\n", " ------------- ------------------------ 164.1/459.2 MB 999.5 kB/s eta 0:04:56\n", " ------------- ------------------------ 164.1/459.2 MB 998.0 kB/s eta 0:04:56\n", " ------------- ------------------------ 164.2/459.2 MB 995.0 kB/s eta 0:04:57\n", " ------------- ------------------------ 164.2/459.2 MB 989.1 kB/s eta 0:04:59\n", " ------------- ------------------------ 164.2/459.2 MB 989.0 kB/s eta 0:04:59\n", " ------------- ------------------------ 164.3/459.2 MB 984.6 kB/s eta 0:05:00\n", " ------------- ------------------------ 164.3/459.2 MB 981.6 kB/s eta 0:05:01\n", " ------------- ------------------------ 164.3/459.2 MB 978.6 kB/s eta 0:05:02\n", " ------------- ------------------------ 164.4/459.2 MB 977.1 kB/s eta 0:05:02\n", " ------------- ------------------------ 164.4/459.2 MB 971.4 kB/s eta 0:05:04\n", " ------------- ------------------------ 164.5/459.2 MB 968.5 kB/s eta 0:05:05\n", " ------------- ------------------------ 164.5/459.2 MB 965.7 kB/s eta 0:05:06\n", " ------------- ------------------------ 164.5/459.2 MB 962.8 kB/s eta 0:05:07\n", " ------------- ------------------------ 164.6/459.2 MB 960.0 kB/s eta 0:05:07\n", " ------------- ------------------------ 164.6/459.2 MB 958.6 kB/s eta 0:05:08\n", " ------------- ------------------------ 164.6/459.2 MB 955.8 kB/s eta 0:05:09\n", " ------------- ------------------------ 164.7/459.2 MB 951.6 kB/s eta 0:05:10\n", " ------------- ------------------------ 164.7/459.2 MB 950.3 kB/s eta 0:05:10\n", " ------------- ------------------------ 164.8/459.2 MB 947.5 kB/s eta 0:05:11\n", " ------------- ------------------------ 164.8/459.2 MB 946.1 kB/s eta 0:05:12\n", " ------------- ------------------------ 164.9/459.2 MB 944.8 kB/s eta 0:05:12\n", " ------------- ------------------------ 164.9/459.2 MB 940.7 kB/s eta 0:05:13\n", " ------------- ------------------------ 165.0/459.2 MB 937.9 kB/s eta 0:05:14\n", " ------------- ------------------------ 165.0/459.2 MB 935.3 kB/s eta 0:05:15\n", " ------------- ------------------------ 165.1/459.2 MB 932.6 kB/s eta 0:05:16\n", " ------------- ------------------------ 165.1/459.2 MB 932.7 kB/s eta 0:05:16\n", " ------------- ------------------------ 165.2/459.2 MB 928.6 kB/s eta 0:05:17\n", " ------------- ------------------------ 165.2/459.2 MB 927.4 kB/s eta 0:05:17\n", " ------------- ------------------------ 165.3/459.2 MB 926.0 kB/s eta 0:05:18\n", " ------------- ------------------------ 165.3/459.2 MB 923.4 kB/s eta 0:05:19\n", " ------------- ------------------------ 165.3/459.2 MB 922.1 kB/s eta 0:05:19\n", " ------------- ------------------------ 165.4/459.2 MB 915.7 kB/s eta 0:05:21\n", " ------------- ------------------------ 165.4/459.2 MB 913.1 kB/s eta 0:05:22\n", " ------------- ------------------------ 165.5/459.2 MB 909.3 kB/s eta 0:05:24\n", " ------------- ------------------------ 165.5/459.2 MB 906.8 kB/s eta 0:05:24\n", " ------------- ------------------------ 165.5/459.2 MB 906.8 kB/s eta 0:05:24\n", " ------------- ------------------------ 165.5/459.2 MB 906.8 kB/s eta 0:05:24\n", " ------------- ------------------------ 165.5/459.2 MB 894.4 kB/s eta 0:05:29\n", " ------------- ------------------------ 165.5/459.2 MB 887.2 kB/s eta 0:05:32\n", " ------------- ------------------------ 165.5/459.2 MB 887.2 kB/s eta 0:05:32\n", " ------------- ------------------------ 165.5/459.2 MB 880.0 kB/s eta 0:05:34\n", " ------------- ------------------------ 165.6/459.2 MB 874.1 kB/s eta 0:05:36\n", " ------------- ------------------------ 165.6/459.2 MB 874.1 kB/s eta 0:05:36\n", " ------------- ------------------------ 165.6/459.2 MB 874.1 kB/s eta 0:05:36\n", " ------------- ------------------------ 165.6/459.2 MB 863.7 kB/s eta 0:05:40\n", " ------------- ------------------------ 165.6/459.2 MB 860.3 kB/s eta 0:05:42\n", " ------------- ------------------------ 165.6/459.2 MB 860.3 kB/s eta 0:05:42\n", " ------------- ------------------------ 165.6/459.2 MB 854.7 kB/s eta 0:05:44\n", " ------------- ------------------------ 165.6/459.2 MB 850.3 kB/s eta 0:05:46\n", " ------------- ------------------------ 165.6/459.2 MB 850.3 kB/s eta 0:05:46\n", " ------------- ------------------------ 165.6/459.2 MB 844.8 kB/s eta 0:05:48\n", " ------------- ------------------------ 165.7/459.2 MB 839.4 kB/s eta 0:05:50\n", " ------------- ------------------------ 165.7/459.2 MB 836.2 kB/s eta 0:05:52\n", " ------------- ------------------------ 165.7/459.2 MB 833.0 kB/s eta 0:05:53\n", " ------------- ------------------------ 165.7/459.2 MB 833.0 kB/s eta 0:05:53\n", " ------------- ------------------------ 165.7/459.2 MB 828.7 kB/s eta 0:05:55\n", " ------------- ------------------------ 165.7/459.2 MB 825.6 kB/s eta 0:05:56\n", " ------------- ------------------------ 165.7/459.2 MB 819.4 kB/s eta 0:05:59\n", " ------------- ------------------------ 165.8/459.2 MB 816.4 kB/s eta 0:06:00\n", " ------------- ------------------------ 165.8/459.2 MB 815.3 kB/s eta 0:06:00\n", " ------------- ------------------------ 165.8/459.2 MB 810.3 kB/s eta 0:06:03\n", " ------------- ------------------------ 165.8/459.2 MB 808.3 kB/s eta 0:06:03\n", " ------------- ------------------------ 165.9/459.2 MB 804.3 kB/s eta 0:06:05\n", " ------------- ------------------------ 165.9/459.2 MB 802.3 kB/s eta 0:06:06\n", " ------------- ------------------------ 165.9/459.2 MB 798.5 kB/s eta 0:06:08\n", " ------------- ------------------------ 165.9/459.2 MB 796.5 kB/s eta 0:06:09\n", " ------------- ------------------------ 166.0/459.2 MB 792.6 kB/s eta 0:06:10\n", " ------------- ------------------------ 166.0/459.2 MB 790.7 kB/s eta 0:06:11\n", " ------------- ------------------------ 166.0/459.2 MB 786.9 kB/s eta 0:06:13\n", " ------------- ------------------------ 166.1/459.2 MB 784.1 kB/s eta 0:06:14\n", " ------------- ------------------------ 166.1/459.2 MB 783.1 kB/s eta 0:06:15\n", " ------------- ------------------------ 166.1/459.2 MB 782.2 kB/s eta 0:06:15\n", " ------------- ------------------------ 166.2/459.2 MB 779.4 kB/s eta 0:06:16\n", " ------------- ------------------------ 166.2/459.2 MB 775.7 kB/s eta 0:06:18\n", " ------------- ------------------------ 166.2/459.2 MB 774.8 kB/s eta 0:06:19\n", " ------------- ------------------------ 166.3/459.2 MB 773.9 kB/s eta 0:06:19\n", " ------------- ------------------------ 166.3/459.2 MB 771.2 kB/s eta 0:06:20\n", " ------------- ------------------------ 166.3/459.2 MB 768.4 kB/s eta 0:06:22\n", " ------------- ------------------------ 166.4/459.2 MB 764.8 kB/s eta 0:06:23\n", " ------------- ------------------------ 166.4/459.2 MB 764.0 kB/s eta 0:06:24\n", " ------------- ------------------------ 166.5/459.2 MB 762.2 kB/s eta 0:06:25\n", " ------------- ------------------------ 166.5/459.2 MB 760.4 kB/s eta 0:06:25\n", " ------------- ------------------------ 166.6/459.2 MB 757.8 kB/s eta 0:06:27\n", " ------------- ------------------------ 166.6/459.2 MB 756.0 kB/s eta 0:06:27\n", " ------------- ------------------------ 166.6/459.2 MB 753.4 kB/s eta 0:06:29\n", " ------------- ------------------------ 166.7/459.2 MB 753.4 kB/s eta 0:06:29\n", " ------------- ------------------------ 166.7/459.2 MB 750.8 kB/s eta 0:06:30\n", " ------------- ------------------------ 166.8/459.2 MB 749.1 kB/s eta 0:06:31\n", " ------------- ------------------------ 166.9/459.2 MB 747.4 kB/s eta 0:06:32\n", " ------------- ------------------------ 166.9/459.2 MB 745.7 kB/s eta 0:06:32\n", " ------------- ------------------------ 166.9/459.2 MB 744.8 kB/s eta 0:06:33\n", " ------------- ------------------------ 167.0/459.2 MB 743.1 kB/s eta 0:06:34\n", " ------------- ------------------------ 167.0/459.2 MB 739.8 kB/s eta 0:06:35\n", " ------------- ------------------------ 167.1/459.2 MB 738.9 kB/s eta 0:06:36\n", " ------------- ------------------------ 167.1/459.2 MB 736.4 kB/s eta 0:06:37\n", " ------------- ------------------------ 167.2/459.2 MB 736.4 kB/s eta 0:06:37\n", " ------------- ------------------------ 167.3/459.2 MB 734.8 kB/s eta 0:06:38\n", " ------------- ------------------------ 167.3/459.2 MB 733.2 kB/s eta 0:06:39\n", " ------------- ------------------------ 167.4/459.2 MB 733.2 kB/s eta 0:06:38\n", " ------------- ------------------------ 167.5/459.2 MB 732.3 kB/s eta 0:06:39\n", " ------------- ------------------------ 167.5/459.2 MB 730.7 kB/s eta 0:06:40\n", " ------------- ------------------------ 167.6/459.2 MB 729.9 kB/s eta 0:06:40\n", " ------------- ------------------------ 167.7/459.2 MB 728.3 kB/s eta 0:06:41\n", " ------------- ------------------------ 167.8/459.2 MB 726.6 kB/s eta 0:06:42\n", " ------------- ------------------------ 167.8/459.2 MB 725.9 kB/s eta 0:06:42\n", " ------------- ------------------------ 167.9/459.2 MB 724.2 kB/s eta 0:06:43\n", " ------------- ------------------------ 168.0/459.2 MB 724.2 kB/s eta 0:06:43\n", " ------------- ------------------------ 168.0/459.2 MB 724.2 kB/s eta 0:06:42\n", " ------------- ------------------------ 168.1/459.2 MB 721.8 kB/s eta 0:06:44\n", " ------------- ------------------------ 168.2/459.2 MB 721.8 kB/s eta 0:06:44\n", " ------------- ------------------------ 168.3/459.2 MB 720.3 kB/s eta 0:06:44\n", " ------------- ------------------------ 168.4/459.2 MB 720.3 kB/s eta 0:06:44\n", " ------------- ------------------------ 168.4/459.2 MB 718.7 kB/s eta 0:06:45\n", " ------------- ------------------------ 168.5/459.2 MB 717.9 kB/s eta 0:06:45\n", " ------------- ------------------------ 168.6/459.2 MB 717.9 kB/s eta 0:06:45\n", " ------------- ------------------------ 168.7/459.2 MB 717.1 kB/s eta 0:06:46\n", " ------------- ------------------------ 168.7/459.2 MB 716.3 kB/s eta 0:06:46\n", " ------------- ------------------------ 168.8/459.2 MB 715.5 kB/s eta 0:06:46\n", " ------------- ------------------------ 168.8/459.2 MB 712.4 kB/s eta 0:06:48\n", " ------------- ------------------------ 168.8/459.2 MB 712.4 kB/s eta 0:06:48\n", " ------------- ------------------------ 168.8/459.2 MB 712.4 kB/s eta 0:06:48\n", " ------------- ------------------------ 168.9/459.2 MB 707.7 kB/s eta 0:06:51\n", " ------------- ------------------------ 169.0/459.2 MB 704.7 kB/s eta 0:06:52\n", " ------------- ------------------------ 169.0/459.2 MB 701.0 kB/s eta 0:06:54\n", " ------------- ------------------------ 169.0/459.2 MB 699.5 kB/s eta 0:06:55\n", " ------------- ------------------------ 169.0/459.2 MB 698.7 kB/s eta 0:06:56\n", " ------------- ------------------------ 169.1/459.2 MB 694.3 kB/s eta 0:06:58\n", " ------------- ------------------------ 169.1/459.2 MB 693.5 kB/s eta 0:06:59\n", " ------------- ------------------------ 169.1/459.2 MB 689.2 kB/s eta 0:07:01\n", " ------------- ------------------------ 169.1/459.2 MB 686.3 kB/s eta 0:07:03\n", " ------------- ------------------------ 169.1/459.2 MB 686.3 kB/s eta 0:07:03\n", " ------------- ------------------------ 169.1/459.2 MB 686.3 kB/s eta 0:07:03\n", " ------------- ------------------------ 169.2/459.2 MB 679.9 kB/s eta 0:07:07\n", " ------------- ------------------------ 169.2/459.2 MB 679.9 kB/s eta 0:07:07\n", " ------------- ------------------------ 169.2/459.2 MB 679.9 kB/s eta 0:07:07\n", " ------------- ------------------------ 169.2/459.2 MB 679.9 kB/s eta 0:07:07\n", " ------------- ------------------------ 169.2/459.2 MB 679.9 kB/s eta 0:07:07\n", " ------------- ------------------------ 169.2/459.2 MB 679.9 kB/s eta 0:07:07\n", " -------------- ----------------------- 169.2/459.2 MB 664.0 kB/s eta 0:07:17\n", " -------------- ----------------------- 169.2/459.2 MB 664.0 kB/s eta 0:07:17\n", " -------------- ----------------------- 169.2/459.2 MB 664.0 kB/s eta 0:07:17\n", " -------------- ----------------------- 169.2/459.2 MB 664.0 kB/s eta 0:07:17\n", " -------------- ----------------------- 169.2/459.2 MB 653.4 kB/s eta 0:07:24\n", " -------------- ----------------------- 169.2/459.2 MB 653.4 kB/s eta 0:07:24\n", " -------------- ----------------------- 169.2/459.2 MB 653.4 kB/s eta 0:07:24\n", " -------------- ----------------------- 169.2/459.2 MB 653.4 kB/s eta 0:07:24\n", " -------------- ----------------------- 169.2/459.2 MB 653.4 kB/s eta 0:07:24\n", " -------------- ----------------------- 169.2/459.2 MB 641.2 kB/s eta 0:07:33\n", " -------------- ----------------------- 169.2/459.2 MB 641.2 kB/s eta 0:07:33\n", " -------------- ----------------------- 169.2/459.2 MB 641.2 kB/s eta 0:07:33\n", " -------------- ----------------------- 169.2/459.2 MB 641.2 kB/s eta 0:07:33\n", " -------------- ----------------------- 169.2/459.2 MB 641.2 kB/s eta 0:07:33\n", " -------------- ----------------------- 169.2/459.2 MB 641.2 kB/s eta 0:07:33\n", " -------------- ----------------------- 169.2/459.2 MB 630.1 kB/s eta 0:07:41\n", " -------------- ----------------------- 169.2/459.2 MB 630.1 kB/s eta 0:07:41\n", " -------------- ----------------------- 169.2/459.2 MB 630.1 kB/s eta 0:07:41\n", " -------------- ----------------------- 169.2/459.2 MB 630.1 kB/s eta 0:07:41\n", " -------------- ----------------------- 169.2/459.2 MB 621.8 kB/s eta 0:07:47\n", " -------------- ----------------------- 169.2/459.2 MB 621.8 kB/s eta 0:07:47\n", " -------------- ----------------------- 169.2/459.2 MB 621.8 kB/s eta 0:07:47\n", " -------------- ----------------------- 169.3/459.2 MB 616.5 kB/s eta 0:07:51\n", " -------------- ----------------------- 169.3/459.2 MB 616.5 kB/s eta 0:07:51\n", " -------------- ----------------------- 169.3/459.2 MB 616.5 kB/s eta 0:07:51\n", " -------------- ----------------------- 169.3/459.2 MB 616.5 kB/s eta 0:07:51\n", " -------------- ----------------------- 169.3/459.2 MB 616.5 kB/s eta 0:07:51\n", " -------------- ----------------------- 169.3/459.2 MB 606.7 kB/s eta 0:07:58\n", " -------------- ----------------------- 169.3/459.2 MB 606.7 kB/s eta 0:07:58\n", " -------------- ----------------------- 169.3/459.2 MB 601.8 kB/s eta 0:08:02\n", " -------------- ----------------------- 169.3/459.2 MB 601.8 kB/s eta 0:08:02\n", " -------------- ----------------------- 169.3/459.2 MB 601.8 kB/s eta 0:08:02\n", " -------------- ----------------------- 169.3/459.2 MB 601.8 kB/s eta 0:08:02\n", " -------------- ----------------------- 169.3/459.2 MB 601.8 kB/s eta 0:08:02\n", " -------------- ----------------------- 169.3/459.2 MB 601.8 kB/s eta 0:08:02\n", " -------------- ----------------------- 169.3/459.2 MB 601.8 kB/s eta 0:08:02\n", " -------------- ----------------------- 169.3/459.2 MB 601.8 kB/s eta 0:08:02\n", " -------------- ----------------------- 169.3/459.2 MB 601.8 kB/s eta 0:08:02\n", " -------------- ----------------------- 169.3/459.2 MB 601.8 kB/s eta 0:08:02\n", " -------------- ----------------------- 169.3/459.2 MB 601.8 kB/s eta 0:08:02\n", " -------------- ----------------------- 169.3/459.2 MB 580.9 kB/s eta 0:08:19\n", " -------------- ----------------------- 169.3/459.2 MB 580.9 kB/s eta 0:08:19\n", " -------------- ----------------------- 169.3/459.2 MB 580.9 kB/s eta 0:08:19\n", " -------------- ----------------------- 169.3/459.2 MB 574.3 kB/s eta 0:08:25\n", " -------------- ----------------------- 169.3/459.2 MB 574.3 kB/s eta 0:08:25\n", " -------------- ----------------------- 169.3/459.2 MB 570.8 kB/s eta 0:08:28\n", " -------------- ----------------------- 169.3/459.2 MB 570.8 kB/s eta 0:08:28\n", " -------------- ----------------------- 169.3/459.2 MB 567.8 kB/s eta 0:08:31\n", " -------------- ----------------------- 169.4/459.2 MB 564.9 kB/s eta 0:08:34\n", " -------------- ----------------------- 169.4/459.2 MB 564.9 kB/s eta 0:08:34\n", " -------------- ----------------------- 169.4/459.2 MB 562.4 kB/s eta 0:08:36\n", " -------------- ----------------------- 169.4/459.2 MB 560.1 kB/s eta 0:08:38\n", " -------------- ----------------------- 169.4/459.2 MB 558.6 kB/s eta 0:08:39\n", " -------------- ----------------------- 169.4/459.2 MB 556.7 kB/s eta 0:08:41\n", " -------------- ----------------------- 169.5/459.2 MB 555.3 kB/s eta 0:08:42\n", " -------------- ----------------------- 169.5/459.2 MB 553.4 kB/s eta 0:08:44\n", " -------------- ----------------------- 169.5/459.2 MB 553.4 kB/s eta 0:08:44\n", " -------------- ----------------------- 169.5/459.2 MB 550.6 kB/s eta 0:08:47\n", " -------------- ----------------------- 169.5/459.2 MB 549.2 kB/s eta 0:08:48\n", " -------------- ----------------------- 169.5/459.2 MB 547.0 kB/s eta 0:08:50\n", " -------------- ----------------------- 169.6/459.2 MB 546.0 kB/s eta 0:08:51\n", " -------------- ----------------------- 169.6/459.2 MB 545.2 kB/s eta 0:08:52\n", " -------------- ----------------------- 169.6/459.2 MB 543.8 kB/s eta 0:08:53\n", " -------------- ----------------------- 169.6/459.2 MB 540.6 kB/s eta 0:08:56\n", " -------------- ----------------------- 169.7/459.2 MB 539.3 kB/s eta 0:08:57\n", " -------------- ----------------------- 169.7/459.2 MB 538.4 kB/s eta 0:08:58\n", " -------------- ----------------------- 169.7/459.2 MB 537.1 kB/s eta 0:08:59\n", " -------------- ----------------------- 169.7/459.2 MB 538.0 kB/s eta 0:08:59\n", " -------------- ----------------------- 169.7/459.2 MB 536.2 kB/s eta 0:09:00\n", " -------------- ----------------------- 169.8/459.2 MB 534.9 kB/s eta 0:09:02\n", " -------------- ----------------------- 169.8/459.2 MB 533.6 kB/s eta 0:09:03\n", " -------------- ----------------------- 169.8/459.2 MB 533.6 kB/s eta 0:09:03\n", " -------------- ----------------------- 169.9/459.2 MB 532.7 kB/s eta 0:09:04\n", " -------------- ----------------------- 169.9/459.2 MB 531.4 kB/s eta 0:09:05\n", " -------------- ----------------------- 169.9/459.2 MB 530.1 kB/s eta 0:09:06\n", " -------------- ----------------------- 170.0/459.2 MB 529.3 kB/s eta 0:09:07\n", " -------------- ----------------------- 170.0/459.2 MB 528.0 kB/s eta 0:09:08\n", " -------------- ----------------------- 170.0/459.2 MB 527.1 kB/s eta 0:09:09\n", " -------------- ----------------------- 170.1/459.2 MB 526.3 kB/s eta 0:09:10\n", " -------------- ----------------------- 170.1/459.2 MB 525.0 kB/s eta 0:09:11\n", " -------------- ----------------------- 170.2/459.2 MB 523.4 kB/s eta 0:09:13\n", " -------------- ----------------------- 170.2/459.2 MB 522.9 kB/s eta 0:09:13\n", " -------------- ----------------------- 170.3/459.2 MB 521.7 kB/s eta 0:09:14\n", " -------------- ----------------------- 170.3/459.2 MB 520.4 kB/s eta 0:09:16\n", " -------------- ----------------------- 170.3/459.2 MB 520.4 kB/s eta 0:09:16\n", " -------------- ----------------------- 170.4/459.2 MB 519.2 kB/s eta 0:09:17\n", " -------------- ----------------------- 170.4/459.2 MB 517.5 kB/s eta 0:09:19\n", " -------------- ----------------------- 170.5/459.2 MB 517.1 kB/s eta 0:09:19\n", " -------------- ----------------------- 170.5/459.2 MB 516.3 kB/s eta 0:09:20\n", " -------------- ----------------------- 170.6/459.2 MB 515.5 kB/s eta 0:09:20\n", " -------------- ----------------------- 170.7/459.2 MB 514.7 kB/s eta 0:09:21\n", " -------------- ----------------------- 170.7/459.2 MB 514.7 kB/s eta 0:09:21\n", " -------------- ----------------------- 170.8/459.2 MB 513.1 kB/s eta 0:09:23\n", " -------------- ----------------------- 170.9/459.2 MB 513.1 kB/s eta 0:09:22\n", " -------------- ----------------------- 171.0/459.2 MB 512.3 kB/s eta 0:09:23\n", " -------------- ----------------------- 171.0/459.2 MB 511.9 kB/s eta 0:09:23\n", " -------------- ----------------------- 171.1/459.2 MB 510.3 kB/s eta 0:09:25\n", " -------------- ----------------------- 171.1/459.2 MB 510.3 kB/s eta 0:09:25\n", " -------------- ----------------------- 171.2/459.2 MB 507.9 kB/s eta 0:09:28\n", " -------------- ----------------------- 171.3/459.2 MB 507.9 kB/s eta 0:09:27\n", " -------------- ----------------------- 171.3/459.2 MB 506.3 kB/s eta 0:09:29\n", " -------------- ----------------------- 171.3/459.2 MB 504.8 kB/s eta 0:09:31\n", " -------------- ----------------------- 171.4/459.2 MB 504.8 kB/s eta 0:09:31\n", " -------------- ----------------------- 171.4/459.2 MB 503.6 kB/s eta 0:09:32\n", " -------------- ----------------------- 171.5/459.2 MB 502.1 kB/s eta 0:09:34\n", " -------------- ----------------------- 171.5/459.2 MB 501.7 kB/s eta 0:09:34\n", " -------------- ----------------------- 171.6/459.2 MB 505.5 kB/s eta 0:09:29\n", " -------------- ----------------------- 171.6/459.2 MB 504.4 kB/s eta 0:09:31\n", " -------------- ----------------------- 171.7/459.2 MB 503.2 kB/s eta 0:09:32\n", " -------------- ----------------------- 171.8/459.2 MB 502.5 kB/s eta 0:09:33\n", " -------------- ----------------------- 171.8/459.2 MB 502.5 kB/s eta 0:09:32\n", " -------------- ----------------------- 171.8/459.2 MB 502.1 kB/s eta 0:09:33\n", " -------------- ----------------------- 171.9/459.2 MB 501.7 kB/s eta 0:09:33\n", " -------------- ----------------------- 171.9/459.2 MB 500.9 kB/s eta 0:09:34\n", " -------------- ----------------------- 172.0/459.2 MB 500.5 kB/s eta 0:09:34\n", " -------------- ----------------------- 172.0/459.2 MB 500.2 kB/s eta 0:09:35\n", " -------------- ----------------------- 172.1/459.2 MB 500.6 kB/s eta 0:09:34\n", " -------------- ----------------------- 172.1/459.2 MB 499.8 kB/s eta 0:09:35\n", " -------------- ----------------------- 172.2/459.2 MB 500.2 kB/s eta 0:09:34\n", " -------------- ----------------------- 172.2/459.2 MB 499.8 kB/s eta 0:09:35\n", " -------------- ----------------------- 172.2/459.2 MB 499.8 kB/s eta 0:09:35\n", " -------------- ----------------------- 172.3/459.2 MB 499.4 kB/s eta 0:09:35\n", " -------------- ----------------------- 172.3/459.2 MB 498.6 kB/s eta 0:09:36\n", " -------------- ----------------------- 172.3/459.2 MB 498.6 kB/s eta 0:09:36\n", " -------------- ----------------------- 172.4/459.2 MB 498.3 kB/s eta 0:09:36\n", " -------------- ----------------------- 172.5/459.2 MB 497.5 kB/s eta 0:09:37\n", " -------------- ----------------------- 172.5/459.2 MB 497.1 kB/s eta 0:09:37\n", " -------------- ----------------------- 172.6/459.2 MB 497.1 kB/s eta 0:09:37\n", " -------------- ----------------------- 172.8/459.2 MB 497.1 kB/s eta 0:09:37\n", " -------------- ----------------------- 173.0/459.2 MB 495.6 kB/s eta 0:09:38\n", " -------------- ----------------------- 173.1/459.2 MB 494.5 kB/s eta 0:09:39\n", " -------------- ----------------------- 173.1/459.2 MB 495.2 kB/s eta 0:09:38\n", " -------------- ----------------------- 173.2/459.2 MB 497.5 kB/s eta 0:09:35\n", " -------------- ----------------------- 173.3/459.2 MB 497.1 kB/s eta 0:09:36\n", " -------------- ----------------------- 173.4/459.2 MB 501.7 kB/s eta 0:09:30\n", " -------------- ----------------------- 173.4/459.2 MB 509.1 kB/s eta 0:09:22\n", " -------------- ----------------------- 173.5/459.2 MB 516.7 kB/s eta 0:09:13\n", " -------------- ----------------------- 173.6/459.2 MB 522.5 kB/s eta 0:09:07\n", " -------------- ----------------------- 173.8/459.2 MB 532.3 kB/s eta 0:08:57\n", " -------------- ----------------------- 174.0/459.2 MB 557.2 kB/s eta 0:08:32\n", " -------------- ----------------------- 174.1/459.2 MB 567.8 kB/s eta 0:08:23\n", " -------------- ----------------------- 174.2/459.2 MB 575.8 kB/s eta 0:08:15\n", " -------------- ----------------------- 174.2/459.2 MB 580.9 kB/s eta 0:08:11\n", " -------------- ----------------------- 174.3/459.2 MB 587.7 kB/s eta 0:08:05\n", " -------------- ----------------------- 174.4/459.2 MB 592.0 kB/s eta 0:08:02\n", " -------------- ----------------------- 174.5/459.2 MB 596.3 kB/s eta 0:07:58\n", " -------------- ----------------------- 174.6/459.2 MB 599.0 kB/s eta 0:07:56\n", " -------------- ----------------------- 174.7/459.2 MB 604.0 kB/s eta 0:07:51\n", " -------------- ----------------------- 174.8/459.2 MB 604.5 kB/s eta 0:07:51\n", " -------------- ----------------------- 174.8/459.2 MB 607.3 kB/s eta 0:07:49\n", " -------------- ----------------------- 174.9/459.2 MB 609.0 kB/s eta 0:07:47\n", " -------------- ----------------------- 175.0/459.2 MB 610.7 kB/s eta 0:07:46\n", " -------------- ----------------------- 175.0/459.2 MB 611.9 kB/s eta 0:07:45\n", " -------------- ----------------------- 175.0/459.2 MB 611.9 kB/s eta 0:07:45\n", " -------------- ----------------------- 175.1/459.2 MB 611.3 kB/s eta 0:07:45\n", " -------------- ----------------------- 175.1/459.2 MB 611.3 kB/s eta 0:07:45\n", " -------------- ----------------------- 175.1/459.2 MB 611.3 kB/s eta 0:07:45\n", " -------------- ----------------------- 175.2/459.2 MB 613.0 kB/s eta 0:07:44\n", " -------------- ----------------------- 175.2/459.2 MB 612.5 kB/s eta 0:07:44\n", " -------------- ----------------------- 175.3/459.2 MB 613.0 kB/s eta 0:07:44\n", " -------------- ----------------------- 175.3/459.2 MB 613.0 kB/s eta 0:07:43\n", " -------------- ----------------------- 175.4/459.2 MB 613.0 kB/s eta 0:07:43\n", " -------------- ----------------------- 175.4/459.2 MB 613.0 kB/s eta 0:07:43\n", " -------------- ----------------------- 175.5/459.2 MB 613.0 kB/s eta 0:07:43\n", " -------------- ----------------------- 175.5/459.2 MB 613.6 kB/s eta 0:07:43\n", " -------------- ----------------------- 175.6/459.2 MB 618.2 kB/s eta 0:07:39\n", " -------------- ----------------------- 175.7/459.2 MB 618.2 kB/s eta 0:07:39\n", " -------------- ----------------------- 175.7/459.2 MB 625.9 kB/s eta 0:07:33\n", " -------------- ----------------------- 175.8/459.2 MB 638.7 kB/s eta 0:07:24\n", " -------------- ----------------------- 175.9/459.2 MB 648.8 kB/s eta 0:07:17\n", " -------------- ----------------------- 175.9/459.2 MB 656.0 kB/s eta 0:07:12\n", " -------------- ----------------------- 176.0/459.2 MB 665.4 kB/s eta 0:07:06\n", " -------------- ----------------------- 176.0/459.2 MB 668.0 kB/s eta 0:07:04\n", " -------------- ----------------------- 176.1/459.2 MB 671.5 kB/s eta 0:07:02\n", " -------------- ----------------------- 176.1/459.2 MB 674.3 kB/s eta 0:07:00\n", " -------------- ----------------------- 176.2/459.2 MB 677.8 kB/s eta 0:06:58\n", " -------------- ----------------------- 176.3/459.2 MB 680.6 kB/s eta 0:06:56\n", " -------------- ----------------------- 176.4/459.2 MB 684.1 kB/s eta 0:06:54\n", " -------------- ----------------------- 176.4/459.2 MB 687.7 kB/s eta 0:06:52\n", " -------------- ----------------------- 176.5/459.2 MB 689.9 kB/s eta 0:06:50\n", " -------------- ----------------------- 176.5/459.2 MB 692.0 kB/s eta 0:06:49\n", " -------------- ----------------------- 176.6/459.2 MB 695.8 kB/s eta 0:06:47\n", " -------------- ----------------------- 176.7/459.2 MB 696.5 kB/s eta 0:06:46\n", " -------------- ----------------------- 176.7/459.2 MB 699.5 kB/s eta 0:06:44\n", " -------------- ----------------------- 176.8/459.2 MB 701.0 kB/s eta 0:06:43\n", " -------------- ----------------------- 176.8/459.2 MB 701.7 kB/s eta 0:06:43\n", " -------------- ----------------------- 176.9/459.2 MB 703.2 kB/s eta 0:06:42\n", " -------------- ----------------------- 176.9/459.2 MB 704.8 kB/s eta 0:06:41\n", " -------------- ----------------------- 177.0/459.2 MB 706.3 kB/s eta 0:06:40\n", " -------------- ----------------------- 177.1/459.2 MB 707.0 kB/s eta 0:06:40\n", " -------------- ----------------------- 177.1/459.2 MB 707.8 kB/s eta 0:06:39\n", " -------------- ----------------------- 177.2/459.2 MB 709.3 kB/s eta 0:06:38\n", " -------------- ----------------------- 177.2/459.2 MB 713.2 kB/s eta 0:06:36\n", " -------------- ----------------------- 177.3/459.2 MB 714.0 kB/s eta 0:06:35\n", " -------------- ----------------------- 177.4/459.2 MB 716.3 kB/s eta 0:06:34\n", " -------------- ----------------------- 177.5/459.2 MB 717.1 kB/s eta 0:06:33\n", " -------------- ----------------------- 177.5/459.2 MB 717.1 kB/s eta 0:06:33\n", " -------------- ----------------------- 177.6/459.2 MB 717.9 kB/s eta 0:06:33\n", " -------------- ----------------------- 177.6/459.2 MB 718.7 kB/s eta 0:06:32\n", " -------------- ----------------------- 177.7/459.2 MB 719.4 kB/s eta 0:06:32\n", " -------------- ----------------------- 177.8/459.2 MB 720.3 kB/s eta 0:06:31\n", " -------------- ----------------------- 177.9/459.2 MB 721.8 kB/s eta 0:06:30\n", " -------------- ----------------------- 177.9/459.2 MB 720.3 kB/s eta 0:06:31\n", " -------------- ----------------------- 178.0/459.2 MB 721.8 kB/s eta 0:06:30\n", " -------------- ----------------------- 178.1/459.2 MB 722.6 kB/s eta 0:06:30\n", " -------------- ----------------------- 178.1/459.2 MB 723.4 kB/s eta 0:06:29\n", " -------------- ----------------------- 178.2/459.2 MB 724.2 kB/s eta 0:06:28\n", " -------------- ----------------------- 178.3/459.2 MB 724.2 kB/s eta 0:06:28\n", " -------------- ----------------------- 178.4/459.2 MB 725.9 kB/s eta 0:06:27\n", " -------------- ----------------------- 178.5/459.2 MB 726.6 kB/s eta 0:06:27\n", " -------------- ----------------------- 178.5/459.2 MB 726.6 kB/s eta 0:06:27\n", " -------------- ----------------------- 178.6/459.2 MB 728.3 kB/s eta 0:06:26\n", " -------------- ----------------------- 178.7/459.2 MB 728.3 kB/s eta 0:06:26\n", " -------------- ----------------------- 178.8/459.2 MB 729.0 kB/s eta 0:06:25\n", " -------------- ----------------------- 178.8/459.2 MB 729.9 kB/s eta 0:06:25\n", " -------------- ----------------------- 178.9/459.2 MB 730.7 kB/s eta 0:06:24\n", " -------------- ----------------------- 179.0/459.2 MB 731.5 kB/s eta 0:06:24\n", " -------------- ----------------------- 179.1/459.2 MB 743.2 kB/s eta 0:06:17\n", " -------------- ----------------------- 179.1/459.2 MB 740.6 kB/s eta 0:06:19\n", " -------------- ----------------------- 179.2/459.2 MB 745.7 kB/s eta 0:06:16\n", " -------------- ----------------------- 179.3/459.2 MB 763.1 kB/s eta 0:06:07\n", " -------------- ----------------------- 179.4/459.2 MB 809.3 kB/s eta 0:05:46\n", " -------------- ----------------------- 179.5/459.2 MB 894.4 kB/s eta 0:05:13\n", " -------------- ----------------------- 179.5/459.2 MB 953.0 kB/s eta 0:04:54\n", " --------------- ------------------------ 179.6/459.2 MB 1.0 MB/s eta 0:04:38\n", " --------------- ------------------------ 179.7/459.2 MB 1.1 MB/s eta 0:04:26\n", " --------------- ------------------------ 179.8/459.2 MB 1.1 MB/s eta 0:04:21\n", " --------------- ------------------------ 179.9/459.2 MB 1.1 MB/s eta 0:04:16\n", " --------------- ------------------------ 179.9/459.2 MB 1.1 MB/s eta 0:04:15\n", " --------------- ------------------------ 179.9/459.2 MB 1.1 MB/s eta 0:04:14\n", " --------------- ------------------------ 179.9/459.2 MB 1.1 MB/s eta 0:04:14\n", " --------------- ------------------------ 180.1/459.2 MB 1.1 MB/s eta 0:04:09\n", " --------------- ------------------------ 180.1/459.2 MB 1.1 MB/s eta 0:04:09\n", " --------------- ------------------------ 180.2/459.2 MB 1.1 MB/s eta 0:04:08\n", " --------------- ------------------------ 180.2/459.2 MB 1.1 MB/s eta 0:04:06\n", " --------------- ------------------------ 180.3/459.2 MB 1.1 MB/s eta 0:04:04\n", " --------------- ------------------------ 180.4/459.2 MB 1.1 MB/s eta 0:04:04\n", " --------------- ------------------------ 180.4/459.2 MB 1.2 MB/s eta 0:04:02\n", " --------------- ------------------------ 180.5/459.2 MB 1.2 MB/s eta 0:04:00\n", " --------------- ------------------------ 180.6/459.2 MB 1.2 MB/s eta 0:04:00\n", " --------------- ------------------------ 180.7/459.2 MB 1.2 MB/s eta 0:03:58\n", " --------------- ------------------------ 180.8/459.2 MB 1.2 MB/s eta 0:03:56\n", " --------------- ------------------------ 180.8/459.2 MB 1.2 MB/s eta 0:03:56\n", " --------------- ------------------------ 180.9/459.2 MB 1.2 MB/s eta 0:03:56\n", " --------------- ------------------------ 181.0/459.2 MB 1.2 MB/s eta 0:03:55\n", " --------------- ------------------------ 181.1/459.2 MB 1.2 MB/s eta 0:03:54\n", " --------------- ------------------------ 181.2/459.2 MB 1.2 MB/s eta 0:03:53\n", " --------------- ------------------------ 181.4/459.2 MB 1.2 MB/s eta 0:03:50\n", " --------------- ------------------------ 181.5/459.2 MB 1.2 MB/s eta 0:03:50\n", " --------------- ------------------------ 181.6/459.2 MB 1.2 MB/s eta 0:03:49\n", " --------------- ------------------------ 181.6/459.2 MB 1.2 MB/s eta 0:03:47\n", " --------------- ------------------------ 181.7/459.2 MB 1.2 MB/s eta 0:03:45\n", " --------------- ------------------------ 181.9/459.2 MB 1.2 MB/s eta 0:03:43\n", " --------------- ------------------------ 181.9/459.2 MB 1.3 MB/s eta 0:03:42\n", " --------------- ------------------------ 182.1/459.2 MB 1.3 MB/s eta 0:03:38\n", " --------------- ------------------------ 182.1/459.2 MB 1.3 MB/s eta 0:03:38\n", " --------------- ------------------------ 182.2/459.2 MB 1.3 MB/s eta 0:03:38\n", " --------------- ------------------------ 182.2/459.2 MB 1.3 MB/s eta 0:03:37\n", " --------------- ------------------------ 182.3/459.2 MB 1.3 MB/s eta 0:03:37\n", " --------------- ------------------------ 182.4/459.2 MB 1.3 MB/s eta 0:03:35\n", " --------------- ------------------------ 182.5/459.2 MB 1.3 MB/s eta 0:03:35\n", " --------------- ------------------------ 182.6/459.2 MB 1.3 MB/s eta 0:03:32\n", " --------------- ------------------------ 182.7/459.2 MB 1.3 MB/s eta 0:03:31\n", " --------------- ------------------------ 182.8/459.2 MB 1.3 MB/s eta 0:03:30\n", " --------------- ------------------------ 182.9/459.2 MB 1.3 MB/s eta 0:03:29\n", " --------------- ------------------------ 183.0/459.2 MB 1.3 MB/s eta 0:03:28\n", " --------------- ------------------------ 183.1/459.2 MB 1.3 MB/s eta 0:03:27\n", " --------------- ------------------------ 183.2/459.2 MB 1.3 MB/s eta 0:03:25\n", " --------------- ------------------------ 183.3/459.2 MB 1.3 MB/s eta 0:03:25\n", " --------------- ------------------------ 183.3/459.2 MB 1.4 MB/s eta 0:03:21\n", " --------------- ------------------------ 183.5/459.2 MB 1.4 MB/s eta 0:03:21\n", " --------------- ------------------------ 183.6/459.2 MB 1.4 MB/s eta 0:03:20\n", " ---------------- ----------------------- 183.7/459.2 MB 1.4 MB/s eta 0:03:20\n", " ---------------- ----------------------- 183.8/459.2 MB 1.4 MB/s eta 0:03:19\n", " ---------------- ----------------------- 183.9/459.2 MB 1.4 MB/s eta 0:03:19\n", " ---------------- ----------------------- 184.0/459.2 MB 1.4 MB/s eta 0:03:18\n", " ---------------- ----------------------- 184.1/459.2 MB 1.4 MB/s eta 0:03:18\n", " ---------------- ----------------------- 184.2/459.2 MB 1.4 MB/s eta 0:03:18\n", " ---------------- ----------------------- 184.3/459.2 MB 1.4 MB/s eta 0:03:17\n", " ---------------- ----------------------- 184.5/459.2 MB 1.4 MB/s eta 0:03:16\n", " ---------------- ----------------------- 184.6/459.2 MB 1.4 MB/s eta 0:03:16\n", " ---------------- ----------------------- 184.6/459.2 MB 1.4 MB/s eta 0:03:16\n", " ---------------- ----------------------- 184.8/459.2 MB 1.4 MB/s eta 0:03:15\n", " ---------------- ----------------------- 184.9/459.2 MB 1.4 MB/s eta 0:03:15\n", " ---------------- ----------------------- 185.0/459.2 MB 1.4 MB/s eta 0:03:14\n", " ---------------- ----------------------- 185.1/459.2 MB 1.4 MB/s eta 0:03:14\n", " ---------------- ----------------------- 185.2/459.2 MB 1.4 MB/s eta 0:03:14\n", " ---------------- ----------------------- 185.3/459.2 MB 1.4 MB/s eta 0:03:11\n", " ---------------- ----------------------- 185.4/459.2 MB 1.4 MB/s eta 0:03:10\n", " ---------------- ----------------------- 185.5/459.2 MB 1.5 MB/s eta 0:03:08\n", " ---------------- ----------------------- 185.6/459.2 MB 1.5 MB/s eta 0:03:06\n", " ---------------- ----------------------- 185.7/459.2 MB 1.5 MB/s eta 0:03:04\n", " ---------------- ----------------------- 185.8/459.2 MB 1.5 MB/s eta 0:03:03\n", " ---------------- ----------------------- 186.0/459.2 MB 1.5 MB/s eta 0:03:01\n", " ---------------- ----------------------- 186.0/459.2 MB 1.5 MB/s eta 0:03:00\n", " ---------------- ----------------------- 186.1/459.2 MB 1.5 MB/s eta 0:02:59\n", " ---------------- ----------------------- 186.2/459.2 MB 1.5 MB/s eta 0:02:59\n", " ---------------- ----------------------- 186.3/459.2 MB 1.5 MB/s eta 0:02:57\n", " ---------------- ----------------------- 186.4/459.2 MB 1.6 MB/s eta 0:02:56\n", " ---------------- ----------------------- 186.4/459.2 MB 1.6 MB/s eta 0:02:55\n", " ---------------- ----------------------- 186.5/459.2 MB 1.6 MB/s eta 0:02:54\n", " ---------------- ----------------------- 186.6/459.2 MB 1.6 MB/s eta 0:02:54\n", " ---------------- ----------------------- 186.7/459.2 MB 1.6 MB/s eta 0:02:52\n", " ---------------- ----------------------- 186.8/459.2 MB 1.6 MB/s eta 0:02:51\n", " ---------------- ----------------------- 186.9/459.2 MB 1.6 MB/s eta 0:02:51\n", " ---------------- ----------------------- 187.0/459.2 MB 1.6 MB/s eta 0:02:50\n", " ---------------- ----------------------- 187.1/459.2 MB 1.6 MB/s eta 0:02:49\n", " ---------------- ----------------------- 187.2/459.2 MB 1.6 MB/s eta 0:02:48\n", " ---------------- ----------------------- 187.2/459.2 MB 1.6 MB/s eta 0:02:49\n", " ---------------- ----------------------- 187.4/459.2 MB 1.6 MB/s eta 0:02:47\n", " ---------------- ----------------------- 187.5/459.2 MB 1.6 MB/s eta 0:02:46\n", " ---------------- ----------------------- 187.6/459.2 MB 1.6 MB/s eta 0:02:46\n", " ---------------- ----------------------- 187.7/459.2 MB 1.6 MB/s eta 0:02:45\n", " ---------------- ----------------------- 187.8/459.2 MB 1.7 MB/s eta 0:02:44\n", " ---------------- ----------------------- 188.0/459.2 MB 1.7 MB/s eta 0:02:42\n", " ---------------- ----------------------- 188.1/459.2 MB 1.7 MB/s eta 0:02:42\n", " ---------------- ----------------------- 188.2/459.2 MB 1.7 MB/s eta 0:02:40\n", " ---------------- ----------------------- 188.4/459.2 MB 1.7 MB/s eta 0:02:39\n", " ---------------- ----------------------- 188.5/459.2 MB 1.7 MB/s eta 0:02:38\n", " ---------------- ----------------------- 188.6/459.2 MB 1.7 MB/s eta 0:02:38\n", " ---------------- ----------------------- 188.7/459.2 MB 1.7 MB/s eta 0:02:38\n", " ---------------- ----------------------- 188.9/459.2 MB 1.7 MB/s eta 0:02:36\n", " ---------------- ----------------------- 189.0/459.2 MB 1.7 MB/s eta 0:02:36\n", " ---------------- ----------------------- 189.1/459.2 MB 1.8 MB/s eta 0:02:35\n", " ---------------- ----------------------- 189.2/459.2 MB 1.8 MB/s eta 0:02:33\n", " ---------------- ----------------------- 189.3/459.2 MB 1.8 MB/s eta 0:02:34\n", " ---------------- ----------------------- 189.4/459.2 MB 1.8 MB/s eta 0:02:34\n", " ---------------- ----------------------- 189.6/459.2 MB 1.8 MB/s eta 0:02:33\n", " ---------------- ----------------------- 189.7/459.2 MB 1.8 MB/s eta 0:02:32\n", " ---------------- ----------------------- 189.8/459.2 MB 1.8 MB/s eta 0:02:31\n", " ---------------- ----------------------- 190.0/459.2 MB 1.8 MB/s eta 0:02:30\n", " ---------------- ----------------------- 190.1/459.2 MB 1.8 MB/s eta 0:02:30\n", " ---------------- ----------------------- 190.2/459.2 MB 1.9 MB/s eta 0:02:26\n", " ---------------- ----------------------- 190.4/459.2 MB 1.8 MB/s eta 0:02:26\n", " ---------------- ----------------------- 190.5/459.2 MB 1.9 MB/s eta 0:02:25\n", " ---------------- ----------------------- 190.5/459.2 MB 1.9 MB/s eta 0:02:25\n", " ---------------- ----------------------- 190.7/459.2 MB 1.9 MB/s eta 0:02:23\n", " ---------------- ----------------------- 190.7/459.2 MB 1.9 MB/s eta 0:02:24\n", " ---------------- ----------------------- 190.8/459.2 MB 1.9 MB/s eta 0:02:23\n", " ---------------- ----------------------- 190.9/459.2 MB 1.9 MB/s eta 0:02:23\n", " ---------------- ----------------------- 191.0/459.2 MB 1.9 MB/s eta 0:02:23\n", " ---------------- ----------------------- 191.1/459.2 MB 1.9 MB/s eta 0:02:22\n", " ---------------- ----------------------- 191.2/459.2 MB 1.9 MB/s eta 0:02:22\n", " ---------------- ----------------------- 191.3/459.2 MB 1.9 MB/s eta 0:02:22\n", " ---------------- ----------------------- 191.4/459.2 MB 1.9 MB/s eta 0:02:21\n", " ---------------- ----------------------- 191.5/459.2 MB 1.9 MB/s eta 0:02:20\n", " ---------------- ----------------------- 191.6/459.2 MB 1.9 MB/s eta 0:02:20\n", " ---------------- ----------------------- 191.7/459.2 MB 1.9 MB/s eta 0:02:20\n", " ---------------- ----------------------- 191.8/459.2 MB 1.9 MB/s eta 0:02:19\n", " ---------------- ----------------------- 191.9/459.2 MB 1.9 MB/s eta 0:02:19\n", " ---------------- ----------------------- 192.0/459.2 MB 1.9 MB/s eta 0:02:18\n", " ---------------- ----------------------- 192.1/459.2 MB 1.9 MB/s eta 0:02:18\n", " ---------------- ----------------------- 192.2/459.2 MB 2.0 MB/s eta 0:02:17\n", " ---------------- ----------------------- 192.3/459.2 MB 2.0 MB/s eta 0:02:16\n", " ---------------- ----------------------- 192.5/459.2 MB 2.0 MB/s eta 0:02:15\n", " ---------------- ----------------------- 192.6/459.2 MB 2.0 MB/s eta 0:02:14\n", " ---------------- ----------------------- 192.7/459.2 MB 2.0 MB/s eta 0:02:14\n", " ---------------- ----------------------- 192.8/459.2 MB 2.0 MB/s eta 0:02:13\n", " ---------------- ----------------------- 192.9/459.2 MB 2.0 MB/s eta 0:02:13\n", " ---------------- ----------------------- 193.0/459.2 MB 2.0 MB/s eta 0:02:12\n", " ---------------- ----------------------- 193.1/459.2 MB 2.0 MB/s eta 0:02:12\n", " ---------------- ----------------------- 193.2/459.2 MB 2.0 MB/s eta 0:02:11\n", " ---------------- ----------------------- 193.3/459.2 MB 2.0 MB/s eta 0:02:11\n", " ---------------- ----------------------- 193.4/459.2 MB 2.0 MB/s eta 0:02:10\n", " ---------------- ----------------------- 193.6/459.2 MB 2.0 MB/s eta 0:02:10\n", " ---------------- ----------------------- 193.7/459.2 MB 2.1 MB/s eta 0:02:09\n", " ---------------- ----------------------- 193.8/459.2 MB 2.1 MB/s eta 0:02:09\n", " ---------------- ----------------------- 193.9/459.2 MB 2.1 MB/s eta 0:02:09\n", " ---------------- ----------------------- 194.0/459.2 MB 2.1 MB/s eta 0:02:08\n", " ---------------- ----------------------- 194.2/459.2 MB 2.1 MB/s eta 0:02:08\n", " ---------------- ----------------------- 194.3/459.2 MB 2.1 MB/s eta 0:02:07\n", " ---------------- ----------------------- 194.4/459.2 MB 2.1 MB/s eta 0:02:06\n", " ---------------- ----------------------- 194.5/459.2 MB 2.1 MB/s eta 0:02:06\n", " ---------------- ----------------------- 194.6/459.2 MB 2.1 MB/s eta 0:02:05\n", " ---------------- ----------------------- 194.8/459.2 MB 2.1 MB/s eta 0:02:05\n", " ---------------- ----------------------- 194.9/459.2 MB 2.1 MB/s eta 0:02:05\n", " ---------------- ----------------------- 195.0/459.2 MB 2.1 MB/s eta 0:02:04\n", " ---------------- ----------------------- 195.1/459.2 MB 2.1 MB/s eta 0:02:04\n", " ----------------- ---------------------- 195.2/459.2 MB 2.2 MB/s eta 0:02:03\n", " ----------------- ---------------------- 195.3/459.2 MB 2.2 MB/s eta 0:02:02\n", " ----------------- ---------------------- 195.5/459.2 MB 2.2 MB/s eta 0:02:02\n", " ----------------- ---------------------- 195.6/459.2 MB 2.2 MB/s eta 0:02:02\n", " ----------------- ---------------------- 195.8/459.2 MB 2.2 MB/s eta 0:02:01\n", " ----------------- ---------------------- 195.9/459.2 MB 2.2 MB/s eta 0:02:00\n", " ----------------- ---------------------- 196.0/459.2 MB 2.2 MB/s eta 0:02:00\n", " ----------------- ---------------------- 196.1/459.2 MB 2.2 MB/s eta 0:02:00\n", " ----------------- ---------------------- 196.3/459.2 MB 2.2 MB/s eta 0:01:59\n", " ----------------- ---------------------- 196.4/459.2 MB 2.2 MB/s eta 0:01:58\n", " ----------------- ---------------------- 196.5/459.2 MB 2.2 MB/s eta 0:01:58\n", " ----------------- ---------------------- 196.7/459.2 MB 2.3 MB/s eta 0:01:56\n", " ----------------- ---------------------- 196.8/459.2 MB 2.3 MB/s eta 0:01:56\n", " ----------------- ---------------------- 197.0/459.2 MB 2.3 MB/s eta 0:01:56\n", " ----------------- ---------------------- 197.1/459.2 MB 2.3 MB/s eta 0:01:56\n", " ----------------- ---------------------- 197.3/459.2 MB 2.3 MB/s eta 0:01:55\n", " ----------------- ---------------------- 197.4/459.2 MB 2.3 MB/s eta 0:01:54\n", " ----------------- ---------------------- 197.6/459.2 MB 2.3 MB/s eta 0:01:54\n", " ----------------- ---------------------- 197.7/459.2 MB 2.3 MB/s eta 0:01:54\n", " ----------------- ---------------------- 197.9/459.2 MB 2.3 MB/s eta 0:01:53\n", " ----------------- ---------------------- 198.0/459.2 MB 2.3 MB/s eta 0:01:52\n", " ----------------- ---------------------- 198.2/459.2 MB 2.3 MB/s eta 0:01:53\n", " ----------------- ---------------------- 198.3/459.2 MB 2.3 MB/s eta 0:01:52\n", " ----------------- ---------------------- 198.5/459.2 MB 2.3 MB/s eta 0:01:52\n", " ----------------- ---------------------- 198.7/459.2 MB 2.3 MB/s eta 0:01:52\n", " ----------------- ---------------------- 198.8/459.2 MB 2.3 MB/s eta 0:01:51\n", " ----------------- ---------------------- 198.9/459.2 MB 2.3 MB/s eta 0:01:51\n", " ----------------- ---------------------- 199.1/459.2 MB 2.3 MB/s eta 0:01:52\n", " ----------------- ---------------------- 199.3/459.2 MB 2.3 MB/s eta 0:01:51\n", " ----------------- ---------------------- 199.4/459.2 MB 2.3 MB/s eta 0:01:51\n", " ----------------- ---------------------- 199.6/459.2 MB 2.4 MB/s eta 0:01:51\n", " ----------------- ---------------------- 199.7/459.2 MB 2.4 MB/s eta 0:01:51\n", " ----------------- ---------------------- 199.8/459.2 MB 2.4 MB/s eta 0:01:51\n", " ----------------- ---------------------- 200.0/459.2 MB 2.3 MB/s eta 0:01:51\n", " ----------------- ---------------------- 200.1/459.2 MB 2.3 MB/s eta 0:01:51\n", " ----------------- ---------------------- 200.3/459.2 MB 2.3 MB/s eta 0:01:52\n", " ----------------- ---------------------- 200.4/459.2 MB 2.3 MB/s eta 0:01:52\n", " ----------------- ---------------------- 200.5/459.2 MB 2.3 MB/s eta 0:01:52\n", " ----------------- ---------------------- 200.6/459.2 MB 2.3 MB/s eta 0:01:52\n", " ----------------- ---------------------- 200.8/459.2 MB 2.3 MB/s eta 0:01:51\n", " ----------------- ---------------------- 200.9/459.2 MB 2.3 MB/s eta 0:01:52\n", " ----------------- ---------------------- 201.0/459.2 MB 2.3 MB/s eta 0:01:52\n", " ----------------- ---------------------- 201.2/459.2 MB 2.3 MB/s eta 0:01:51\n", " ----------------- ---------------------- 201.3/459.2 MB 2.3 MB/s eta 0:01:50\n", " ----------------- ---------------------- 201.5/459.2 MB 2.4 MB/s eta 0:01:50\n", " ----------------- ---------------------- 201.6/459.2 MB 2.4 MB/s eta 0:01:49\n", " ----------------- ---------------------- 201.7/459.2 MB 2.4 MB/s eta 0:01:49\n", " ----------------- ---------------------- 201.9/459.2 MB 2.4 MB/s eta 0:01:49\n", " ----------------- ---------------------- 202.0/459.2 MB 2.4 MB/s eta 0:01:48\n", " ----------------- ---------------------- 202.1/459.2 MB 2.4 MB/s eta 0:01:48\n", " ----------------- ---------------------- 202.2/459.2 MB 2.4 MB/s eta 0:01:48\n", " ----------------- ---------------------- 202.3/459.2 MB 2.4 MB/s eta 0:01:48\n", " ----------------- ---------------------- 202.4/459.2 MB 2.4 MB/s eta 0:01:49\n", " ----------------- ---------------------- 202.5/459.2 MB 2.4 MB/s eta 0:01:48\n", " ----------------- ---------------------- 202.6/459.2 MB 2.4 MB/s eta 0:01:48\n", " ----------------- ---------------------- 202.8/459.2 MB 2.4 MB/s eta 0:01:48\n", " ----------------- ---------------------- 202.9/459.2 MB 2.4 MB/s eta 0:01:48\n", " ----------------- ---------------------- 203.1/459.2 MB 2.4 MB/s eta 0:01:47\n", " ----------------- ---------------------- 203.3/459.2 MB 2.4 MB/s eta 0:01:47\n", " ----------------- ---------------------- 203.4/459.2 MB 2.4 MB/s eta 0:01:48\n", " ----------------- ---------------------- 203.5/459.2 MB 2.4 MB/s eta 0:01:47\n", " ----------------- ---------------------- 203.7/459.2 MB 2.4 MB/s eta 0:01:47\n", " ----------------- ---------------------- 203.8/459.2 MB 2.4 MB/s eta 0:01:47\n", " ----------------- ---------------------- 204.0/459.2 MB 2.4 MB/s eta 0:01:47\n", " ----------------- ---------------------- 204.1/459.2 MB 2.4 MB/s eta 0:01:47\n", " ----------------- ---------------------- 204.2/459.2 MB 2.4 MB/s eta 0:01:47\n", " ----------------- ---------------------- 204.4/459.2 MB 2.4 MB/s eta 0:01:47\n", " ----------------- ---------------------- 204.5/459.2 MB 2.4 MB/s eta 0:01:47\n", " ----------------- ---------------------- 204.7/459.2 MB 2.4 MB/s eta 0:01:47\n", " ----------------- ---------------------- 204.8/459.2 MB 2.4 MB/s eta 0:01:47\n", " ----------------- ---------------------- 205.0/459.2 MB 2.4 MB/s eta 0:01:47\n", " ----------------- ---------------------- 205.0/459.2 MB 2.4 MB/s eta 0:01:47\n", " ----------------- ---------------------- 205.3/459.2 MB 2.4 MB/s eta 0:01:47\n", " ----------------- ---------------------- 205.4/459.2 MB 2.4 MB/s eta 0:01:47\n", " ----------------- ---------------------- 205.5/459.2 MB 2.4 MB/s eta 0:01:48\n", " ----------------- ---------------------- 205.6/459.2 MB 2.4 MB/s eta 0:01:48\n", " ----------------- ---------------------- 205.7/459.2 MB 2.4 MB/s eta 0:01:48\n", " ----------------- ---------------------- 205.9/459.2 MB 2.3 MB/s eta 0:01:48\n", " ----------------- ---------------------- 206.0/459.2 MB 2.3 MB/s eta 0:01:49\n", " ----------------- ---------------------- 206.1/459.2 MB 2.3 MB/s eta 0:01:49\n", " ----------------- ---------------------- 206.2/459.2 MB 2.3 MB/s eta 0:01:49\n", " ----------------- ---------------------- 206.3/459.2 MB 2.3 MB/s eta 0:01:50\n", " ----------------- ---------------------- 206.5/459.2 MB 2.3 MB/s eta 0:01:50\n", " ------------------ --------------------- 206.6/459.2 MB 2.3 MB/s eta 0:01:50\n", " ------------------ --------------------- 206.8/459.2 MB 2.3 MB/s eta 0:01:50\n", " ------------------ --------------------- 206.9/459.2 MB 2.3 MB/s eta 0:01:50\n", " ------------------ --------------------- 207.1/459.2 MB 2.3 MB/s eta 0:01:50\n", " ------------------ --------------------- 207.2/459.2 MB 2.3 MB/s eta 0:01:50\n", " ------------------ --------------------- 207.3/459.2 MB 2.3 MB/s eta 0:01:51\n", " ------------------ --------------------- 207.4/459.2 MB 2.3 MB/s eta 0:01:50\n", " ------------------ --------------------- 207.6/459.2 MB 2.3 MB/s eta 0:01:50\n", " ------------------ --------------------- 207.7/459.2 MB 2.3 MB/s eta 0:01:51\n", " ------------------ --------------------- 207.9/459.2 MB 2.3 MB/s eta 0:01:51\n", " ------------------ --------------------- 208.0/459.2 MB 2.3 MB/s eta 0:01:51\n", " ------------------ --------------------- 208.1/459.2 MB 2.3 MB/s eta 0:01:51\n", " ------------------ --------------------- 208.3/459.2 MB 2.3 MB/s eta 0:01:51\n", " ------------------ --------------------- 208.4/459.2 MB 2.3 MB/s eta 0:01:51\n", " ------------------ --------------------- 208.5/459.2 MB 2.3 MB/s eta 0:01:51\n", " ------------------ --------------------- 208.6/459.2 MB 2.3 MB/s eta 0:01:52\n", " ------------------ --------------------- 208.8/459.2 MB 2.2 MB/s eta 0:01:52\n", " ------------------ --------------------- 208.9/459.2 MB 2.3 MB/s eta 0:01:52\n", " ------------------ --------------------- 209.1/459.2 MB 2.2 MB/s eta 0:01:52\n", " ------------------ --------------------- 209.2/459.2 MB 2.3 MB/s eta 0:01:51\n", " ------------------ --------------------- 209.2/459.2 MB 2.2 MB/s eta 0:01:52\n", " ------------------ --------------------- 209.2/459.2 MB 2.2 MB/s eta 0:01:54\n", " ------------------ --------------------- 209.4/459.2 MB 2.2 MB/s eta 0:01:53\n", " ------------------ --------------------- 209.4/459.2 MB 2.2 MB/s eta 0:01:53\n", " ------------------ --------------------- 209.4/459.2 MB 2.2 MB/s eta 0:01:53\n", " ------------------ --------------------- 209.5/459.2 MB 2.2 MB/s eta 0:01:55\n", " ------------------ --------------------- 209.6/459.2 MB 2.2 MB/s eta 0:01:55\n", " ------------------ --------------------- 209.6/459.2 MB 2.2 MB/s eta 0:01:55\n", " ------------------ --------------------- 209.7/459.2 MB 2.1 MB/s eta 0:01:57\n", " ------------------ --------------------- 209.7/459.2 MB 2.1 MB/s eta 0:01:57\n", " ------------------ --------------------- 209.7/459.2 MB 2.1 MB/s eta 0:01:58\n", " ------------------ --------------------- 209.7/459.2 MB 2.1 MB/s eta 0:01:58\n", " ------------------ --------------------- 209.7/459.2 MB 2.1 MB/s eta 0:01:58\n", " ------------------ --------------------- 209.7/459.2 MB 2.1 MB/s eta 0:02:02\n", " ------------------ --------------------- 209.7/459.2 MB 2.1 MB/s eta 0:02:02\n", " ------------------ --------------------- 209.8/459.2 MB 2.0 MB/s eta 0:02:04\n", " ------------------ --------------------- 209.8/459.2 MB 2.0 MB/s eta 0:02:05\n", " ------------------ --------------------- 209.8/459.2 MB 2.0 MB/s eta 0:02:07\n", " ------------------ --------------------- 209.9/459.2 MB 2.0 MB/s eta 0:02:08\n", " ------------------ --------------------- 209.9/459.2 MB 1.9 MB/s eta 0:02:10\n", " ------------------ --------------------- 209.9/459.2 MB 1.9 MB/s eta 0:02:11\n", " ------------------ --------------------- 210.0/459.2 MB 1.9 MB/s eta 0:02:12\n", " ------------------ --------------------- 210.0/459.2 MB 1.9 MB/s eta 0:02:13\n", " ------------------ --------------------- 210.0/459.2 MB 1.9 MB/s eta 0:02:14\n", " ------------------ --------------------- 210.1/459.2 MB 1.9 MB/s eta 0:02:14\n", " ------------------ --------------------- 210.1/459.2 MB 1.8 MB/s eta 0:02:15\n", " ------------------ --------------------- 210.1/459.2 MB 1.8 MB/s eta 0:02:17\n", " ------------------ --------------------- 210.1/459.2 MB 1.8 MB/s eta 0:02:19\n", " ------------------ --------------------- 210.2/459.2 MB 1.8 MB/s eta 0:02:20\n", " ------------------ --------------------- 210.2/459.2 MB 1.8 MB/s eta 0:02:21\n", " ------------------ --------------------- 210.3/459.2 MB 1.8 MB/s eta 0:02:22\n", " ------------------ --------------------- 210.3/459.2 MB 1.7 MB/s eta 0:02:23\n", " ------------------ --------------------- 210.4/459.2 MB 1.7 MB/s eta 0:02:24\n", " ------------------ --------------------- 210.4/459.2 MB 1.7 MB/s eta 0:02:25\n", " ------------------ --------------------- 210.4/459.2 MB 1.7 MB/s eta 0:02:26\n", " ------------------ --------------------- 210.5/459.2 MB 1.7 MB/s eta 0:02:27\n", " ------------------ --------------------- 210.5/459.2 MB 1.7 MB/s eta 0:02:27\n", " ------------------ --------------------- 210.6/459.2 MB 1.7 MB/s eta 0:02:29\n", " ------------------ --------------------- 210.6/459.2 MB 1.7 MB/s eta 0:02:29\n", " ------------------ --------------------- 210.7/459.2 MB 1.7 MB/s eta 0:02:30\n", " ------------------ --------------------- 210.7/459.2 MB 1.6 MB/s eta 0:02:31\n", " ------------------ --------------------- 210.8/459.2 MB 1.6 MB/s eta 0:02:32\n", " ------------------ --------------------- 210.8/459.2 MB 1.6 MB/s eta 0:02:33\n", " ------------------ --------------------- 210.9/459.2 MB 1.6 MB/s eta 0:02:34\n", " ------------------ --------------------- 210.9/459.2 MB 1.6 MB/s eta 0:02:35\n", " ------------------ --------------------- 211.0/459.2 MB 1.6 MB/s eta 0:02:36\n", " ------------------ --------------------- 211.0/459.2 MB 1.6 MB/s eta 0:02:36\n", " ------------------ --------------------- 211.1/459.2 MB 1.6 MB/s eta 0:02:37\n", " ------------------ --------------------- 211.1/459.2 MB 1.6 MB/s eta 0:02:38\n", " ------------------ --------------------- 211.2/459.2 MB 1.6 MB/s eta 0:02:38\n", " ------------------ --------------------- 211.3/459.2 MB 1.6 MB/s eta 0:02:40\n", " ------------------ --------------------- 211.3/459.2 MB 1.6 MB/s eta 0:02:40\n", " ------------------ --------------------- 211.3/459.2 MB 1.6 MB/s eta 0:02:40\n", " ------------------ --------------------- 211.3/459.2 MB 1.5 MB/s eta 0:02:42\n", " ------------------ --------------------- 211.3/459.2 MB 1.5 MB/s eta 0:02:42\n", " ------------------ --------------------- 211.4/459.2 MB 1.5 MB/s eta 0:02:44\n", " ------------------ --------------------- 211.4/459.2 MB 1.5 MB/s eta 0:02:44\n", " ------------------ --------------------- 211.4/459.2 MB 1.5 MB/s eta 0:02:47\n", " ------------------ --------------------- 211.4/459.2 MB 1.5 MB/s eta 0:02:47\n", " ------------------ --------------------- 211.4/459.2 MB 1.5 MB/s eta 0:02:49\n", " ------------------ --------------------- 211.4/459.2 MB 1.5 MB/s eta 0:02:50\n", " ------------------ --------------------- 211.4/459.2 MB 1.5 MB/s eta 0:02:50\n", " ------------------ --------------------- 211.4/459.2 MB 1.4 MB/s eta 0:02:52\n", " ------------------ --------------------- 211.5/459.2 MB 1.4 MB/s eta 0:02:54\n", " ------------------ --------------------- 211.5/459.2 MB 1.4 MB/s eta 0:02:54\n", " ------------------ --------------------- 211.5/459.2 MB 1.4 MB/s eta 0:02:54\n", " ------------------ --------------------- 211.5/459.2 MB 1.4 MB/s eta 0:02:58\n", " ------------------ --------------------- 211.5/459.2 MB 1.4 MB/s eta 0:02:59\n", " ------------------ --------------------- 211.5/459.2 MB 1.4 MB/s eta 0:02:59\n", " ------------------ --------------------- 211.5/459.2 MB 1.4 MB/s eta 0:02:59\n", " ------------------ --------------------- 211.5/459.2 MB 1.3 MB/s eta 0:03:04\n", " ------------------ --------------------- 211.5/459.2 MB 1.3 MB/s eta 0:03:04\n", " ------------------ --------------------- 211.5/459.2 MB 1.3 MB/s eta 0:03:04\n", " ------------------ --------------------- 211.5/459.2 MB 1.3 MB/s eta 0:03:04\n", " ------------------ --------------------- 211.5/459.2 MB 1.3 MB/s eta 0:03:04\n", " ------------------ --------------------- 211.5/459.2 MB 1.3 MB/s eta 0:03:04\n", " ------------------ --------------------- 211.5/459.2 MB 1.3 MB/s eta 0:03:04\n", " ------------------ --------------------- 211.5/459.2 MB 1.3 MB/s eta 0:03:04\n", " ------------------ --------------------- 211.5/459.2 MB 1.3 MB/s eta 0:03:04\n", " ------------------ --------------------- 211.5/459.2 MB 1.3 MB/s eta 0:03:18\n", " ------------------ --------------------- 211.5/459.2 MB 1.3 MB/s eta 0:03:18\n", " ------------------ --------------------- 211.5/459.2 MB 1.3 MB/s eta 0:03:18\n", " ------------------ --------------------- 211.5/459.2 MB 1.3 MB/s eta 0:03:18\n", " ------------------ --------------------- 211.5/459.2 MB 1.2 MB/s eta 0:03:24\n", " ------------------ --------------------- 211.5/459.2 MB 1.2 MB/s eta 0:03:24\n", " ------------------ --------------------- 211.5/459.2 MB 1.2 MB/s eta 0:03:24\n", " ------------------ --------------------- 211.6/459.2 MB 1.2 MB/s eta 0:03:27\n", " ------------------ --------------------- 211.6/459.2 MB 1.2 MB/s eta 0:03:27\n", " ------------------ --------------------- 211.6/459.2 MB 1.2 MB/s eta 0:03:30\n", " ------------------ --------------------- 211.6/459.2 MB 1.2 MB/s eta 0:03:30\n", " ------------------ --------------------- 211.6/459.2 MB 1.2 MB/s eta 0:03:30\n", " ------------------ --------------------- 211.6/459.2 MB 1.2 MB/s eta 0:03:30\n", " ------------------ --------------------- 211.6/459.2 MB 1.1 MB/s eta 0:03:37\n", " ------------------ --------------------- 211.6/459.2 MB 1.1 MB/s eta 0:03:37\n", " ------------------ --------------------- 211.6/459.2 MB 1.1 MB/s eta 0:03:37\n", " ------------------ --------------------- 211.6/459.2 MB 1.1 MB/s eta 0:03:40\n", " ------------------ --------------------- 211.6/459.2 MB 1.1 MB/s eta 0:03:40\n", " ------------------ --------------------- 211.6/459.2 MB 1.1 MB/s eta 0:03:40\n", " ------------------ --------------------- 211.6/459.2 MB 1.1 MB/s eta 0:03:44\n", " ------------------ --------------------- 211.6/459.2 MB 1.1 MB/s eta 0:03:44\n", " ------------------ --------------------- 211.6/459.2 MB 1.1 MB/s eta 0:03:47\n", " ------------------ --------------------- 211.6/459.2 MB 1.1 MB/s eta 0:03:47\n", " ------------------ --------------------- 211.7/459.2 MB 1.1 MB/s eta 0:03:51\n", " ------------------ --------------------- 211.7/459.2 MB 1.1 MB/s eta 0:03:51\n", " ------------------ --------------------- 211.7/459.2 MB 1.1 MB/s eta 0:03:51\n", " ------------------ --------------------- 211.7/459.2 MB 1.1 MB/s eta 0:03:55\n", " ------------------ --------------------- 211.7/459.2 MB 1.0 MB/s eta 0:03:57\n", " ------------------ --------------------- 211.7/459.2 MB 1.0 MB/s eta 0:03:57\n", " ------------------ --------------------- 211.7/459.2 MB 1.0 MB/s eta 0:03:59\n", " ------------------ --------------------- 211.7/459.2 MB 1.0 MB/s eta 0:03:59\n", " ------------------ --------------------- 211.7/459.2 MB 1.0 MB/s eta 0:04:01\n", " ------------------ --------------------- 211.7/459.2 MB 1.0 MB/s eta 0:04:03\n", " ------------------ --------------------- 211.7/459.2 MB 1.0 MB/s eta 0:04:03\n", " ------------------ --------------------- 211.8/459.2 MB 1.0 MB/s eta 0:04:04\n", " ------------------ --------------------- 211.8/459.2 MB 1.0 MB/s eta 0:04:06\n", " ------------------ --------------------- 211.8/459.2 MB 1.0 MB/s eta 0:04:07\n", " ------------------ --------------------- 211.8/459.2 MB 1.0 MB/s eta 0:04:07\n", " ----------------- -------------------- 211.8/459.2 MB 996.5 kB/s eta 0:04:09\n", " ----------------- -------------------- 211.8/459.2 MB 991.9 kB/s eta 0:04:10\n", " ----------------- -------------------- 211.8/459.2 MB 987.4 kB/s eta 0:04:11\n", " ----------------- -------------------- 211.9/459.2 MB 983.1 kB/s eta 0:04:12\n", " ----------------- -------------------- 211.9/459.2 MB 978.6 kB/s eta 0:04:13\n", " ----------------- -------------------- 211.9/459.2 MB 974.3 kB/s eta 0:04:14\n", " ----------------- -------------------- 211.9/459.2 MB 974.3 kB/s eta 0:04:14\n", " ----------------- -------------------- 211.9/459.2 MB 968.5 kB/s eta 0:04:16\n", " ----------------- -------------------- 211.9/459.2 MB 964.3 kB/s eta 0:04:17\n", " ----------------- -------------------- 211.9/459.2 MB 964.3 kB/s eta 0:04:17\n", " ----------------- -------------------- 211.9/459.2 MB 954.4 kB/s eta 0:04:20\n", " ----------------- -------------------- 211.9/459.2 MB 954.4 kB/s eta 0:04:20\n", " ----------------- -------------------- 211.9/459.2 MB 954.4 kB/s eta 0:04:20\n", " ----------------- -------------------- 212.0/459.2 MB 939.3 kB/s eta 0:04:24\n", " ----------------- -------------------- 212.0/459.2 MB 939.3 kB/s eta 0:04:24\n", " ----------------- -------------------- 212.0/459.2 MB 934.0 kB/s eta 0:04:25\n", " ----------------- -------------------- 212.0/459.2 MB 934.0 kB/s eta 0:04:25\n", " ----------------- -------------------- 212.0/459.2 MB 934.0 kB/s eta 0:04:25\n", " ----------------- -------------------- 212.0/459.2 MB 919.5 kB/s eta 0:04:29\n", " ----------------- -------------------- 212.0/459.2 MB 919.5 kB/s eta 0:04:29\n", " ----------------- -------------------- 212.0/459.2 MB 919.5 kB/s eta 0:04:29\n", " ----------------- -------------------- 212.0/459.2 MB 919.5 kB/s eta 0:04:29\n", " ----------------- -------------------- 212.0/459.2 MB 919.5 kB/s eta 0:04:29\n", " ----------------- -------------------- 212.0/459.2 MB 919.5 kB/s eta 0:04:29\n", " ----------------- -------------------- 212.0/459.2 MB 919.5 kB/s eta 0:04:29\n", " ----------------- -------------------- 212.0/459.2 MB 919.5 kB/s eta 0:04:29\n", " ----------------- -------------------- 212.0/459.2 MB 888.3 kB/s eta 0:04:39\n", " ----------------- -------------------- 212.0/459.2 MB 888.3 kB/s eta 0:04:39\n", " ----------------- -------------------- 212.0/459.2 MB 888.3 kB/s eta 0:04:39\n", " ----------------- -------------------- 212.0/459.2 MB 888.3 kB/s eta 0:04:39\n", " ----------------- -------------------- 212.0/459.2 MB 888.3 kB/s eta 0:04:39\n", " ----------------- -------------------- 212.0/459.2 MB 888.3 kB/s eta 0:04:39\n", " ----------------- -------------------- 212.0/459.2 MB 868.3 kB/s eta 0:04:45\n", " ----------------- -------------------- 212.0/459.2 MB 868.3 kB/s eta 0:04:45\n", " ----------------- -------------------- 212.0/459.2 MB 861.5 kB/s eta 0:04:47\n", " ----------------- -------------------- 212.0/459.2 MB 861.5 kB/s eta 0:04:47\n", " ----------------- -------------------- 212.1/459.2 MB 854.7 kB/s eta 0:04:50\n", " ----------------- -------------------- 212.1/459.2 MB 854.7 kB/s eta 0:04:50\n", " ----------------- -------------------- 212.1/459.2 MB 849.2 kB/s eta 0:04:51\n", " ----------------- -------------------- 212.1/459.2 MB 842.6 kB/s eta 0:04:54\n", " ----------------- -------------------- 212.1/459.2 MB 842.6 kB/s eta 0:04:54\n", " ----------------- -------------------- 212.1/459.2 MB 839.3 kB/s eta 0:04:55\n", " ----------------- -------------------- 212.1/459.2 MB 835.1 kB/s eta 0:04:56\n", " ----------------- -------------------- 212.2/459.2 MB 828.7 kB/s eta 0:04:59\n", " ----------------- -------------------- 212.2/459.2 MB 826.6 kB/s eta 0:04:59\n", " ----------------- -------------------- 212.2/459.2 MB 822.5 kB/s eta 0:05:01\n", " ----------------- -------------------- 212.2/459.2 MB 818.4 kB/s eta 0:05:02\n", " ----------------- -------------------- 212.2/459.2 MB 813.2 kB/s eta 0:05:04\n", " ----------------- -------------------- 212.2/459.2 MB 812.3 kB/s eta 0:05:04\n", " ----------------- -------------------- 212.3/459.2 MB 807.3 kB/s eta 0:05:06\n", " ----------------- -------------------- 212.3/459.2 MB 803.3 kB/s eta 0:05:08\n", " ----------------- -------------------- 212.3/459.2 MB 801.4 kB/s eta 0:05:09\n", " ----------------- -------------------- 212.3/459.2 MB 796.5 kB/s eta 0:05:10\n", " ----------------- -------------------- 212.4/459.2 MB 795.5 kB/s eta 0:05:11\n", " ----------------- -------------------- 212.4/459.2 MB 792.6 kB/s eta 0:05:12\n", " ----------------- -------------------- 212.4/459.2 MB 787.8 kB/s eta 0:05:14\n", " ----------------- -------------------- 212.4/459.2 MB 787.9 kB/s eta 0:05:14\n", " ----------------- -------------------- 212.5/459.2 MB 784.1 kB/s eta 0:05:15\n", " ----------------- -------------------- 212.5/459.2 MB 780.4 kB/s eta 0:05:17\n", " ----------------- -------------------- 212.5/459.2 MB 776.6 kB/s eta 0:05:18\n", " ----------------- -------------------- 212.6/459.2 MB 775.7 kB/s eta 0:05:18\n", " ----------------- -------------------- 212.6/459.2 MB 772.1 kB/s eta 0:05:20\n", " ----------------- -------------------- 212.6/459.2 MB 769.3 kB/s eta 0:05:21\n", " ----------------- -------------------- 212.7/459.2 MB 767.5 kB/s eta 0:05:22\n", " ----------------- -------------------- 212.7/459.2 MB 765.7 kB/s eta 0:05:22\n", " ----------------- -------------------- 212.7/459.2 MB 763.1 kB/s eta 0:05:23\n", " ----------------- -------------------- 212.8/459.2 MB 759.5 kB/s eta 0:05:25\n", " ----------------- -------------------- 212.8/459.2 MB 758.7 kB/s eta 0:05:25\n", " ----------------- -------------------- 212.8/459.2 MB 756.9 kB/s eta 0:05:26\n", " ----------------- -------------------- 212.9/459.2 MB 751.6 kB/s eta 0:05:28\n", " ----------------- -------------------- 213.0/459.2 MB 750.0 kB/s eta 0:05:29\n", " ----------------- -------------------- 213.0/459.2 MB 747.4 kB/s eta 0:05:30\n", " ----------------- -------------------- 213.0/459.2 MB 744.0 kB/s eta 0:05:31\n", " ----------------- -------------------- 213.1/459.2 MB 742.3 kB/s eta 0:05:32\n", " ----------------- -------------------- 213.1/459.2 MB 739.8 kB/s eta 0:05:33\n", " ----------------- -------------------- 213.2/459.2 MB 738.1 kB/s eta 0:05:34\n", " ----------------- -------------------- 213.2/459.2 MB 735.6 kB/s eta 0:05:35\n", " ----------------- -------------------- 213.2/459.2 MB 734.8 kB/s eta 0:05:35\n", " ----------------- -------------------- 213.3/459.2 MB 730.7 kB/s eta 0:05:37\n", " ----------------- -------------------- 213.3/459.2 MB 729.1 kB/s eta 0:05:38\n", " ----------------- -------------------- 213.3/459.2 MB 727.4 kB/s eta 0:05:38\n", " ----------------- -------------------- 213.3/459.2 MB 727.4 kB/s eta 0:05:38\n", " ----------------- -------------------- 213.3/459.2 MB 721.8 kB/s eta 0:05:41\n", " ----------------- -------------------- 213.4/459.2 MB 720.3 kB/s eta 0:05:42\n", " ----------------- -------------------- 213.4/459.2 MB 718.6 kB/s eta 0:05:43\n", " ----------------- -------------------- 213.4/459.2 MB 714.7 kB/s eta 0:05:44\n", " ----------------- -------------------- 213.5/459.2 MB 711.6 kB/s eta 0:05:46\n", " ----------------- -------------------- 213.5/459.2 MB 710.1 kB/s eta 0:05:47\n", " ----------------- -------------------- 213.5/459.2 MB 706.3 kB/s eta 0:05:48\n", " ----------------- -------------------- 213.5/459.2 MB 706.3 kB/s eta 0:05:48\n", " ----------------- -------------------- 213.5/459.2 MB 704.0 kB/s eta 0:05:49\n", " ----------------- -------------------- 213.6/459.2 MB 698.7 kB/s eta 0:05:52\n", " ----------------- -------------------- 213.6/459.2 MB 697.3 kB/s eta 0:05:53\n", " ----------------- -------------------- 213.7/459.2 MB 695.0 kB/s eta 0:05:54\n", " ----------------- -------------------- 213.7/459.2 MB 692.8 kB/s eta 0:05:55\n", " ----------------- -------------------- 213.7/459.2 MB 691.3 kB/s eta 0:05:56\n", " ----------------- -------------------- 213.7/459.2 MB 689.2 kB/s eta 0:05:57\n", " ----------------- -------------------- 213.8/459.2 MB 686.3 kB/s eta 0:05:58\n", " ----------------- -------------------- 213.8/459.2 MB 684.8 kB/s eta 0:05:59\n", " ----------------- -------------------- 213.9/459.2 MB 683.4 kB/s eta 0:05:59\n", " ----------------- -------------------- 213.9/459.2 MB 679.9 kB/s eta 0:06:01\n", " ----------------- -------------------- 214.0/459.2 MB 677.7 kB/s eta 0:06:02\n", " ----------------- -------------------- 214.0/459.2 MB 676.3 kB/s eta 0:06:03\n", " ----------------- -------------------- 214.0/459.2 MB 674.9 kB/s eta 0:06:04\n", " ----------------- -------------------- 214.1/459.2 MB 672.9 kB/s eta 0:06:05\n", " ----------------- -------------------- 214.1/459.2 MB 670.8 kB/s eta 0:06:06\n", " ----------------- -------------------- 214.2/459.2 MB 668.7 kB/s eta 0:06:07\n", " ----------------- -------------------- 214.2/459.2 MB 667.4 kB/s eta 0:06:08\n", " ----------------- -------------------- 214.2/459.2 MB 665.4 kB/s eta 0:06:09\n", " ----------------- -------------------- 214.3/459.2 MB 664.0 kB/s eta 0:06:09\n", " ----------------- -------------------- 214.3/459.2 MB 662.0 kB/s eta 0:06:10\n", " ----------------- -------------------- 214.4/459.2 MB 661.3 kB/s eta 0:06:11\n", " ----------------- -------------------- 214.4/459.2 MB 658.7 kB/s eta 0:06:12\n", " ----------------- -------------------- 214.5/459.2 MB 658.0 kB/s eta 0:06:12\n", " ----------------- -------------------- 214.5/459.2 MB 656.7 kB/s eta 0:06:13\n", " ----------------- -------------------- 214.5/459.2 MB 655.4 kB/s eta 0:06:14\n", " ----------------- -------------------- 214.6/459.2 MB 654.0 kB/s eta 0:06:15\n", " ----------------- -------------------- 214.6/459.2 MB 652.7 kB/s eta 0:06:15\n", " ----------------- -------------------- 214.7/459.2 MB 651.5 kB/s eta 0:06:16\n", " ----------------- -------------------- 214.7/459.2 MB 649.5 kB/s eta 0:06:17\n", " ----------------- -------------------- 214.8/459.2 MB 647.0 kB/s eta 0:06:18\n", " ----------------- -------------------- 214.9/459.2 MB 646.3 kB/s eta 0:06:19\n", " ----------------- -------------------- 214.9/459.2 MB 644.4 kB/s eta 0:06:20\n", " ----------------- -------------------- 215.0/459.2 MB 643.1 kB/s eta 0:06:20\n", " ----------------- -------------------- 215.0/459.2 MB 640.6 kB/s eta 0:06:22\n", " ----------------- -------------------- 215.1/459.2 MB 639.4 kB/s eta 0:06:22\n", " ----------------- -------------------- 215.2/459.2 MB 638.7 kB/s eta 0:06:23\n", " ----------------- -------------------- 215.2/459.2 MB 637.5 kB/s eta 0:06:23\n", " ----------------- -------------------- 215.3/459.2 MB 638.1 kB/s eta 0:06:23\n", " ----------------- -------------------- 215.4/459.2 MB 635.0 kB/s eta 0:06:24\n", " ----------------- -------------------- 215.4/459.2 MB 633.2 kB/s eta 0:06:25\n", " ----------------- -------------------- 215.5/459.2 MB 632.6 kB/s eta 0:06:26\n", " ----------------- -------------------- 215.6/459.2 MB 631.9 kB/s eta 0:06:26\n", " ----------------- -------------------- 215.6/459.2 MB 630.7 kB/s eta 0:06:27\n", " ----------------- -------------------- 215.7/459.2 MB 629.5 kB/s eta 0:06:27\n", " ----------------- -------------------- 215.8/459.2 MB 628.9 kB/s eta 0:06:28\n", " ----------------- -------------------- 215.9/459.2 MB 628.3 kB/s eta 0:06:28\n", " ----------------- -------------------- 216.0/459.2 MB 627.7 kB/s eta 0:06:28\n", " ----------------- -------------------- 216.0/459.2 MB 625.9 kB/s eta 0:06:29\n", " ----------------- -------------------- 216.1/459.2 MB 625.3 kB/s eta 0:06:29\n", " ----------------- -------------------- 216.2/459.2 MB 624.1 kB/s eta 0:06:30\n", " ----------------- -------------------- 216.2/459.2 MB 624.1 kB/s eta 0:06:30\n", " ----------------- -------------------- 216.3/459.2 MB 622.9 kB/s eta 0:06:30\n", " ----------------- -------------------- 216.4/459.2 MB 622.4 kB/s eta 0:06:31\n", " ----------------- -------------------- 216.4/459.2 MB 622.3 kB/s eta 0:06:31\n", " ----------------- -------------------- 216.4/459.2 MB 622.3 kB/s eta 0:06:31\n", " ----------------- -------------------- 216.5/459.2 MB 618.8 kB/s eta 0:06:33\n", " ----------------- -------------------- 216.5/459.2 MB 617.6 kB/s eta 0:06:33\n", " ----------------- -------------------- 216.6/459.2 MB 617.1 kB/s eta 0:06:34\n", " ----------------- -------------------- 216.6/459.2 MB 614.2 kB/s eta 0:06:35\n", " ----------------- -------------------- 216.7/459.2 MB 613.0 kB/s eta 0:06:36\n", " ----------------- -------------------- 216.7/459.2 MB 611.9 kB/s eta 0:06:37\n", " ----------------- -------------------- 216.8/459.2 MB 609.6 kB/s eta 0:06:38\n", " ----------------- -------------------- 216.8/459.2 MB 609.6 kB/s eta 0:06:38\n", " ----------------- -------------------- 216.8/459.2 MB 606.8 kB/s eta 0:06:40\n", " ----------------- -------------------- 216.9/459.2 MB 606.8 kB/s eta 0:06:40\n", " ----------------- -------------------- 216.9/459.2 MB 605.7 kB/s eta 0:06:41\n", " ----------------- -------------------- 216.9/459.2 MB 604.0 kB/s eta 0:06:42\n", " ----------------- -------------------- 217.0/459.2 MB 602.8 kB/s eta 0:06:42\n", " ----------------- -------------------- 217.0/459.2 MB 601.8 kB/s eta 0:06:43\n", " ----------------- -------------------- 217.1/459.2 MB 600.7 kB/s eta 0:06:44\n", " ----------------- -------------------- 217.1/459.2 MB 599.5 kB/s eta 0:06:44\n", " ----------------- -------------------- 217.1/459.2 MB 598.4 kB/s eta 0:06:45\n", " ----------------- -------------------- 217.1/459.2 MB 596.3 kB/s eta 0:06:46\n", " ----------------- -------------------- 217.2/459.2 MB 595.2 kB/s eta 0:06:47\n", " ----------------- -------------------- 217.3/459.2 MB 593.0 kB/s eta 0:06:48\n", " ----------------- -------------------- 217.3/459.2 MB 591.9 kB/s eta 0:06:49\n", " ----------------- -------------------- 217.3/459.2 MB 590.4 kB/s eta 0:06:50\n", " ----------------- -------------------- 217.4/459.2 MB 588.8 kB/s eta 0:06:51\n", " ----------------- -------------------- 217.4/459.2 MB 587.2 kB/s eta 0:06:52\n", " ----------------- -------------------- 217.4/459.2 MB 585.6 kB/s eta 0:06:53\n", " ----------------- -------------------- 217.5/459.2 MB 584.0 kB/s eta 0:06:54\n", " ------------------ ------------------- 217.5/459.2 MB 582.5 kB/s eta 0:06:55\n", " ------------------ ------------------- 217.6/459.2 MB 582.5 kB/s eta 0:06:55\n", " ------------------ ------------------- 217.6/459.2 MB 579.4 kB/s eta 0:06:57\n", " ------------------ ------------------- 217.7/459.2 MB 578.3 kB/s eta 0:06:58\n", " ------------------ ------------------- 217.7/459.2 MB 577.4 kB/s eta 0:06:59\n", " ------------------ ------------------- 217.7/459.2 MB 575.8 kB/s eta 0:07:00\n", " ------------------ ------------------- 217.7/459.2 MB 575.8 kB/s eta 0:07:00\n", " ------------------ ------------------- 217.8/459.2 MB 572.3 kB/s eta 0:07:02\n", " ------------------ ------------------- 217.8/459.2 MB 570.3 kB/s eta 0:07:04\n", " ------------------ ------------------- 217.8/459.2 MB 569.8 kB/s eta 0:07:04\n", " ------------------ ------------------- 217.9/459.2 MB 567.8 kB/s eta 0:07:06\n", " ------------------ ------------------- 217.9/459.2 MB 566.4 kB/s eta 0:07:07\n", " ------------------ ------------------- 217.9/459.2 MB 564.9 kB/s eta 0:07:08\n", " ------------------ ------------------- 218.0/459.2 MB 562.4 kB/s eta 0:07:09\n", " ------------------ ------------------- 218.0/459.2 MB 561.5 kB/s eta 0:07:10\n", " ------------------ ------------------- 218.0/459.2 MB 559.6 kB/s eta 0:07:11\n", " ------------------ ------------------- 218.1/459.2 MB 558.1 kB/s eta 0:07:13\n", " ------------------ ------------------- 218.1/459.2 MB 556.3 kB/s eta 0:07:14\n", " ------------------ ------------------- 218.1/459.2 MB 555.3 kB/s eta 0:07:15\n", " ------------------ ------------------- 218.2/459.2 MB 554.4 kB/s eta 0:07:15\n", " ------------------ ------------------- 218.2/459.2 MB 552.5 kB/s eta 0:07:17\n", " ------------------ ------------------- 218.2/459.2 MB 551.6 kB/s eta 0:07:17\n", " ------------------ ------------------- 218.3/459.2 MB 550.2 kB/s eta 0:07:18\n", " ------------------ ------------------- 218.3/459.2 MB 549.2 kB/s eta 0:07:19\n", " ------------------ ------------------- 218.3/459.2 MB 549.2 kB/s eta 0:07:19\n", " ------------------ ------------------- 218.3/459.2 MB 546.0 kB/s eta 0:07:22\n", " ------------------ ------------------- 218.4/459.2 MB 545.1 kB/s eta 0:07:22\n", " ------------------ ------------------- 218.4/459.2 MB 544.2 kB/s eta 0:07:23\n", " ------------------ ------------------- 218.4/459.2 MB 542.0 kB/s eta 0:07:25\n", " ------------------ ------------------- 218.5/459.2 MB 541.1 kB/s eta 0:07:25\n", " ------------------ ------------------- 218.5/459.2 MB 539.7 kB/s eta 0:07:26\n", " ------------------ ------------------- 218.5/459.2 MB 538.4 kB/s eta 0:07:27\n", " ------------------ ------------------- 218.6/459.2 MB 537.1 kB/s eta 0:07:29\n", " ------------------ ------------------- 218.6/459.2 MB 535.8 kB/s eta 0:07:30\n", " ------------------ ------------------- 218.6/459.2 MB 534.5 kB/s eta 0:07:31\n", " ------------------ ------------------- 218.7/459.2 MB 532.7 kB/s eta 0:07:32\n", " ------------------ ------------------- 218.7/459.2 MB 531.9 kB/s eta 0:07:33\n", " ------------------ ------------------- 218.8/459.2 MB 531.4 kB/s eta 0:07:33\n", " ------------------ ------------------- 218.8/459.2 MB 530.1 kB/s eta 0:07:34\n", " ------------------ ------------------- 218.8/459.2 MB 528.4 kB/s eta 0:07:35\n", " ------------------ ------------------- 218.8/459.2 MB 527.6 kB/s eta 0:07:36\n", " ------------------ ------------------- 218.9/459.2 MB 526.3 kB/s eta 0:07:37\n", " ------------------ ------------------- 218.9/459.2 MB 524.6 kB/s eta 0:07:38\n", " ------------------ ------------------- 219.0/459.2 MB 523.3 kB/s eta 0:07:40\n", " ------------------ ------------------- 219.0/459.2 MB 521.7 kB/s eta 0:07:41\n", " ------------------ ------------------- 219.0/459.2 MB 521.7 kB/s eta 0:07:41\n", " ------------------ ------------------- 219.0/459.2 MB 519.2 kB/s eta 0:07:43\n", " ------------------ ------------------- 219.0/459.2 MB 519.2 kB/s eta 0:07:43\n", " ------------------ ------------------- 219.0/459.2 MB 516.7 kB/s eta 0:07:45\n", " ------------------ ------------------- 219.0/459.2 MB 514.7 kB/s eta 0:07:47\n", " ------------------ ------------------- 219.0/459.2 MB 514.7 kB/s eta 0:07:47\n", " ------------------ ------------------- 219.0/459.2 MB 514.7 kB/s eta 0:07:47\n", " ------------------ ------------------- 219.0/459.2 MB 510.7 kB/s eta 0:07:51\n", " ------------------ ------------------- 219.1/459.2 MB 509.5 kB/s eta 0:07:52\n", " ------------------ ------------------- 219.1/459.2 MB 509.5 kB/s eta 0:07:52\n", " ------------------ ------------------- 219.1/459.2 MB 509.5 kB/s eta 0:07:52\n", " ------------------ ------------------- 219.1/459.2 MB 509.5 kB/s eta 0:07:52\n", " ------------------ ------------------- 219.1/459.2 MB 509.5 kB/s eta 0:07:52\n", " ------------------ ------------------- 219.1/459.2 MB 509.5 kB/s eta 0:07:52\n", " ------------------ ------------------- 219.1/459.2 MB 509.5 kB/s eta 0:07:52\n", " ------------------ ------------------- 219.1/459.2 MB 498.3 kB/s eta 0:08:02\n", " ------------------ ------------------- 219.1/459.2 MB 498.3 kB/s eta 0:08:02\n", " ------------------ ------------------- 219.1/459.2 MB 498.3 kB/s eta 0:08:02\n", " ------------------ ------------------- 219.1/459.2 MB 498.3 kB/s eta 0:08:02\n", " ------------------ ------------------- 219.1/459.2 MB 498.3 kB/s eta 0:08:02\n", " ------------------ ------------------- 219.1/459.2 MB 498.3 kB/s eta 0:08:02\n", " ------------------ ------------------- 219.1/459.2 MB 498.3 kB/s eta 0:08:02\n", " ------------------ ------------------- 219.1/459.2 MB 487.9 kB/s eta 0:08:13\n", " ------------------ ------------------- 219.1/459.2 MB 487.9 kB/s eta 0:08:13\n", " ------------------ ------------------- 219.1/459.2 MB 484.6 kB/s eta 0:08:16\n", " ------------------ ------------------- 219.1/459.2 MB 484.6 kB/s eta 0:08:16\n", " ------------------ ------------------- 219.1/459.2 MB 484.6 kB/s eta 0:08:16\n", " ------------------ ------------------- 219.1/459.2 MB 484.6 kB/s eta 0:08:16\n", " ------------------ ------------------- 219.1/459.2 MB 484.6 kB/s eta 0:08:16\n", " ------------------ ------------------- 219.1/459.2 MB 484.6 kB/s eta 0:08:16\n", " ------------------ ------------------- 219.1/459.2 MB 476.8 kB/s eta 0:08:24\n", " ------------------ ------------------- 219.1/459.2 MB 476.8 kB/s eta 0:08:24\n", " ------------------ ------------------- 219.1/459.2 MB 476.8 kB/s eta 0:08:24\n", " ------------------ ------------------- 219.1/459.2 MB 473.1 kB/s eta 0:08:28\n", " ------------------ ------------------- 219.1/459.2 MB 473.1 kB/s eta 0:08:28\n", " ------------------ ------------------- 219.2/459.2 MB 470.7 kB/s eta 0:08:30\n", " ------------------ ------------------- 219.2/459.2 MB 470.7 kB/s eta 0:08:30\n", " ------------------ ------------------- 219.2/459.2 MB 468.0 kB/s eta 0:08:33\n", " ------------------ ------------------- 219.2/459.2 MB 468.0 kB/s eta 0:08:33\n", " ------------------ ------------------- 219.2/459.2 MB 465.3 kB/s eta 0:08:36\n", " ------------------ ------------------- 219.2/459.2 MB 464.0 kB/s eta 0:08:38\n", " ------------------ ------------------- 219.2/459.2 MB 464.0 kB/s eta 0:08:38\n", " ------------------ ------------------- 219.2/459.2 MB 461.7 kB/s eta 0:08:40\n", " ------------------ ------------------- 219.2/459.2 MB 461.7 kB/s eta 0:08:40\n", " ------------------ ------------------- 219.2/459.2 MB 461.7 kB/s eta 0:08:40\n", " ------------------ ------------------- 219.2/459.2 MB 461.7 kB/s eta 0:08:40\n", " ------------------ ------------------- 219.2/459.2 MB 461.7 kB/s eta 0:08:40\n", " ------------------ ------------------- 219.2/459.2 MB 461.7 kB/s eta 0:08:40\n", " ------------------ ------------------- 219.2/459.2 MB 461.7 kB/s eta 0:08:40\n", " ------------------ ------------------- 219.2/459.2 MB 453.4 kB/s eta 0:08:50\n", " ------------------ ------------------- 219.2/459.2 MB 453.4 kB/s eta 0:08:50\n", " ------------------ ------------------- 219.2/459.2 MB 453.4 kB/s eta 0:08:50\n", " ------------------ ------------------- 219.2/459.2 MB 453.4 kB/s eta 0:08:50\n", " ------------------ ------------------- 219.2/459.2 MB 453.4 kB/s eta 0:08:50\n", " ------------------ ------------------- 219.3/459.2 MB 447.2 kB/s eta 0:08:57\n", " ------------------ ------------------- 219.3/459.2 MB 447.2 kB/s eta 0:08:57\n", " ------------------ ------------------- 219.3/459.2 MB 447.2 kB/s eta 0:08:57\n", " ------------------ ------------------- 219.3/459.2 MB 447.2 kB/s eta 0:08:57\n", " ------------------ ------------------- 219.3/459.2 MB 447.2 kB/s eta 0:08:57\n", " ------------------ ------------------- 219.3/459.2 MB 447.2 kB/s eta 0:08:57\n", " ------------------ ------------------- 219.3/459.2 MB 440.3 kB/s eta 0:09:05\n", " ------------------ ------------------- 219.3/459.2 MB 440.3 kB/s eta 0:09:05\n", " ------------------ ------------------- 219.3/459.2 MB 440.3 kB/s eta 0:09:05\n", " ------------------ ------------------- 219.3/459.2 MB 436.8 kB/s eta 0:09:10\n", " ------------------ ------------------- 219.3/459.2 MB 436.8 kB/s eta 0:09:10\n", " ------------------ ------------------- 219.3/459.2 MB 436.8 kB/s eta 0:09:10\n", " ------------------ ------------------- 219.3/459.2 MB 432.4 kB/s eta 0:09:15\n", " ------------------ ------------------- 219.3/459.2 MB 432.4 kB/s eta 0:09:15\n", " ------------------ ------------------- 219.3/459.2 MB 432.4 kB/s eta 0:09:15\n", " ------------------ ------------------- 219.3/459.2 MB 432.4 kB/s eta 0:09:15\n", " ------------------ ------------------- 219.3/459.2 MB 429.0 kB/s eta 0:09:20\n", " ------------------ ------------------- 219.3/459.2 MB 429.0 kB/s eta 0:09:20\n", " ------------------ ------------------- 219.3/459.2 MB 429.0 kB/s eta 0:09:20\n", " ------------------ ------------------- 219.3/459.2 MB 429.0 kB/s eta 0:09:20\n", " ------------------ ------------------- 219.3/459.2 MB 429.0 kB/s eta 0:09:20\n", " ------------------ ------------------- 219.3/459.2 MB 423.2 kB/s eta 0:09:27\n", " ------------------ ------------------- 219.3/459.2 MB 423.2 kB/s eta 0:09:27\n", " ------------------ ------------------- 219.3/459.2 MB 423.2 kB/s eta 0:09:27\n", " ------------------ ------------------- 219.3/459.2 MB 423.2 kB/s eta 0:09:27\n", " ------------------ ------------------- 219.4/459.2 MB 419.4 kB/s eta 0:09:32\n", " ------------------ ------------------- 219.4/459.2 MB 419.4 kB/s eta 0:09:32\n", " ------------------ ------------------- 219.4/459.2 MB 419.4 kB/s eta 0:09:32\n", " ------------------ ------------------- 219.4/459.2 MB 415.7 kB/s eta 0:09:37\n", " ------------------ ------------------- 219.4/459.2 MB 415.7 kB/s eta 0:09:37\n", " ------------------ ------------------- 219.4/459.2 MB 413.8 kB/s eta 0:09:40\n", " ------------------ ------------------- 219.4/459.2 MB 413.8 kB/s eta 0:09:40\n", " ------------------ ------------------- 219.4/459.2 MB 413.8 kB/s eta 0:09:40\n", " ------------------ ------------------- 219.4/459.2 MB 411.5 kB/s eta 0:09:43\n", " ------------------ ------------------- 219.4/459.2 MB 411.5 kB/s eta 0:09:43\n", " ------------------ ------------------- 219.4/459.2 MB 411.5 kB/s eta 0:09:43\n", " ------------------ ------------------- 219.4/459.2 MB 408.9 kB/s eta 0:09:47\n", " ------------------ ------------------- 219.4/459.2 MB 408.9 kB/s eta 0:09:47\n", " ------------------ ------------------- 219.4/459.2 MB 408.9 kB/s eta 0:09:47\n", " ------------------ ------------------- 219.4/459.2 MB 407.2 kB/s eta 0:09:49\n", " ------------------ ------------------- 219.4/459.2 MB 407.2 kB/s eta 0:09:49\n", " ------------------ ------------------- 219.5/459.2 MB 406.2 kB/s eta 0:09:51\n", " ------------------ ------------------- 219.5/459.2 MB 406.2 kB/s eta 0:09:51\n", " ------------------ ------------------- 219.5/459.2 MB 406.2 kB/s eta 0:09:51\n", " ------------------ ------------------- 219.5/459.2 MB 404.4 kB/s eta 0:09:53\n", " ------------------ ------------------- 219.5/459.2 MB 404.4 kB/s eta 0:09:53\n", " ------------------ ------------------- 219.5/459.2 MB 402.2 kB/s eta 0:09:56\n", " ------------------ ------------------- 219.5/459.2 MB 402.2 kB/s eta 0:09:56\n", " ------------------ ------------------- 219.5/459.2 MB 400.2 kB/s eta 0:09:59\n", " ------------------ ------------------- 219.5/459.2 MB 400.2 kB/s eta 0:09:59\n", " ------------------ ------------------- 219.5/459.2 MB 398.5 kB/s eta 0:10:02\n", " ------------------ ------------------- 219.5/459.2 MB 398.5 kB/s eta 0:10:02\n", " ------------------ ------------------- 219.5/459.2 MB 398.5 kB/s eta 0:10:02\n", " ------------------ ------------------- 219.5/459.2 MB 396.1 kB/s eta 0:10:06\n", " ------------------ ------------------- 219.5/459.2 MB 396.1 kB/s eta 0:10:06\n", "Note: you may need to restart the kernel to use updated packages.\n", " ------------------ ------------------- 219.6/459.2 MB 394.2 kB/s eta 0:10:08\n", " ------------------ ------------------- 219.6/459.2 MB 394.2 kB/s eta 0:10:08\n", " ------------------ ------------------- 219.6/459.2 MB 392.7 kB/s eta 0:10:11\n", " ------------------ ------------------- 219.6/459.2 MB 391.6 kB/s eta 0:10:12\n", " ------------------ ------------------- 219.6/459.2 MB 390.4 kB/s eta 0:10:14\n", " ------------------ ------------------- 219.6/459.2 MB 389.2 kB/s eta 0:10:16\n", " ------------------ ------------------- 219.6/459.2 MB 389.2 kB/s eta 0:10:16\n", " ------------------ ------------------- 219.6/459.2 MB 388.3 kB/s eta 0:10:17\n", " ------------------ ------------------- 219.7/459.2 MB 388.1 kB/s eta 0:10:18\n", " ------------------ ------------------- 219.7/459.2 MB 387.2 kB/s eta 0:10:19\n", " ------------------ ------------------- 219.7/459.2 MB 386.7 kB/s eta 0:10:20\n", " ------------------ ------------------- 219.7/459.2 MB 385.8 kB/s eta 0:10:21\n", " ------------------ ------------------- 219.7/459.2 MB 385.8 kB/s eta 0:10:21\n", " ------------------ ------------------- 219.8/459.2 MB 383.8 kB/s eta 0:10:24\n", " ------------------ ------------------- 219.8/459.2 MB 383.8 kB/s eta 0:10:24\n", " ------------------ ------------------- 219.8/459.2 MB 383.8 kB/s eta 0:10:24\n", " ------------------ ------------------- 219.8/459.2 MB 383.8 kB/s eta 0:10:24\n", " ------------------ ------------------- 219.8/459.2 MB 383.8 kB/s eta 0:10:24\n", " ------------------ ------------------- 219.8/459.2 MB 380.6 kB/s eta 0:10:29\n", " ------------------ ------------------- 219.8/459.2 MB 380.6 kB/s eta 0:10:29\n", " ------------------ ------------------- 219.8/459.2 MB 380.6 kB/s eta 0:10:29\n", " ------------------ ------------------- 219.8/459.2 MB 378.0 kB/s eta 0:10:34\n", " ------------------ ------------------- 219.8/459.2 MB 378.0 kB/s eta 0:10:34\n", " ------------------ ------------------- 219.8/459.2 MB 378.0 kB/s eta 0:10:34\n", " ------------------ ------------------- 219.8/459.2 MB 378.0 kB/s eta 0:10:34\n", " ------------------ ------------------- 219.8/459.2 MB 378.0 kB/s eta 0:10:34\n", " ------------------ ------------------- 219.8/459.2 MB 373.3 kB/s eta 0:10:42\n", " ------------------ ------------------- 219.8/459.2 MB 373.0 kB/s eta 0:10:42\n", " ------------------ ------------------- 219.8/459.2 MB 373.0 kB/s eta 0:10:42\n", " ------------------ ------------------- 219.8/459.2 MB 373.0 kB/s eta 0:10:42\n", " ------------------ ------------------- 219.8/459.2 MB 373.0 kB/s eta 0:10:42\n", " ------------------ ------------------- 219.8/459.2 MB 373.0 kB/s eta 0:10:42\n", " ------------------ ------------------- 219.8/459.2 MB 373.0 kB/s eta 0:10:42\n", " ------------------ ------------------- 219.8/459.2 MB 373.0 kB/s eta 0:10:42\n", " ------------------ ------------------- 219.8/459.2 MB 373.0 kB/s eta 0:10:42\n", " ------------------ ------------------- 219.8/459.2 MB 366.2 kB/s eta 0:10:54\n", " ------------------ ------------------- 219.8/459.2 MB 366.2 kB/s eta 0:10:54\n", " ------------------ ------------------- 219.8/459.2 MB 366.2 kB/s eta 0:10:54\n", " ------------------ ------------------- 219.8/459.2 MB 366.2 kB/s eta 0:10:54\n", " ------------------ ------------------- 219.8/459.2 MB 363.9 kB/s eta 0:10:58\n", " ------------------ ------------------- 219.8/459.2 MB 363.9 kB/s eta 0:10:58\n", " ------------------ ------------------- 219.8/459.2 MB 363.9 kB/s eta 0:10:58\n", " ------------------ ------------------- 219.8/459.2 MB 363.9 kB/s eta 0:10:58\n", " ------------------ ------------------- 219.8/459.2 MB 363.9 kB/s eta 0:10:58\n", " ------------------ ------------------- 219.8/459.2 MB 363.9 kB/s eta 0:10:58\n", " ------------------ ------------------- 219.8/459.2 MB 363.9 kB/s eta 0:10:58\n", " ------------------ ------------------- 219.9/459.2 MB 358.7 kB/s eta 0:11:08\n", " ------------------ ------------------- 219.9/459.2 MB 358.7 kB/s eta 0:11:08\n", " ------------------ ------------------- 219.9/459.2 MB 358.7 kB/s eta 0:11:08\n", " ------------------ ------------------- 219.9/459.2 MB 358.7 kB/s eta 0:11:08\n", " ------------------ ------------------- 219.9/459.2 MB 357.0 kB/s eta 0:11:11\n", " ------------------ ------------------- 219.9/459.2 MB 357.0 kB/s eta 0:11:11\n", " ------------------ ------------------- 219.9/459.2 MB 357.0 kB/s eta 0:11:11\n", " ------------------ ------------------- 219.9/459.2 MB 357.0 kB/s eta 0:11:11\n", " ------------------ ------------------- 219.9/459.2 MB 357.0 kB/s eta 0:11:11\n", " ------------------ ------------------- 219.9/459.2 MB 353.3 kB/s eta 0:11:18\n", " ------------------ ------------------- 219.9/459.2 MB 353.3 kB/s eta 0:11:18\n", " ------------------ ------------------- 219.9/459.2 MB 352.6 kB/s eta 0:11:19\n", " ------------------ ------------------- 219.9/459.2 MB 352.6 kB/s eta 0:11:19\n", " ------------------ ------------------- 219.9/459.2 MB 352.6 kB/s eta 0:11:19\n", " ------------------ ------------------- 219.9/459.2 MB 350.7 kB/s eta 0:11:23\n", " ------------------ ------------------- 219.9/459.2 MB 350.7 kB/s eta 0:11:23\n", " ------------------ ------------------- 219.9/459.2 MB 350.7 kB/s eta 0:11:23\n", " ------------------ ------------------- 219.9/459.2 MB 350.7 kB/s eta 0:11:23\n", " ------------------ ------------------- 219.9/459.2 MB 350.1 kB/s eta 0:11:24\n", " ------------------ ------------------- 219.9/459.2 MB 350.1 kB/s eta 0:11:24\n", " ------------------ ------------------- 219.9/459.2 MB 350.1 kB/s eta 0:11:24\n", " ------------------ ------------------- 219.9/459.2 MB 350.1 kB/s eta 0:11:24\n", " ------------------ ------------------- 219.9/459.2 MB 350.1 kB/s eta 0:11:24\n", " ------------------ ------------------- 219.9/459.2 MB 350.1 kB/s eta 0:11:24\n", " ------------------ ------------------- 219.9/459.2 MB 350.1 kB/s eta 0:11:24\n", " ------------------ ------------------- 219.9/459.2 MB 345.3 kB/s eta 0:11:33\n", " ------------------ ------------------- 219.9/459.2 MB 345.3 kB/s eta 0:11:33\n", " ------------------ ------------------- 219.9/459.2 MB 345.3 kB/s eta 0:11:33\n", " ------------------ ------------------- 219.9/459.2 MB 345.3 kB/s eta 0:11:33\n", " ------------------ ------------------- 219.9/459.2 MB 345.3 kB/s eta 0:11:33\n", " ------------------ ------------------- 219.9/459.2 MB 345.3 kB/s eta 0:11:33\n", " ------------------ ------------------- 219.9/459.2 MB 345.3 kB/s eta 0:11:33\n", " ------------------ ------------------- 220.0/459.2 MB 340.8 kB/s eta 0:11:42\n", " ------------------ ------------------- 220.0/459.2 MB 340.8 kB/s eta 0:11:42\n", " ------------------ ------------------- 220.0/459.2 MB 340.8 kB/s eta 0:11:42\n", " ------------------ ------------------- 220.0/459.2 MB 340.8 kB/s eta 0:11:42\n", " ------------------ ------------------- 220.0/459.2 MB 337.9 kB/s eta 0:11:48\n", " ------------------ ------------------- 220.0/459.2 MB 337.9 kB/s eta 0:11:48\n", " ------------------ ------------------- 220.0/459.2 MB 337.9 kB/s eta 0:11:48\n", " ------------------ ------------------- 220.0/459.2 MB 337.9 kB/s eta 0:11:48\n", " ------------------ ------------------- 220.0/459.2 MB 337.9 kB/s eta 0:11:48\n", " ------------------ ------------------- 220.0/459.2 MB 337.9 kB/s eta 0:11:48\n", " ------------------ ------------------- 220.0/459.2 MB 331.3 kB/s eta 0:12:03\n", " ------------------ ------------------- 220.0/459.2 MB 331.3 kB/s eta 0:12:03\n", " ------------------ ------------------- 220.0/459.2 MB 331.3 kB/s eta 0:12:03\n", " ------------------ ------------------- 220.0/459.2 MB 331.3 kB/s eta 0:12:03\n", " ------------------ ------------------- 220.0/459.2 MB 331.3 kB/s eta 0:12:03\n", " ------------------ ------------------- 220.0/459.2 MB 331.3 kB/s eta 0:12:03\n", " ------------------ ------------------- 220.0/459.2 MB 331.3 kB/s eta 0:12:03\n", " ------------------ ------------------- 220.0/459.2 MB 323.2 kB/s eta 0:12:20\n", " ------------------ ------------------- 220.0/459.2 MB 323.2 kB/s eta 0:12:20\n", " ------------------ ------------------- 220.0/459.2 MB 323.2 kB/s eta 0:12:20\n", " ------------------ ------------------- 220.0/459.2 MB 323.2 kB/s eta 0:12:20\n", " ------------------ ------------------- 220.0/459.2 MB 318.3 kB/s eta 0:12:32\n", " ------------------ ------------------- 220.0/459.2 MB 318.3 kB/s eta 0:12:32\n", " ------------------ ------------------- 220.0/459.2 MB 318.3 kB/s eta 0:12:32\n", " ------------------ ------------------- 220.0/459.2 MB 315.4 kB/s eta 0:12:39\n", " ------------------ ------------------- 220.0/459.2 MB 315.4 kB/s eta 0:12:39\n", " ------------------ ------------------- 220.0/459.2 MB 315.4 kB/s eta 0:12:39\n", " ------------------ ------------------- 220.1/459.2 MB 310.6 kB/s eta 0:12:50\n", " ------------------ ------------------- 220.1/459.2 MB 310.6 kB/s eta 0:12:50\n", " ------------------ ------------------- 220.1/459.2 MB 308.2 kB/s eta 0:12:56\n", " ------------------ ------------------- 220.1/459.2 MB 308.2 kB/s eta 0:12:56\n", " ------------------ ------------------- 220.1/459.2 MB 308.2 kB/s eta 0:12:56\n", " ------------------ ------------------- 220.1/459.2 MB 308.2 kB/s eta 0:12:56\n", " ------------------ ------------------- 220.1/459.2 MB 299.9 kB/s eta 0:13:18\n", " ------------------ ------------------- 220.1/459.2 MB 299.9 kB/s eta 0:13:18\n", " ------------------ ------------------- 220.1/459.2 MB 299.9 kB/s eta 0:13:18\n", " ------------------ ------------------- 220.1/459.2 MB 299.9 kB/s eta 0:13:18\n", " ------------------ ------------------- 220.1/459.2 MB 299.9 kB/s eta 0:13:18\n", " ------------------ ------------------- 220.1/459.2 MB 299.9 kB/s eta 0:13:18\n", " ------------------ ------------------- 220.1/459.2 MB 299.9 kB/s eta 0:13:18\n", " ------------------ ------------------- 220.1/459.2 MB 299.9 kB/s eta 0:13:18\n", " ------------------ ------------------- 220.1/459.2 MB 299.9 kB/s eta 0:13:18\n", " ------------------ ------------------- 220.1/459.2 MB 299.9 kB/s eta 0:13:18\n", " ------------------ ------------------- 220.1/459.2 MB 299.9 kB/s eta 0:13:18\n", " ------------------ ------------------- 220.1/459.2 MB 299.9 kB/s eta 0:13:18\n", " ------------------ ------------------- 220.1/459.2 MB 289.8 kB/s eta 0:13:46\n", " ------------------ ------------------- 220.1/459.2 MB 289.8 kB/s eta 0:13:46\n", " ------------------ ------------------- 220.1/459.2 MB 289.8 kB/s eta 0:13:46\n", " ------------------ ------------------- 220.1/459.2 MB 289.8 kB/s eta 0:13:46\n", " ------------------ ------------------- 220.1/459.2 MB 289.8 kB/s eta 0:13:46\n", " ------------------ ------------------- 220.1/459.2 MB 289.8 kB/s eta 0:13:46\n", " ------------------ ------------------- 220.1/459.2 MB 289.8 kB/s eta 0:13:46\n", " ------------------ ------------------- 220.1/459.2 MB 289.8 kB/s eta 0:13:46\n", " ------------------ ------------------- 220.1/459.2 MB 288.2 kB/s eta 0:13:50\n", " ------------------ ------------------- 220.1/459.2 MB 288.2 kB/s eta 0:13:50\n", " ------------------ ------------------- 220.1/459.2 MB 288.2 kB/s eta 0:13:50\n", " ------------------ ------------------- 220.1/459.2 MB 288.2 kB/s eta 0:13:50\n", " ------------------ ------------------- 220.1/459.2 MB 288.2 kB/s eta 0:13:50\n", " ------------------ ------------------- 220.1/459.2 MB 292.8 kB/s eta 0:13:37\n", " ------------------ ------------------- 220.1/459.2 MB 292.8 kB/s eta 0:13:37\n", " ------------------ ------------------- 220.1/459.2 MB 292.8 kB/s eta 0:13:37\n", " ------------------ ------------------- 220.1/459.2 MB 292.8 kB/s eta 0:13:37\n", " ------------------ ------------------- 220.2/459.2 MB 291.0 kB/s eta 0:13:42\n", " ------------------ ------------------- 220.2/459.2 MB 291.0 kB/s eta 0:13:42\n", " ------------------ ------------------- 220.2/459.2 MB 291.0 kB/s eta 0:13:42\n", " ------------------ ------------------- 220.2/459.2 MB 291.0 kB/s eta 0:13:42\n", " ------------------ ------------------- 220.2/459.2 MB 291.0 kB/s eta 0:13:42\n", " ------------------ ------------------- 220.2/459.2 MB 291.0 kB/s eta 0:13:42\n", " ------------------ ------------------- 220.2/459.2 MB 291.0 kB/s eta 0:13:42\n", " ------------------ ------------------- 220.2/459.2 MB 291.0 kB/s eta 0:13:42\n", " ------------------ ------------------- 220.2/459.2 MB 291.0 kB/s eta 0:13:42\n", " ------------------ ------------------- 220.2/459.2 MB 291.0 kB/s eta 0:13:42\n", " ------------------ ------------------- 220.2/459.2 MB 291.0 kB/s eta 0:13:42\n", " ------------------ ------------------- 220.2/459.2 MB 291.0 kB/s eta 0:13:42\n", " ------------------ ------------------- 220.2/459.2 MB 291.0 kB/s eta 0:13:42\n", " ------------------ ------------------- 220.2/459.2 MB 291.0 kB/s eta 0:13:42\n", " ------------------ ------------------- 220.2/459.2 MB 291.0 kB/s eta 0:13:42\n", " ------------------ ------------------- 220.2/459.2 MB 291.0 kB/s eta 0:13:42\n", " ------------------ ------------------- 220.2/459.2 MB 291.0 kB/s eta 0:13:42\n", " ------------------ ------------------- 220.2/459.2 MB 291.0 kB/s eta 0:13:42\n", " ------------------ ------------------- 220.2/459.2 MB 291.0 kB/s eta 0:13:42\n", " ------------------ ------------------- 220.2/459.2 MB 291.0 kB/s eta 0:13:42\n", " ------------------ ------------------- 220.2/459.2 MB 291.0 kB/s eta 0:13:42\n", " ------------------ ------------------- 220.2/459.2 MB 291.0 kB/s eta 0:13:42\n", " ------------------ ------------------- 220.2/459.2 MB 291.0 kB/s eta 0:13:42\n", " ------------------ ------------------- 220.2/459.2 MB 291.0 kB/s eta 0:13:42\n", " ------------------ ------------------- 220.2/459.2 MB 285.5 kB/s eta 0:13:58\n", " ------------------ ------------------- 220.2/459.2 MB 285.5 kB/s eta 0:13:58\n", " ------------------ ------------------- 220.2/459.2 MB 285.5 kB/s eta 0:13:58\n", " ------------------ ------------------- 220.2/459.2 MB 285.5 kB/s eta 0:13:58\n", " ------------------ ------------------- 220.2/459.2 MB 285.2 kB/s eta 0:13:59\n", " ------------------ ------------------- 220.2/459.2 MB 285.2 kB/s eta 0:13:59\n", " ------------------ ------------------- 220.2/459.2 MB 285.2 kB/s eta 0:13:58\n", " ------------------ ------------------- 220.2/459.2 MB 285.2 kB/s eta 0:13:58\n", " ------------------ ------------------- 220.2/459.2 MB 284.9 kB/s eta 0:13:59\n", " ------------------ ------------------- 220.2/459.2 MB 284.9 kB/s eta 0:13:59\n", " ------------------ ------------------- 220.2/459.2 MB 284.8 kB/s eta 0:14:00\n", " ------------------ ------------------- 220.3/459.2 MB 284.6 kB/s eta 0:14:00\n", " ------------------ ------------------- 220.3/459.2 MB 284.6 kB/s eta 0:14:00\n", " ------------------ ------------------- 220.3/459.2 MB 284.1 kB/s eta 0:14:01\n", " ------------------ ------------------- 220.3/459.2 MB 284.3 kB/s eta 0:14:01\n", " ------------------ ------------------- 220.3/459.2 MB 284.3 kB/s eta 0:14:01\n", " ------------------ ------------------- 220.3/459.2 MB 284.3 kB/s eta 0:14:01\n", " ------------------ ------------------- 220.3/459.2 MB 284.0 kB/s eta 0:14:02\n", " ------------------ ------------------- 220.3/459.2 MB 284.0 kB/s eta 0:14:02\n", " ------------------ ------------------- 220.3/459.2 MB 284.0 kB/s eta 0:14:02\n", " ------------------ ------------------- 220.3/459.2 MB 282.1 kB/s eta 0:14:07\n", " ------------------ ------------------- 220.3/459.2 MB 282.3 kB/s eta 0:14:07\n", " ------------------ ------------------- 220.3/459.2 MB 282.3 kB/s eta 0:14:07\n", " ------------------ ------------------- 220.3/459.2 MB 282.3 kB/s eta 0:14:07\n", " ------------------ ------------------- 220.3/459.2 MB 282.3 kB/s eta 0:14:07\n", " ------------------ ------------------- 220.3/459.2 MB 282.3 kB/s eta 0:14:07\n", " ------------------ ------------------- 220.3/459.2 MB 282.3 kB/s eta 0:14:07\n", " ------------------ ------------------- 220.3/459.2 MB 282.3 kB/s eta 0:14:07\n", " ------------------ ------------------- 220.3/459.2 MB 282.3 kB/s eta 0:14:07\n", " ------------------ ------------------- 220.3/459.2 MB 282.3 kB/s eta 0:14:07\n", " ------------------ ------------------- 220.3/459.2 MB 282.3 kB/s eta 0:14:07\n", " ------------------ ------------------- 220.3/459.2 MB 282.3 kB/s eta 0:14:07\n", " ------------------ ------------------- 220.3/459.2 MB 282.3 kB/s eta 0:14:07\n", " ------------------ ------------------- 220.4/459.2 MB 278.8 kB/s eta 0:14:17\n", " ------------------ ------------------- 220.4/459.2 MB 278.8 kB/s eta 0:14:17\n", " ------------------ ------------------- 220.4/459.2 MB 278.8 kB/s eta 0:14:17\n", " ------------------ ------------------- 220.4/459.2 MB 278.8 kB/s eta 0:14:17\n", " ------------------ ------------------- 220.4/459.2 MB 278.8 kB/s eta 0:14:17\n", " ------------------ ------------------- 220.4/459.2 MB 278.8 kB/s eta 0:14:17\n", " ------------------ ------------------- 220.4/459.2 MB 278.8 kB/s eta 0:14:17\n", " ------------------ ------------------- 220.4/459.2 MB 278.8 kB/s eta 0:14:17\n", " ------------------ ------------------- 220.4/459.2 MB 278.8 kB/s eta 0:14:17\n", " ------------------ ------------------- 220.4/459.2 MB 278.8 kB/s eta 0:14:17\n", " ------------------ ------------------- 220.4/459.2 MB 278.8 kB/s eta 0:14:17\n", " ------------------ ------------------- 220.4/459.2 MB 278.8 kB/s eta 0:14:17\n", " ------------------ ------------------- 220.4/459.2 MB 278.8 kB/s eta 0:14:17\n", " ------------------ ------------------- 220.4/459.2 MB 278.8 kB/s eta 0:14:17\n", " ------------------ ------------------- 220.4/459.2 MB 278.8 kB/s eta 0:14:17\n", " ------------------ ------------------- 220.4/459.2 MB 278.8 kB/s eta 0:14:17\n", " ------------------ ------------------- 220.4/459.2 MB 277.5 kB/s eta 0:14:21\n", " ------------------ ------------------- 220.4/459.2 MB 277.5 kB/s eta 0:14:21\n", " ------------------ ------------------- 220.4/459.2 MB 277.5 kB/s eta 0:14:21\n", " ------------------ ------------------- 220.4/459.2 MB 277.5 kB/s eta 0:14:21\n", " ------------------ ------------------- 220.4/459.2 MB 277.5 kB/s eta 0:14:21\n", " ------------------ ------------------- 220.4/459.2 MB 277.5 kB/s eta 0:14:21\n", " ------------------ ------------------- 220.4/459.2 MB 277.5 kB/s eta 0:14:21\n", " ------------------ ------------------- 220.4/459.2 MB 274.8 kB/s eta 0:14:30\n", " ------------------ ------------------- 220.4/459.2 MB 274.8 kB/s eta 0:14:30\n", " ------------------ ------------------- 220.4/459.2 MB 274.8 kB/s eta 0:14:30\n", " ------------------ ------------------- 220.4/459.2 MB 274.8 kB/s eta 0:14:30\n", " ------------------ ------------------- 220.4/459.2 MB 274.8 kB/s eta 0:14:30\n", " ------------------ ------------------- 220.4/459.2 MB 274.8 kB/s eta 0:14:30\n", " ------------------ ------------------- 220.4/459.2 MB 274.8 kB/s eta 0:14:30\n", " ------------------ ------------------- 220.4/459.2 MB 274.8 kB/s eta 0:14:30\n", " ------------------ ------------------- 220.4/459.2 MB 274.8 kB/s eta 0:14:30\n", " ------------------ ------------------- 220.4/459.2 MB 274.8 kB/s eta 0:14:30\n", " ------------------ ------------------- 220.4/459.2 MB 274.8 kB/s eta 0:14:30\n", " ------------------ ------------------- 220.4/459.2 MB 268.2 kB/s eta 0:14:51\n", " ------------------ ------------------- 220.4/459.2 MB 268.2 kB/s eta 0:14:51\n", " ------------------ ------------------- 220.4/459.2 MB 268.2 kB/s eta 0:14:51\n", " ------------------ ------------------- 220.4/459.2 MB 268.2 kB/s eta 0:14:51\n", " ------------------ ------------------- 220.4/459.2 MB 268.2 kB/s eta 0:14:51\n", " ------------------ ------------------- 220.4/459.2 MB 268.2 kB/s eta 0:14:51\n", " ------------------ ------------------- 220.4/459.2 MB 268.2 kB/s eta 0:14:51\n", " ------------------ ------------------- 220.4/459.2 MB 268.2 kB/s eta 0:14:51\n", " ------------------ ------------------- 220.4/459.2 MB 268.2 kB/s eta 0:14:51\n", " ------------------ ------------------- 220.4/459.2 MB 268.2 kB/s eta 0:14:51\n", " ------------------ ------------------- 220.4/459.2 MB 268.2 kB/s eta 0:14:51\n", " ------------------ ------------------- 220.4/459.2 MB 268.2 kB/s eta 0:14:51\n", " ------------------ ------------------- 220.4/459.2 MB 268.2 kB/s eta 0:14:51\n", " ------------------ ------------------- 220.4/459.2 MB 255.3 kB/s eta 0:15:36\n", " ------------------ ------------------- 220.4/459.2 MB 255.3 kB/s eta 0:15:36\n", " ------------------ ------------------- 220.4/459.2 MB 255.3 kB/s eta 0:15:36\n", " ------------------ ------------------- 220.4/459.2 MB 255.3 kB/s eta 0:15:36\n", " ------------------ ------------------- 220.4/459.2 MB 255.3 kB/s eta 0:15:36\n", " ------------------ ------------------- 220.4/459.2 MB 250.0 kB/s eta 0:15:56\n", " ------------------ ------------------- 220.4/459.2 MB 250.0 kB/s eta 0:15:56\n", " ------------------ ------------------- 220.4/459.2 MB 250.0 kB/s eta 0:15:56\n", " ------------------ ------------------- 220.5/459.2 MB 246.8 kB/s eta 0:16:08\n", " ------------------ ------------------- 220.5/459.2 MB 246.8 kB/s eta 0:16:08\n", " ------------------ ------------------- 220.5/459.2 MB 246.8 kB/s eta 0:16:08\n", " ------------------ ------------------- 220.5/459.2 MB 246.8 kB/s eta 0:16:08\n", " ------------------ ------------------- 220.5/459.2 MB 246.8 kB/s eta 0:16:08\n", " ------------------ ------------------- 220.5/459.2 MB 246.8 kB/s eta 0:16:08\n", " ------------------ ------------------- 220.5/459.2 MB 240.0 kB/s eta 0:16:35\n", " ------------------ ------------------- 220.5/459.2 MB 240.0 kB/s eta 0:16:35\n", " ------------------ ------------------- 220.5/459.2 MB 240.0 kB/s eta 0:16:35\n", " ------------------ ------------------- 220.5/459.2 MB 240.0 kB/s eta 0:16:35\n", " ------------------ ------------------- 220.5/459.2 MB 240.0 kB/s eta 0:16:35\n", " ------------------ ------------------- 220.5/459.2 MB 240.0 kB/s eta 0:16:35\n", " ------------------ ------------------- 220.5/459.2 MB 234.2 kB/s eta 0:17:00\n", " ------------------ ------------------- 220.5/459.2 MB 234.2 kB/s eta 0:17:00\n", " ------------------ ------------------- 220.5/459.2 MB 234.2 kB/s eta 0:17:00\n", " ------------------ ------------------- 220.5/459.2 MB 234.2 kB/s eta 0:17:00\n", " ------------------ ------------------- 220.5/459.2 MB 234.2 kB/s eta 0:17:00\n", " ------------------ ------------------- 220.5/459.2 MB 234.2 kB/s eta 0:17:00\n", " ------------------ ------------------- 220.5/459.2 MB 234.2 kB/s eta 0:17:00\n", " ------------------ ------------------- 220.5/459.2 MB 234.2 kB/s eta 0:17:00\n", " ------------------ ------------------- 220.5/459.2 MB 234.2 kB/s eta 0:17:00\n", " ------------------ ------------------- 220.5/459.2 MB 234.2 kB/s eta 0:17:00\n", " ------------------ ------------------- 220.5/459.2 MB 225.3 kB/s eta 0:17:40\n", " ------------------ ------------------- 220.5/459.2 MB 225.3 kB/s eta 0:17:40\n", " ------------------ ------------------- 220.5/459.2 MB 225.3 kB/s eta 0:17:40\n", " ------------------ ------------------- 220.5/459.2 MB 225.3 kB/s eta 0:17:40\n", " ------------------ ------------------- 220.5/459.2 MB 225.3 kB/s eta 0:17:40\n", " ------------------ ------------------- 220.5/459.2 MB 225.3 kB/s eta 0:17:40\n", " ------------------ ------------------- 220.5/459.2 MB 225.3 kB/s eta 0:17:40\n", " ------------------ ------------------- 220.5/459.2 MB 225.3 kB/s eta 0:17:40\n", " ------------------ ------------------- 220.5/459.2 MB 225.3 kB/s eta 0:17:40\n", " ------------------ ------------------- 220.5/459.2 MB 214.7 kB/s eta 0:18:32\n", " ------------------ ------------------- 220.5/459.2 MB 214.7 kB/s eta 0:18:32\n", " ------------------ ------------------- 220.5/459.2 MB 214.7 kB/s eta 0:18:32\n", " ------------------ ------------------- 220.5/459.2 MB 214.7 kB/s eta 0:18:32\n", " ------------------ ------------------- 220.5/459.2 MB 214.7 kB/s eta 0:18:32\n", " ------------------ ------------------- 220.5/459.2 MB 214.7 kB/s eta 0:18:32\n", " ------------------ ------------------- 220.5/459.2 MB 214.7 kB/s eta 0:18:32\n", " ------------------ ------------------- 220.5/459.2 MB 205.1 kB/s eta 0:19:24\n", " ------------------ ------------------- 220.5/459.2 MB 205.1 kB/s eta 0:19:24\n", " ------------------ ------------------- 220.5/459.2 MB 205.1 kB/s eta 0:19:24\n", " ------------------ ------------------- 220.5/459.2 MB 205.1 kB/s eta 0:19:24\n", " ------------------ ------------------- 220.5/459.2 MB 205.1 kB/s eta 0:19:24\n", " ------------------ ------------------- 220.5/459.2 MB 199.3 kB/s eta 0:19:58\n", " ------------------ ------------------- 220.5/459.2 MB 199.3 kB/s eta 0:19:58\n", " ------------------ ------------------- 220.5/459.2 MB 199.3 kB/s eta 0:19:58\n", " ------------------ ------------------- 220.5/459.2 MB 199.3 kB/s eta 0:19:58\n", " ------------------ ------------------- 220.5/459.2 MB 199.3 kB/s eta 0:19:58\n", " ------------------ ------------------- 220.5/459.2 MB 199.3 kB/s eta 0:19:58\n", " ------------------ ------------------- 220.6/459.2 MB 190.1 kB/s eta 0:20:56\n", " ------------------ ------------------- 220.6/459.2 MB 190.1 kB/s eta 0:20:56\n", " ------------------ ------------------- 220.6/459.2 MB 190.1 kB/s eta 0:20:56\n", " ------------------ ------------------- 220.6/459.2 MB 190.1 kB/s eta 0:20:56\n", " ------------------ ------------------- 220.6/459.2 MB 190.1 kB/s eta 0:20:56\n", " ------------------ ------------------- 220.6/459.2 MB 190.1 kB/s eta 0:20:56\n", " ------------------ ------------------- 220.6/459.2 MB 179.5 kB/s eta 0:22:09\n", " ------------------ ------------------- 220.6/459.2 MB 179.5 kB/s eta 0:22:09\n", " ------------------ ------------------- 220.6/459.2 MB 179.5 kB/s eta 0:22:09\n", " ------------------ ------------------- 220.6/459.2 MB 172.7 kB/s eta 0:23:02\n", " ------------------ ------------------- 220.6/459.2 MB 172.7 kB/s eta 0:23:02\n", " ------------------ ------------------- 220.6/459.2 MB 172.7 kB/s eta 0:23:02\n", " ------------------ ------------------- 220.6/459.2 MB 169.0 kB/s eta 0:23:32\n", " ------------------ ------------------- 220.6/459.2 MB 169.0 kB/s eta 0:23:32\n", " ------------------ ------------------- 220.6/459.2 MB 165.5 kB/s eta 0:24:01\n", " ------------------ ------------------- 220.6/459.2 MB 165.5 kB/s eta 0:24:01\n", " ------------------ ------------------- 220.6/459.2 MB 165.5 kB/s eta 0:24:01\n", " ------------------ ------------------- 220.6/459.2 MB 165.5 kB/s eta 0:24:01\n", " ------------------ ------------------- 220.7/459.2 MB 157.7 kB/s eta 0:25:13\n", " ------------------ ------------------- 220.7/459.2 MB 157.7 kB/s eta 0:25:13\n", " ------------------ ------------------- 220.7/459.2 MB 157.7 kB/s eta 0:25:13\n", " ------------------ ------------------- 220.7/459.2 MB 152.2 kB/s eta 0:26:07\n", " ------------------ ------------------- 220.7/459.2 MB 152.2 kB/s eta 0:26:07\n", " ------------------ ------------------- 220.7/459.2 MB 152.2 kB/s eta 0:26:07\n", " ------------------ ------------------- 220.7/459.2 MB 152.2 kB/s eta 0:26:07\n", " ------------------ ------------------- 220.7/459.2 MB 152.2 kB/s eta 0:26:07\n", " ------------------ ------------------- 220.7/459.2 MB 152.2 kB/s eta 0:26:07\n", " ------------------ ------------------- 220.7/459.2 MB 152.2 kB/s eta 0:26:07\n", " ------------------ ------------------- 220.7/459.2 MB 152.2 kB/s eta 0:26:07\n", " ------------------ ------------------- 220.7/459.2 MB 140.3 kB/s eta 0:28:21\n", " ------------------ ------------------- 220.7/459.2 MB 140.3 kB/s eta 0:28:21\n", " ------------------ ------------------- 220.7/459.2 MB 140.3 kB/s eta 0:28:21\n", " ------------------ ------------------- 220.7/459.2 MB 140.3 kB/s eta 0:28:21\n", " ------------------ ------------------- 220.7/459.2 MB 140.3 kB/s eta 0:28:21\n", " ------------------ ------------------- 220.7/459.2 MB 132.4 kB/s eta 0:30:01\n", " ------------------ ------------------- 220.7/459.2 MB 132.4 kB/s eta 0:30:01\n", " ------------------ ------------------- 220.7/459.2 MB 132.4 kB/s eta 0:30:01\n", " ------------------ ------------------- 220.7/459.2 MB 132.4 kB/s eta 0:30:01\n", " ------------------ ------------------- 220.7/459.2 MB 132.4 kB/s eta 0:30:01\n", " ------------------ ------------------- 220.7/459.2 MB 132.4 kB/s eta 0:30:01\n", " ------------------ ------------------- 220.7/459.2 MB 132.4 kB/s eta 0:30:01\n", " ------------------ ------------------- 220.7/459.2 MB 132.4 kB/s eta 0:30:01\n", " ------------------ ------------------- 220.7/459.2 MB 122.2 kB/s eta 0:32:32\n", " ------------------ ------------------- 220.7/459.2 MB 122.2 kB/s eta 0:32:32\n", " ------------------ ------------------- 220.7/459.2 MB 122.2 kB/s eta 0:32:32\n", " ------------------ ------------------- 220.7/459.2 MB 119.5 kB/s eta 0:33:15\n", " ------------------ ------------------- 220.7/459.2 MB 119.5 kB/s eta 0:33:15\n", " ------------------ ------------------- 220.8/459.2 MB 117.1 kB/s eta 0:33:57\n", " ------------------ ------------------- 220.8/459.2 MB 117.1 kB/s eta 0:33:57\n", " ------------------ ------------------- 220.8/459.2 MB 114.7 kB/s eta 0:34:38\n", " ------------------ ------------------- 220.8/459.2 MB 114.7 kB/s eta 0:34:38\n", " ------------------ ------------------- 220.8/459.2 MB 114.7 kB/s eta 0:34:38\n", " ------------------ ------------------- 220.8/459.2 MB 114.7 kB/s eta 0:34:38\n", " ------------------ ------------------- 220.8/459.2 MB 110.3 kB/s eta 0:36:02\n", " ------------------ ------------------- 220.8/459.2 MB 110.3 kB/s eta 0:36:02\n", " ------------------ ------------------- 220.8/459.2 MB 110.3 kB/s eta 0:36:02\n", " ------------------ ------------------- 220.8/459.2 MB 110.3 kB/s eta 0:36:02\n", " ------------------ ------------------- 220.8/459.2 MB 110.3 kB/s eta 0:36:02\n", " ------------------ ------------------- 220.8/459.2 MB 110.3 kB/s eta 0:36:02\n", " ------------------ ------------------- 220.8/459.2 MB 104.2 kB/s eta 0:38:09\n", " ------------------ ------------------- 220.8/459.2 MB 104.2 kB/s eta 0:38:09\n", " ------------------ ------------------- 220.8/459.2 MB 104.2 kB/s eta 0:38:09\n", " ------------------ ------------------- 220.8/459.2 MB 104.2 kB/s eta 0:38:09\n", " ------------------ ------------------- 220.8/459.2 MB 104.2 kB/s eta 0:38:09\n", " ------------------ ------------------- 220.8/459.2 MB 104.2 kB/s eta 0:38:09\n", " ------------------ ------------------- 220.8/459.2 MB 104.2 kB/s eta 0:38:09\n", " ------------------ -------------------- 220.8/459.2 MB 99.0 kB/s eta 0:40:09\n", " ------------------ -------------------- 220.8/459.2 MB 99.0 kB/s eta 0:40:09\n", " ------------------ -------------------- 220.8/459.2 MB 99.0 kB/s eta 0:40:09\n", " ------------------ -------------------- 220.8/459.2 MB 99.0 kB/s eta 0:40:09\n", " ------------------ -------------------- 220.8/459.2 MB 94.3 kB/s eta 0:42:08\n", " ------------------ -------------------- 220.8/459.2 MB 94.3 kB/s eta 0:42:08\n", " ------------------ -------------------- 220.8/459.2 MB 94.3 kB/s eta 0:42:08\n", " ------------------ -------------------- 220.8/459.2 MB 92.2 kB/s eta 0:43:07\n", " ------------------ -------------------- 220.8/459.2 MB 92.2 kB/s eta 0:43:07\n", " ------------------ -------------------- 220.8/459.2 MB 92.2 kB/s eta 0:43:07\n", " ------------------ -------------------- 220.8/459.2 MB 92.2 kB/s eta 0:43:07\n", " ------------------ -------------------- 220.8/459.2 MB 92.2 kB/s eta 0:43:07\n", " ------------------ -------------------- 220.9/459.2 MB 87.1 kB/s eta 0:45:37\n", " ------------------ -------------------- 220.9/459.2 MB 87.1 kB/s eta 0:45:37\n", " ------------------ -------------------- 220.9/459.2 MB 87.1 kB/s eta 0:45:37\n", " ------------------ -------------------- 220.9/459.2 MB 85.8 kB/s eta 0:46:19\n", " ------------------ -------------------- 220.9/459.2 MB 85.8 kB/s eta 0:46:19\n", " ------------------ -------------------- 220.9/459.2 MB 85.8 kB/s eta 0:46:19\n", " ------------------ -------------------- 220.9/459.2 MB 85.8 kB/s eta 0:46:19\n", " ------------------ -------------------- 220.9/459.2 MB 85.8 kB/s eta 0:46:19\n", " ------------------ -------------------- 220.9/459.2 MB 85.8 kB/s eta 0:46:19\n", " ------------------ -------------------- 220.9/459.2 MB 80.9 kB/s eta 0:49:06\n", " ------------------ -------------------- 220.9/459.2 MB 80.9 kB/s eta 0:49:06\n", " ------------------ -------------------- 220.9/459.2 MB 80.9 kB/s eta 0:49:06\n", " ------------------ -------------------- 220.9/459.2 MB 80.9 kB/s eta 0:49:06\n", " ------------------ -------------------- 220.9/459.2 MB 80.9 kB/s eta 0:49:06\n", " ------------------ -------------------- 220.9/459.2 MB 80.9 kB/s eta 0:49:06\n", " ------------------ -------------------- 220.9/459.2 MB 80.9 kB/s eta 0:49:06\n", " ------------------ -------------------- 220.9/459.2 MB 80.9 kB/s eta 0:49:06\n", " ------------------ -------------------- 220.9/459.2 MB 74.1 kB/s eta 0:53:36\n", " ------------------ -------------------- 220.9/459.2 MB 74.1 kB/s eta 0:53:36\n", " ------------------ -------------------- 220.9/459.2 MB 74.1 kB/s eta 0:53:36\n", " ------------------ -------------------- 220.9/459.2 MB 74.1 kB/s eta 0:53:36\n", " ------------------ -------------------- 220.9/459.2 MB 74.1 kB/s eta 0:53:36\n", " ------------------ -------------------- 220.9/459.2 MB 74.1 kB/s eta 0:53:36\n", " ------------------ -------------------- 220.9/459.2 MB 74.1 kB/s eta 0:53:36\n", " ------------------ -------------------- 220.9/459.2 MB 74.1 kB/s eta 0:53:36\n", " ------------------ -------------------- 220.9/459.2 MB 66.6 kB/s eta 0:59:38\n", " ------------------ -------------------- 220.9/459.2 MB 66.6 kB/s eta 0:59:38\n", " ------------------ -------------------- 220.9/459.2 MB 66.6 kB/s eta 0:59:38\n", " ------------------ -------------------- 220.9/459.2 MB 66.6 kB/s eta 0:59:38\n", " ------------------ -------------------- 220.9/459.2 MB 66.6 kB/s eta 0:59:38\n", " ------------------ -------------------- 220.9/459.2 MB 64.6 kB/s eta 1:01:26\n", " ------------------ -------------------- 220.9/459.2 MB 64.6 kB/s eta 1:01:26\n", " ------------------ -------------------- 220.9/459.2 MB 64.6 kB/s eta 1:01:26\n", " ------------------ -------------------- 221.0/459.2 MB 64.2 kB/s eta 1:01:53\n", " ------------------ -------------------- 221.0/459.2 MB 64.2 kB/s eta 1:01:53\n", " ------------------ -------------------- 221.0/459.2 MB 64.5 kB/s eta 1:01:31\n", " ------------------ -------------------- 221.0/459.2 MB 64.5 kB/s eta 1:01:31\n", " ------------------ -------------------- 221.0/459.2 MB 65.1 kB/s eta 1:01:00\n", " ------------------ -------------------- 221.0/459.2 MB 65.3 kB/s eta 1:00:50\n", " ------------------ -------------------- 221.0/459.2 MB 65.3 kB/s eta 1:00:50\n", " ------------------ -------------------- 221.0/459.2 MB 65.7 kB/s eta 1:00:23\n", " ------------------ -------------------- 221.0/459.2 MB 65.9 kB/s eta 1:00:12\n", " ------------------ -------------------- 221.1/459.2 MB 66.5 kB/s eta 0:59:41\n", " ------------------ -------------------- 221.1/459.2 MB 67.0 kB/s eta 0:59:14\n", " ------------------ -------------------- 221.1/459.2 MB 67.2 kB/s eta 0:59:01\n", " ------------------ -------------------- 221.1/459.2 MB 68.3 kB/s eta 0:58:04\n", " ------------------ -------------------- 221.1/459.2 MB 68.9 kB/s eta 0:57:36\n", " ------------------ -------------------- 221.2/459.2 MB 69.4 kB/s eta 0:57:09\n", " ------------------ -------------------- 221.2/459.2 MB 69.7 kB/s eta 0:56:58\n", " ------------------ -------------------- 221.2/459.2 MB 70.2 kB/s eta 0:56:29\n", " ------------------ -------------------- 221.2/459.2 MB 71.1 kB/s eta 0:55:49\n", " ------------------ -------------------- 221.2/459.2 MB 71.7 kB/s eta 0:55:20\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.\n", "google-api-core 2.18.0 requires google-auth<3.0.dev0,>=2.14.1, but you have google-auth 1.35.0 which is incompatible.\n", "scikit-learn 1.3.2 requires scipy>=1.5.0, but you have scipy 1.4.1 which is incompatible.\n", "tensorflow-intel 2.13.0 requires tensorboard<2.14,>=2.13, but you have tensorboard 2.2.2 which is incompatible.\n", "tensorflow-intel 2.13.0 requires tensorflow-estimator<2.14,>=2.13.0, but you have tensorflow-estimator 2.2.0 which is incompatible.\n", "tf-models-official 2.5.1 requires tensorflow>=2.5.0, but you have tensorflow 2.2.0 which is incompatible.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " ------------------ -------------------- 221.3/459.2 MB 71.9 kB/s eta 0:55:09\n", " ------------------ -------------------- 221.3/459.2 MB 72.7 kB/s eta 0:54:31\n", " ------------------ -------------------- 221.3/459.2 MB 73.5 kB/s eta 0:53:55\n", " ------------------ -------------------- 221.3/459.2 MB 74.4 kB/s eta 0:53:18\n", " ------------------ -------------------- 221.4/459.2 MB 75.0 kB/s eta 0:52:53\n", " ------------------ -------------------- 221.4/459.2 MB 75.8 kB/s eta 0:52:16\n", " ------------------ -------------------- 221.4/459.2 MB 76.5 kB/s eta 0:51:50\n", " ------------------ -------------------- 221.4/459.2 MB 77.3 kB/s eta 0:51:16\n", " ------------------ -------------------- 221.5/459.2 MB 78.2 kB/s eta 0:50:39\n", " ------------------ -------------------- 221.5/459.2 MB 79.1 kB/s eta 0:50:04\n", " ------------------ -------------------- 221.6/459.2 MB 80.6 kB/s eta 0:49:07\n", " ------------------ -------------------- 221.6/459.2 MB 81.2 kB/s eta 0:48:48\n", " ------------------ -------------------- 221.6/459.2 MB 82.0 kB/s eta 0:48:16\n", " ------------------ -------------------- 221.7/459.2 MB 83.3 kB/s eta 0:47:32\n", " ------------------ -------------------- 221.7/459.2 MB 83.8 kB/s eta 0:47:13\n", " ------------------ -------------------- 221.7/459.2 MB 85.3 kB/s eta 0:46:24\n", " ------------------ -------------------- 221.8/459.2 MB 86.5 kB/s eta 0:45:45\n", " ------------------ -------------------- 221.8/459.2 MB 87.7 kB/s eta 0:45:06\n", " ------------------ -------------------- 221.9/459.2 MB 88.3 kB/s eta 0:44:47\n", " ------------------ -------------------- 221.9/459.2 MB 89.6 kB/s eta 0:44:10\n", " ------------------ -------------------- 222.0/459.2 MB 91.6 kB/s eta 0:43:10\n", " ------------------ -------------------- 222.0/459.2 MB 92.5 kB/s eta 0:42:45\n", " ------------------ -------------------- 222.0/459.2 MB 93.4 kB/s eta 0:42:20\n", " ------------------ -------------------- 222.1/459.2 MB 94.9 kB/s eta 0:41:39\n", " ------------------ -------------------- 222.1/459.2 MB 96.1 kB/s eta 0:41:08\n", " ------------------ -------------------- 222.2/459.2 MB 97.9 kB/s eta 0:40:21\n", " ------------------ -------------------- 222.2/459.2 MB 99.4 kB/s eta 0:39:44\n", " ------------------ ------------------- 222.3/459.2 MB 101.0 kB/s eta 0:39:07\n", " ------------------ ------------------- 222.3/459.2 MB 102.5 kB/s eta 0:38:32\n", " ------------------ ------------------- 222.4/459.2 MB 104.0 kB/s eta 0:37:58\n", " ------------------ ------------------- 222.4/459.2 MB 105.8 kB/s eta 0:37:18\n", " ------------------ ------------------- 222.5/459.2 MB 107.3 kB/s eta 0:36:47\n", " ------------------ ------------------- 222.5/459.2 MB 109.9 kB/s eta 0:35:55\n", " ------------------ ------------------- 222.6/459.2 MB 111.4 kB/s eta 0:35:25\n", " ------------------ ------------------- 222.6/459.2 MB 112.8 kB/s eta 0:34:57\n", " ------------------ ------------------- 222.7/459.2 MB 113.9 kB/s eta 0:34:37\n", " ------------------ ------------------- 222.7/459.2 MB 115.2 kB/s eta 0:34:13\n", " ------------------ ------------------- 222.8/459.2 MB 116.9 kB/s eta 0:33:43\n", " ------------------ ------------------- 222.8/459.2 MB 118.4 kB/s eta 0:33:17\n", " ------------------ ------------------- 222.9/459.2 MB 120.2 kB/s eta 0:32:47\n", " ------------------ ------------------- 222.9/459.2 MB 121.0 kB/s eta 0:32:34\n", " ------------------ ------------------- 223.0/459.2 MB 123.7 kB/s eta 0:31:50\n", " ------------------ ------------------- 223.0/459.2 MB 125.5 kB/s eta 0:31:22\n", " ------------------ ------------------- 223.1/459.2 MB 127.0 kB/s eta 0:30:59\n", " ------------------ ------------------- 223.2/459.2 MB 128.8 kB/s eta 0:30:34\n", " ------------------ ------------------- 223.2/459.2 MB 131.1 kB/s eta 0:30:01\n", " ------------------ ------------------- 223.3/459.2 MB 132.9 kB/s eta 0:29:35\n", " ------------------ ------------------- 223.4/459.2 MB 135.0 kB/s eta 0:29:07\n", " ------------------ ------------------- 223.4/459.2 MB 137.6 kB/s eta 0:28:34\n", " ------------------ ------------------- 223.5/459.2 MB 140.6 kB/s eta 0:27:56\n", " ------------------ ------------------- 223.6/459.2 MB 141.7 kB/s eta 0:27:43\n", " ------------------ ------------------- 223.6/459.2 MB 143.1 kB/s eta 0:27:26\n", " ------------------ ------------------- 223.7/459.2 MB 145.2 kB/s eta 0:27:02\n", " ------------------ ------------------- 223.8/459.2 MB 147.9 kB/s eta 0:26:33\n", " ------------------ ------------------- 223.8/459.2 MB 150.3 kB/s eta 0:26:06\n", " ------------------ ------------------- 223.9/459.2 MB 152.0 kB/s eta 0:25:48\n", " ------------------ ------------------- 224.0/459.2 MB 154.4 kB/s eta 0:25:23\n", " ------------------ ------------------- 224.1/459.2 MB 156.9 kB/s eta 0:24:59\n", " ------------------ ------------------- 224.1/459.2 MB 159.3 kB/s eta 0:24:36\n", " ------------------ ------------------- 224.2/459.2 MB 161.1 kB/s eta 0:24:19\n", " ------------------ ------------------- 224.3/459.2 MB 164.4 kB/s eta 0:23:49\n", " ------------------ ------------------- 224.4/459.2 MB 167.2 kB/s eta 0:23:25\n", " ------------------ ------------------- 224.5/459.2 MB 169.0 kB/s eta 0:23:10\n", " ------------------ ------------------- 224.5/459.2 MB 171.5 kB/s eta 0:22:49\n", " ------------------ ------------------- 224.7/459.2 MB 175.1 kB/s eta 0:22:20\n", " ------------------ ------------------- 224.7/459.2 MB 177.8 kB/s eta 0:21:59\n", " ------------------ ------------------- 224.8/459.2 MB 181.1 kB/s eta 0:21:34\n", " ------------------ ------------------- 224.9/459.2 MB 184.3 kB/s eta 0:21:11\n", " ------------------ ------------------- 225.1/459.2 MB 188.0 kB/s eta 0:20:46\n", " ------------------ ------------------- 225.1/459.2 MB 190.5 kB/s eta 0:20:29\n", " ------------------ ------------------- 225.3/459.2 MB 194.2 kB/s eta 0:20:05\n", " ------------------ ------------------- 225.4/459.2 MB 198.4 kB/s eta 0:19:39\n", " ------------------ ------------------- 225.5/459.2 MB 202.4 kB/s eta 0:19:15\n", " ------------------ ------------------- 225.6/459.2 MB 206.0 kB/s eta 0:18:54\n", " ------------------ ------------------- 225.8/459.2 MB 210.4 kB/s eta 0:18:30\n", " ------------------ ------------------- 225.9/459.2 MB 213.6 kB/s eta 0:18:13\n", " ------------------ ------------------- 226.0/459.2 MB 216.5 kB/s eta 0:17:58\n", " ------------------ ------------------- 226.1/459.2 MB 220.5 kB/s eta 0:17:37\n", " ------------------ ------------------- 226.2/459.2 MB 224.0 kB/s eta 0:17:20\n", " ------------------ ------------------- 226.4/459.2 MB 228.7 kB/s eta 0:16:58\n", " ------------------ ------------------- 226.5/459.2 MB 233.7 kB/s eta 0:16:36\n", " ------------------ ------------------- 226.6/459.2 MB 237.7 kB/s eta 0:16:19\n", " ------------------ ------------------- 226.7/459.2 MB 239.7 kB/s eta 0:16:10\n", " ------------------ ------------------- 226.8/459.2 MB 244.1 kB/s eta 0:15:52\n", " ------------------ ------------------- 226.9/459.2 MB 246.1 kB/s eta 0:15:44\n", " ------------------ ------------------- 227.1/459.2 MB 251.2 kB/s eta 0:15:25\n", " ------------------ ------------------- 227.2/459.2 MB 256.1 kB/s eta 0:15:06\n", " ------------------ ------------------- 227.3/459.2 MB 259.6 kB/s eta 0:14:54\n", " ------------------ ------------------- 227.4/459.2 MB 261.5 kB/s eta 0:14:47\n", " ------------------ ------------------- 227.6/459.2 MB 268.4 kB/s eta 0:14:23\n", " ------------------ ------------------- 227.7/459.2 MB 272.0 kB/s eta 0:14:11\n", " ------------------ ------------------- 227.9/459.2 MB 275.5 kB/s eta 0:14:00\n", " ------------------ ------------------- 228.0/459.2 MB 280.5 kB/s eta 0:13:45\n", " ------------------ ------------------- 228.1/459.2 MB 283.8 kB/s eta 0:13:35\n", " ------------------ ------------------- 228.3/459.2 MB 287.4 kB/s eta 0:13:24\n", " ------------------ ------------------- 228.4/459.2 MB 292.0 kB/s eta 0:13:11\n", " ------------------ ------------------- 228.5/459.2 MB 294.5 kB/s eta 0:13:04\n", " ------------------ ------------------- 228.6/459.2 MB 297.3 kB/s eta 0:12:56\n", " ------------------ ------------------- 228.7/459.2 MB 299.7 kB/s eta 0:12:50\n", " ------------------ ------------------- 228.8/459.2 MB 304.4 kB/s eta 0:12:37\n", " ------------------ ------------------- 229.0/459.2 MB 308.6 kB/s eta 0:12:26\n", " ------------------ ------------------- 229.2/459.2 MB 316.5 kB/s eta 0:12:07\n", " ------------------ ------------------- 229.4/459.2 MB 321.3 kB/s eta 0:11:56\n", " ------------------ ------------------- 229.5/459.2 MB 325.3 kB/s eta 0:11:47\n", " ------------------- ------------------ 229.6/459.2 MB 329.4 kB/s eta 0:11:37\n", " ------------------- ------------------ 229.8/459.2 MB 336.3 kB/s eta 0:11:23\n", " ------------------- ------------------ 230.0/459.2 MB 340.4 kB/s eta 0:11:14\n", " ------------------- ------------------ 230.1/459.2 MB 355.2 kB/s eta 0:10:45\n", " ------------------- ------------------ 230.2/459.2 MB 377.8 kB/s eta 0:10:07\n", " ------------------- ------------------ 230.3/459.2 MB 402.9 kB/s eta 0:09:29\n", " ------------------- ------------------ 230.5/459.2 MB 484.2 kB/s eta 0:07:53\n", " ------------------- ------------------ 230.5/459.2 MB 495.6 kB/s eta 0:07:42\n", " ------------------- ------------------ 230.6/459.2 MB 596.8 kB/s eta 0:06:23\n", " ------------------- ------------------ 230.8/459.2 MB 706.3 kB/s eta 0:05:24\n", " ------------------- ------------------ 230.9/459.2 MB 815.3 kB/s eta 0:04:40\n", " ------------------- ------------------ 231.0/459.2 MB 896.9 kB/s eta 0:04:15\n", " -------------------- ------------------- 231.1/459.2 MB 1.0 MB/s eta 0:03:39\n", " -------------------- ------------------- 231.2/459.2 MB 1.3 MB/s eta 0:02:57\n", " -------------------- ------------------- 231.4/459.2 MB 1.4 MB/s eta 0:02:47\n", " -------------------- ------------------- 231.4/459.2 MB 1.4 MB/s eta 0:02:41\n", " -------------------- ------------------- 231.6/459.2 MB 1.5 MB/s eta 0:02:36\n", " -------------------- ------------------- 231.7/459.2 MB 1.5 MB/s eta 0:02:31\n", " -------------------- ------------------- 231.7/459.2 MB 1.5 MB/s eta 0:02:30\n", " -------------------- ------------------- 231.8/459.2 MB 1.5 MB/s eta 0:02:32\n", " -------------------- ------------------- 231.9/459.2 MB 1.5 MB/s eta 0:02:28\n", " -------------------- ------------------- 232.0/459.2 MB 1.6 MB/s eta 0:02:27\n", " -------------------- ------------------- 232.0/459.2 MB 1.6 MB/s eta 0:02:27\n", " -------------------- ------------------- 232.0/459.2 MB 1.6 MB/s eta 0:02:27\n", " -------------------- ------------------- 232.1/459.2 MB 1.6 MB/s eta 0:02:26\n", " -------------------- ------------------- 232.1/459.2 MB 1.6 MB/s eta 0:02:26\n", " -------------------- ------------------- 232.1/459.2 MB 1.6 MB/s eta 0:02:27\n", " -------------------- ------------------- 232.2/459.2 MB 1.6 MB/s eta 0:02:27\n", " -------------------- ------------------- 232.2/459.2 MB 1.5 MB/s eta 0:02:28\n", " -------------------- ------------------- 232.2/459.2 MB 1.5 MB/s eta 0:02:27\n", " -------------------- ------------------- 232.2/459.2 MB 1.5 MB/s eta 0:02:27\n", " -------------------- ------------------- 232.3/459.2 MB 1.5 MB/s eta 0:02:28\n", " -------------------- ------------------- 232.3/459.2 MB 1.5 MB/s eta 0:02:28\n", " -------------------- ------------------- 232.3/459.2 MB 1.5 MB/s eta 0:02:28\n", " -------------------- ------------------- 232.4/459.2 MB 1.5 MB/s eta 0:02:29\n", " -------------------- ------------------- 232.4/459.2 MB 1.5 MB/s eta 0:02:29\n", " -------------------- ------------------- 232.4/459.2 MB 1.5 MB/s eta 0:02:29\n", " -------------------- ------------------- 232.5/459.2 MB 1.5 MB/s eta 0:02:30\n", " -------------------- ------------------- 232.5/459.2 MB 1.5 MB/s eta 0:02:30\n", " -------------------- ------------------- 232.5/459.2 MB 1.5 MB/s eta 0:02:29\n", " -------------------- ------------------- 232.6/459.2 MB 1.5 MB/s eta 0:02:30\n", " -------------------- ------------------- 232.6/459.2 MB 1.5 MB/s eta 0:02:30\n", " -------------------- ------------------- 232.6/459.2 MB 1.5 MB/s eta 0:02:30\n", " -------------------- ------------------- 232.7/459.2 MB 1.5 MB/s eta 0:02:31\n", " -------------------- ------------------- 232.7/459.2 MB 1.5 MB/s eta 0:02:31\n", " -------------------- ------------------- 232.8/459.2 MB 1.5 MB/s eta 0:02:31\n", " -------------------- ------------------- 232.8/459.2 MB 1.5 MB/s eta 0:02:31\n", " -------------------- ------------------- 232.8/459.2 MB 1.5 MB/s eta 0:02:31\n", " -------------------- ------------------- 232.9/459.2 MB 1.5 MB/s eta 0:02:31\n", " -------------------- ------------------- 233.0/459.2 MB 1.5 MB/s eta 0:02:30\n", " -------------------- ------------------- 233.0/459.2 MB 1.5 MB/s eta 0:02:30\n", " -------------------- ------------------- 233.1/459.2 MB 1.5 MB/s eta 0:02:30\n", " -------------------- ------------------- 233.1/459.2 MB 1.5 MB/s eta 0:02:30\n", " -------------------- ------------------- 233.1/459.2 MB 1.5 MB/s eta 0:02:30\n", " -------------------- ------------------- 233.2/459.2 MB 1.5 MB/s eta 0:02:30\n", " -------------------- ------------------- 233.2/459.2 MB 1.5 MB/s eta 0:02:30\n", " -------------------- ------------------- 233.3/459.2 MB 1.5 MB/s eta 0:02:31\n", " -------------------- ------------------- 233.3/459.2 MB 1.5 MB/s eta 0:02:32\n", " -------------------- ------------------- 233.3/459.2 MB 1.5 MB/s eta 0:02:32\n", " -------------------- ------------------- 233.3/459.2 MB 1.5 MB/s eta 0:02:33\n", " -------------------- ------------------- 233.3/459.2 MB 1.5 MB/s eta 0:02:33\n", " -------------------- ------------------- 233.4/459.2 MB 1.5 MB/s eta 0:02:35\n", " -------------------- ------------------- 233.4/459.2 MB 1.5 MB/s eta 0:02:35\n", " -------------------- ------------------- 233.4/459.2 MB 1.4 MB/s eta 0:02:36\n", " -------------------- ------------------- 233.4/459.2 MB 1.4 MB/s eta 0:02:37\n", " -------------------- ------------------- 233.5/459.2 MB 1.4 MB/s eta 0:02:38\n", " -------------------- ------------------- 233.5/459.2 MB 1.4 MB/s eta 0:02:38\n", " -------------------- ------------------- 233.5/459.2 MB 1.4 MB/s eta 0:02:39\n", " -------------------- ------------------- 233.5/459.2 MB 1.4 MB/s eta 0:02:41\n", " -------------------- ------------------- 233.5/459.2 MB 1.4 MB/s eta 0:02:41\n", " -------------------- ------------------- 233.5/459.2 MB 1.4 MB/s eta 0:02:41\n", " -------------------- ------------------- 233.6/459.2 MB 1.4 MB/s eta 0:02:43\n", " -------------------- ------------------- 233.6/459.2 MB 1.4 MB/s eta 0:02:43\n", " -------------------- ------------------- 233.6/459.2 MB 1.4 MB/s eta 0:02:44\n", " -------------------- ------------------- 233.7/459.2 MB 1.4 MB/s eta 0:02:45\n", " -------------------- ------------------- 233.7/459.2 MB 1.4 MB/s eta 0:02:45\n", " -------------------- ------------------- 233.7/459.2 MB 1.4 MB/s eta 0:02:46\n", " -------------------- ------------------- 233.7/459.2 MB 1.4 MB/s eta 0:02:47\n", " -------------------- ------------------- 233.8/459.2 MB 1.4 MB/s eta 0:02:47\n", " -------------------- ------------------- 233.8/459.2 MB 1.3 MB/s eta 0:02:48\n", " -------------------- ------------------- 233.8/459.2 MB 1.3 MB/s eta 0:02:48\n", " -------------------- ------------------- 233.9/459.2 MB 1.3 MB/s eta 0:02:49\n", " -------------------- ------------------- 233.9/459.2 MB 1.3 MB/s eta 0:02:50\n", " -------------------- ------------------- 233.9/459.2 MB 1.3 MB/s eta 0:02:50\n", " -------------------- ------------------- 234.0/459.2 MB 1.3 MB/s eta 0:02:51\n", " -------------------- ------------------- 234.0/459.2 MB 1.3 MB/s eta 0:02:51\n", " -------------------- ------------------- 234.1/459.2 MB 1.3 MB/s eta 0:02:52\n", " -------------------- ------------------- 234.1/459.2 MB 1.3 MB/s eta 0:02:53\n", " -------------------- ------------------- 234.1/459.2 MB 1.3 MB/s eta 0:02:53\n", " -------------------- ------------------- 234.2/459.2 MB 1.3 MB/s eta 0:02:54\n", " -------------------- ------------------- 234.2/459.2 MB 1.3 MB/s eta 0:02:54\n", " -------------------- ------------------- 234.3/459.2 MB 1.3 MB/s eta 0:02:55\n", " -------------------- ------------------- 234.3/459.2 MB 1.3 MB/s eta 0:02:56\n", " -------------------- ------------------- 234.4/459.2 MB 1.3 MB/s eta 0:02:56\n", " -------------------- ------------------- 234.4/459.2 MB 1.3 MB/s eta 0:02:57\n", " -------------------- ------------------- 234.5/459.2 MB 1.3 MB/s eta 0:02:57\n", " -------------------- ------------------- 234.5/459.2 MB 1.3 MB/s eta 0:02:58\n", " -------------------- ------------------- 234.5/459.2 MB 1.3 MB/s eta 0:02:58\n", " -------------------- ------------------- 234.6/459.2 MB 1.3 MB/s eta 0:02:59\n", " -------------------- ------------------- 234.6/459.2 MB 1.3 MB/s eta 0:03:00\n", " -------------------- ------------------- 234.7/459.2 MB 1.3 MB/s eta 0:02:59\n", " -------------------- ------------------- 234.8/459.2 MB 1.3 MB/s eta 0:03:00\n", " -------------------- ------------------- 234.8/459.2 MB 1.2 MB/s eta 0:03:01\n", " -------------------- ------------------- 234.9/459.2 MB 1.2 MB/s eta 0:03:01\n", " -------------------- ------------------- 234.9/459.2 MB 1.2 MB/s eta 0:03:02\n", " -------------------- ------------------- 235.0/459.2 MB 1.2 MB/s eta 0:03:02\n", " -------------------- ------------------- 235.0/459.2 MB 1.2 MB/s eta 0:03:03\n", " -------------------- ------------------- 235.1/459.2 MB 1.2 MB/s eta 0:03:04\n", " -------------------- ------------------- 235.2/459.2 MB 1.2 MB/s eta 0:03:04\n", " -------------------- ------------------- 235.2/459.2 MB 1.2 MB/s eta 0:03:04\n", " -------------------- ------------------- 235.3/459.2 MB 1.2 MB/s eta 0:03:05\n", " -------------------- ------------------- 235.4/459.2 MB 1.2 MB/s eta 0:03:05\n", " -------------------- ------------------- 235.4/459.2 MB 1.2 MB/s eta 0:03:06\n", " -------------------- ------------------- 235.5/459.2 MB 1.2 MB/s eta 0:03:07\n", " -------------------- ------------------- 235.6/459.2 MB 1.2 MB/s eta 0:03:07\n", " -------------------- ------------------- 235.6/459.2 MB 1.2 MB/s eta 0:03:08\n", " -------------------- ------------------- 235.7/459.2 MB 1.2 MB/s eta 0:03:08\n", " -------------------- ------------------- 235.8/459.2 MB 1.2 MB/s eta 0:03:09\n", " -------------------- ------------------- 235.8/459.2 MB 1.2 MB/s eta 0:03:09\n", " -------------------- ------------------- 235.9/459.2 MB 1.2 MB/s eta 0:03:10\n", " -------------------- ------------------- 235.9/459.2 MB 1.2 MB/s eta 0:03:11\n", " -------------------- ------------------- 235.9/459.2 MB 1.2 MB/s eta 0:03:11\n", " -------------------- ------------------- 235.9/459.2 MB 1.2 MB/s eta 0:03:11\n", " -------------------- ------------------- 236.0/459.2 MB 1.2 MB/s eta 0:03:15\n", " -------------------- ------------------- 236.0/459.2 MB 1.1 MB/s eta 0:03:15\n", " -------------------- ------------------- 236.1/459.2 MB 1.1 MB/s eta 0:03:16\n", " -------------------- ------------------- 236.1/459.2 MB 1.1 MB/s eta 0:03:17\n", " -------------------- ------------------- 236.1/459.2 MB 1.1 MB/s eta 0:03:18\n", " -------------------- ------------------- 236.2/459.2 MB 1.1 MB/s eta 0:03:19\n", " -------------------- ------------------- 236.2/459.2 MB 1.1 MB/s eta 0:03:20\n", " -------------------- ------------------- 236.2/459.2 MB 1.1 MB/s eta 0:03:21\n", " -------------------- ------------------- 236.3/459.2 MB 1.1 MB/s eta 0:03:21\n", " -------------------- ------------------- 236.3/459.2 MB 1.1 MB/s eta 0:03:23\n", " -------------------- ------------------- 236.4/459.2 MB 1.1 MB/s eta 0:03:24\n", " -------------------- ------------------- 236.4/459.2 MB 1.1 MB/s eta 0:03:24\n", " -------------------- ------------------- 236.4/459.2 MB 1.1 MB/s eta 0:03:25\n", " -------------------- ------------------- 236.5/459.2 MB 1.1 MB/s eta 0:03:26\n", " -------------------- ------------------- 236.5/459.2 MB 1.1 MB/s eta 0:03:27\n", " -------------------- ------------------- 236.6/459.2 MB 1.1 MB/s eta 0:03:28\n", " -------------------- ------------------- 236.6/459.2 MB 1.1 MB/s eta 0:03:29\n", " -------------------- ------------------- 236.6/459.2 MB 1.1 MB/s eta 0:03:29\n", " -------------------- ------------------- 236.7/459.2 MB 1.1 MB/s eta 0:03:30\n", " -------------------- ------------------- 236.7/459.2 MB 1.1 MB/s eta 0:03:31\n", " -------------------- ------------------- 236.7/459.2 MB 1.1 MB/s eta 0:03:31\n", " -------------------- ------------------- 236.8/459.2 MB 1.1 MB/s eta 0:03:32\n", " -------------------- ------------------- 236.8/459.2 MB 1.0 MB/s eta 0:03:33\n", " -------------------- ------------------- 236.9/459.2 MB 1.0 MB/s eta 0:03:34\n", " -------------------- ------------------- 236.9/459.2 MB 1.0 MB/s eta 0:03:34\n", " -------------------- ------------------- 237.0/459.2 MB 1.0 MB/s eta 0:03:34\n", " -------------------- ------------------- 237.0/459.2 MB 1.0 MB/s eta 0:03:36\n", " -------------------- ------------------- 237.1/459.2 MB 1.0 MB/s eta 0:03:37\n", " -------------------- ------------------- 237.1/459.2 MB 1.0 MB/s eta 0:03:37\n", " -------------------- ------------------- 237.2/459.2 MB 1.0 MB/s eta 0:03:38\n", " -------------------- ------------------- 237.2/459.2 MB 1.0 MB/s eta 0:03:38\n", " -------------------- ------------------- 237.3/459.2 MB 1.0 MB/s eta 0:03:39\n", " -------------------- ------------------- 237.3/459.2 MB 1.0 MB/s eta 0:03:40\n", " -------------------- ------------------- 237.4/459.2 MB 1.0 MB/s eta 0:03:40\n", " -------------------- ------------------- 237.4/459.2 MB 1.0 MB/s eta 0:03:41\n", " ------------------- ------------------ 237.5/459.2 MB 999.6 kB/s eta 0:03:42\n", " ------------------- ------------------ 237.6/459.2 MB 996.5 kB/s eta 0:03:43\n", " ------------------- ------------------ 237.6/459.2 MB 996.6 kB/s eta 0:03:43\n", " ------------------- ------------------ 237.7/459.2 MB 995.0 kB/s eta 0:03:43\n", " ------------------- ------------------ 237.8/459.2 MB 990.5 kB/s eta 0:03:44\n", " ------------------- ------------------ 237.8/459.2 MB 986.0 kB/s eta 0:03:45\n", " ------------------- ------------------ 237.9/459.2 MB 983.1 kB/s eta 0:03:46\n", " ------------------- ------------------ 237.9/459.2 MB 983.1 kB/s eta 0:03:46\n", " ------------------- ------------------ 238.0/459.2 MB 978.6 kB/s eta 0:03:47\n", " ------------------- ------------------ 238.0/459.2 MB 977.2 kB/s eta 0:03:47\n", " ------------------- ------------------ 238.1/459.2 MB 975.7 kB/s eta 0:03:47\n", " ------------------- ------------------ 238.2/459.2 MB 972.8 kB/s eta 0:03:48\n", " ------------------- ------------------ 238.3/459.2 MB 968.5 kB/s eta 0:03:49\n", " ------------------- ------------------ 238.4/459.2 MB 967.1 kB/s eta 0:03:49\n", " ------------------- ------------------ 238.4/459.2 MB 962.8 kB/s eta 0:03:50\n", " ------------------- ------------------ 238.5/459.2 MB 962.8 kB/s eta 0:03:50\n", " ------------------- ------------------ 238.6/459.2 MB 960.0 kB/s eta 0:03:50\n", " ------------------- ------------------ 238.6/459.2 MB 958.6 kB/s eta 0:03:51\n", " ------------------- ------------------ 238.7/459.2 MB 955.7 kB/s eta 0:03:51\n", " ------------------- ------------------ 238.8/459.2 MB 954.4 kB/s eta 0:03:51\n", " ------------------- ------------------ 238.9/459.2 MB 955.7 kB/s eta 0:03:51\n", " ------------------- ------------------ 239.0/459.2 MB 954.4 kB/s eta 0:03:51\n", " ------------------- ------------------ 239.0/459.2 MB 951.6 kB/s eta 0:03:52\n", " ------------------- ------------------ 239.1/459.2 MB 950.2 kB/s eta 0:03:52\n", " ------------------- ------------------ 239.2/459.2 MB 946.1 kB/s eta 0:03:53\n", " ------------------- ------------------ 239.2/459.2 MB 946.1 kB/s eta 0:03:53\n", " ------------------- ------------------ 239.2/459.2 MB 938.0 kB/s eta 0:03:55\n", " ------------------- ------------------ 239.2/459.2 MB 934.0 kB/s eta 0:03:56\n", " ------------------- ------------------ 239.3/459.2 MB 930.0 kB/s eta 0:03:57\n", " ------------------- ------------------ 239.3/459.2 MB 926.0 kB/s eta 0:03:58\n", " ------------------- ------------------ 239.4/459.2 MB 920.9 kB/s eta 0:03:59\n", " ------------------- ------------------ 239.4/459.2 MB 917.0 kB/s eta 0:04:00\n", " ------------------- ------------------ 239.4/459.2 MB 915.7 kB/s eta 0:04:00\n", " ------------------- ------------------ 239.5/459.2 MB 909.3 kB/s eta 0:04:02\n", " ------------------- ------------------ 239.5/459.2 MB 905.5 kB/s eta 0:04:03\n", " ------------------- ------------------ 239.6/459.2 MB 903.0 kB/s eta 0:04:04\n", " ------------------- ------------------ 239.6/459.2 MB 899.3 kB/s eta 0:04:05\n", " ------------------- ------------------ 239.6/459.2 MB 895.6 kB/s eta 0:04:06\n", " ------------------- ------------------ 239.7/459.2 MB 890.7 kB/s eta 0:04:07\n", " ------------------- ------------------ 239.7/459.2 MB 888.3 kB/s eta 0:04:08\n", " ------------------- ------------------ 239.8/459.2 MB 884.7 kB/s eta 0:04:09\n", " ------------------- ------------------ 239.8/459.2 MB 881.2 kB/s eta 0:04:09\n", " ------------------- ------------------ 239.9/459.2 MB 878.8 kB/s eta 0:04:10\n", " ------------------- ------------------ 239.9/459.2 MB 875.3 kB/s eta 0:04:11\n", " ------------------- ------------------ 239.9/459.2 MB 869.5 kB/s eta 0:04:13\n", " ------------------- ------------------ 240.0/459.2 MB 867.1 kB/s eta 0:04:13\n", " ------------------- ------------------ 240.0/459.2 MB 864.9 kB/s eta 0:04:14\n", " ------------------- ------------------ 240.1/459.2 MB 861.5 kB/s eta 0:04:15\n", " ------------------- ------------------ 240.1/459.2 MB 858.1 kB/s eta 0:04:16\n", " ------------------- ------------------ 240.2/459.2 MB 855.8 kB/s eta 0:04:16\n", " ------------------- ------------------ 240.3/459.2 MB 851.4 kB/s eta 0:04:18\n", " ------------------- ------------------ 240.3/459.2 MB 849.2 kB/s eta 0:04:18\n", " ------------------- ------------------ 240.4/459.2 MB 847.0 kB/s eta 0:04:19\n", " ------------------- ------------------ 240.4/459.2 MB 844.8 kB/s eta 0:04:19\n", " ------------------- ------------------ 240.5/459.2 MB 842.6 kB/s eta 0:04:20\n", " ------------------- ------------------ 240.5/459.2 MB 843.7 kB/s eta 0:04:20\n", " ------------------- ------------------ 240.6/459.2 MB 837.3 kB/s eta 0:04:22\n", " ------------------- ------------------ 240.7/459.2 MB 833.0 kB/s eta 0:04:23\n", " ------------------- ------------------ 240.7/459.2 MB 830.9 kB/s eta 0:04:23\n", " ------------------- ------------------ 240.8/459.2 MB 830.8 kB/s eta 0:04:23\n", " ------------------- ------------------ 240.8/459.2 MB 827.7 kB/s eta 0:04:24\n", " ------------------- ------------------ 240.9/459.2 MB 827.7 kB/s eta 0:04:24\n", " ------------------- ------------------ 241.0/459.2 MB 825.6 kB/s eta 0:04:25\n", " ------------------- ------------------ 241.0/459.2 MB 823.5 kB/s eta 0:04:25\n", " ------------------- ------------------ 241.1/459.2 MB 820.4 kB/s eta 0:04:26\n", " ------------------- ------------------ 241.1/459.2 MB 819.4 kB/s eta 0:04:27\n", " ------------------- ------------------ 241.2/459.2 MB 817.3 kB/s eta 0:04:27\n", " ------------------- ------------------ 241.3/459.2 MB 818.4 kB/s eta 0:04:27\n", " ------------------- ------------------ 241.4/459.2 MB 817.4 kB/s eta 0:04:27\n", " ------------------- ------------------ 241.4/459.2 MB 815.3 kB/s eta 0:04:28\n", " ------------------- ------------------ 241.5/459.2 MB 814.3 kB/s eta 0:04:28\n", " ------------------- ------------------ 241.6/459.2 MB 812.3 kB/s eta 0:04:28\n", " ------------------- ------------------ 241.6/459.2 MB 809.3 kB/s eta 0:04:29\n", " -------------------- ----------------- 241.7/459.2 MB 808.2 kB/s eta 0:04:30\n", " -------------------- ----------------- 241.8/459.2 MB 806.3 kB/s eta 0:04:30\n", " -------------------- ----------------- 241.8/459.2 MB 806.3 kB/s eta 0:04:30\n", " -------------------- ----------------- 241.9/459.2 MB 804.3 kB/s eta 0:04:31\n", " -------------------- ----------------- 242.0/459.2 MB 810.3 kB/s eta 0:04:29\n", " -------------------- ----------------- 242.1/459.2 MB 807.3 kB/s eta 0:04:29\n", " -------------------- ----------------- 242.2/459.2 MB 808.3 kB/s eta 0:04:29\n", " -------------------- ----------------- 242.2/459.2 MB 812.3 kB/s eta 0:04:28\n", " -------------------- ----------------- 242.3/459.2 MB 814.3 kB/s eta 0:04:27\n", " -------------------- ----------------- 242.4/459.2 MB 820.4 kB/s eta 0:04:25\n", " -------------------- ----------------- 242.5/459.2 MB 828.7 kB/s eta 0:04:22\n", " -------------------- ----------------- 242.6/459.2 MB 832.9 kB/s eta 0:04:21\n", " -------------------- ----------------- 242.7/459.2 MB 839.4 kB/s eta 0:04:18\n", " -------------------- ----------------- 242.8/459.2 MB 843.7 kB/s eta 0:04:17\n", " -------------------- ----------------- 242.9/459.2 MB 849.2 kB/s eta 0:04:15\n", " -------------------- ----------------- 242.9/459.2 MB 852.5 kB/s eta 0:04:14\n", " -------------------- ----------------- 243.0/459.2 MB 853.6 kB/s eta 0:04:14\n", " -------------------- ----------------- 243.1/459.2 MB 858.1 kB/s eta 0:04:12\n", " -------------------- ----------------- 243.1/459.2 MB 860.3 kB/s eta 0:04:12\n", " -------------------- ----------------- 243.1/459.2 MB 854.7 kB/s eta 0:04:13\n", " -------------------- ----------------- 243.1/459.2 MB 854.7 kB/s eta 0:04:13\n", " -------------------- ----------------- 243.2/459.2 MB 854.8 kB/s eta 0:04:13\n", " -------------------- ----------------- 243.3/459.2 MB 857.0 kB/s eta 0:04:12\n", " -------------------- ----------------- 243.4/459.2 MB 854.7 kB/s eta 0:04:13\n", " -------------------- ----------------- 243.4/459.2 MB 854.7 kB/s eta 0:04:13\n", " -------------------- ----------------- 243.4/459.2 MB 853.5 kB/s eta 0:04:13\n", " -------------------- ----------------- 243.5/459.2 MB 851.3 kB/s eta 0:04:14\n", " -------------------- ----------------- 243.5/459.2 MB 859.2 kB/s eta 0:04:11\n", " -------------------- ----------------- 243.6/459.2 MB 866.0 kB/s eta 0:04:09\n", " -------------------- ----------------- 243.6/459.2 MB 864.9 kB/s eta 0:04:10\n", " -------------------- ----------------- 243.7/459.2 MB 875.2 kB/s eta 0:04:07\n", " -------------------- ----------------- 243.7/459.2 MB 881.1 kB/s eta 0:04:05\n", " -------------------- ----------------- 243.7/459.2 MB 884.8 kB/s eta 0:04:04\n", " -------------------- ----------------- 243.8/459.2 MB 887.2 kB/s eta 0:04:03\n", " -------------------- ----------------- 243.9/459.2 MB 892.0 kB/s eta 0:04:02\n", " -------------------- ----------------- 243.9/459.2 MB 893.2 kB/s eta 0:04:02\n", " -------------------- ----------------- 243.9/459.2 MB 894.4 kB/s eta 0:04:01\n", " -------------------- ----------------- 244.0/459.2 MB 899.3 kB/s eta 0:04:00\n", " -------------------- ----------------- 244.0/459.2 MB 904.3 kB/s eta 0:03:58\n", " -------------------- ----------------- 244.1/459.2 MB 904.2 kB/s eta 0:03:58\n", " -------------------- ----------------- 244.1/459.2 MB 908.0 kB/s eta 0:03:57\n", " -------------------- ----------------- 244.2/459.2 MB 908.0 kB/s eta 0:03:57\n", " -------------------- ----------------- 244.2/459.2 MB 909.3 kB/s eta 0:03:57\n", " -------------------- ----------------- 244.3/459.2 MB 913.1 kB/s eta 0:03:56\n", " -------------------- ----------------- 244.3/459.2 MB 915.7 kB/s eta 0:03:55\n", " -------------------- ----------------- 244.4/459.2 MB 916.9 kB/s eta 0:03:55\n", " -------------------- ----------------- 244.4/459.2 MB 916.9 kB/s eta 0:03:55\n", " -------------------- ----------------- 244.5/459.2 MB 916.9 kB/s eta 0:03:55\n", " -------------------- ----------------- 244.5/459.2 MB 917.0 kB/s eta 0:03:55\n", " -------------------- ----------------- 244.6/459.2 MB 917.0 kB/s eta 0:03:55\n", " -------------------- ----------------- 244.6/459.2 MB 919.5 kB/s eta 0:03:54\n", " -------------------- ----------------- 244.7/459.2 MB 923.4 kB/s eta 0:03:53\n", " -------------------- ----------------- 244.8/459.2 MB 922.2 kB/s eta 0:03:53\n", " -------------------- ----------------- 244.8/459.2 MB 926.0 kB/s eta 0:03:52\n", " -------------------- ----------------- 244.9/459.2 MB 924.7 kB/s eta 0:03:52\n", " -------------------- ----------------- 244.9/459.2 MB 928.7 kB/s eta 0:03:51\n", " -------------------- ----------------- 245.0/459.2 MB 930.0 kB/s eta 0:03:51\n", " -------------------- ----------------- 245.1/459.2 MB 932.7 kB/s eta 0:03:50\n", " -------------------- ----------------- 245.2/459.2 MB 931.2 kB/s eta 0:03:50\n", " -------------------- ----------------- 245.2/459.2 MB 934.0 kB/s eta 0:03:50\n", " -------------------- ----------------- 245.3/459.2 MB 935.2 kB/s eta 0:03:49\n", " -------------------- ----------------- 245.4/459.2 MB 935.2 kB/s eta 0:03:49\n", " -------------------- ----------------- 245.4/459.2 MB 936.6 kB/s eta 0:03:49\n", " -------------------- ----------------- 245.5/459.2 MB 937.9 kB/s eta 0:03:48\n", " -------------------- ----------------- 245.6/459.2 MB 940.7 kB/s eta 0:03:48\n", " -------------------- ----------------- 245.7/459.2 MB 938.0 kB/s eta 0:03:48\n", " -------------------- ----------------- 245.7/459.2 MB 939.3 kB/s eta 0:03:48\n", " -------------------- ----------------- 245.8/459.2 MB 940.7 kB/s eta 0:03:47\n", " -------------------- ----------------- 245.9/459.2 MB 939.4 kB/s eta 0:03:48\n", " -------------------- ----------------- 246.0/459.2 MB 940.7 kB/s eta 0:03:47\n", " -------------------- ----------------- 246.1/459.2 MB 944.8 kB/s eta 0:03:46\n", " -------------------- ----------------- 246.2/459.2 MB 961.4 kB/s eta 0:03:42\n", " -------------------- ----------------- 246.3/459.2 MB 967.1 kB/s eta 0:03:41\n", " -------------------- ----------------- 246.4/459.2 MB 972.9 kB/s eta 0:03:39\n", " -------------------- ----------------- 246.5/459.2 MB 981.6 kB/s eta 0:03:37\n", " -------------------- ----------------- 246.6/459.2 MB 990.5 kB/s eta 0:03:35\n", " --------------------- ------------------ 246.7/459.2 MB 1.0 MB/s eta 0:03:33\n", " --------------------- ------------------ 246.8/459.2 MB 1.0 MB/s eta 0:03:31\n", " --------------------- ------------------ 246.9/459.2 MB 1.0 MB/s eta 0:03:31\n", " --------------------- ------------------ 247.0/459.2 MB 1.0 MB/s eta 0:03:29\n", " --------------------- ------------------ 247.1/459.2 MB 1.0 MB/s eta 0:03:28\n", " --------------------- ------------------ 247.2/459.2 MB 1.0 MB/s eta 0:03:25\n", " --------------------- ------------------ 247.3/459.2 MB 1.0 MB/s eta 0:03:24\n", " --------------------- ------------------ 247.3/459.2 MB 1.0 MB/s eta 0:03:24\n", " --------------------- ------------------ 247.3/459.2 MB 1.0 MB/s eta 0:03:25\n", " --------------------- ------------------ 247.4/459.2 MB 1.0 MB/s eta 0:03:26\n", " --------------------- ------------------ 247.5/459.2 MB 1.0 MB/s eta 0:03:25\n", " --------------------- ------------------ 247.5/459.2 MB 1.0 MB/s eta 0:03:26\n", " --------------------- ------------------ 247.5/459.2 MB 1.0 MB/s eta 0:03:26\n", " --------------------- ------------------ 247.6/459.2 MB 1.0 MB/s eta 0:03:26\n", " --------------------- ------------------ 247.6/459.2 MB 1.0 MB/s eta 0:03:26\n", " --------------------- ------------------ 247.7/459.2 MB 1.0 MB/s eta 0:03:27\n", " --------------------- ------------------ 247.7/459.2 MB 1.0 MB/s eta 0:03:27\n", " --------------------- ------------------ 247.8/459.2 MB 1.0 MB/s eta 0:03:27\n", " --------------------- ------------------ 247.8/459.2 MB 1.0 MB/s eta 0:03:27\n", " --------------------- ------------------ 247.8/459.2 MB 1.0 MB/s eta 0:03:28\n", " --------------------- ------------------ 247.9/459.2 MB 1.0 MB/s eta 0:03:28\n", " --------------------- ------------------ 247.9/459.2 MB 1.0 MB/s eta 0:03:28\n", " --------------------- ------------------ 248.0/459.2 MB 1.0 MB/s eta 0:03:30\n", " --------------------- ------------------ 248.0/459.2 MB 1.0 MB/s eta 0:03:31\n", " --------------------- ------------------ 248.1/459.2 MB 1.0 MB/s eta 0:03:31\n", " -------------------- ----------------- 248.1/459.2 MB 999.6 kB/s eta 0:03:32\n", " -------------------- ----------------- 248.1/459.2 MB 994.9 kB/s eta 0:03:33\n", " -------------------- ----------------- 248.2/459.2 MB 993.5 kB/s eta 0:03:33\n", " -------------------- ----------------- 248.2/459.2 MB 993.5 kB/s eta 0:03:33\n", " -------------------- ----------------- 248.3/459.2 MB 989.0 kB/s eta 0:03:34\n", " -------------------- ----------------- 248.3/459.2 MB 987.4 kB/s eta 0:03:34\n", " -------------------- ----------------- 248.4/459.2 MB 984.5 kB/s eta 0:03:35\n", " -------------------- ----------------- 248.4/459.2 MB 981.6 kB/s eta 0:03:35\n", " -------------------- ----------------- 248.5/459.2 MB 980.1 kB/s eta 0:03:35\n", " -------------------- ----------------- 248.5/459.2 MB 978.5 kB/s eta 0:03:36\n", " -------------------- ----------------- 248.6/459.2 MB 974.3 kB/s eta 0:03:37\n", " -------------------- ----------------- 248.6/459.2 MB 974.3 kB/s eta 0:03:37\n", " -------------------- ----------------- 248.7/459.2 MB 971.4 kB/s eta 0:03:37\n", " -------------------- ----------------- 248.7/459.2 MB 971.4 kB/s eta 0:03:37\n", " -------------------- ----------------- 248.8/459.2 MB 967.1 kB/s eta 0:03:38\n", " -------------------- ----------------- 248.9/459.2 MB 967.0 kB/s eta 0:03:38\n", " -------------------- ----------------- 248.9/459.2 MB 967.1 kB/s eta 0:03:38\n", " -------------------- ----------------- 248.9/459.2 MB 964.3 kB/s eta 0:03:39\n", " -------------------- ----------------- 249.0/459.2 MB 961.4 kB/s eta 0:03:39\n", " -------------------- ----------------- 249.1/459.2 MB 959.9 kB/s eta 0:03:39\n", " -------------------- ----------------- 249.1/459.2 MB 957.1 kB/s eta 0:03:40\n", " -------------------- ----------------- 249.2/459.2 MB 955.7 kB/s eta 0:03:40\n", " -------------------- ----------------- 249.3/459.2 MB 952.9 kB/s eta 0:03:41\n", " -------------------- ----------------- 249.3/459.2 MB 951.6 kB/s eta 0:03:41\n", " -------------------- ----------------- 249.4/459.2 MB 948.9 kB/s eta 0:03:42\n", " -------------------- ----------------- 249.4/459.2 MB 955.7 kB/s eta 0:03:40\n", " -------------------- ----------------- 249.5/459.2 MB 957.1 kB/s eta 0:03:40\n", " -------------------- ----------------- 249.5/459.2 MB 955.8 kB/s eta 0:03:40\n", " -------------------- ----------------- 249.5/459.2 MB 955.8 kB/s eta 0:03:40\n", " -------------------- ----------------- 249.6/459.2 MB 958.6 kB/s eta 0:03:39\n", " -------------------- ----------------- 249.6/459.2 MB 958.6 kB/s eta 0:03:39\n", " -------------------- ----------------- 249.7/459.2 MB 962.8 kB/s eta 0:03:38\n", " -------------------- ----------------- 249.8/459.2 MB 962.8 kB/s eta 0:03:38\n", " -------------------- ----------------- 249.8/459.2 MB 967.1 kB/s eta 0:03:37\n", " -------------------- ----------------- 249.9/459.2 MB 971.3 kB/s eta 0:03:36\n", " -------------------- ----------------- 249.9/459.2 MB 972.8 kB/s eta 0:03:36\n", " -------------------- ----------------- 250.0/459.2 MB 975.7 kB/s eta 0:03:35\n", " -------------------- ----------------- 250.1/459.2 MB 977.1 kB/s eta 0:03:34\n", " -------------------- ----------------- 250.1/459.2 MB 983.0 kB/s eta 0:03:33\n", " -------------------- ----------------- 250.2/459.2 MB 984.6 kB/s eta 0:03:33\n", " -------------------- ----------------- 250.3/459.2 MB 986.0 kB/s eta 0:03:32\n", " -------------------- ----------------- 250.3/459.2 MB 984.6 kB/s eta 0:03:33\n", " -------------------- ----------------- 250.3/459.2 MB 978.6 kB/s eta 0:03:34\n", " -------------------- ----------------- 250.4/459.2 MB 983.1 kB/s eta 0:03:33\n", " -------------------- ----------------- 250.4/459.2 MB 983.0 kB/s eta 0:03:33\n", " -------------------- ----------------- 250.5/459.2 MB 984.6 kB/s eta 0:03:32\n", " -------------------- ----------------- 250.6/459.2 MB 986.0 kB/s eta 0:03:32\n", " -------------------- ----------------- 250.6/459.2 MB 981.6 kB/s eta 0:03:33\n", " -------------------- ----------------- 250.7/459.2 MB 986.0 kB/s eta 0:03:32\n", " -------------------- ----------------- 250.8/459.2 MB 986.0 kB/s eta 0:03:32\n", " -------------------- ----------------- 250.8/459.2 MB 987.4 kB/s eta 0:03:32\n", " -------------------- ----------------- 250.9/459.2 MB 987.4 kB/s eta 0:03:31\n", " -------------------- ----------------- 251.0/459.2 MB 989.1 kB/s eta 0:03:31\n", " -------------------- ----------------- 251.1/459.2 MB 989.1 kB/s eta 0:03:31\n", " -------------------- ----------------- 251.1/459.2 MB 990.4 kB/s eta 0:03:31\n", " -------------------- ----------------- 251.2/459.2 MB 990.5 kB/s eta 0:03:30\n", " -------------------- ----------------- 251.3/459.2 MB 992.0 kB/s eta 0:03:30\n", " -------------------- ----------------- 251.4/459.2 MB 991.9 kB/s eta 0:03:30\n", " -------------------- ----------------- 251.5/459.2 MB 992.0 kB/s eta 0:03:30\n", " -------------------- ----------------- 251.6/459.2 MB 991.9 kB/s eta 0:03:30\n", " -------------------- ----------------- 251.6/459.2 MB 991.9 kB/s eta 0:03:30\n", " -------------------- ----------------- 251.7/459.2 MB 991.9 kB/s eta 0:03:30\n", " -------------------- ----------------- 251.8/459.2 MB 995.0 kB/s eta 0:03:29\n", " -------------------- ----------------- 251.9/459.2 MB 994.9 kB/s eta 0:03:29\n", " -------------------- ----------------- 251.9/459.2 MB 996.5 kB/s eta 0:03:28\n", " -------------------- ----------------- 252.0/459.2 MB 994.9 kB/s eta 0:03:29\n", " -------------------- ----------------- 252.1/459.2 MB 995.0 kB/s eta 0:03:29\n", " -------------------- ----------------- 252.2/459.2 MB 995.0 kB/s eta 0:03:29\n", " -------------------- ----------------- 252.2/459.2 MB 995.0 kB/s eta 0:03:28\n", " -------------------- ----------------- 252.3/459.2 MB 993.5 kB/s eta 0:03:29\n", " -------------------- ----------------- 252.3/459.2 MB 991.9 kB/s eta 0:03:29\n", " -------------------- ----------------- 252.4/459.2 MB 989.0 kB/s eta 0:03:30\n", " -------------------- ----------------- 252.5/459.2 MB 987.5 kB/s eta 0:03:30\n", " -------------------- ----------------- 252.5/459.2 MB 989.0 kB/s eta 0:03:29\n", " -------------------- ----------------- 252.6/459.2 MB 992.0 kB/s eta 0:03:29\n", " -------------------- ----------------- 252.7/459.2 MB 989.0 kB/s eta 0:03:29\n", " -------------------- ----------------- 252.7/459.2 MB 987.4 kB/s eta 0:03:30\n", " -------------------- ----------------- 252.7/459.2 MB 987.4 kB/s eta 0:03:30\n", " -------------------- ----------------- 252.8/459.2 MB 981.6 kB/s eta 0:03:31\n", " -------------------- ----------------- 252.8/459.2 MB 978.6 kB/s eta 0:03:31\n", " -------------------- ----------------- 252.9/459.2 MB 975.7 kB/s eta 0:03:32\n", " -------------------- ----------------- 252.9/459.2 MB 972.8 kB/s eta 0:03:33\n", " -------------------- ----------------- 253.0/459.2 MB 972.8 kB/s eta 0:03:32\n", " -------------------- ----------------- 253.0/459.2 MB 969.9 kB/s eta 0:03:33\n", " -------------------- ----------------- 253.0/459.2 MB 968.5 kB/s eta 0:03:33\n", " -------------------- ----------------- 253.1/459.2 MB 965.7 kB/s eta 0:03:34\n", " -------------------- ----------------- 253.2/459.2 MB 967.1 kB/s eta 0:03:34\n", " -------------------- ----------------- 253.2/459.2 MB 962.8 kB/s eta 0:03:34\n", " -------------------- ----------------- 253.3/459.2 MB 962.8 kB/s eta 0:03:34\n", " -------------------- ----------------- 253.3/459.2 MB 960.0 kB/s eta 0:03:35\n", " -------------------- ----------------- 253.4/459.2 MB 972.8 kB/s eta 0:03:32\n", " -------------------- ----------------- 253.5/459.2 MB 974.3 kB/s eta 0:03:32\n", " -------------------- ----------------- 253.5/459.2 MB 970.0 kB/s eta 0:03:32\n", " -------------------- ----------------- 253.6/459.2 MB 967.1 kB/s eta 0:03:33\n", " -------------------- ----------------- 253.6/459.2 MB 967.1 kB/s eta 0:03:33\n", " -------------------- ----------------- 253.6/459.2 MB 971.4 kB/s eta 0:03:32\n", " -------------------- ----------------- 253.7/459.2 MB 972.8 kB/s eta 0:03:32\n", " --------------------- ---------------- 253.8/459.2 MB 971.4 kB/s eta 0:03:32\n", " --------------------- ---------------- 253.8/459.2 MB 974.3 kB/s eta 0:03:31\n", " --------------------- ---------------- 253.9/459.2 MB 980.1 kB/s eta 0:03:30\n", " --------------------- ---------------- 254.0/459.2 MB 980.0 kB/s eta 0:03:30\n", " --------------------- ---------------- 254.0/459.2 MB 981.6 kB/s eta 0:03:30\n", " --------------------- ---------------- 254.1/459.2 MB 984.5 kB/s eta 0:03:29\n", " --------------------- ---------------- 254.1/459.2 MB 986.0 kB/s eta 0:03:28\n", " --------------------- ---------------- 254.2/459.2 MB 984.5 kB/s eta 0:03:29\n", " --------------------- ---------------- 254.2/459.2 MB 984.6 kB/s eta 0:03:29\n", " --------------------- ---------------- 254.3/459.2 MB 984.5 kB/s eta 0:03:29\n", " --------------------- ---------------- 254.3/459.2 MB 987.4 kB/s eta 0:03:28\n", " --------------------- ---------------- 254.4/459.2 MB 986.0 kB/s eta 0:03:28\n", " --------------------- ---------------- 254.4/459.2 MB 984.5 kB/s eta 0:03:28\n", " --------------------- ---------------- 254.5/459.2 MB 983.0 kB/s eta 0:03:29\n", " --------------------- ---------------- 254.5/459.2 MB 986.0 kB/s eta 0:03:28\n", " --------------------- ---------------- 254.5/459.2 MB 986.0 kB/s eta 0:03:28\n", " --------------------- ---------------- 254.6/459.2 MB 978.6 kB/s eta 0:03:30\n", " --------------------- ---------------- 254.6/459.2 MB 978.6 kB/s eta 0:03:30\n", " --------------------- ---------------- 254.6/459.2 MB 972.9 kB/s eta 0:03:31\n", " --------------------- ---------------- 254.6/459.2 MB 972.8 kB/s eta 0:03:31\n", " --------------------- ---------------- 254.7/459.2 MB 967.1 kB/s eta 0:03:32\n", " --------------------- ---------------- 254.7/459.2 MB 967.1 kB/s eta 0:03:32\n", " --------------------- ---------------- 254.7/459.2 MB 958.6 kB/s eta 0:03:34\n", " --------------------- ---------------- 254.7/459.2 MB 955.8 kB/s eta 0:03:34\n", " --------------------- ---------------- 254.8/459.2 MB 953.0 kB/s eta 0:03:35\n", " --------------------- ---------------- 254.8/459.2 MB 950.2 kB/s eta 0:03:36\n", " --------------------- ---------------- 254.8/459.2 MB 946.1 kB/s eta 0:03:36\n", " --------------------- ---------------- 254.9/459.2 MB 943.4 kB/s eta 0:03:37\n", " --------------------- ---------------- 254.9/459.2 MB 940.7 kB/s eta 0:03:38\n", " --------------------- ---------------- 254.9/459.2 MB 936.6 kB/s eta 0:03:39\n", " --------------------- ---------------- 254.9/459.2 MB 935.2 kB/s eta 0:03:39\n", " --------------------- ---------------- 255.0/459.2 MB 931.2 kB/s eta 0:03:40\n", " --------------------- ---------------- 255.0/459.2 MB 930.0 kB/s eta 0:03:40\n", " --------------------- ---------------- 255.0/459.2 MB 926.0 kB/s eta 0:03:41\n", " --------------------- ---------------- 255.1/459.2 MB 926.1 kB/s eta 0:03:41\n", " --------------------- ---------------- 255.1/459.2 MB 922.1 kB/s eta 0:03:42\n", " --------------------- ---------------- 255.2/459.2 MB 920.9 kB/s eta 0:03:42\n", " --------------------- ---------------- 255.2/459.2 MB 917.0 kB/s eta 0:03:43\n", " --------------------- ---------------- 255.2/459.2 MB 917.0 kB/s eta 0:03:43\n", " --------------------- ---------------- 255.2/459.2 MB 910.6 kB/s eta 0:03:44\n", " --------------------- ---------------- 255.3/459.2 MB 909.3 kB/s eta 0:03:45\n", " --------------------- ---------------- 255.3/459.2 MB 906.7 kB/s eta 0:03:45\n", " --------------------- ---------------- 255.3/459.2 MB 904.3 kB/s eta 0:03:46\n", " --------------------- ---------------- 255.4/459.2 MB 900.6 kB/s eta 0:03:47\n", " --------------------- ---------------- 255.4/459.2 MB 899.3 kB/s eta 0:03:47\n", " --------------------- ---------------- 255.5/459.2 MB 898.1 kB/s eta 0:03:47\n", " --------------------- ---------------- 255.5/459.2 MB 895.6 kB/s eta 0:03:48\n", " --------------------- ---------------- 255.6/459.2 MB 895.6 kB/s eta 0:03:48\n", " --------------------- ---------------- 255.6/459.2 MB 893.2 kB/s eta 0:03:48\n", " --------------------- ---------------- 255.7/459.2 MB 890.8 kB/s eta 0:03:49\n", " --------------------- ---------------- 255.7/459.2 MB 889.5 kB/s eta 0:03:49\n", " --------------------- ---------------- 255.8/459.2 MB 888.4 kB/s eta 0:03:49\n", " --------------------- ---------------- 255.8/459.2 MB 884.7 kB/s eta 0:03:50\n", " --------------------- ---------------- 255.9/459.2 MB 885.9 kB/s eta 0:03:50\n", " --------------------- ---------------- 255.9/459.2 MB 885.9 kB/s eta 0:03:50\n", " --------------------- ---------------- 256.0/459.2 MB 884.7 kB/s eta 0:03:50\n", " --------------------- ---------------- 256.0/459.2 MB 881.1 kB/s eta 0:03:51\n", " --------------------- ---------------- 256.1/459.2 MB 878.8 kB/s eta 0:03:52\n", " --------------------- ---------------- 256.1/459.2 MB 880.0 kB/s eta 0:03:51\n", " --------------------- ---------------- 256.2/459.2 MB 876.4 kB/s eta 0:03:52\n", " --------------------- ---------------- 256.2/459.2 MB 874.1 kB/s eta 0:03:53\n", " --------------------- ---------------- 256.3/459.2 MB 874.0 kB/s eta 0:03:53\n", " --------------------- ---------------- 256.3/459.2 MB 871.8 kB/s eta 0:03:53\n", " --------------------- ---------------- 256.4/459.2 MB 870.6 kB/s eta 0:03:53\n", " --------------------- ---------------- 256.5/459.2 MB 868.3 kB/s eta 0:03:54\n", " --------------------- ---------------- 256.6/459.2 MB 868.3 kB/s eta 0:03:54\n", " --------------------- ---------------- 256.6/459.2 MB 866.0 kB/s eta 0:03:54\n", " --------------------- ---------------- 256.7/459.2 MB 864.8 kB/s eta 0:03:55\n", " --------------------- ---------------- 256.7/459.2 MB 862.5 kB/s eta 0:03:55\n", " --------------------- ---------------- 256.8/459.2 MB 861.5 kB/s eta 0:03:55\n", " --------------------- ---------------- 256.8/459.2 MB 858.1 kB/s eta 0:03:56\n", " --------------------- ---------------- 256.9/459.2 MB 858.1 kB/s eta 0:03:56\n", " --------------------- ---------------- 257.0/459.2 MB 858.1 kB/s eta 0:03:56\n", " --------------------- ---------------- 257.0/459.2 MB 855.8 kB/s eta 0:03:57\n", " --------------------- ---------------- 257.1/459.2 MB 855.8 kB/s eta 0:03:57\n", " --------------------- ---------------- 257.2/459.2 MB 853.5 kB/s eta 0:03:57\n", " --------------------- ---------------- 257.3/459.2 MB 852.5 kB/s eta 0:03:57\n", " --------------------- ---------------- 257.3/459.2 MB 851.3 kB/s eta 0:03:58\n", " --------------------- ---------------- 257.4/459.2 MB 850.3 kB/s eta 0:03:58\n", " --------------------- ---------------- 257.4/459.2 MB 845.9 kB/s eta 0:03:59\n", " --------------------- ---------------- 257.4/459.2 MB 843.7 kB/s eta 0:04:00\n", " --------------------- ---------------- 257.4/459.2 MB 843.7 kB/s eta 0:04:00\n", " --------------------- ---------------- 257.5/459.2 MB 839.3 kB/s eta 0:04:01\n", " --------------------- ---------------- 257.5/459.2 MB 839.3 kB/s eta 0:04:01\n", " --------------------- ---------------- 257.6/459.2 MB 839.4 kB/s eta 0:04:01\n", " --------------------- ---------------- 257.6/459.2 MB 838.3 kB/s eta 0:04:01\n", " --------------------- ---------------- 257.6/459.2 MB 832.9 kB/s eta 0:04:03\n", " --------------------- ---------------- 257.6/459.2 MB 833.0 kB/s eta 0:04:03\n", " --------------------- ---------------- 257.6/459.2 MB 831.9 kB/s eta 0:04:03\n", " --------------------- ---------------- 257.6/459.2 MB 828.7 kB/s eta 0:04:04\n", " --------------------- ---------------- 257.6/459.2 MB 824.6 kB/s eta 0:04:05\n", " --------------------- ---------------- 257.7/459.2 MB 821.5 kB/s eta 0:04:06\n", " --------------------- ---------------- 257.7/459.2 MB 817.4 kB/s eta 0:04:07\n", " --------------------- ---------------- 257.7/459.2 MB 814.3 kB/s eta 0:04:08\n", " --------------------- ---------------- 257.7/459.2 MB 813.2 kB/s eta 0:04:08\n", " --------------------- ---------------- 257.7/459.2 MB 810.3 kB/s eta 0:04:09\n", " --------------------- ---------------- 257.8/459.2 MB 809.3 kB/s eta 0:04:09\n", " --------------------- ---------------- 257.8/459.2 MB 807.3 kB/s eta 0:04:10\n", " --------------------- ---------------- 257.8/459.2 MB 804.3 kB/s eta 0:04:11\n", " --------------------- ---------------- 257.8/459.2 MB 801.3 kB/s eta 0:04:12\n", " --------------------- ---------------- 257.9/459.2 MB 799.4 kB/s eta 0:04:12\n", " --------------------- ---------------- 257.9/459.2 MB 799.4 kB/s eta 0:04:12\n", " --------------------- ---------------- 257.9/459.2 MB 796.5 kB/s eta 0:04:13\n", " --------------------- ---------------- 258.0/459.2 MB 795.5 kB/s eta 0:04:13\n", " --------------------- ---------------- 258.0/459.2 MB 793.6 kB/s eta 0:04:14\n", " --------------------- ---------------- 258.0/459.2 MB 791.7 kB/s eta 0:04:15\n", " --------------------- ---------------- 258.0/459.2 MB 790.7 kB/s eta 0:04:15\n", " --------------------- ---------------- 258.1/459.2 MB 789.8 kB/s eta 0:04:15\n", " --------------------- ---------------- 258.1/459.2 MB 796.5 kB/s eta 0:04:13\n", " --------------------- ---------------- 258.1/459.2 MB 792.6 kB/s eta 0:04:14\n", " --------------------- ---------------- 258.2/459.2 MB 790.7 kB/s eta 0:04:15\n", " --------------------- ---------------- 258.2/459.2 MB 788.8 kB/s eta 0:04:15\n", " --------------------- ---------------- 258.2/459.2 MB 787.9 kB/s eta 0:04:16\n", " --------------------- ---------------- 258.3/459.2 MB 789.8 kB/s eta 0:04:15\n", " --------------------- ---------------- 258.3/459.2 MB 788.8 kB/s eta 0:04:15\n", " --------------------- ---------------- 258.3/459.2 MB 786.9 kB/s eta 0:04:16\n", " --------------------- ---------------- 258.4/459.2 MB 786.9 kB/s eta 0:04:16\n", " --------------------- ---------------- 258.4/459.2 MB 785.9 kB/s eta 0:04:16\n", " --------------------- ---------------- 258.5/459.2 MB 785.0 kB/s eta 0:04:16\n", " --------------------- ---------------- 258.5/459.2 MB 784.1 kB/s eta 0:04:16\n", " --------------------- ---------------- 258.5/459.2 MB 785.9 kB/s eta 0:04:16\n", " --------------------- ---------------- 258.6/459.2 MB 785.0 kB/s eta 0:04:16\n", " --------------------- ---------------- 258.6/459.2 MB 783.2 kB/s eta 0:04:17\n", " --------------------- ---------------- 258.7/459.2 MB 783.2 kB/s eta 0:04:17\n", " --------------------- ---------------- 258.7/459.2 MB 784.1 kB/s eta 0:04:16\n", " --------------------- ---------------- 258.8/459.2 MB 784.1 kB/s eta 0:04:16\n", " --------------------- ---------------- 258.8/459.2 MB 783.2 kB/s eta 0:04:16\n", " --------------------- ---------------- 258.9/459.2 MB 785.0 kB/s eta 0:04:16\n", " --------------------- ---------------- 258.9/459.2 MB 784.1 kB/s eta 0:04:16\n", " --------------------- ---------------- 259.0/459.2 MB 784.1 kB/s eta 0:04:16\n", " --------------------- ---------------- 259.1/459.2 MB 785.0 kB/s eta 0:04:15\n", " --------------------- ---------------- 259.1/459.2 MB 785.0 kB/s eta 0:04:15\n", " --------------------- ---------------- 259.2/459.2 MB 785.0 kB/s eta 0:04:15\n", " --------------------- ---------------- 259.2/459.2 MB 785.0 kB/s eta 0:04:15\n", " --------------------- ---------------- 259.3/459.2 MB 785.0 kB/s eta 0:04:15\n", " --------------------- ---------------- 259.3/459.2 MB 785.9 kB/s eta 0:04:15\n", " --------------------- ---------------- 259.4/459.2 MB 784.1 kB/s eta 0:04:15\n", " --------------------- ---------------- 259.4/459.2 MB 785.0 kB/s eta 0:04:15\n", " --------------------- ---------------- 259.5/459.2 MB 785.0 kB/s eta 0:04:15\n", " --------------------- ---------------- 259.6/459.2 MB 786.9 kB/s eta 0:04:14\n", " --------------------- ---------------- 259.6/459.2 MB 786.0 kB/s eta 0:04:14\n", " --------------------- ---------------- 259.7/459.2 MB 790.7 kB/s eta 0:04:13\n", " --------------------- ---------------- 259.7/459.2 MB 787.8 kB/s eta 0:04:14\n", " --------------------- ---------------- 259.8/459.2 MB 790.7 kB/s eta 0:04:13\n", " --------------------- ---------------- 259.9/459.2 MB 788.8 kB/s eta 0:04:13\n", " --------------------- ---------------- 259.9/459.2 MB 791.7 kB/s eta 0:04:12\n", " --------------------- ---------------- 259.9/459.2 MB 791.7 kB/s eta 0:04:12\n", " --------------------- ---------------- 259.9/459.2 MB 791.7 kB/s eta 0:04:12\n", " --------------------- ---------------- 260.0/459.2 MB 783.1 kB/s eta 0:04:15\n", " --------------------- ---------------- 260.0/459.2 MB 782.2 kB/s eta 0:04:15\n", " --------------------- ---------------- 260.0/459.2 MB 780.3 kB/s eta 0:04:16\n", " --------------------- ---------------- 260.0/459.2 MB 777.6 kB/s eta 0:04:17\n", " --------------------- ---------------- 260.1/459.2 MB 775.7 kB/s eta 0:04:17\n", " --------------------- ---------------- 260.1/459.2 MB 776.6 kB/s eta 0:04:17\n", " --------------------- ---------------- 260.2/459.2 MB 773.9 kB/s eta 0:04:18\n", " --------------------- ---------------- 260.2/459.2 MB 771.1 kB/s eta 0:04:19\n", " --------------------- ---------------- 260.2/459.2 MB 769.3 kB/s eta 0:04:19\n", " --------------------- ---------------- 260.3/459.2 MB 768.5 kB/s eta 0:04:19\n", " --------------------- ---------------- 260.3/459.2 MB 765.8 kB/s eta 0:04:20\n", " --------------------- ---------------- 260.3/459.2 MB 764.8 kB/s eta 0:04:20\n", " --------------------- ---------------- 260.4/459.2 MB 763.9 kB/s eta 0:04:21\n", " --------------------- ---------------- 260.4/459.2 MB 763.9 kB/s eta 0:04:21\n", " --------------------- ---------------- 260.5/459.2 MB 761.3 kB/s eta 0:04:21\n", " --------------------- ---------------- 260.5/459.2 MB 762.2 kB/s eta 0:04:21\n", " --------------------- ---------------- 260.6/459.2 MB 763.9 kB/s eta 0:04:20\n", " --------------------- ---------------- 260.6/459.2 MB 763.9 kB/s eta 0:04:20\n", " --------------------- ---------------- 260.7/459.2 MB 761.3 kB/s eta 0:04:21\n", " --------------------- ---------------- 260.7/459.2 MB 760.4 kB/s eta 0:04:21\n", " --------------------- ---------------- 260.8/459.2 MB 762.2 kB/s eta 0:04:21\n", " --------------------- ---------------- 260.8/459.2 MB 761.3 kB/s eta 0:04:21\n", " --------------------- ---------------- 260.9/459.2 MB 761.3 kB/s eta 0:04:21\n", " --------------------- ---------------- 260.9/459.2 MB 759.5 kB/s eta 0:04:22\n", " --------------------- ---------------- 261.0/459.2 MB 759.5 kB/s eta 0:04:21\n", " --------------------- ---------------- 261.0/459.2 MB 756.9 kB/s eta 0:04:22\n", " --------------------- ---------------- 261.0/459.2 MB 754.3 kB/s eta 0:04:23\n", " --------------------- ---------------- 261.1/459.2 MB 755.1 kB/s eta 0:04:23\n", " --------------------- ---------------- 261.2/459.2 MB 755.1 kB/s eta 0:04:23\n", " --------------------- ---------------- 261.2/459.2 MB 754.2 kB/s eta 0:04:23\n", " --------------------- ---------------- 261.3/459.2 MB 752.5 kB/s eta 0:04:23\n", " --------------------- ---------------- 261.3/459.2 MB 751.7 kB/s eta 0:04:24\n", " --------------------- ---------------- 261.4/459.2 MB 750.8 kB/s eta 0:04:24\n", " --------------------- ---------------- 261.4/459.2 MB 749.9 kB/s eta 0:04:24\n", " --------------------- ---------------- 261.5/459.2 MB 749.0 kB/s eta 0:04:24\n", " --------------------- ---------------- 261.5/459.2 MB 746.5 kB/s eta 0:04:25\n", " --------------------- ---------------- 261.6/459.2 MB 747.4 kB/s eta 0:04:25\n", " --------------------- ---------------- 261.7/459.2 MB 745.7 kB/s eta 0:04:25\n", " --------------------- ---------------- 261.7/459.2 MB 747.4 kB/s eta 0:04:25\n", " --------------------- ---------------- 261.8/459.2 MB 744.0 kB/s eta 0:04:26\n", " --------------------- ---------------- 261.8/459.2 MB 744.8 kB/s eta 0:04:25\n", " --------------------- ---------------- 261.9/459.2 MB 743.1 kB/s eta 0:04:26\n", " --------------------- ---------------- 261.9/459.2 MB 743.1 kB/s eta 0:04:26\n", " --------------------- ---------------- 262.0/459.2 MB 741.5 kB/s eta 0:04:26\n", " --------------------- ---------------- 262.1/459.2 MB 739.8 kB/s eta 0:04:27\n", " --------------------- ---------------- 262.1/459.2 MB 737.3 kB/s eta 0:04:28\n", " --------------------- ---------------- 262.2/459.2 MB 737.3 kB/s eta 0:04:28\n", " --------------------- ---------------- 262.2/459.2 MB 737.3 kB/s eta 0:04:28\n", " --------------------- ---------------- 262.3/459.2 MB 735.6 kB/s eta 0:04:28\n", " --------------------- ---------------- 262.3/459.2 MB 735.6 kB/s eta 0:04:28\n", " --------------------- ---------------- 262.4/459.2 MB 735.6 kB/s eta 0:04:28\n", " --------------------- ---------------- 262.4/459.2 MB 734.0 kB/s eta 0:04:29\n", " --------------------- ---------------- 262.5/459.2 MB 732.3 kB/s eta 0:04:29\n", " --------------------- ---------------- 262.6/459.2 MB 731.5 kB/s eta 0:04:29\n", " --------------------- ---------------- 262.6/459.2 MB 732.3 kB/s eta 0:04:29\n", " --------------------- ---------------- 262.6/459.2 MB 729.1 kB/s eta 0:04:30\n", " --------------------- ---------------- 262.7/459.2 MB 729.9 kB/s eta 0:04:30\n", " --------------------- ---------------- 262.7/459.2 MB 729.1 kB/s eta 0:04:30\n", " --------------------- ---------------- 262.8/459.2 MB 729.1 kB/s eta 0:04:30\n", " --------------------- ---------------- 262.9/459.2 MB 734.0 kB/s eta 0:04:28\n", " --------------------- ---------------- 263.0/459.2 MB 731.5 kB/s eta 0:04:29\n", " --------------------- ---------------- 263.0/459.2 MB 727.5 kB/s eta 0:04:30\n", " --------------------- ---------------- 263.0/459.2 MB 726.6 kB/s eta 0:04:30\n", " --------------------- ---------------- 263.0/459.2 MB 726.6 kB/s eta 0:04:30\n", " --------------------- ---------------- 263.1/459.2 MB 727.4 kB/s eta 0:04:30\n", " --------------------- ---------------- 263.2/459.2 MB 728.3 kB/s eta 0:04:30\n", " --------------------- ---------------- 263.2/459.2 MB 726.6 kB/s eta 0:04:30\n", " --------------------- ---------------- 263.3/459.2 MB 725.9 kB/s eta 0:04:30\n", " --------------------- ---------------- 263.3/459.2 MB 725.9 kB/s eta 0:04:30\n", " --------------------- ---------------- 263.3/459.2 MB 724.2 kB/s eta 0:04:31\n", " --------------------- ---------------- 263.4/459.2 MB 723.4 kB/s eta 0:04:31\n", " --------------------- ---------------- 263.4/459.2 MB 721.1 kB/s eta 0:04:32\n", " --------------------- ---------------- 263.5/459.2 MB 721.0 kB/s eta 0:04:32\n", " --------------------- ---------------- 263.5/459.2 MB 720.3 kB/s eta 0:04:32\n", " --------------------- ---------------- 263.6/459.2 MB 718.6 kB/s eta 0:04:33\n", " --------------------- ---------------- 263.6/459.2 MB 717.1 kB/s eta 0:04:33\n", " --------------------- ---------------- 263.6/459.2 MB 714.0 kB/s eta 0:04:34\n", " --------------------- ---------------- 263.7/459.2 MB 714.0 kB/s eta 0:04:34\n", " --------------------- ---------------- 263.8/459.2 MB 713.2 kB/s eta 0:04:35\n", " --------------------- ---------------- 263.8/459.2 MB 712.4 kB/s eta 0:04:35\n", " --------------------- ---------------- 263.8/459.2 MB 713.9 kB/s eta 0:04:34\n", " --------------------- ---------------- 263.9/459.2 MB 712.4 kB/s eta 0:04:35\n", " --------------------- ---------------- 263.9/459.2 MB 712.4 kB/s eta 0:04:35\n", " --------------------- ---------------- 264.0/459.2 MB 712.4 kB/s eta 0:04:34\n", " --------------------- ---------------- 264.0/459.2 MB 711.6 kB/s eta 0:04:35\n", " --------------------- ---------------- 264.1/459.2 MB 710.8 kB/s eta 0:04:35\n", " --------------------- ---------------- 264.2/459.2 MB 711.6 kB/s eta 0:04:35\n", " --------------------- ---------------- 264.2/459.2 MB 710.1 kB/s eta 0:04:35\n", " --------------------- ---------------- 264.3/459.2 MB 710.8 kB/s eta 0:04:35\n", " --------------------- ---------------- 264.4/459.2 MB 710.8 kB/s eta 0:04:35\n", " --------------------- ---------------- 264.4/459.2 MB 711.6 kB/s eta 0:04:34\n", " --------------------- ---------------- 264.5/459.2 MB 711.6 kB/s eta 0:04:34\n", " --------------------- ---------------- 264.5/459.2 MB 710.8 kB/s eta 0:04:34\n", " --------------------- ---------------- 264.6/459.2 MB 712.4 kB/s eta 0:04:34\n", " --------------------- ---------------- 264.6/459.2 MB 713.9 kB/s eta 0:04:33\n", " --------------------- ---------------- 264.7/459.2 MB 714.0 kB/s eta 0:04:33\n", " --------------------- ---------------- 264.8/459.2 MB 717.9 kB/s eta 0:04:31\n", " --------------------- ---------------- 264.8/459.2 MB 721.8 kB/s eta 0:04:30\n", " --------------------- ---------------- 264.9/459.2 MB 731.5 kB/s eta 0:04:26\n", " --------------------- ---------------- 265.0/459.2 MB 734.8 kB/s eta 0:04:25\n", " --------------------- ---------------- 265.1/459.2 MB 740.6 kB/s eta 0:04:23\n", " --------------------- ---------------- 265.1/459.2 MB 746.5 kB/s eta 0:04:20\n", " --------------------- ---------------- 265.2/459.2 MB 750.8 kB/s eta 0:04:19\n", " --------------------- ---------------- 265.3/459.2 MB 755.1 kB/s eta 0:04:17\n", " --------------------- ---------------- 265.3/459.2 MB 760.4 kB/s eta 0:04:15\n", " --------------------- ---------------- 265.4/459.2 MB 765.7 kB/s eta 0:04:14\n", " --------------------- ---------------- 265.5/459.2 MB 766.6 kB/s eta 0:04:13\n", " --------------------- ---------------- 265.5/459.2 MB 769.4 kB/s eta 0:04:12\n", " --------------------- ---------------- 265.6/459.2 MB 772.9 kB/s eta 0:04:11\n", " --------------------- ---------------- 265.7/459.2 MB 775.7 kB/s eta 0:04:10\n", " --------------------- ---------------- 265.8/459.2 MB 779.4 kB/s eta 0:04:09\n", " ---------------------- --------------- 265.8/459.2 MB 779.4 kB/s eta 0:04:09\n", " ---------------------- --------------- 265.9/459.2 MB 780.4 kB/s eta 0:04:08\n", " ---------------------- --------------- 266.0/459.2 MB 782.2 kB/s eta 0:04:07\n", " ---------------------- --------------- 266.1/459.2 MB 785.9 kB/s eta 0:04:06\n", " ---------------------- --------------- 266.2/459.2 MB 788.8 kB/s eta 0:04:05\n", " ---------------------- --------------- 266.3/459.2 MB 792.6 kB/s eta 0:04:04\n", " ---------------------- --------------- 266.3/459.2 MB 794.5 kB/s eta 0:04:03\n", " ---------------------- --------------- 266.4/459.2 MB 796.5 kB/s eta 0:04:03\n", " ---------------------- --------------- 266.5/459.2 MB 800.4 kB/s eta 0:04:01\n", " ---------------------- --------------- 266.6/459.2 MB 803.3 kB/s eta 0:04:00\n", " ---------------------- --------------- 266.7/459.2 MB 805.3 kB/s eta 0:03:59\n", " ---------------------- --------------- 266.8/459.2 MB 806.3 kB/s eta 0:03:59\n", " ---------------------- --------------- 266.9/459.2 MB 809.3 kB/s eta 0:03:58\n", " ---------------------- --------------- 267.0/459.2 MB 812.3 kB/s eta 0:03:57\n", " ---------------------- --------------- 267.1/459.2 MB 815.4 kB/s eta 0:03:56\n", " ---------------------- --------------- 267.2/459.2 MB 817.3 kB/s eta 0:03:55\n", " ---------------------- --------------- 267.3/459.2 MB 817.3 kB/s eta 0:03:55\n", " ---------------------- --------------- 267.4/459.2 MB 819.4 kB/s eta 0:03:55\n", " ---------------------- --------------- 267.5/459.2 MB 820.4 kB/s eta 0:03:54\n", " ---------------------- --------------- 267.5/459.2 MB 821.5 kB/s eta 0:03:54\n", " ---------------------- --------------- 267.7/459.2 MB 828.7 kB/s eta 0:03:52\n", " ---------------------- --------------- 267.8/459.2 MB 839.3 kB/s eta 0:03:49\n", " ---------------------- --------------- 267.8/459.2 MB 852.5 kB/s eta 0:03:45\n", " ---------------------- --------------- 267.9/459.2 MB 870.6 kB/s eta 0:03:40\n", " ---------------------- --------------- 268.0/459.2 MB 889.5 kB/s eta 0:03:35\n", " ---------------------- --------------- 268.1/459.2 MB 905.6 kB/s eta 0:03:31\n", " ---------------------- --------------- 268.3/459.2 MB 918.2 kB/s eta 0:03:28\n", " ---------------------- --------------- 268.3/459.2 MB 924.7 kB/s eta 0:03:27\n", " ---------------------- --------------- 268.4/459.2 MB 936.6 kB/s eta 0:03:24\n", " ---------------------- --------------- 268.4/459.2 MB 934.0 kB/s eta 0:03:25\n", " ---------------------- --------------- 268.5/459.2 MB 935.3 kB/s eta 0:03:24\n", " ---------------------- --------------- 268.6/459.2 MB 943.4 kB/s eta 0:03:23\n", " ---------------------- --------------- 268.7/459.2 MB 957.1 kB/s eta 0:03:20\n", " ---------------------- --------------- 268.8/459.2 MB 967.1 kB/s eta 0:03:17\n", " ---------------------- --------------- 268.9/459.2 MB 975.7 kB/s eta 0:03:15\n", " ---------------------- --------------- 269.0/459.2 MB 978.6 kB/s eta 0:03:15\n", " ---------------------- --------------- 269.1/459.2 MB 984.5 kB/s eta 0:03:14\n", " ---------------------- --------------- 269.2/459.2 MB 989.0 kB/s eta 0:03:13\n", " ---------------------- --------------- 269.3/459.2 MB 993.5 kB/s eta 0:03:12\n", " ---------------------- --------------- 269.3/459.2 MB 993.5 kB/s eta 0:03:12\n", " ---------------------- --------------- 269.4/459.2 MB 998.0 kB/s eta 0:03:11\n", " ----------------------- ---------------- 269.5/459.2 MB 1.0 MB/s eta 0:03:10\n", " ----------------------- ---------------- 269.6/459.2 MB 1.0 MB/s eta 0:03:09\n", " ----------------------- ---------------- 269.7/459.2 MB 1.0 MB/s eta 0:03:08\n", " ----------------------- ---------------- 269.8/459.2 MB 1.0 MB/s eta 0:03:07\n", " ----------------------- ---------------- 269.8/459.2 MB 1.0 MB/s eta 0:03:06\n", " ----------------------- ---------------- 269.8/459.2 MB 1.0 MB/s eta 0:03:06\n", " ----------------------- ---------------- 270.0/459.2 MB 1.0 MB/s eta 0:03:05\n", " ----------------------- ---------------- 270.0/459.2 MB 1.0 MB/s eta 0:03:05\n", " ----------------------- ---------------- 270.1/459.2 MB 1.0 MB/s eta 0:03:05\n", " ----------------------- ---------------- 270.2/459.2 MB 1.0 MB/s eta 0:03:01\n", " ----------------------- ---------------- 270.3/459.2 MB 1.1 MB/s eta 0:02:59\n", " ----------------------- ---------------- 270.4/459.2 MB 1.1 MB/s eta 0:02:56\n", " ----------------------- ---------------- 270.5/459.2 MB 1.1 MB/s eta 0:02:53\n", " ----------------------- ---------------- 270.6/459.2 MB 1.1 MB/s eta 0:02:52\n", " ----------------------- ---------------- 270.7/459.2 MB 1.1 MB/s eta 0:02:50\n", " ----------------------- ---------------- 270.7/459.2 MB 1.1 MB/s eta 0:02:49\n", " ----------------------- ---------------- 270.9/459.2 MB 1.1 MB/s eta 0:02:46\n", " ----------------------- ---------------- 271.0/459.2 MB 1.1 MB/s eta 0:02:45\n", " ----------------------- ---------------- 271.0/459.2 MB 1.1 MB/s eta 0:02:45\n", " ----------------------- ---------------- 271.1/459.2 MB 1.2 MB/s eta 0:02:43\n", " ----------------------- ---------------- 271.1/459.2 MB 1.2 MB/s eta 0:02:43\n", " ----------------------- ---------------- 271.3/459.2 MB 1.2 MB/s eta 0:02:41\n", " ----------------------- ---------------- 271.3/459.2 MB 1.2 MB/s eta 0:02:41\n", " ----------------------- ---------------- 271.4/459.2 MB 1.2 MB/s eta 0:02:40\n", " ----------------------- ---------------- 271.5/459.2 MB 1.2 MB/s eta 0:02:39\n", " ----------------------- ---------------- 271.7/459.2 MB 1.2 MB/s eta 0:02:36\n", " ----------------------- ---------------- 271.8/459.2 MB 1.2 MB/s eta 0:02:35\n", " ----------------------- ---------------- 271.9/459.2 MB 1.2 MB/s eta 0:02:33\n", " ----------------------- ---------------- 272.0/459.2 MB 1.2 MB/s eta 0:02:32\n", " ----------------------- ---------------- 272.2/459.2 MB 1.2 MB/s eta 0:02:30\n", " ----------------------- ---------------- 272.3/459.2 MB 1.3 MB/s eta 0:02:29\n", " ----------------------- ---------------- 272.4/459.2 MB 1.3 MB/s eta 0:02:28\n", " ----------------------- ---------------- 272.5/459.2 MB 1.3 MB/s eta 0:02:26\n", " ----------------------- ---------------- 272.7/459.2 MB 1.3 MB/s eta 0:02:25\n", " ----------------------- ---------------- 272.8/459.2 MB 1.3 MB/s eta 0:02:21\n", " ----------------------- ---------------- 273.0/459.2 MB 1.3 MB/s eta 0:02:19\n", " ----------------------- ---------------- 273.1/459.2 MB 1.4 MB/s eta 0:02:18\n", " ----------------------- ---------------- 273.2/459.2 MB 1.4 MB/s eta 0:02:16\n", " ----------------------- ---------------- 273.3/459.2 MB 1.4 MB/s eta 0:02:14\n", " ----------------------- ---------------- 273.4/459.2 MB 1.4 MB/s eta 0:02:13\n", " ----------------------- ---------------- 273.6/459.2 MB 1.4 MB/s eta 0:02:09\n", " ----------------------- ---------------- 273.8/459.2 MB 1.5 MB/s eta 0:02:05\n", " ----------------------- ---------------- 273.9/459.2 MB 1.5 MB/s eta 0:02:03\n", " ----------------------- ---------------- 274.0/459.2 MB 1.5 MB/s eta 0:02:01\n", " ----------------------- ---------------- 274.1/459.2 MB 1.6 MB/s eta 0:01:59\n", " ----------------------- ---------------- 274.1/459.2 MB 1.6 MB/s eta 0:01:59\n", " ----------------------- ---------------- 274.1/459.2 MB 1.6 MB/s eta 0:01:59\n", " ----------------------- ---------------- 274.3/459.2 MB 1.6 MB/s eta 0:01:59\n", " ----------------------- ---------------- 274.3/459.2 MB 1.6 MB/s eta 0:02:00\n", " ----------------------- ---------------- 274.4/459.2 MB 1.6 MB/s eta 0:02:00\n", " ----------------------- ---------------- 274.4/459.2 MB 1.5 MB/s eta 0:02:00\n", " ----------------------- ---------------- 274.5/459.2 MB 1.5 MB/s eta 0:02:00\n", " ----------------------- ---------------- 274.5/459.2 MB 1.5 MB/s eta 0:02:00\n", " ----------------------- ---------------- 274.6/459.2 MB 1.5 MB/s eta 0:02:00\n", " ----------------------- ---------------- 274.6/459.2 MB 1.5 MB/s eta 0:02:01\n", " ----------------------- ---------------- 274.7/459.2 MB 1.5 MB/s eta 0:02:01\n", " ----------------------- ---------------- 274.8/459.2 MB 1.5 MB/s eta 0:02:00\n", " ----------------------- ---------------- 274.8/459.2 MB 1.5 MB/s eta 0:02:00\n", " ----------------------- ---------------- 274.9/459.2 MB 1.5 MB/s eta 0:02:00\n", " ----------------------- ---------------- 274.9/459.2 MB 1.5 MB/s eta 0:02:01\n", " ----------------------- ---------------- 275.0/459.2 MB 1.5 MB/s eta 0:02:01\n", " ----------------------- ---------------- 275.1/459.2 MB 1.5 MB/s eta 0:02:01\n", " ----------------------- ---------------- 275.1/459.2 MB 1.5 MB/s eta 0:02:01\n", " ----------------------- ---------------- 275.2/459.2 MB 1.5 MB/s eta 0:02:01\n", " ----------------------- ---------------- 275.2/459.2 MB 1.5 MB/s eta 0:02:00\n", " ----------------------- ---------------- 275.3/459.2 MB 1.5 MB/s eta 0:02:01\n", " ----------------------- ---------------- 275.3/459.2 MB 1.5 MB/s eta 0:02:01\n", " ----------------------- ---------------- 275.4/459.2 MB 1.5 MB/s eta 0:02:01\n", " ----------------------- ---------------- 275.4/459.2 MB 1.5 MB/s eta 0:02:01\n", " ------------------------ --------------- 275.5/459.2 MB 1.5 MB/s eta 0:02:01\n", " ------------------------ --------------- 275.6/459.2 MB 1.5 MB/s eta 0:02:01\n", " ------------------------ --------------- 275.6/459.2 MB 1.5 MB/s eta 0:02:01\n", " ------------------------ --------------- 275.7/459.2 MB 1.5 MB/s eta 0:02:01\n", " ------------------------ --------------- 275.7/459.2 MB 1.5 MB/s eta 0:02:01\n", " ------------------------ --------------- 275.8/459.2 MB 1.5 MB/s eta 0:02:01\n", " ------------------------ --------------- 275.9/459.2 MB 1.5 MB/s eta 0:02:01\n", " ------------------------ --------------- 275.9/459.2 MB 1.5 MB/s eta 0:02:01\n", " ------------------------ --------------- 276.0/459.2 MB 1.5 MB/s eta 0:02:02\n", " ------------------------ --------------- 276.0/459.2 MB 1.5 MB/s eta 0:02:02\n", " ------------------------ --------------- 276.0/459.2 MB 1.5 MB/s eta 0:02:02\n", " ------------------------ --------------- 276.1/459.2 MB 1.5 MB/s eta 0:02:02\n", " ------------------------ --------------- 276.1/459.2 MB 1.5 MB/s eta 0:02:02\n", " ------------------------ --------------- 276.2/459.2 MB 1.5 MB/s eta 0:02:02\n", " ------------------------ --------------- 276.2/459.2 MB 1.5 MB/s eta 0:02:03\n", " ------------------------ --------------- 276.2/459.2 MB 1.5 MB/s eta 0:02:03\n", " ------------------------ --------------- 276.3/459.2 MB 1.5 MB/s eta 0:02:03\n", " ------------------------ --------------- 276.3/459.2 MB 1.5 MB/s eta 0:02:03\n", " ------------------------ --------------- 276.3/459.2 MB 1.5 MB/s eta 0:02:04\n", " ------------------------ --------------- 276.4/459.2 MB 1.5 MB/s eta 0:02:04\n", " ------------------------ --------------- 276.4/459.2 MB 1.5 MB/s eta 0:02:04\n", " ------------------------ --------------- 276.5/459.2 MB 1.5 MB/s eta 0:02:04\n", " ------------------------ --------------- 276.5/459.2 MB 1.5 MB/s eta 0:02:05\n", " ------------------------ --------------- 276.6/459.2 MB 1.5 MB/s eta 0:02:05\n", " ------------------------ --------------- 276.6/459.2 MB 1.5 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.7/459.2 MB 1.5 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.7/459.2 MB 1.5 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.8/459.2 MB 1.4 MB/s eta 0:02:06\n", " ------------------------ --------------- 276.9/459.2 MB 1.1 MB/s eta 0:02:50\n", " ------------------------ --------------- 276.9/459.2 MB 1.1 MB/s eta 0:02:50\n", " ------------------------ --------------- 277.0/459.2 MB 1.1 MB/s eta 0:02:50\n", " ------------------------ --------------- 277.0/459.2 MB 1.1 MB/s eta 0:02:50\n", " ------------------------ --------------- 277.1/459.2 MB 1.1 MB/s eta 0:02:50\n", " ------------------------ --------------- 277.1/459.2 MB 1.1 MB/s eta 0:02:50\n", " ------------------------ --------------- 277.2/459.2 MB 1.1 MB/s eta 0:02:51\n", " ------------------------ --------------- 277.2/459.2 MB 1.1 MB/s eta 0:02:51\n", " ------------------------ --------------- 277.3/459.2 MB 1.1 MB/s eta 0:02:51\n", " ------------------------ --------------- 277.4/459.2 MB 1.1 MB/s eta 0:02:52\n", " ------------------------ --------------- 277.4/459.2 MB 1.1 MB/s eta 0:02:52\n", " ------------------------ --------------- 277.5/459.2 MB 1.1 MB/s eta 0:02:52\n", " ------------------------ --------------- 277.5/459.2 MB 1.1 MB/s eta 0:02:52\n", " ------------------------ --------------- 277.5/459.2 MB 1.1 MB/s eta 0:02:52\n", " ------------------------ --------------- 277.6/459.2 MB 1.1 MB/s eta 0:02:53\n", " ------------------------ --------------- 277.6/459.2 MB 1.1 MB/s eta 0:02:53\n", " ------------------------ --------------- 277.7/459.2 MB 1.0 MB/s eta 0:02:54\n", " ------------------------ --------------- 277.7/459.2 MB 1.0 MB/s eta 0:02:54\n", " ------------------------ --------------- 277.8/459.2 MB 1.0 MB/s eta 0:02:55\n", " ------------------------ --------------- 277.8/459.2 MB 1.0 MB/s eta 0:02:55\n", " ------------------------ --------------- 277.9/459.2 MB 1.0 MB/s eta 0:02:55\n", " ------------------------ --------------- 277.9/459.2 MB 1.0 MB/s eta 0:02:55\n", " ------------------------ --------------- 278.0/459.2 MB 1.0 MB/s eta 0:02:56\n", " ------------------------ --------------- 278.1/459.2 MB 1.0 MB/s eta 0:02:56\n", " ------------------------ --------------- 278.1/459.2 MB 1.0 MB/s eta 0:02:57\n", " ------------------------ --------------- 278.2/459.2 MB 1.0 MB/s eta 0:02:57\n", " ------------------------ --------------- 278.3/459.2 MB 1.0 MB/s eta 0:02:57\n", " ------------------------ --------------- 278.3/459.2 MB 1.0 MB/s eta 0:02:58\n", " ------------------------ --------------- 278.3/459.2 MB 1.0 MB/s eta 0:02:58\n", " ------------------------ --------------- 278.4/459.2 MB 1.0 MB/s eta 0:02:58\n", " ------------------------ --------------- 278.5/459.2 MB 1.0 MB/s eta 0:02:58\n", " ------------------------ --------------- 278.5/459.2 MB 1.0 MB/s eta 0:02:58\n", " ------------------------ --------------- 278.5/459.2 MB 1.0 MB/s eta 0:02:59\n", " ------------------------ --------------- 278.6/459.2 MB 1.0 MB/s eta 0:02:59\n", " ------------------------ --------------- 278.7/459.2 MB 1.0 MB/s eta 0:02:58\n", " ------------------------ --------------- 278.7/459.2 MB 1.0 MB/s eta 0:02:58\n", " ------------------------ --------------- 278.8/459.2 MB 1.0 MB/s eta 0:02:59\n", " ------------------------ --------------- 278.8/459.2 MB 1.0 MB/s eta 0:02:59\n", " ------------------------ --------------- 278.9/459.2 MB 1.0 MB/s eta 0:02:59\n", " ------------------------ --------------- 279.0/459.2 MB 1.0 MB/s eta 0:03:00\n", " ------------------------ --------------- 279.0/459.2 MB 1.0 MB/s eta 0:03:00\n", " ------------------------ --------------- 279.1/459.2 MB 1.0 MB/s eta 0:03:00\n", " ----------------------- -------------- 279.2/459.2 MB 998.0 kB/s eta 0:03:01\n", " ----------------------- -------------- 279.3/459.2 MB 998.0 kB/s eta 0:03:01\n", " ----------------------- -------------- 279.3/459.2 MB 999.6 kB/s eta 0:03:00\n", " ----------------------- -------------- 279.4/459.2 MB 995.0 kB/s eta 0:03:01\n", " ----------------------- -------------- 279.5/459.2 MB 995.0 kB/s eta 0:03:01\n", " ----------------------- -------------- 279.6/459.2 MB 996.6 kB/s eta 0:03:01\n", " ----------------------- -------------- 279.6/459.2 MB 993.5 kB/s eta 0:03:01\n", " ----------------------- -------------- 279.7/459.2 MB 994.9 kB/s eta 0:03:01\n", " ----------------------- -------------- 279.8/459.2 MB 992.0 kB/s eta 0:03:01\n", " ----------------------- -------------- 279.9/459.2 MB 990.4 kB/s eta 0:03:02\n", " ----------------------- -------------- 279.9/459.2 MB 989.1 kB/s eta 0:03:02\n", " ----------------------- -------------- 280.0/459.2 MB 987.5 kB/s eta 0:03:02\n", " ----------------------- -------------- 280.1/459.2 MB 993.5 kB/s eta 0:03:01\n", " ----------------------- -------------- 280.2/459.2 MB 986.0 kB/s eta 0:03:02\n", " ----------------------- -------------- 280.3/459.2 MB 989.1 kB/s eta 0:03:01\n", " ----------------------- -------------- 280.4/459.2 MB 989.1 kB/s eta 0:03:01\n", " ----------------------- -------------- 280.5/459.2 MB 987.4 kB/s eta 0:03:02\n", " ----------------------- -------------- 280.5/459.2 MB 986.0 kB/s eta 0:03:02\n", " ----------------------- -------------- 280.6/459.2 MB 983.0 kB/s eta 0:03:02\n", " ----------------------- -------------- 280.6/459.2 MB 981.6 kB/s eta 0:03:02\n", " ----------------------- -------------- 280.7/459.2 MB 981.6 kB/s eta 0:03:02\n", " ----------------------- -------------- 280.8/459.2 MB 978.6 kB/s eta 0:03:03\n", " ----------------------- -------------- 280.9/459.2 MB 978.6 kB/s eta 0:03:03\n", " ----------------------- -------------- 280.9/459.2 MB 977.1 kB/s eta 0:03:03\n", " ----------------------- -------------- 281.0/459.2 MB 974.3 kB/s eta 0:03:03\n", " ----------------------- -------------- 281.1/459.2 MB 971.4 kB/s eta 0:03:04\n", " ----------------------- -------------- 281.2/459.2 MB 972.8 kB/s eta 0:03:03\n", " ----------------------- -------------- 281.3/459.2 MB 972.9 kB/s eta 0:03:03\n", " ----------------------- -------------- 281.4/459.2 MB 974.3 kB/s eta 0:03:03\n", " ----------------------- -------------- 281.5/459.2 MB 977.1 kB/s eta 0:03:02\n", " ----------------------- -------------- 281.6/459.2 MB 974.3 kB/s eta 0:03:03\n", " ----------------------- -------------- 281.7/459.2 MB 974.3 kB/s eta 0:03:03\n", " ----------------------- -------------- 281.8/459.2 MB 972.8 kB/s eta 0:03:03\n", " ----------------------- -------------- 281.9/459.2 MB 969.9 kB/s eta 0:03:03\n", " ----------------------- -------------- 282.0/459.2 MB 969.9 kB/s eta 0:03:03\n", " ----------------------- -------------- 282.1/459.2 MB 968.5 kB/s eta 0:03:03\n", " ----------------------- -------------- 282.2/459.2 MB 967.1 kB/s eta 0:03:03\n", " ----------------------- -------------- 282.3/459.2 MB 965.6 kB/s eta 0:03:04\n", " ----------------------- -------------- 282.5/459.2 MB 962.8 kB/s eta 0:03:04\n", " ----------------------- -------------- 282.6/459.2 MB 964.3 kB/s eta 0:03:04\n", " ----------------------- -------------- 282.7/459.2 MB 961.4 kB/s eta 0:03:04\n", " ----------------------- -------------- 282.8/459.2 MB 961.4 kB/s eta 0:03:04\n", " ----------------------- -------------- 282.9/459.2 MB 961.4 kB/s eta 0:03:04\n", " ----------------------- -------------- 283.0/459.2 MB 960.0 kB/s eta 0:03:04\n", " ----------------------- -------------- 283.1/459.2 MB 958.6 kB/s eta 0:03:04\n", " ----------------------- -------------- 283.2/459.2 MB 957.1 kB/s eta 0:03:04\n", " ----------------------- -------------- 283.3/459.2 MB 955.8 kB/s eta 0:03:05\n", " ----------------------- -------------- 283.4/459.2 MB 957.2 kB/s eta 0:03:04\n", " ----------------------- -------------- 283.5/459.2 MB 957.2 kB/s eta 0:03:04\n", " ----------------------- -------------- 283.7/459.2 MB 955.8 kB/s eta 0:03:04\n", " ----------------------- -------------- 283.8/459.2 MB 954.4 kB/s eta 0:03:04\n", " ----------------------- -------------- 284.0/459.2 MB 951.6 kB/s eta 0:03:05\n", " ----------------------- -------------- 284.1/459.2 MB 951.6 kB/s eta 0:03:04\n", " ----------------------- -------------- 284.2/459.2 MB 950.2 kB/s eta 0:03:05\n", " ----------------------- -------------- 284.4/459.2 MB 950.3 kB/s eta 0:03:04\n", " ----------------------- -------------- 284.5/459.2 MB 961.4 kB/s eta 0:03:02\n", " ----------------------- -------------- 284.6/459.2 MB 970.0 kB/s eta 0:03:00\n", " ----------------------- -------------- 284.8/459.2 MB 977.1 kB/s eta 0:02:59\n", " ----------------------- -------------- 284.9/459.2 MB 987.5 kB/s eta 0:02:57\n", " ----------------------- -------------- 285.0/459.2 MB 993.5 kB/s eta 0:02:56\n", " ------------------------ --------------- 285.2/459.2 MB 1.0 MB/s eta 0:02:54\n", " ------------------------ --------------- 285.3/459.2 MB 1.0 MB/s eta 0:02:53\n", " ------------------------ --------------- 285.4/459.2 MB 1.0 MB/s eta 0:02:51\n", " ------------------------ --------------- 285.6/459.2 MB 1.0 MB/s eta 0:02:50\n", " ------------------------ --------------- 285.7/459.2 MB 1.0 MB/s eta 0:02:49\n", " ------------------------ --------------- 285.9/459.2 MB 1.0 MB/s eta 0:02:48\n", " ------------------------ --------------- 286.0/459.2 MB 1.0 MB/s eta 0:02:46\n", " ------------------------ --------------- 286.1/459.2 MB 1.1 MB/s eta 0:02:44\n", " ------------------------ --------------- 286.3/459.2 MB 1.1 MB/s eta 0:02:43\n", " ------------------------ --------------- 286.4/459.2 MB 1.1 MB/s eta 0:02:41\n", " ------------------------ --------------- 286.5/459.2 MB 1.1 MB/s eta 0:02:39\n", " ------------------------ --------------- 286.7/459.2 MB 1.1 MB/s eta 0:02:37\n", " ------------------------ --------------- 286.8/459.2 MB 1.1 MB/s eta 0:02:36\n", " ------------------------- -------------- 287.0/459.2 MB 1.1 MB/s eta 0:02:34\n", " ------------------------- -------------- 287.2/459.2 MB 1.5 MB/s eta 0:01:52\n", " ------------------------- -------------- 287.3/459.2 MB 1.6 MB/s eta 0:01:50\n", " ------------------------- -------------- 287.4/459.2 MB 1.6 MB/s eta 0:01:50\n", " ------------------------- -------------- 287.6/459.2 MB 1.6 MB/s eta 0:01:49\n", " ------------------------- -------------- 287.7/459.2 MB 1.6 MB/s eta 0:01:47\n", " ------------------------- -------------- 287.9/459.2 MB 1.6 MB/s eta 0:01:45\n", " ------------------------- -------------- 288.0/459.2 MB 1.7 MB/s eta 0:01:44\n", " ------------------------- -------------- 288.2/459.2 MB 1.7 MB/s eta 0:01:42\n", " ------------------------- -------------- 288.3/459.2 MB 1.7 MB/s eta 0:01:40\n", " ------------------------- -------------- 288.5/459.2 MB 1.7 MB/s eta 0:01:39\n", " ------------------------- -------------- 288.6/459.2 MB 1.8 MB/s eta 0:01:37\n", " ------------------------- -------------- 288.8/459.2 MB 1.8 MB/s eta 0:01:36\n", " ------------------------- -------------- 288.9/459.2 MB 1.8 MB/s eta 0:01:34\n", " ------------------------- -------------- 289.0/459.2 MB 1.8 MB/s eta 0:01:33\n", " ------------------------- -------------- 289.1/459.2 MB 1.8 MB/s eta 0:01:32\n", " ------------------------- -------------- 289.3/459.2 MB 1.9 MB/s eta 0:01:31\n", " ------------------------- -------------- 289.5/459.2 MB 1.9 MB/s eta 0:01:29\n", " ------------------------- -------------- 289.6/459.2 MB 1.9 MB/s eta 0:01:29\n", " ------------------------- -------------- 289.7/459.2 MB 1.9 MB/s eta 0:01:28\n", " ------------------------- -------------- 289.9/459.2 MB 2.0 MB/s eta 0:01:27\n", " ------------------------- -------------- 290.0/459.2 MB 2.0 MB/s eta 0:01:26\n", " ------------------------- -------------- 290.1/459.2 MB 2.0 MB/s eta 0:01:25\n", " ------------------------- -------------- 290.3/459.2 MB 2.0 MB/s eta 0:01:25\n", " ------------------------- -------------- 290.4/459.2 MB 2.0 MB/s eta 0:01:24\n", " ------------------------- -------------- 290.5/459.2 MB 2.0 MB/s eta 0:01:23\n", " ------------------------- -------------- 290.6/459.2 MB 2.1 MB/s eta 0:01:23\n", " ------------------------- -------------- 290.7/459.2 MB 2.1 MB/s eta 0:01:22\n", " ------------------------- -------------- 290.8/459.2 MB 2.1 MB/s eta 0:01:21\n", " ------------------------- -------------- 290.9/459.2 MB 2.1 MB/s eta 0:01:20\n", " ------------------------- -------------- 291.1/459.2 MB 2.1 MB/s eta 0:01:20\n", " ------------------------- -------------- 291.2/459.2 MB 2.1 MB/s eta 0:01:20\n", " ------------------------- -------------- 291.3/459.2 MB 2.2 MB/s eta 0:01:18\n", " ------------------------- -------------- 291.4/459.2 MB 2.2 MB/s eta 0:01:18\n", " ------------------------- -------------- 291.4/459.2 MB 2.2 MB/s eta 0:01:18\n", " ------------------------- -------------- 291.6/459.2 MB 2.2 MB/s eta 0:01:18\n", " ------------------------- -------------- 291.7/459.2 MB 2.2 MB/s eta 0:01:17\n", " ------------------------- -------------- 291.8/459.2 MB 2.2 MB/s eta 0:01:17\n", " ------------------------- -------------- 291.9/459.2 MB 2.2 MB/s eta 0:01:17\n", " ------------------------- -------------- 292.0/459.2 MB 2.2 MB/s eta 0:01:16\n", " ------------------------- -------------- 292.2/459.2 MB 2.2 MB/s eta 0:01:16\n", " ------------------------- -------------- 292.3/459.2 MB 2.2 MB/s eta 0:01:15\n", " ------------------------- -------------- 292.4/459.2 MB 2.2 MB/s eta 0:01:15\n", " ------------------------- -------------- 292.5/459.2 MB 2.2 MB/s eta 0:01:15\n", " ------------------------- -------------- 292.6/459.2 MB 2.2 MB/s eta 0:01:15\n", " ------------------------- -------------- 292.7/459.2 MB 2.3 MB/s eta 0:01:14\n", " ------------------------- -------------- 292.8/459.2 MB 2.3 MB/s eta 0:01:14\n", " ------------------------- -------------- 292.9/459.2 MB 2.3 MB/s eta 0:01:14\n", " ------------------------- -------------- 293.1/459.2 MB 2.3 MB/s eta 0:01:14\n", " ------------------------- -------------- 293.2/459.2 MB 2.3 MB/s eta 0:01:14\n", " ------------------------- -------------- 293.3/459.2 MB 2.3 MB/s eta 0:01:13\n", " ------------------------- -------------- 293.4/459.2 MB 2.3 MB/s eta 0:01:13\n", " ------------------------- -------------- 293.6/459.2 MB 2.3 MB/s eta 0:01:13\n", " ------------------------- -------------- 293.7/459.2 MB 2.3 MB/s eta 0:01:13\n", " ------------------------- -------------- 293.8/459.2 MB 2.3 MB/s eta 0:01:12\n", " ------------------------- -------------- 294.0/459.2 MB 2.3 MB/s eta 0:01:12\n", " ------------------------- -------------- 294.1/459.2 MB 2.3 MB/s eta 0:01:12\n", " ------------------------- -------------- 294.3/459.2 MB 2.3 MB/s eta 0:01:12\n", " ------------------------- -------------- 294.4/459.2 MB 2.3 MB/s eta 0:01:11\n", " ------------------------- -------------- 294.6/459.2 MB 2.3 MB/s eta 0:01:11\n", " ------------------------- -------------- 294.7/459.2 MB 2.3 MB/s eta 0:01:11\n", " ------------------------- -------------- 294.9/459.2 MB 2.4 MB/s eta 0:01:10\n", " ------------------------- -------------- 295.0/459.2 MB 2.4 MB/s eta 0:01:10\n", " ------------------------- -------------- 295.2/459.2 MB 2.4 MB/s eta 0:01:10\n", " ------------------------- -------------- 295.4/459.2 MB 2.4 MB/s eta 0:01:10\n", " ------------------------- -------------- 295.5/459.2 MB 2.4 MB/s eta 0:01:10\n", " ------------------------- -------------- 295.7/459.2 MB 2.4 MB/s eta 0:01:09\n", " ------------------------- -------------- 295.8/459.2 MB 2.4 MB/s eta 0:01:09\n", " ------------------------- -------------- 296.0/459.2 MB 2.4 MB/s eta 0:01:09\n", " ------------------------- -------------- 296.1/459.2 MB 2.4 MB/s eta 0:01:09\n", " ------------------------- -------------- 296.3/459.2 MB 2.4 MB/s eta 0:01:09\n", " ------------------------- -------------- 296.4/459.2 MB 2.4 MB/s eta 0:01:09\n", " ------------------------- -------------- 296.6/459.2 MB 2.4 MB/s eta 0:01:08\n", " ------------------------- -------------- 296.7/459.2 MB 2.4 MB/s eta 0:01:08\n", " ------------------------- -------------- 296.9/459.2 MB 2.4 MB/s eta 0:01:08\n", " ------------------------- -------------- 296.9/459.2 MB 2.4 MB/s eta 0:01:08\n", " ------------------------- -------------- 297.1/459.2 MB 2.4 MB/s eta 0:01:09\n", " ------------------------- -------------- 297.2/459.2 MB 2.4 MB/s eta 0:01:09\n", " ------------------------- -------------- 297.3/459.2 MB 2.4 MB/s eta 0:01:09\n", " ------------------------- -------------- 297.4/459.2 MB 2.4 MB/s eta 0:01:09\n", " ------------------------- -------------- 297.5/459.2 MB 2.3 MB/s eta 0:01:09\n", " ------------------------- -------------- 297.6/459.2 MB 2.3 MB/s eta 0:01:10\n", " ------------------------- -------------- 297.8/459.2 MB 2.3 MB/s eta 0:01:10\n", " ------------------------- -------------- 297.8/459.2 MB 2.3 MB/s eta 0:01:10\n", " ------------------------- -------------- 297.9/459.2 MB 2.3 MB/s eta 0:01:10\n", " ------------------------- -------------- 298.1/459.2 MB 2.3 MB/s eta 0:01:10\n", " ------------------------- -------------- 298.1/459.2 MB 2.3 MB/s eta 0:01:11\n", " ------------------------- -------------- 298.3/459.2 MB 2.3 MB/s eta 0:01:11\n", " ------------------------- -------------- 298.4/459.2 MB 2.3 MB/s eta 0:01:11\n", " -------------------------- ------------- 298.5/459.2 MB 2.3 MB/s eta 0:01:11\n", " -------------------------- ------------- 298.6/459.2 MB 2.2 MB/s eta 0:01:12\n", " -------------------------- ------------- 298.7/459.2 MB 2.2 MB/s eta 0:01:12\n", " -------------------------- ------------- 298.9/459.2 MB 2.3 MB/s eta 0:01:12\n", " -------------------------- ------------- 299.0/459.2 MB 2.2 MB/s eta 0:01:12\n", " -------------------------- ------------- 299.1/459.2 MB 2.2 MB/s eta 0:01:12\n", " -------------------------- ------------- 299.2/459.2 MB 2.2 MB/s eta 0:01:12\n", " -------------------------- ------------- 299.4/459.2 MB 2.2 MB/s eta 0:01:12\n", " -------------------------- ------------- 299.5/459.2 MB 2.2 MB/s eta 0:01:12\n", " -------------------------- ------------- 299.6/459.2 MB 2.2 MB/s eta 0:01:12\n", " -------------------------- ------------- 299.7/459.2 MB 2.2 MB/s eta 0:01:12\n", " -------------------------- ------------- 299.8/459.2 MB 2.2 MB/s eta 0:01:13\n", " -------------------------- ------------- 299.9/459.2 MB 2.2 MB/s eta 0:01:13\n", " -------------------------- ------------- 300.0/459.2 MB 2.2 MB/s eta 0:01:13\n", " -------------------------- ------------- 300.1/459.2 MB 2.2 MB/s eta 0:01:13\n", " -------------------------- ------------- 300.1/459.2 MB 2.2 MB/s eta 0:01:14\n", " -------------------------- ------------- 300.2/459.2 MB 2.1 MB/s eta 0:01:15\n", " -------------------------- ------------- 300.2/459.2 MB 2.1 MB/s eta 0:01:15\n", " -------------------------- ------------- 300.3/459.2 MB 2.1 MB/s eta 0:01:15\n", " -------------------------- ------------- 300.3/459.2 MB 2.1 MB/s eta 0:01:16\n", " -------------------------- ------------- 300.3/459.2 MB 2.1 MB/s eta 0:01:16\n", " -------------------------- ------------- 300.4/459.2 MB 2.1 MB/s eta 0:01:17\n", " -------------------------- ------------- 300.4/459.2 MB 2.1 MB/s eta 0:01:18\n", " -------------------------- ------------- 300.4/459.2 MB 2.0 MB/s eta 0:01:18\n", " -------------------------- ------------- 300.5/459.2 MB 2.0 MB/s eta 0:01:18\n", " -------------------------- ------------- 300.5/459.2 MB 2.0 MB/s eta 0:01:20\n", " -------------------------- ------------- 300.5/459.2 MB 2.0 MB/s eta 0:01:20\n", " -------------------------- ------------- 300.5/459.2 MB 2.0 MB/s eta 0:01:20\n", " -------------------------- ------------- 300.5/459.2 MB 2.0 MB/s eta 0:01:21\n", " -------------------------- ------------- 300.6/459.2 MB 2.0 MB/s eta 0:01:22\n", " -------------------------- ------------- 300.6/459.2 MB 1.9 MB/s eta 0:01:22\n", " -------------------------- ------------- 300.6/459.2 MB 1.9 MB/s eta 0:01:23\n", " -------------------------- ------------- 300.6/459.2 MB 1.9 MB/s eta 0:01:23\n", " -------------------------- ------------- 300.6/459.2 MB 1.9 MB/s eta 0:01:24\n", " -------------------------- ------------- 300.7/459.2 MB 1.9 MB/s eta 0:01:25\n", " -------------------------- ------------- 300.7/459.2 MB 1.9 MB/s eta 0:01:25\n", " -------------------------- ------------- 300.7/459.2 MB 1.9 MB/s eta 0:01:25\n", " -------------------------- ------------- 300.7/459.2 MB 1.8 MB/s eta 0:01:26\n", " -------------------------- ------------- 300.7/459.2 MB 1.8 MB/s eta 0:01:27\n", " -------------------------- ------------- 300.7/459.2 MB 1.8 MB/s eta 0:01:28\n", " -------------------------- ------------- 300.8/459.2 MB 1.8 MB/s eta 0:01:28\n", " -------------------------- ------------- 300.8/459.2 MB 1.8 MB/s eta 0:01:29\n", " -------------------------- ------------- 300.8/459.2 MB 1.8 MB/s eta 0:01:29\n", " -------------------------- ------------- 300.9/459.2 MB 1.8 MB/s eta 0:01:30\n", " -------------------------- ------------- 300.9/459.2 MB 1.8 MB/s eta 0:01:30\n", " -------------------------- ------------- 300.9/459.2 MB 1.7 MB/s eta 0:01:32\n", " -------------------------- ------------- 300.9/459.2 MB 1.7 MB/s eta 0:01:32\n", " -------------------------- ------------- 301.0/459.2 MB 1.7 MB/s eta 0:01:32\n", " -------------------------- ------------- 301.0/459.2 MB 1.7 MB/s eta 0:01:33\n", " -------------------------- ------------- 301.0/459.2 MB 1.7 MB/s eta 0:01:34\n", " -------------------------- ------------- 301.1/459.2 MB 1.7 MB/s eta 0:01:34\n", " -------------------------- ------------- 301.1/459.2 MB 1.7 MB/s eta 0:01:35\n", " -------------------------- ------------- 301.2/459.2 MB 1.7 MB/s eta 0:01:36\n", " -------------------------- ------------- 301.2/459.2 MB 1.7 MB/s eta 0:01:36\n", " -------------------------- ------------- 301.2/459.2 MB 1.6 MB/s eta 0:01:37\n", " -------------------------- ------------- 301.2/459.2 MB 1.6 MB/s eta 0:01:37\n", " -------------------------- ------------- 301.3/459.2 MB 1.6 MB/s eta 0:01:38\n", " -------------------------- ------------- 301.3/459.2 MB 1.6 MB/s eta 0:01:38\n", " -------------------------- ------------- 301.3/459.2 MB 1.6 MB/s eta 0:01:39\n", " -------------------------- ------------- 301.4/459.2 MB 1.6 MB/s eta 0:01:39\n", " -------------------------- ------------- 301.4/459.2 MB 1.6 MB/s eta 0:01:40\n", " -------------------------- ------------- 301.5/459.2 MB 1.6 MB/s eta 0:01:40\n", " -------------------------- ------------- 301.5/459.2 MB 1.6 MB/s eta 0:01:40\n", " -------------------------- ------------- 301.5/459.2 MB 1.6 MB/s eta 0:01:41\n", " -------------------------- ------------- 301.6/459.2 MB 1.6 MB/s eta 0:01:41\n", " -------------------------- ------------- 301.6/459.2 MB 1.6 MB/s eta 0:01:42\n", " -------------------------- ------------- 301.6/459.2 MB 1.5 MB/s eta 0:01:42\n", " -------------------------- ------------- 301.7/459.2 MB 1.5 MB/s eta 0:01:42\n", " -------------------------- ------------- 301.7/459.2 MB 1.5 MB/s eta 0:01:43\n", " -------------------------- ------------- 301.8/459.2 MB 1.5 MB/s eta 0:01:44\n", " -------------------------- ------------- 301.8/459.2 MB 1.5 MB/s eta 0:01:45\n", " -------------------------- ------------- 301.9/459.2 MB 1.5 MB/s eta 0:01:45\n", " -------------------------- ------------- 301.9/459.2 MB 1.5 MB/s eta 0:01:45\n", " -------------------------- ------------- 302.0/459.2 MB 1.5 MB/s eta 0:01:45\n", " -------------------------- ------------- 302.0/459.2 MB 1.5 MB/s eta 0:01:45\n", " -------------------------- ------------- 302.0/459.2 MB 1.5 MB/s eta 0:01:45\n", " -------------------------- ------------- 302.0/459.2 MB 1.5 MB/s eta 0:01:47\n", " -------------------------- ------------- 302.1/459.2 MB 1.5 MB/s eta 0:01:48\n", " -------------------------- ------------- 302.1/459.2 MB 1.5 MB/s eta 0:01:48\n", " -------------------------- ------------- 302.1/459.2 MB 1.5 MB/s eta 0:01:48\n", " -------------------------- ------------- 302.1/459.2 MB 1.4 MB/s eta 0:01:50\n", " -------------------------- ------------- 302.1/459.2 MB 1.4 MB/s eta 0:01:50\n", " -------------------------- ------------- 302.1/459.2 MB 1.4 MB/s eta 0:01:50\n", " -------------------------- ------------- 302.1/459.2 MB 1.4 MB/s eta 0:01:51\n", " -------------------------- ------------- 302.1/459.2 MB 1.4 MB/s eta 0:01:51\n", " -------------------------- ------------- 302.2/459.2 MB 1.4 MB/s eta 0:01:53\n", " -------------------------- ------------- 302.2/459.2 MB 1.4 MB/s eta 0:01:53\n", " -------------------------- ------------- 302.2/459.2 MB 1.4 MB/s eta 0:01:53\n", " -------------------------- ------------- 302.2/459.2 MB 1.4 MB/s eta 0:01:55\n", " -------------------------- ------------- 302.2/459.2 MB 1.4 MB/s eta 0:01:55\n", " -------------------------- ------------- 302.2/459.2 MB 1.4 MB/s eta 0:01:55\n", " -------------------------- ------------- 302.2/459.2 MB 1.4 MB/s eta 0:01:57\n", " -------------------------- ------------- 302.2/459.2 MB 1.3 MB/s eta 0:01:57\n", " -------------------------- ------------- 302.2/459.2 MB 1.3 MB/s eta 0:01:57\n", " -------------------------- ------------- 302.2/459.2 MB 1.3 MB/s eta 0:01:59\n", " -------------------------- ------------- 302.2/459.2 MB 1.3 MB/s eta 0:01:59\n", " -------------------------- ------------- 302.2/459.2 MB 1.3 MB/s eta 0:02:01\n", " -------------------------- ------------- 302.2/459.2 MB 1.3 MB/s eta 0:02:01\n", " -------------------------- ------------- 302.3/459.2 MB 1.3 MB/s eta 0:02:02\n", " -------------------------- ------------- 302.3/459.2 MB 1.3 MB/s eta 0:02:03\n", " -------------------------- ------------- 302.3/459.2 MB 1.3 MB/s eta 0:02:03\n", " -------------------------- ------------- 302.3/459.2 MB 1.3 MB/s eta 0:02:04\n", " -------------------------- ------------- 302.3/459.2 MB 1.3 MB/s eta 0:02:06\n", " -------------------------- ------------- 302.3/459.2 MB 1.2 MB/s eta 0:02:06\n", " -------------------------- ------------- 302.3/459.2 MB 1.2 MB/s eta 0:02:07\n", " -------------------------- ------------- 302.4/459.2 MB 1.2 MB/s eta 0:02:08\n", " -------------------------- ------------- 302.4/459.2 MB 1.2 MB/s eta 0:02:09\n", " -------------------------- ------------- 302.4/459.2 MB 1.2 MB/s eta 0:02:10\n", " -------------------------- ------------- 302.4/459.2 MB 1.2 MB/s eta 0:02:11\n", " -------------------------- ------------- 302.4/459.2 MB 1.2 MB/s eta 0:02:12\n", " -------------------------- ------------- 302.5/459.2 MB 1.2 MB/s eta 0:02:12\n", " -------------------------- ------------- 302.5/459.2 MB 1.2 MB/s eta 0:02:13\n", " -------------------------- ------------- 302.5/459.2 MB 1.2 MB/s eta 0:02:14\n", " -------------------------- ------------- 302.5/459.2 MB 1.2 MB/s eta 0:02:14\n", " -------------------------- ------------- 302.6/459.2 MB 1.2 MB/s eta 0:02:16\n", " -------------------------- ------------- 302.6/459.2 MB 1.2 MB/s eta 0:02:16\n", " -------------------------- ------------- 302.6/459.2 MB 1.1 MB/s eta 0:02:17\n", " -------------------------- ------------- 302.6/459.2 MB 1.1 MB/s eta 0:02:17\n", " -------------------------- ------------- 302.7/459.2 MB 1.1 MB/s eta 0:02:18\n", " -------------------------- ------------- 302.7/459.2 MB 1.1 MB/s eta 0:02:19\n", " -------------------------- ------------- 302.7/459.2 MB 1.1 MB/s eta 0:02:19\n", " -------------------------- ------------- 302.7/459.2 MB 1.1 MB/s eta 0:02:21\n", " -------------------------- ------------- 302.7/459.2 MB 1.1 MB/s eta 0:02:21\n", " -------------------------- ------------- 302.7/459.2 MB 1.1 MB/s eta 0:02:22\n", " -------------------------- ------------- 302.7/459.2 MB 1.1 MB/s eta 0:02:24\n", " -------------------------- ------------- 302.7/459.2 MB 1.1 MB/s eta 0:02:24\n", " -------------------------- ------------- 302.8/459.2 MB 1.1 MB/s eta 0:02:25\n", " -------------------------- ------------- 302.8/459.2 MB 1.1 MB/s eta 0:02:26\n", " -------------------------- ------------- 302.8/459.2 MB 1.1 MB/s eta 0:02:26\n", " -------------------------- ------------- 302.8/459.2 MB 1.1 MB/s eta 0:02:27\n", " -------------------------- ------------- 302.8/459.2 MB 1.1 MB/s eta 0:02:28\n", " -------------------------- ------------- 302.8/459.2 MB 1.1 MB/s eta 0:02:28\n", " -------------------------- ------------- 302.8/459.2 MB 1.1 MB/s eta 0:02:28\n", " -------------------------- ------------- 302.8/459.2 MB 1.0 MB/s eta 0:02:31\n", " -------------------------- ------------- 302.8/459.2 MB 1.0 MB/s eta 0:02:31\n", " -------------------------- ------------- 302.8/459.2 MB 1.0 MB/s eta 0:02:31\n", " -------------------------- ------------- 302.8/459.2 MB 1.0 MB/s eta 0:02:31\n", " -------------------------- ------------- 302.8/459.2 MB 1.0 MB/s eta 0:02:35\n", " -------------------------- ------------- 302.8/459.2 MB 1.0 MB/s eta 0:02:35\n", " -------------------------- ------------- 302.8/459.2 MB 1.0 MB/s eta 0:02:35\n", " ------------------------- ------------ 302.9/459.2 MB 992.0 kB/s eta 0:02:38\n", " ------------------------- ------------ 302.9/459.2 MB 992.0 kB/s eta 0:02:38\n", " ------------------------- ------------ 302.9/459.2 MB 992.0 kB/s eta 0:02:38\n", " ------------------------- ------------ 302.9/459.2 MB 977.1 kB/s eta 0:02:40\n", " ------------------------- ------------ 302.9/459.2 MB 977.1 kB/s eta 0:02:40\n", " ------------------------- ------------ 302.9/459.2 MB 968.5 kB/s eta 0:02:42\n", " ------------------------- ------------ 302.9/459.2 MB 960.0 kB/s eta 0:02:43\n", " ------------------------- ------------ 302.9/459.2 MB 960.0 kB/s eta 0:02:43\n", " ------------------------- ------------ 302.9/459.2 MB 952.9 kB/s eta 0:02:44\n", " ------------------------- ------------ 303.0/459.2 MB 942.0 kB/s eta 0:02:46\n", " ------------------------- ------------ 303.0/459.2 MB 938.0 kB/s eta 0:02:47\n", " ------------------------- ------------ 303.0/459.2 MB 936.6 kB/s eta 0:02:47\n", " ------------------------- ------------ 303.0/459.2 MB 928.6 kB/s eta 0:02:49\n", " ------------------------- ------------ 303.0/459.2 MB 926.0 kB/s eta 0:02:49\n", " ------------------------- ------------ 303.0/459.2 MB 922.1 kB/s eta 0:02:50\n", " ------------------------- ------------ 303.1/459.2 MB 918.2 kB/s eta 0:02:51\n", " ------------------------- ------------ 303.1/459.2 MB 914.4 kB/s eta 0:02:51\n", " ------------------------- ------------ 303.1/459.2 MB 909.3 kB/s eta 0:02:52\n", " ------------------------- ------------ 303.1/459.2 MB 909.3 kB/s eta 0:02:52\n", " ------------------------- ------------ 303.1/459.2 MB 903.0 kB/s eta 0:02:53\n", " ------------------------- ------------ 303.1/459.2 MB 903.0 kB/s eta 0:02:53\n", " ------------------------- ------------ 303.1/459.2 MB 903.0 kB/s eta 0:02:53\n", " ------------------------- ------------ 303.1/459.2 MB 903.0 kB/s eta 0:02:53\n", " ------------------------- ------------ 303.2/459.2 MB 887.2 kB/s eta 0:02:56\n", " ------------------------- ------------ 303.2/459.2 MB 887.2 kB/s eta 0:02:56\n", " ------------------------- ------------ 303.2/459.2 MB 887.2 kB/s eta 0:02:56\n", " ------------------------- ------------ 303.2/459.2 MB 878.8 kB/s eta 0:02:58\n", " ------------------------- ------------ 303.2/459.2 MB 874.1 kB/s eta 0:02:59\n", " ------------------------- ------------ 303.2/459.2 MB 874.1 kB/s eta 0:02:59\n", " ------------------------- ------------ 303.2/459.2 MB 868.3 kB/s eta 0:03:00\n", " ------------------------- ------------ 303.2/459.2 MB 864.9 kB/s eta 0:03:01\n", " ------------------------- ------------ 303.2/459.2 MB 864.9 kB/s eta 0:03:01\n", " ------------------------- ------------ 303.2/459.2 MB 864.9 kB/s eta 0:03:01\n", " ------------------------- ------------ 303.3/459.2 MB 857.0 kB/s eta 0:03:02\n", " ------------------------- ------------ 303.3/459.2 MB 857.0 kB/s eta 0:03:02\n", " ------------------------- ------------ 303.3/459.2 MB 857.0 kB/s eta 0:03:02\n", " ------------------------- ------------ 303.3/459.2 MB 857.0 kB/s eta 0:03:02\n", " ------------------------- ------------ 303.3/459.2 MB 840.4 kB/s eta 0:03:06\n", " ------------------------- ------------ 303.3/459.2 MB 840.4 kB/s eta 0:03:06\n", " ------------------------- ------------ 303.3/459.2 MB 840.4 kB/s eta 0:03:06\n", " ------------------------- ------------ 303.3/459.2 MB 840.4 kB/s eta 0:03:06\n", " ------------------------- ------------ 303.3/459.2 MB 830.8 kB/s eta 0:03:08\n", " ------------------------- ------------ 303.3/459.2 MB 830.8 kB/s eta 0:03:08\n", " ------------------------- ------------ 303.3/459.2 MB 822.5 kB/s eta 0:03:10\n", " ------------------------- ------------ 303.3/459.2 MB 822.5 kB/s eta 0:03:10\n", " ------------------------- ------------ 303.3/459.2 MB 817.3 kB/s eta 0:03:11\n", " ------------------------- ------------ 303.3/459.2 MB 817.3 kB/s eta 0:03:11\n", " ------------------------- ------------ 303.3/459.2 MB 810.3 kB/s eta 0:03:13\n", " ------------------------- ------------ 303.3/459.2 MB 810.3 kB/s eta 0:03:13\n", " ------------------------- ------------ 303.4/459.2 MB 805.3 kB/s eta 0:03:14\n", " ------------------------- ------------ 303.4/459.2 MB 801.4 kB/s eta 0:03:15\n", " ------------------------- ------------ 303.4/459.2 MB 796.5 kB/s eta 0:03:16\n", " ------------------------- ------------ 303.4/459.2 MB 793.6 kB/s eta 0:03:17\n", " ------------------------- ------------ 303.4/459.2 MB 790.7 kB/s eta 0:03:17\n", " ------------------------- ------------ 303.4/459.2 MB 787.9 kB/s eta 0:03:18\n", " ------------------------- ------------ 303.5/459.2 MB 785.0 kB/s eta 0:03:19\n", " ------------------------- ------------ 303.5/459.2 MB 781.3 kB/s eta 0:03:20\n", " ------------------------- ------------ 303.5/459.2 MB 781.3 kB/s eta 0:03:20\n", " ------------------------- ------------ 303.5/459.2 MB 776.6 kB/s eta 0:03:21\n", " ------------------------- ------------ 303.5/459.2 MB 772.9 kB/s eta 0:03:22\n", " ------------------------- ------------ 303.6/459.2 MB 768.5 kB/s eta 0:03:23\n", " ------------------------- ------------ 303.6/459.2 MB 765.8 kB/s eta 0:03:24\n", " ------------------------- ------------ 303.6/459.2 MB 763.1 kB/s eta 0:03:24\n", " ------------------------- ------------ 303.6/459.2 MB 759.6 kB/s eta 0:03:25\n", " ------------------------- ------------ 303.7/459.2 MB 756.0 kB/s eta 0:03:26\n", " ------------------------- ------------ 303.7/459.2 MB 753.4 kB/s eta 0:03:27\n", " ------------------------- ------------ 303.7/459.2 MB 750.8 kB/s eta 0:03:28\n", " ------------------------- ------------ 303.8/459.2 MB 749.1 kB/s eta 0:03:28\n", " ------------------------- ------------ 303.8/459.2 MB 746.5 kB/s eta 0:03:29\n", " ------------------------- ------------ 303.9/459.2 MB 742.3 kB/s eta 0:03:30\n", " ------------------------- ------------ 303.9/459.2 MB 739.7 kB/s eta 0:03:30\n", " ------------------------- ------------ 303.9/459.2 MB 737.3 kB/s eta 0:03:31\n", " ------------------------- ------------ 303.9/459.2 MB 734.8 kB/s eta 0:03:32\n", " ------------------------- ------------ 304.0/459.2 MB 733.2 kB/s eta 0:03:32\n", " ------------------------- ------------ 304.0/459.2 MB 729.9 kB/s eta 0:03:33\n", " ------------------------- ------------ 304.1/459.2 MB 727.5 kB/s eta 0:03:34\n", " ------------------------- ------------ 304.1/459.2 MB 725.0 kB/s eta 0:03:34\n", " ------------------------- ------------ 304.2/459.2 MB 722.6 kB/s eta 0:03:35\n", " ------------------------- ------------ 304.2/459.2 MB 721.0 kB/s eta 0:03:35\n", " ------------------------- ------------ 304.2/459.2 MB 718.7 kB/s eta 0:03:36\n", " ------------------------- ------------ 304.3/459.2 MB 716.3 kB/s eta 0:03:37\n", " ------------------------- ------------ 304.3/459.2 MB 714.0 kB/s eta 0:03:37\n", " ------------------------- ------------ 304.4/459.2 MB 713.2 kB/s eta 0:03:38\n", " ------------------------- ------------ 304.4/459.2 MB 710.8 kB/s eta 0:03:38\n", " ------------------------- ------------ 304.4/459.2 MB 709.3 kB/s eta 0:03:39\n", " ------------------------- ------------ 304.5/459.2 MB 707.0 kB/s eta 0:03:39\n", " ------------------------- ------------ 304.5/459.2 MB 706.3 kB/s eta 0:03:39\n", " ------------------------- ------------ 304.6/459.2 MB 704.0 kB/s eta 0:03:40\n", " ------------------------- ------------ 304.6/459.2 MB 702.4 kB/s eta 0:03:41\n", " ------------------------- ------------ 304.6/459.2 MB 700.2 kB/s eta 0:03:41\n", " ------------------------- ------------ 304.7/459.2 MB 699.5 kB/s eta 0:03:41\n", " ------------------------- ------------ 304.7/459.2 MB 698.0 kB/s eta 0:03:42\n", " ------------------------- ------------ 304.8/459.2 MB 695.8 kB/s eta 0:03:42\n", " ------------------------- ------------ 304.8/459.2 MB 695.0 kB/s eta 0:03:43\n", " ------------------------- ------------ 304.9/459.2 MB 692.8 kB/s eta 0:03:43\n", " ------------------------- ------------ 304.9/459.2 MB 691.3 kB/s eta 0:03:44\n", " ------------------------- ------------ 305.0/459.2 MB 689.2 kB/s eta 0:03:44\n", " ------------------------- ------------ 305.0/459.2 MB 687.7 kB/s eta 0:03:45\n", " ------------------------- ------------ 305.1/459.2 MB 685.5 kB/s eta 0:03:45\n", " ------------------------- ------------ 305.1/459.2 MB 683.4 kB/s eta 0:03:46\n", " ------------------------- ------------ 305.2/459.2 MB 682.0 kB/s eta 0:03:46\n", " ------------------------- ------------ 305.3/459.2 MB 681.3 kB/s eta 0:03:46\n", " ------------------------- ------------ 305.3/459.2 MB 678.5 kB/s eta 0:03:47\n", " ------------------------- ------------ 305.4/459.2 MB 677.0 kB/s eta 0:03:48\n", " ------------------------- ------------ 305.4/459.2 MB 675.6 kB/s eta 0:03:48\n", " ------------------------- ------------ 305.5/459.2 MB 674.3 kB/s eta 0:03:48\n", " ------------------------- ------------ 305.6/459.2 MB 671.5 kB/s eta 0:03:49\n", " ------------------------- ------------ 305.6/459.2 MB 669.4 kB/s eta 0:03:50\n", " ------------------------- ------------ 305.7/459.2 MB 668.0 kB/s eta 0:03:50\n", " ------------------------- ------------ 305.8/459.2 MB 667.4 kB/s eta 0:03:50\n", " ------------------------- ------------ 305.8/459.2 MB 666.0 kB/s eta 0:03:51\n", " ------------------------- ------------ 305.9/459.2 MB 663.3 kB/s eta 0:03:52\n", " ------------------------- ------------ 306.0/459.2 MB 662.0 kB/s eta 0:03:52\n", " ------------------------- ------------ 306.0/459.2 MB 661.3 kB/s eta 0:03:52\n", " ------------------------- ------------ 306.1/459.2 MB 660.0 kB/s eta 0:03:52\n", " ------------------------- ------------ 306.1/459.2 MB 660.0 kB/s eta 0:03:52\n", " ------------------------- ------------ 306.2/459.2 MB 656.0 kB/s eta 0:03:54\n", " ------------------------- ------------ 306.3/459.2 MB 654.7 kB/s eta 0:03:54\n", " ------------------------- ------------ 306.3/459.2 MB 653.4 kB/s eta 0:03:54\n", " ------------------------- ------------ 306.4/459.2 MB 651.5 kB/s eta 0:03:55\n", " ------------------------- ------------ 306.5/459.2 MB 650.1 kB/s eta 0:03:55\n", " ------------------------- ------------ 306.5/459.2 MB 648.9 kB/s eta 0:03:56\n", " ------------------------- ------------ 306.6/459.2 MB 646.9 kB/s eta 0:03:56\n", " ------------------------- ------------ 306.6/459.2 MB 645.7 kB/s eta 0:03:57\n", " ------------------------- ------------ 306.7/459.2 MB 643.7 kB/s eta 0:03:57\n", " ------------------------- ------------ 306.8/459.2 MB 641.8 kB/s eta 0:03:58\n", " ------------------------- ------------ 306.8/459.2 MB 640.6 kB/s eta 0:03:58\n", " ------------------------- ------------ 306.9/459.2 MB 639.4 kB/s eta 0:03:59\n", " ------------------------- ------------ 306.9/459.2 MB 638.1 kB/s eta 0:03:59\n", " ------------------------- ------------ 307.0/459.2 MB 635.6 kB/s eta 0:04:00\n", " ------------------------- ------------ 307.0/459.2 MB 633.8 kB/s eta 0:04:01\n", " ------------------------- ------------ 307.1/459.2 MB 633.2 kB/s eta 0:04:01\n", " ------------------------- ------------ 307.2/459.2 MB 633.8 kB/s eta 0:04:00\n", " ------------------------- ------------ 307.2/459.2 MB 631.3 kB/s eta 0:04:01\n", " ------------------------- ------------ 307.3/459.2 MB 629.5 kB/s eta 0:04:02\n", " ------------------------- ------------ 307.3/459.2 MB 628.9 kB/s eta 0:04:02\n", " ------------------------- ------------ 307.4/459.2 MB 628.3 kB/s eta 0:04:02\n", " ------------------------- ------------ 307.5/459.2 MB 628.3 kB/s eta 0:04:02\n", " ------------------------- ------------ 307.6/459.2 MB 627.7 kB/s eta 0:04:02\n", " ------------------------- ------------ 307.6/459.2 MB 626.5 kB/s eta 0:04:02\n", " ------------------------- ------------ 307.7/459.2 MB 625.9 kB/s eta 0:04:02\n", " ------------------------- ------------ 307.8/459.2 MB 624.7 kB/s eta 0:04:03\n", " ------------------------- ------------ 307.9/459.2 MB 623.5 kB/s eta 0:04:03\n", " ------------------------- ------------ 307.9/459.2 MB 622.9 kB/s eta 0:04:03\n", " ------------------------- ------------ 308.0/459.2 MB 621.2 kB/s eta 0:04:04\n", " ------------------------- ------------ 308.1/459.2 MB 621.2 kB/s eta 0:04:04\n", " ------------------------- ------------ 308.2/459.2 MB 620.5 kB/s eta 0:04:04\n", " ------------------------- ------------ 308.2/459.2 MB 620.6 kB/s eta 0:04:04\n", " ------------------------- ------------ 308.3/459.2 MB 620.0 kB/s eta 0:04:04\n", " ------------------------- ------------ 308.4/459.2 MB 620.0 kB/s eta 0:04:04\n", " ------------------------- ------------ 308.4/459.2 MB 619.4 kB/s eta 0:04:04\n", " ------------------------- ------------ 308.6/459.2 MB 618.2 kB/s eta 0:04:04\n", " ------------------------- ------------ 308.7/459.2 MB 618.8 kB/s eta 0:04:04\n", " ------------------------- ------------ 308.7/459.2 MB 617.6 kB/s eta 0:04:04\n", " ------------------------- ------------ 308.8/459.2 MB 617.1 kB/s eta 0:04:04\n", " ------------------------- ------------ 308.9/459.2 MB 616.5 kB/s eta 0:04:04\n", " ------------------------- ------------ 309.0/459.2 MB 615.9 kB/s eta 0:04:04\n", " ------------------------- ------------ 309.1/459.2 MB 615.3 kB/s eta 0:04:04\n", " ------------------------- ------------ 309.2/459.2 MB 615.3 kB/s eta 0:04:04\n", " ------------------------- ------------ 309.3/459.2 MB 614.2 kB/s eta 0:04:05\n", " ------------------------- ------------ 309.3/459.2 MB 613.6 kB/s eta 0:04:05\n", " ------------------------- ------------ 309.4/459.2 MB 613.0 kB/s eta 0:04:05\n", " ------------------------- ------------ 309.5/459.2 MB 613.0 kB/s eta 0:04:05\n", " ------------------------- ------------ 309.6/459.2 MB 612.5 kB/s eta 0:04:05\n", " ------------------------- ------------ 309.6/459.2 MB 612.5 kB/s eta 0:04:05\n", " ------------------------- ------------ 309.7/459.2 MB 611.9 kB/s eta 0:04:05\n", " ------------------------- ------------ 309.8/459.2 MB 611.9 kB/s eta 0:04:05\n", " ------------------------- ------------ 309.9/459.2 MB 610.7 kB/s eta 0:04:05\n", " ------------------------- ------------ 310.0/459.2 MB 610.7 kB/s eta 0:04:05\n", " ------------------------- ------------ 310.1/459.2 MB 610.7 kB/s eta 0:04:05\n", " ------------------------- ------------ 310.3/459.2 MB 611.3 kB/s eta 0:04:04\n", " ------------------------- ------------ 310.4/459.2 MB 612.5 kB/s eta 0:04:03\n", " ------------------------- ------------ 310.5/459.2 MB 615.3 kB/s eta 0:04:02\n", " ------------------------- ------------ 310.6/459.2 MB 618.2 kB/s eta 0:04:01\n", " ------------------------- ------------ 310.7/459.2 MB 621.2 kB/s eta 0:04:00\n", " ------------------------- ------------ 310.8/459.2 MB 628.3 kB/s eta 0:03:57\n", " ------------------------- ------------ 310.9/459.2 MB 635.7 kB/s eta 0:03:54\n", " ------------------------- ------------ 311.0/459.2 MB 644.4 kB/s eta 0:03:50\n", " ------------------------- ------------ 311.1/459.2 MB 649.5 kB/s eta 0:03:48\n", " ------------------------- ------------ 311.1/459.2 MB 649.5 kB/s eta 0:03:48\n", " ------------------------- ------------ 311.2/459.2 MB 654.7 kB/s eta 0:03:46\n", " ------------------------- ------------ 311.4/459.2 MB 660.0 kB/s eta 0:03:44\n", " ------------------------- ------------ 311.5/459.2 MB 666.0 kB/s eta 0:03:42\n", " ------------------------- ------------ 311.6/459.2 MB 670.8 kB/s eta 0:03:40\n", " ------------------------- ------------ 311.7/459.2 MB 673.5 kB/s eta 0:03:39\n", " ------------------------- ------------ 311.8/459.2 MB 676.3 kB/s eta 0:03:38\n", " ------------------------- ------------ 311.9/459.2 MB 680.6 kB/s eta 0:03:37\n", " ------------------------- ------------ 312.0/459.2 MB 683.4 kB/s eta 0:03:36\n", " ------------------------- ------------ 312.1/459.2 MB 686.3 kB/s eta 0:03:35\n", " ------------------------- ------------ 312.2/459.2 MB 693.5 kB/s eta 0:03:32\n", " ------------------------- ------------ 312.4/459.2 MB 705.5 kB/s eta 0:03:29\n", " ------------------------- ------------ 312.5/459.2 MB 738.1 kB/s eta 0:03:19\n", " ------------------------- ------------ 312.6/459.2 MB 763.1 kB/s eta 0:03:13\n", " ------------------------- ------------ 312.6/459.2 MB 763.9 kB/s eta 0:03:12\n", " ------------------------- ------------ 312.7/459.2 MB 779.4 kB/s eta 0:03:08\n", " ------------------------- ------------ 312.8/459.2 MB 795.5 kB/s eta 0:03:04\n", " ------------------------- ------------ 312.9/459.2 MB 805.3 kB/s eta 0:03:02\n", " ------------------------- ------------ 313.0/459.2 MB 835.1 kB/s eta 0:02:56\n", " ------------------------- ------------ 313.1/459.2 MB 890.7 kB/s eta 0:02:45\n", " ------------------------- ------------ 313.2/459.2 MB 947.5 kB/s eta 0:02:35\n", " ------------------------- ------------ 313.2/459.2 MB 947.5 kB/s eta 0:02:35\n", " ------------------------- ------------ 313.4/459.2 MB 975.7 kB/s eta 0:02:30\n", " --------------------------- ------------ 313.4/459.2 MB 1.0 MB/s eta 0:02:25\n", " --------------------------- ------------ 313.5/459.2 MB 1.1 MB/s eta 0:02:15\n", " --------------------------- ------------ 313.6/459.2 MB 1.1 MB/s eta 0:02:07\n", " --------------------------- ------------ 313.8/459.2 MB 1.2 MB/s eta 0:02:02\n", " --------------------------- ------------ 313.9/459.2 MB 1.2 MB/s eta 0:02:00\n", " --------------------------- ------------ 314.0/459.2 MB 1.3 MB/s eta 0:01:56\n", " --------------------------- ------------ 314.1/459.2 MB 1.3 MB/s eta 0:01:54\n", " --------------------------- ------------ 314.3/459.2 MB 1.3 MB/s eta 0:01:52\n", " --------------------------- ------------ 314.4/459.2 MB 1.3 MB/s eta 0:01:50\n", " --------------------------- ------------ 314.5/459.2 MB 1.3 MB/s eta 0:01:48\n", " --------------------------- ------------ 314.6/459.2 MB 1.4 MB/s eta 0:01:47\n", " --------------------------- ------------ 314.7/459.2 MB 1.4 MB/s eta 0:01:45\n", " --------------------------- ------------ 314.8/459.2 MB 1.4 MB/s eta 0:01:44\n", " --------------------------- ------------ 314.9/459.2 MB 1.4 MB/s eta 0:01:43\n", " --------------------------- ------------ 315.0/459.2 MB 1.4 MB/s eta 0:01:42\n", " --------------------------- ------------ 315.1/459.2 MB 1.4 MB/s eta 0:01:41\n", " --------------------------- ------------ 315.2/459.2 MB 1.5 MB/s eta 0:01:40\n", " --------------------------- ------------ 315.4/459.2 MB 1.5 MB/s eta 0:01:38\n", " --------------------------- ------------ 315.5/459.2 MB 1.5 MB/s eta 0:01:38\n", " --------------------------- ------------ 315.6/459.2 MB 1.5 MB/s eta 0:01:37\n", " --------------------------- ------------ 315.7/459.2 MB 1.5 MB/s eta 0:01:35\n", " --------------------------- ------------ 315.9/459.2 MB 1.5 MB/s eta 0:01:34\n", " --------------------------- ------------ 316.0/459.2 MB 1.6 MB/s eta 0:01:33\n", " --------------------------- ------------ 316.1/459.2 MB 1.6 MB/s eta 0:01:32\n", " --------------------------- ------------ 316.2/459.2 MB 1.6 MB/s eta 0:01:31\n", " --------------------------- ------------ 316.4/459.2 MB 1.6 MB/s eta 0:01:29\n", " --------------------------- ------------ 316.5/459.2 MB 1.6 MB/s eta 0:01:29\n", " --------------------------- ------------ 316.6/459.2 MB 1.6 MB/s eta 0:01:28\n", " --------------------------- ------------ 316.8/459.2 MB 1.7 MB/s eta 0:01:26\n", " --------------------------- ------------ 316.9/459.2 MB 1.7 MB/s eta 0:01:25\n", " --------------------------- ------------ 317.0/459.2 MB 1.7 MB/s eta 0:01:23\n", " --------------------------- ------------ 317.1/459.2 MB 1.7 MB/s eta 0:01:22\n", " --------------------------- ------------ 317.3/459.2 MB 1.8 MB/s eta 0:01:20\n", " --------------------------- ------------ 317.5/459.2 MB 1.8 MB/s eta 0:01:19\n", " --------------------------- ------------ 317.6/459.2 MB 1.8 MB/s eta 0:01:18\n", " --------------------------- ------------ 317.7/459.2 MB 1.8 MB/s eta 0:01:17\n", " --------------------------- ------------ 317.8/459.2 MB 1.9 MB/s eta 0:01:17\n", " --------------------------- ------------ 318.0/459.2 MB 1.9 MB/s eta 0:01:15\n", " --------------------------- ------------ 318.1/459.2 MB 1.9 MB/s eta 0:01:15\n", " --------------------------- ------------ 318.2/459.2 MB 1.9 MB/s eta 0:01:14\n", " --------------------------- ------------ 318.4/459.2 MB 1.9 MB/s eta 0:01:13\n", " --------------------------- ------------ 318.4/459.2 MB 2.0 MB/s eta 0:01:13\n", " --------------------------- ------------ 318.6/459.2 MB 2.0 MB/s eta 0:01:12\n", " --------------------------- ------------ 318.7/459.2 MB 2.0 MB/s eta 0:01:11\n", " --------------------------- ------------ 318.8/459.2 MB 2.0 MB/s eta 0:01:11\n", " --------------------------- ------------ 318.8/459.2 MB 2.0 MB/s eta 0:01:11\n", " --------------------------- ------------ 319.0/459.2 MB 2.0 MB/s eta 0:01:10\n", " --------------------------- ------------ 319.1/459.2 MB 2.0 MB/s eta 0:01:10\n", " --------------------------- ------------ 319.1/459.2 MB 2.0 MB/s eta 0:01:10\n", " --------------------------- ------------ 319.3/459.2 MB 2.0 MB/s eta 0:01:09\n", " --------------------------- ------------ 319.4/459.2 MB 2.1 MB/s eta 0:01:08\n", " --------------------------- ------------ 319.5/459.2 MB 2.1 MB/s eta 0:01:08\n", " --------------------------- ------------ 319.6/459.2 MB 2.1 MB/s eta 0:01:08\n", " --------------------------- ------------ 319.8/459.2 MB 2.1 MB/s eta 0:01:07\n", " --------------------------- ------------ 319.9/459.2 MB 2.1 MB/s eta 0:01:07\n", " --------------------------- ------------ 320.0/459.2 MB 2.1 MB/s eta 0:01:06\n", " --------------------------- ------------ 320.1/459.2 MB 2.1 MB/s eta 0:01:06\n", " --------------------------- ------------ 320.2/459.2 MB 2.1 MB/s eta 0:01:06\n", " --------------------------- ------------ 320.4/459.2 MB 2.1 MB/s eta 0:01:05\n", " --------------------------- ------------ 320.6/459.2 MB 2.2 MB/s eta 0:01:05\n", " --------------------------- ------------ 320.6/459.2 MB 2.2 MB/s eta 0:01:05\n", " --------------------------- ------------ 320.7/459.2 MB 2.1 MB/s eta 0:01:05\n", " --------------------------- ------------ 320.9/459.2 MB 2.2 MB/s eta 0:01:04\n", " --------------------------- ------------ 321.0/459.2 MB 2.2 MB/s eta 0:01:04\n", " --------------------------- ------------ 321.1/459.2 MB 2.2 MB/s eta 0:01:04\n", " --------------------------- ------------ 321.2/459.2 MB 2.2 MB/s eta 0:01:04\n", " --------------------------- ------------ 321.3/459.2 MB 2.2 MB/s eta 0:01:03\n", " --------------------------- ------------ 321.4/459.2 MB 2.2 MB/s eta 0:01:03\n", " ---------------------------- ----------- 321.5/459.2 MB 2.2 MB/s eta 0:01:03\n", " ---------------------------- ----------- 321.5/459.2 MB 2.2 MB/s eta 0:01:03\n", " ---------------------------- ----------- 321.7/459.2 MB 2.2 MB/s eta 0:01:03\n", " ---------------------------- ----------- 321.8/459.2 MB 2.2 MB/s eta 0:01:02\n", " ---------------------------- ----------- 321.9/459.2 MB 2.2 MB/s eta 0:01:02\n", " ---------------------------- ----------- 322.0/459.2 MB 2.2 MB/s eta 0:01:02\n", " ---------------------------- ----------- 322.0/459.2 MB 2.2 MB/s eta 0:01:03\n", " ---------------------------- ----------- 322.2/459.2 MB 2.2 MB/s eta 0:01:02\n", " ---------------------------- ----------- 322.3/459.2 MB 2.2 MB/s eta 0:01:02\n", " ---------------------------- ----------- 322.4/459.2 MB 2.2 MB/s eta 0:01:02\n", " ---------------------------- ----------- 322.5/459.2 MB 2.2 MB/s eta 0:01:02\n", " ---------------------------- ----------- 322.6/459.2 MB 2.2 MB/s eta 0:01:02\n", " ---------------------------- ----------- 322.7/459.2 MB 2.2 MB/s eta 0:01:01\n", " ---------------------------- ----------- 322.8/459.2 MB 2.2 MB/s eta 0:01:01\n", " ---------------------------- ----------- 323.0/459.2 MB 2.2 MB/s eta 0:01:01\n", " ---------------------------- ----------- 323.1/459.2 MB 2.2 MB/s eta 0:01:01\n", " ---------------------------- ----------- 323.2/459.2 MB 2.2 MB/s eta 0:01:01\n", " ---------------------------- ----------- 323.3/459.2 MB 2.3 MB/s eta 0:01:00\n", " ---------------------------- ----------- 323.5/459.2 MB 2.3 MB/s eta 0:01:00\n", " ---------------------------- ----------- 323.6/459.2 MB 2.3 MB/s eta 0:00:59\n", " ---------------------------- ----------- 323.8/459.2 MB 2.3 MB/s eta 0:00:59\n", " ---------------------------- ----------- 323.9/459.2 MB 2.3 MB/s eta 0:00:59\n", " ---------------------------- ----------- 324.0/459.2 MB 2.3 MB/s eta 0:00:59\n", " ---------------------------- ----------- 324.1/459.2 MB 2.3 MB/s eta 0:00:59\n", " ---------------------------- ----------- 324.2/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 324.4/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 324.5/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 324.6/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 324.7/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 324.8/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 324.9/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 325.0/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 325.2/459.2 MB 2.4 MB/s eta 0:00:57\n", " ---------------------------- ----------- 325.3/459.2 MB 2.4 MB/s eta 0:00:57\n", " ---------------------------- ----------- 325.5/459.2 MB 2.4 MB/s eta 0:00:57\n", " ---------------------------- ----------- 325.6/459.2 MB 2.3 MB/s eta 0:00:57\n", " ---------------------------- ----------- 325.6/459.2 MB 2.4 MB/s eta 0:00:57\n", " ---------------------------- ----------- 325.8/459.2 MB 2.3 MB/s eta 0:00:57\n", " ---------------------------- ----------- 325.9/459.2 MB 2.3 MB/s eta 0:00:57\n", " ---------------------------- ----------- 326.0/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 326.1/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 326.2/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 326.3/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 326.4/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 326.5/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 326.6/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 326.7/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 326.8/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 326.9/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 327.0/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 327.1/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 327.2/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 327.4/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 327.4/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 327.6/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 327.6/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 327.8/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 327.9/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 328.0/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 328.1/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 328.2/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 328.3/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 328.4/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 328.5/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 328.6/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 328.7/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 328.8/459.2 MB 2.2 MB/s eta 0:00:58\n", " ---------------------------- ----------- 328.9/459.2 MB 2.2 MB/s eta 0:00:58\n", " ---------------------------- ----------- 329.0/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 329.1/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 329.2/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 329.4/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 329.5/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 329.6/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 329.7/459.2 MB 2.2 MB/s eta 0:00:58\n", " ---------------------------- ----------- 329.9/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 330.0/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 330.1/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 330.3/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 330.4/459.2 MB 2.3 MB/s eta 0:00:58\n", " ---------------------------- ----------- 330.5/459.2 MB 2.3 MB/s eta 0:00:57\n", " ---------------------------- ----------- 330.6/459.2 MB 2.3 MB/s eta 0:00:57\n", " ---------------------------- ----------- 330.7/459.2 MB 2.2 MB/s eta 0:00:58\n", " ---------------------------- ----------- 330.8/459.2 MB 2.3 MB/s eta 0:00:57\n", " ---------------------------- ----------- 330.9/459.2 MB 2.3 MB/s eta 0:00:57\n", " ---------------------------- ----------- 331.0/459.2 MB 2.3 MB/s eta 0:00:57\n", " ---------------------------- ----------- 331.0/459.2 MB 2.2 MB/s eta 0:00:58\n", " ---------------------------- ----------- 331.1/459.2 MB 2.2 MB/s eta 0:00:58\n", " ---------------------------- ----------- 331.1/459.2 MB 2.2 MB/s eta 0:00:59\n", " ---------------------------- ----------- 331.2/459.2 MB 2.2 MB/s eta 0:00:58\n", " ---------------------------- ----------- 331.2/459.2 MB 2.2 MB/s eta 0:00:58\n", " ---------------------------- ----------- 331.2/459.2 MB 2.2 MB/s eta 0:00:59\n", " ---------------------------- ----------- 331.2/459.2 MB 2.2 MB/s eta 0:00:59\n", " ---------------------------- ----------- 331.3/459.2 MB 2.1 MB/s eta 0:01:00\n", " ---------------------------- ----------- 331.3/459.2 MB 2.1 MB/s eta 0:01:01\n", " ---------------------------- ----------- 331.3/459.2 MB 2.1 MB/s eta 0:01:01\n", " ---------------------------- ----------- 331.4/459.2 MB 2.1 MB/s eta 0:01:02\n", " ---------------------------- ----------- 331.4/459.2 MB 2.1 MB/s eta 0:01:02\n", " ---------------------------- ----------- 331.4/459.2 MB 2.1 MB/s eta 0:01:03\n", " ---------------------------- ----------- 331.4/459.2 MB 2.0 MB/s eta 0:01:03\n", " ---------------------------- ----------- 331.4/459.2 MB 2.0 MB/s eta 0:01:04\n", " ---------------------------- ----------- 331.5/459.2 MB 2.0 MB/s eta 0:01:04\n", " ---------------------------- ----------- 331.5/459.2 MB 2.0 MB/s eta 0:01:04\n", " ---------------------------- ----------- 331.5/459.2 MB 2.0 MB/s eta 0:01:05\n", " ---------------------------- ----------- 331.5/459.2 MB 1.9 MB/s eta 0:01:06\n", " ---------------------------- ----------- 331.5/459.2 MB 1.9 MB/s eta 0:01:06\n", " ---------------------------- ----------- 331.5/459.2 MB 1.9 MB/s eta 0:01:07\n", " ---------------------------- ----------- 331.5/459.2 MB 1.9 MB/s eta 0:01:08\n", " ---------------------------- ----------- 331.6/459.2 MB 1.9 MB/s eta 0:01:08\n", " ---------------------------- ----------- 331.6/459.2 MB 1.9 MB/s eta 0:01:09\n", " ---------------------------- ----------- 331.6/459.2 MB 1.9 MB/s eta 0:01:09\n", " ---------------------------- ----------- 331.6/459.2 MB 1.9 MB/s eta 0:01:09\n", " ---------------------------- ----------- 331.6/459.2 MB 1.8 MB/s eta 0:01:10\n", " ---------------------------- ----------- 331.6/459.2 MB 1.8 MB/s eta 0:01:10\n", " ---------------------------- ----------- 331.7/459.2 MB 1.8 MB/s eta 0:01:11\n", " ---------------------------- ----------- 331.7/459.2 MB 1.8 MB/s eta 0:01:12\n", " ---------------------------- ----------- 331.7/459.2 MB 1.8 MB/s eta 0:01:12\n", " ---------------------------- ----------- 331.7/459.2 MB 1.8 MB/s eta 0:01:12\n", " ---------------------------- ----------- 331.8/459.2 MB 1.8 MB/s eta 0:01:13\n", " ---------------------------- ----------- 331.8/459.2 MB 1.7 MB/s eta 0:01:13\n", " ---------------------------- ----------- 331.8/459.2 MB 1.7 MB/s eta 0:01:14\n", " ---------------------------- ----------- 331.8/459.2 MB 1.7 MB/s eta 0:01:14\n", " ---------------------------- ----------- 331.8/459.2 MB 1.7 MB/s eta 0:01:15\n", " ---------------------------- ----------- 331.9/459.2 MB 1.7 MB/s eta 0:01:15\n", " ---------------------------- ----------- 331.9/459.2 MB 1.7 MB/s eta 0:01:16\n", " ---------------------------- ----------- 331.9/459.2 MB 1.7 MB/s eta 0:01:16\n", " ---------------------------- ----------- 331.9/459.2 MB 1.7 MB/s eta 0:01:16\n", " ---------------------------- ----------- 332.0/459.2 MB 1.7 MB/s eta 0:01:17\n", " ---------------------------- ----------- 332.0/459.2 MB 1.7 MB/s eta 0:01:17\n", " ---------------------------- ----------- 332.0/459.2 MB 1.6 MB/s eta 0:01:18\n", " ---------------------------- ----------- 332.1/459.2 MB 1.6 MB/s eta 0:01:18\n", " ---------------------------- ----------- 332.1/459.2 MB 1.6 MB/s eta 0:01:18\n", " ---------------------------- ----------- 332.1/459.2 MB 1.6 MB/s eta 0:01:19\n", " ---------------------------- ----------- 332.1/459.2 MB 1.6 MB/s eta 0:01:19\n", " ---------------------------- ----------- 332.2/459.2 MB 1.6 MB/s eta 0:01:20\n", " ---------------------------- ----------- 332.2/459.2 MB 1.6 MB/s eta 0:01:20\n", " ---------------------------- ----------- 332.2/459.2 MB 1.6 MB/s eta 0:01:20\n", " ---------------------------- ----------- 332.3/459.2 MB 1.6 MB/s eta 0:01:20\n", " ---------------------------- ----------- 332.3/459.2 MB 1.6 MB/s eta 0:01:21\n", " ---------------------------- ----------- 332.4/459.2 MB 1.6 MB/s eta 0:01:22\n", " ---------------------------- ----------- 332.4/459.2 MB 1.6 MB/s eta 0:01:22\n", " ---------------------------- ----------- 332.4/459.2 MB 1.5 MB/s eta 0:01:22\n", " ---------------------------- ----------- 332.4/459.2 MB 1.5 MB/s eta 0:01:22\n", " ---------------------------- ----------- 332.4/459.2 MB 1.5 MB/s eta 0:01:22\n", " ---------------------------- ----------- 332.5/459.2 MB 1.5 MB/s eta 0:01:24\n", " ---------------------------- ----------- 332.5/459.2 MB 1.5 MB/s eta 0:01:24\n", " ---------------------------- ----------- 332.5/459.2 MB 1.5 MB/s eta 0:01:25\n", " ---------------------------- ----------- 332.6/459.2 MB 1.5 MB/s eta 0:01:26\n", " ---------------------------- ----------- 332.6/459.2 MB 1.5 MB/s eta 0:01:26\n", " ---------------------------- ----------- 332.6/459.2 MB 1.5 MB/s eta 0:01:27\n", " ---------------------------- ----------- 332.6/459.2 MB 1.5 MB/s eta 0:01:27\n", " ---------------------------- ----------- 332.6/459.2 MB 1.5 MB/s eta 0:01:27\n", " ---------------------------- ----------- 332.6/459.2 MB 1.4 MB/s eta 0:01:28\n", " ---------------------------- ----------- 332.6/459.2 MB 1.4 MB/s eta 0:01:29\n", " ---------------------------- ----------- 332.7/459.2 MB 1.4 MB/s eta 0:01:30\n", " ---------------------------- ----------- 332.7/459.2 MB 1.4 MB/s eta 0:01:30\n", " ---------------------------- ----------- 332.7/459.2 MB 1.4 MB/s eta 0:01:31\n", " ---------------------------- ----------- 332.7/459.2 MB 1.4 MB/s eta 0:01:31\n", " ---------------------------- ----------- 332.7/459.2 MB 1.4 MB/s eta 0:01:32\n", " ---------------------------- ----------- 332.8/459.2 MB 1.4 MB/s eta 0:01:32\n", " ---------------------------- ----------- 332.8/459.2 MB 1.4 MB/s eta 0:01:34\n", " ---------------------------- ----------- 332.8/459.2 MB 1.3 MB/s eta 0:01:34\n", " ---------------------------- ----------- 332.8/459.2 MB 1.3 MB/s eta 0:01:35\n", " ---------------------------- ----------- 332.9/459.2 MB 1.3 MB/s eta 0:01:35\n", " ---------------------------- ----------- 332.9/459.2 MB 1.3 MB/s eta 0:01:36\n", " ----------------------------- ---------- 332.9/459.2 MB 1.3 MB/s eta 0:01:36\n", " ----------------------------- ---------- 333.0/459.2 MB 1.3 MB/s eta 0:01:37\n", " ----------------------------- ---------- 333.0/459.2 MB 1.3 MB/s eta 0:01:38\n", " ----------------------------- ---------- 333.0/459.2 MB 1.3 MB/s eta 0:01:38\n", " ----------------------------- ---------- 333.0/459.2 MB 1.3 MB/s eta 0:01:39\n", " ----------------------------- ---------- 333.1/459.2 MB 1.3 MB/s eta 0:01:40\n", " ----------------------------- ---------- 333.1/459.2 MB 1.3 MB/s eta 0:01:40\n", " ----------------------------- ---------- 333.1/459.2 MB 1.3 MB/s eta 0:01:41\n", " ----------------------------- ---------- 333.2/459.2 MB 1.3 MB/s eta 0:01:41\n", " ----------------------------- ---------- 333.2/459.2 MB 1.2 MB/s eta 0:01:42\n", " ----------------------------- ---------- 333.3/459.2 MB 1.2 MB/s eta 0:01:42\n", " ----------------------------- ---------- 333.3/459.2 MB 1.2 MB/s eta 0:01:43\n", " ----------------------------- ---------- 333.3/459.2 MB 1.2 MB/s eta 0:01:43\n", " ----------------------------- ---------- 333.4/459.2 MB 1.2 MB/s eta 0:01:44\n", " ----------------------------- ---------- 333.4/459.2 MB 1.2 MB/s eta 0:01:44\n", " ----------------------------- ---------- 333.4/459.2 MB 1.2 MB/s eta 0:01:45\n", " ----------------------------- ---------- 333.5/459.2 MB 1.2 MB/s eta 0:01:45\n", " ----------------------------- ---------- 333.5/459.2 MB 1.2 MB/s eta 0:01:46\n", " ----------------------------- ---------- 333.6/459.2 MB 1.2 MB/s eta 0:01:46\n", " ----------------------------- ---------- 333.6/459.2 MB 1.2 MB/s eta 0:01:47\n", " ----------------------------- ---------- 333.7/459.2 MB 1.2 MB/s eta 0:01:47\n", " ----------------------------- ---------- 333.7/459.2 MB 1.2 MB/s eta 0:01:48\n", " ----------------------------- ---------- 333.8/459.2 MB 1.2 MB/s eta 0:01:48\n", " ----------------------------- ---------- 333.8/459.2 MB 1.2 MB/s eta 0:01:49\n", " ----------------------------- ---------- 333.9/459.2 MB 1.2 MB/s eta 0:01:49\n", " ----------------------------- ---------- 333.9/459.2 MB 1.1 MB/s eta 0:01:50\n", " ----------------------------- ---------- 334.0/459.2 MB 1.1 MB/s eta 0:01:50\n", " ----------------------------- ---------- 334.0/459.2 MB 1.1 MB/s eta 0:01:50\n", " ----------------------------- ---------- 334.1/459.2 MB 1.1 MB/s eta 0:01:51\n", " ----------------------------- ---------- 334.2/459.2 MB 1.1 MB/s eta 0:01:51\n", " ----------------------------- ---------- 334.2/459.2 MB 1.1 MB/s eta 0:01:52\n", " ----------------------------- ---------- 334.3/459.2 MB 1.1 MB/s eta 0:01:52\n", " ----------------------------- ---------- 334.4/459.2 MB 1.1 MB/s eta 0:01:53\n", " ----------------------------- ---------- 334.4/459.2 MB 1.1 MB/s eta 0:01:53\n", " ----------------------------- ---------- 334.5/459.2 MB 1.1 MB/s eta 0:01:53\n", " ----------------------------- ---------- 334.5/459.2 MB 1.1 MB/s eta 0:01:54\n", " ----------------------------- ---------- 334.6/459.2 MB 1.1 MB/s eta 0:01:54\n", " ----------------------------- ---------- 334.7/459.2 MB 1.1 MB/s eta 0:01:55\n", " ----------------------------- ---------- 334.7/459.2 MB 1.1 MB/s eta 0:01:55\n", " ----------------------------- ---------- 334.8/459.2 MB 1.1 MB/s eta 0:01:55\n", " ----------------------------- ---------- 334.8/459.2 MB 1.1 MB/s eta 0:01:56\n", " ----------------------------- ---------- 334.8/459.2 MB 1.1 MB/s eta 0:01:56\n", " ----------------------------- ---------- 334.8/459.2 MB 1.1 MB/s eta 0:01:56\n", " ----------------------------- ---------- 334.9/459.2 MB 1.1 MB/s eta 0:01:57\n", " ----------------------------- ---------- 334.9/459.2 MB 1.1 MB/s eta 0:01:58\n", " ----------------------------- ---------- 335.0/459.2 MB 1.1 MB/s eta 0:01:58\n", " ----------------------------- ---------- 335.0/459.2 MB 1.1 MB/s eta 0:01:58\n", " ----------------------------- ---------- 335.0/459.2 MB 1.1 MB/s eta 0:01:58\n", " ----------------------------- ---------- 335.1/459.2 MB 1.0 MB/s eta 0:02:00\n", " ----------------------------- ---------- 335.1/459.2 MB 1.0 MB/s eta 0:02:00\n", " ----------------------------- ---------- 335.1/459.2 MB 1.0 MB/s eta 0:02:01\n", " ----------------------------- ---------- 335.1/459.2 MB 1.0 MB/s eta 0:02:02\n", " ----------------------------- ---------- 335.2/459.2 MB 1.0 MB/s eta 0:02:02\n", " ----------------------------- ---------- 335.2/459.2 MB 1.0 MB/s eta 0:02:02\n", " ----------------------------- ---------- 335.2/459.2 MB 1.0 MB/s eta 0:02:02\n", " ----------------------------- ---------- 335.3/459.2 MB 1.0 MB/s eta 0:02:04\n", " ----------------------------- ---------- 335.3/459.2 MB 1.0 MB/s eta 0:02:04\n", " --------------------------- ---------- 335.4/459.2 MB 999.5 kB/s eta 0:02:04\n", " --------------------------- ---------- 335.4/459.2 MB 999.5 kB/s eta 0:02:04\n", " --------------------------- ---------- 335.4/459.2 MB 989.0 kB/s eta 0:02:06\n", " --------------------------- ---------- 335.5/459.2 MB 983.1 kB/s eta 0:02:06\n", " --------------------------- ---------- 335.5/459.2 MB 980.0 kB/s eta 0:02:07\n", " --------------------------- ---------- 335.5/459.2 MB 980.0 kB/s eta 0:02:07\n", " --------------------------- ---------- 335.5/459.2 MB 971.3 kB/s eta 0:02:08\n", " --------------------------- ---------- 335.6/459.2 MB 965.6 kB/s eta 0:02:08\n", " --------------------------- ---------- 335.7/459.2 MB 962.8 kB/s eta 0:02:09\n", " --------------------------- ---------- 335.7/459.2 MB 961.4 kB/s eta 0:02:09\n", " --------------------------- ---------- 335.7/459.2 MB 961.4 kB/s eta 0:02:09\n", " --------------------------- ---------- 335.8/459.2 MB 950.3 kB/s eta 0:02:10\n", " --------------------------- ---------- 335.8/459.2 MB 944.8 kB/s eta 0:02:11\n", " --------------------------- ---------- 335.9/459.2 MB 943.4 kB/s eta 0:02:11\n", " --------------------------- ---------- 335.9/459.2 MB 943.4 kB/s eta 0:02:11\n", " --------------------------- ---------- 336.0/459.2 MB 936.6 kB/s eta 0:02:12\n", " --------------------------- ---------- 336.0/459.2 MB 931.3 kB/s eta 0:02:13\n", " --------------------------- ---------- 336.0/459.2 MB 928.7 kB/s eta 0:02:13\n", " --------------------------- ---------- 336.0/459.2 MB 928.7 kB/s eta 0:02:13\n", " --------------------------- ---------- 336.1/459.2 MB 920.9 kB/s eta 0:02:14\n", " --------------------------- ---------- 336.1/459.2 MB 920.9 kB/s eta 0:02:14\n", " --------------------------- ---------- 336.1/459.2 MB 914.4 kB/s eta 0:02:15\n", " --------------------------- ---------- 336.2/459.2 MB 913.1 kB/s eta 0:02:15\n", " --------------------------- ---------- 336.3/459.2 MB 911.8 kB/s eta 0:02:15\n", " --------------------------- ---------- 336.3/459.2 MB 911.8 kB/s eta 0:02:15\n", " --------------------------- ---------- 336.4/459.2 MB 903.0 kB/s eta 0:02:16\n", " --------------------------- ---------- 336.4/459.2 MB 898.1 kB/s eta 0:02:17\n", " --------------------------- ---------- 336.4/459.2 MB 898.1 kB/s eta 0:02:17\n", " --------------------------- ---------- 336.4/459.2 MB 898.1 kB/s eta 0:02:17\n", " --------------------------- ---------- 336.5/459.2 MB 885.9 kB/s eta 0:02:19\n", " --------------------------- ---------- 336.5/459.2 MB 884.7 kB/s eta 0:02:19\n", " --------------------------- ---------- 336.5/459.2 MB 884.7 kB/s eta 0:02:19\n", " --------------------------- ---------- 336.6/459.2 MB 877.6 kB/s eta 0:02:20\n", " --------------------------- ---------- 336.6/459.2 MB 874.1 kB/s eta 0:02:21\n", " --------------------------- ---------- 336.7/459.2 MB 870.6 kB/s eta 0:02:21\n", " --------------------------- ---------- 336.8/459.2 MB 870.6 kB/s eta 0:02:21\n", " --------------------------- ---------- 336.9/459.2 MB 869.4 kB/s eta 0:02:21\n", " --------------------------- ---------- 336.9/459.2 MB 869.4 kB/s eta 0:02:21\n", " --------------------------- ---------- 336.9/459.2 MB 862.6 kB/s eta 0:02:22\n", " --------------------------- ---------- 337.0/459.2 MB 859.2 kB/s eta 0:02:23\n", " --------------------------- ---------- 337.0/459.2 MB 857.0 kB/s eta 0:02:23\n", " --------------------------- ---------- 337.0/459.2 MB 857.0 kB/s eta 0:02:23\n", " --------------------------- ---------- 337.1/459.2 MB 848.1 kB/s eta 0:02:24\n", " --------------------------- ---------- 337.2/459.2 MB 847.0 kB/s eta 0:02:25\n", " --------------------------- ---------- 337.2/459.2 MB 847.0 kB/s eta 0:02:25\n", " --------------------------- ---------- 337.3/459.2 MB 840.4 kB/s eta 0:02:26\n", " --------------------------- ---------- 337.3/459.2 MB 837.2 kB/s eta 0:02:26\n", " --------------------------- ---------- 337.5/459.2 MB 837.3 kB/s eta 0:02:26\n", " --------------------------- ---------- 337.6/459.2 MB 837.2 kB/s eta 0:02:26\n", " --------------------------- ---------- 337.6/459.2 MB 837.2 kB/s eta 0:02:26\n", " --------------------------- ---------- 337.6/459.2 MB 837.2 kB/s eta 0:02:26\n", " --------------------------- ---------- 337.7/459.2 MB 830.9 kB/s eta 0:02:27\n", " --------------------------- ---------- 337.8/459.2 MB 826.6 kB/s eta 0:02:27\n", " --------------------------- ---------- 337.8/459.2 MB 826.6 kB/s eta 0:02:27\n", " --------------------------- ---------- 337.8/459.2 MB 826.6 kB/s eta 0:02:27\n", " --------------------------- ---------- 338.0/459.2 MB 821.5 kB/s eta 0:02:28\n", " --------------------------- ---------- 338.1/459.2 MB 818.4 kB/s eta 0:02:28\n", " --------------------------- ---------- 338.1/459.2 MB 818.4 kB/s eta 0:02:28\n", " --------------------------- ---------- 338.2/459.2 MB 813.3 kB/s eta 0:02:29\n", " --------------------------- ---------- 338.2/459.2 MB 810.3 kB/s eta 0:02:30\n", " ---------------------------- --------- 338.4/459.2 MB 809.3 kB/s eta 0:02:30\n", " ---------------------------- --------- 338.5/459.2 MB 810.3 kB/s eta 0:02:29\n", " ---------------------------- --------- 338.6/459.2 MB 811.2 kB/s eta 0:02:29\n", " ---------------------------- --------- 338.6/459.2 MB 811.2 kB/s eta 0:02:29\n", " ---------------------------- --------- 338.7/459.2 MB 804.3 kB/s eta 0:02:30\n", " ---------------------------- --------- 338.8/459.2 MB 803.3 kB/s eta 0:02:30\n", " ---------------------------- --------- 338.9/459.2 MB 803.3 kB/s eta 0:02:30\n", " ---------------------------- --------- 338.9/459.2 MB 803.3 kB/s eta 0:02:30\n", " ---------------------------- --------- 339.0/459.2 MB 799.4 kB/s eta 0:02:31\n", " ---------------------------- --------- 339.1/459.2 MB 795.5 kB/s eta 0:02:31\n", " ---------------------------- --------- 339.1/459.2 MB 795.5 kB/s eta 0:02:31\n", " ---------------------------- --------- 339.1/459.2 MB 788.8 kB/s eta 0:02:33\n", " ---------------------------- --------- 339.2/459.2 MB 786.9 kB/s eta 0:02:33\n", " ---------------------------- --------- 339.3/459.2 MB 786.0 kB/s eta 0:02:33\n", " ---------------------------- --------- 339.4/459.2 MB 786.9 kB/s eta 0:02:33\n", " ---------------------------- --------- 339.5/459.2 MB 786.9 kB/s eta 0:02:33\n", " ---------------------------- --------- 339.5/459.2 MB 786.9 kB/s eta 0:02:33\n", " ---------------------------- --------- 339.7/459.2 MB 782.2 kB/s eta 0:02:33\n", " ---------------------------- --------- 339.8/459.2 MB 778.5 kB/s eta 0:02:34\n", " ---------------------------- --------- 339.8/459.2 MB 779.4 kB/s eta 0:02:34\n", " ---------------------------- --------- 339.8/459.2 MB 779.4 kB/s eta 0:02:34\n", " ---------------------------- --------- 339.9/459.2 MB 773.9 kB/s eta 0:02:35\n", " ---------------------------- --------- 340.0/459.2 MB 770.3 kB/s eta 0:02:35\n", " ---------------------------- --------- 340.0/459.2 MB 770.3 kB/s eta 0:02:35\n", " ---------------------------- --------- 340.2/459.2 MB 768.5 kB/s eta 0:02:35\n", " ---------------------------- --------- 340.2/459.2 MB 765.7 kB/s eta 0:02:36\n", " ---------------------------- --------- 340.2/459.2 MB 765.7 kB/s eta 0:02:36\n", " ---------------------------- --------- 340.4/459.2 MB 761.3 kB/s eta 0:02:37\n", " ---------------------------- --------- 340.4/459.2 MB 759.5 kB/s eta 0:02:37\n", " ---------------------------- --------- 340.6/459.2 MB 758.7 kB/s eta 0:02:37\n", " ---------------------------- --------- 340.7/459.2 MB 759.5 kB/s eta 0:02:36\n", " ---------------------------- --------- 340.9/459.2 MB 760.4 kB/s eta 0:02:36\n", " ---------------------------- --------- 341.0/459.2 MB 759.5 kB/s eta 0:02:36\n", " ---------------------------- --------- 341.1/459.2 MB 756.9 kB/s eta 0:02:37\n", " ---------------------------- --------- 341.3/459.2 MB 762.2 kB/s eta 0:02:35\n", " ---------------------------- --------- 341.5/459.2 MB 773.9 kB/s eta 0:02:33\n", " ---------------------------- --------- 341.6/459.2 MB 780.4 kB/s eta 0:02:31\n", " ---------------------------- --------- 341.8/459.2 MB 811.3 kB/s eta 0:02:25\n", " ---------------------------- --------- 341.9/459.2 MB 834.0 kB/s eta 0:02:21\n", " ---------------------------- --------- 342.0/459.2 MB 845.9 kB/s eta 0:02:19\n", " ---------------------------- --------- 342.2/459.2 MB 861.5 kB/s eta 0:02:16\n", " ---------------------------- --------- 342.3/459.2 MB 876.4 kB/s eta 0:02:14\n", " ---------------------------- --------- 342.5/459.2 MB 888.3 kB/s eta 0:02:12\n", " ---------------------------- --------- 342.6/459.2 MB 898.1 kB/s eta 0:02:10\n", " ---------------------------- --------- 342.8/459.2 MB 920.9 kB/s eta 0:02:07\n", " ---------------------------- --------- 342.9/459.2 MB 955.8 kB/s eta 0:02:02\n", " ---------------------------- --------- 343.0/459.2 MB 990.5 kB/s eta 0:01:58\n", " ----------------------------- ---------- 343.2/459.2 MB 1.0 MB/s eta 0:01:55\n", " ----------------------------- ---------- 343.4/459.2 MB 1.0 MB/s eta 0:01:52\n", " ----------------------------- ---------- 343.5/459.2 MB 1.1 MB/s eta 0:01:50\n", " ----------------------------- ---------- 343.6/459.2 MB 1.1 MB/s eta 0:01:47\n", " ----------------------------- ---------- 343.8/459.2 MB 1.1 MB/s eta 0:01:46\n", " ----------------------------- ---------- 343.9/459.2 MB 1.1 MB/s eta 0:01:44\n", " ----------------------------- ---------- 344.1/459.2 MB 1.1 MB/s eta 0:01:42\n", " ----------------------------- ---------- 344.2/459.2 MB 1.1 MB/s eta 0:01:41\n", " ----------------------------- ---------- 344.4/459.2 MB 1.2 MB/s eta 0:01:40\n", " ------------------------------ --------- 344.5/459.2 MB 1.2 MB/s eta 0:01:39\n", " ------------------------------ --------- 344.7/459.2 MB 1.2 MB/s eta 0:01:38\n", " ------------------------------ --------- 344.8/459.2 MB 1.2 MB/s eta 0:01:36\n", " ------------------------------ --------- 344.9/459.2 MB 1.2 MB/s eta 0:01:36\n", " ------------------------------ --------- 345.0/459.2 MB 1.2 MB/s eta 0:01:35\n", " ------------------------------ --------- 345.1/459.2 MB 1.2 MB/s eta 0:01:35\n", " ------------------------------ --------- 345.2/459.2 MB 1.2 MB/s eta 0:01:33\n", " ------------------------------ --------- 345.3/459.2 MB 1.2 MB/s eta 0:01:32\n", " ------------------------------ --------- 345.4/459.2 MB 1.3 MB/s eta 0:01:30\n", " ------------------------------ --------- 345.5/459.2 MB 1.3 MB/s eta 0:01:29\n", " ------------------------------ --------- 345.6/459.2 MB 1.3 MB/s eta 0:01:28\n", " ------------------------------ --------- 345.6/459.2 MB 1.3 MB/s eta 0:01:27\n", " ------------------------------ --------- 345.7/459.2 MB 1.3 MB/s eta 0:01:27\n", " ------------------------------ --------- 345.8/459.2 MB 1.3 MB/s eta 0:01:25\n", " ------------------------------ --------- 345.9/459.2 MB 1.3 MB/s eta 0:01:25\n", " ------------------------------ --------- 346.0/459.2 MB 1.3 MB/s eta 0:01:25\n", " ------------------------------ --------- 346.0/459.2 MB 1.4 MB/s eta 0:01:24\n", " ------------------------------ --------- 346.1/459.2 MB 1.4 MB/s eta 0:01:22\n", " ------------------------------ --------- 346.2/459.2 MB 1.4 MB/s eta 0:01:21\n", " ------------------------------ --------- 346.3/459.2 MB 1.4 MB/s eta 0:01:21\n", " ------------------------------ --------- 346.4/459.2 MB 1.4 MB/s eta 0:01:20\n", " ------------------------------ --------- 346.5/459.2 MB 1.4 MB/s eta 0:01:20\n", " ------------------------------ --------- 346.6/459.2 MB 1.4 MB/s eta 0:01:19\n", " ------------------------------ --------- 346.7/459.2 MB 1.5 MB/s eta 0:01:17\n", " ------------------------------ --------- 346.8/459.2 MB 1.5 MB/s eta 0:01:16\n", " ------------------------------ --------- 346.9/459.2 MB 1.5 MB/s eta 0:01:14\n", " ------------------------------ --------- 347.0/459.2 MB 1.5 MB/s eta 0:01:14\n", " ------------------------------ --------- 347.1/459.2 MB 1.5 MB/s eta 0:01:14\n", " ------------------------------ --------- 347.1/459.2 MB 1.5 MB/s eta 0:01:13\n", " ------------------------------ --------- 347.2/459.2 MB 1.5 MB/s eta 0:01:13\n", " ------------------------------ --------- 347.3/459.2 MB 1.6 MB/s eta 0:01:12\n", " ------------------------------ --------- 347.3/459.2 MB 1.6 MB/s eta 0:01:12\n", " ------------------------------ --------- 347.4/459.2 MB 1.6 MB/s eta 0:01:11\n", " ------------------------------ --------- 347.5/459.2 MB 1.6 MB/s eta 0:01:10\n", " ------------------------------ --------- 347.6/459.2 MB 1.6 MB/s eta 0:01:10\n", " ------------------------------ --------- 347.6/459.2 MB 1.6 MB/s eta 0:01:10\n", " ------------------------------ --------- 347.8/459.2 MB 1.6 MB/s eta 0:01:10\n", " ------------------------------ --------- 347.8/459.2 MB 1.6 MB/s eta 0:01:09\n", " ------------------------------ --------- 348.0/459.2 MB 1.6 MB/s eta 0:01:09\n", " ------------------------------ --------- 348.1/459.2 MB 1.7 MB/s eta 0:01:07\n", " ------------------------------ --------- 348.1/459.2 MB 1.7 MB/s eta 0:01:08\n", " ------------------------------ --------- 348.2/459.2 MB 1.7 MB/s eta 0:01:08\n", " ------------------------------ --------- 348.4/459.2 MB 1.7 MB/s eta 0:01:06\n", " ------------------------------ --------- 348.4/459.2 MB 1.7 MB/s eta 0:01:06\n", " ------------------------------ --------- 348.5/459.2 MB 1.7 MB/s eta 0:01:06\n", " ------------------------------ --------- 348.6/459.2 MB 1.7 MB/s eta 0:01:07\n", " ------------------------------ --------- 348.7/459.2 MB 1.7 MB/s eta 0:01:07\n", " ------------------------------ --------- 348.8/459.2 MB 1.7 MB/s eta 0:01:07\n", " ------------------------------ --------- 349.0/459.2 MB 1.7 MB/s eta 0:01:05\n", " ------------------------------ --------- 349.1/459.2 MB 1.7 MB/s eta 0:01:06\n", " ------------------------------ --------- 349.1/459.2 MB 1.7 MB/s eta 0:01:05\n", " ------------------------------ --------- 349.3/459.2 MB 1.7 MB/s eta 0:01:04\n", " ------------------------------ --------- 349.4/459.2 MB 1.8 MB/s eta 0:01:03\n", " ------------------------------ --------- 349.5/459.2 MB 1.8 MB/s eta 0:01:02\n", " ------------------------------ --------- 349.5/459.2 MB 1.8 MB/s eta 0:01:02\n", " ------------------------------ --------- 349.6/459.2 MB 1.8 MB/s eta 0:01:03\n", " ------------------------------ --------- 349.6/459.2 MB 1.7 MB/s eta 0:01:04\n", " ------------------------------ --------- 349.7/459.2 MB 1.7 MB/s eta 0:01:04\n", " ------------------------------ --------- 349.9/459.2 MB 1.8 MB/s eta 0:01:02\n", " ------------------------------ --------- 350.0/459.2 MB 1.8 MB/s eta 0:01:02\n", " ------------------------------ --------- 350.1/459.2 MB 1.8 MB/s eta 0:01:01\n", " ------------------------------ --------- 350.2/459.2 MB 1.8 MB/s eta 0:01:01\n", " ------------------------------ --------- 350.4/459.2 MB 1.8 MB/s eta 0:01:00\n", " ------------------------------ --------- 350.5/459.2 MB 1.9 MB/s eta 0:00:59\n", " ------------------------------ --------- 350.6/459.2 MB 1.9 MB/s eta 0:00:59\n", " ------------------------------ --------- 350.8/459.2 MB 1.9 MB/s eta 0:00:58\n", " ------------------------------ --------- 350.9/459.2 MB 1.9 MB/s eta 0:00:59\n", " ------------------------------ --------- 351.0/459.2 MB 1.9 MB/s eta 0:00:59\n", " ------------------------------ --------- 351.2/459.2 MB 1.9 MB/s eta 0:00:59\n", " ------------------------------ --------- 351.3/459.2 MB 1.9 MB/s eta 0:00:58\n", " ------------------------------ --------- 351.4/459.2 MB 1.9 MB/s eta 0:00:59\n", " ------------------------------ --------- 351.5/459.2 MB 1.8 MB/s eta 0:00:59\n", " ------------------------------ --------- 351.7/459.2 MB 1.8 MB/s eta 0:00:59\n", " ------------------------------ --------- 351.8/459.2 MB 1.9 MB/s eta 0:00:58\n", " ------------------------------ --------- 352.0/459.2 MB 1.9 MB/s eta 0:00:58\n", " ------------------------------ --------- 352.1/459.2 MB 1.8 MB/s eta 0:00:58\n", " ------------------------------ --------- 352.2/459.2 MB 1.8 MB/s eta 0:00:58\n", " ------------------------------ --------- 352.4/459.2 MB 1.9 MB/s eta 0:00:58\n", " ------------------------------ --------- 352.5/459.2 MB 1.9 MB/s eta 0:00:58\n", " ------------------------------ --------- 352.6/459.2 MB 1.9 MB/s eta 0:00:58\n", " ------------------------------ --------- 352.7/459.2 MB 1.9 MB/s eta 0:00:58\n", " ------------------------------ --------- 352.9/459.2 MB 1.9 MB/s eta 0:00:58\n", " ------------------------------ --------- 353.1/459.2 MB 1.9 MB/s eta 0:00:58\n", " ------------------------------ --------- 353.2/459.2 MB 1.9 MB/s eta 0:00:57\n", " ------------------------------ --------- 353.3/459.2 MB 1.9 MB/s eta 0:00:58\n", " ------------------------------ --------- 353.5/459.2 MB 1.9 MB/s eta 0:00:57\n", " ------------------------------ --------- 353.7/459.2 MB 1.9 MB/s eta 0:00:57\n", " ------------------------------ --------- 353.8/459.2 MB 1.9 MB/s eta 0:00:57\n", " ------------------------------ --------- 353.9/459.2 MB 1.9 MB/s eta 0:00:57\n", " ------------------------------ --------- 354.1/459.2 MB 1.9 MB/s eta 0:00:57\n", " ------------------------------ --------- 354.2/459.2 MB 1.9 MB/s eta 0:00:57\n", " ------------------------------ --------- 354.3/459.2 MB 1.9 MB/s eta 0:00:57\n", " ------------------------------ --------- 354.5/459.2 MB 1.9 MB/s eta 0:00:57\n", " ------------------------------ --------- 354.7/459.2 MB 1.9 MB/s eta 0:00:57\n", " ------------------------------ --------- 354.8/459.2 MB 1.9 MB/s eta 0:00:57\n", " ------------------------------ --------- 354.9/459.2 MB 1.9 MB/s eta 0:00:57\n", " ------------------------------ --------- 355.1/459.2 MB 1.9 MB/s eta 0:00:56\n", " ------------------------------ --------- 355.2/459.2 MB 1.9 MB/s eta 0:00:56\n", " ------------------------------ --------- 355.4/459.2 MB 1.9 MB/s eta 0:00:56\n", " ------------------------------ --------- 355.5/459.2 MB 1.9 MB/s eta 0:00:55\n", " ------------------------------ --------- 355.6/459.2 MB 1.9 MB/s eta 0:00:55\n", " ------------------------------ --------- 355.7/459.2 MB 1.9 MB/s eta 0:00:54\n", " ------------------------------ --------- 355.9/459.2 MB 1.9 MB/s eta 0:00:54\n", " ------------------------------- -------- 356.0/459.2 MB 2.0 MB/s eta 0:00:53\n", " ------------------------------- -------- 356.0/459.2 MB 2.0 MB/s eta 0:00:53\n", " ------------------------------- -------- 356.2/459.2 MB 2.0 MB/s eta 0:00:53\n", " ------------------------------- -------- 356.3/459.2 MB 2.0 MB/s eta 0:00:52\n", " ------------------------------- -------- 356.3/459.2 MB 2.0 MB/s eta 0:00:52\n", " ------------------------------- -------- 356.4/459.2 MB 2.0 MB/s eta 0:00:52\n", " ------------------------------- -------- 356.6/459.2 MB 2.0 MB/s eta 0:00:51\n", " ------------------------------- -------- 356.7/459.2 MB 2.0 MB/s eta 0:00:51\n", " ------------------------------- -------- 356.8/459.2 MB 2.0 MB/s eta 0:00:51\n", " ------------------------------- -------- 356.9/459.2 MB 2.0 MB/s eta 0:00:51\n", " ------------------------------- -------- 357.1/459.2 MB 2.0 MB/s eta 0:00:50\n", " ------------------------------- -------- 357.2/459.2 MB 2.1 MB/s eta 0:00:50\n", " ------------------------------- -------- 357.3/459.2 MB 2.1 MB/s eta 0:00:50\n", " ------------------------------- -------- 357.4/459.2 MB 2.1 MB/s eta 0:00:50\n", " ------------------------------- -------- 357.5/459.2 MB 2.1 MB/s eta 0:00:49\n", " ------------------------------- -------- 357.6/459.2 MB 2.1 MB/s eta 0:00:49\n", " ------------------------------- -------- 357.7/459.2 MB 2.1 MB/s eta 0:00:49\n", " ------------------------------- -------- 357.8/459.2 MB 2.1 MB/s eta 0:00:49\n", " ------------------------------- -------- 357.9/459.2 MB 2.1 MB/s eta 0:00:48\n", " ------------------------------- -------- 358.0/459.2 MB 2.1 MB/s eta 0:00:48\n", " ------------------------------- -------- 358.2/459.2 MB 2.1 MB/s eta 0:00:48\n", " ------------------------------- -------- 358.3/459.2 MB 2.1 MB/s eta 0:00:48\n", " ------------------------------- -------- 358.4/459.2 MB 2.1 MB/s eta 0:00:47\n", " ------------------------------- -------- 358.5/459.2 MB 2.2 MB/s eta 0:00:47\n", " ------------------------------- -------- 358.7/459.2 MB 2.2 MB/s eta 0:00:47\n", " ------------------------------- -------- 358.8/459.2 MB 2.2 MB/s eta 0:00:47\n", " ------------------------------- -------- 358.9/459.2 MB 2.2 MB/s eta 0:00:46\n", " ------------------------------- -------- 359.0/459.2 MB 2.2 MB/s eta 0:00:46\n", " ------------------------------- -------- 359.2/459.2 MB 2.2 MB/s eta 0:00:46\n", " ------------------------------- -------- 359.3/459.2 MB 2.2 MB/s eta 0:00:46\n", " ------------------------------- -------- 359.5/459.2 MB 2.2 MB/s eta 0:00:46\n", " ------------------------------- -------- 359.6/459.2 MB 2.2 MB/s eta 0:00:45\n", " ------------------------------- -------- 359.7/459.2 MB 2.2 MB/s eta 0:00:45\n", " ------------------------------- -------- 359.9/459.2 MB 2.3 MB/s eta 0:00:44\n", " ------------------------------- -------- 360.1/459.2 MB 2.3 MB/s eta 0:00:44\n", " ------------------------------- -------- 360.2/459.2 MB 2.3 MB/s eta 0:00:44\n", " ------------------------------- -------- 360.4/459.2 MB 2.3 MB/s eta 0:00:44\n", " ------------------------------- -------- 360.5/459.2 MB 2.3 MB/s eta 0:00:43\n", " ------------------------------- -------- 360.7/459.2 MB 2.3 MB/s eta 0:00:43\n", " ------------------------------- -------- 360.8/459.2 MB 2.3 MB/s eta 0:00:43\n", " ------------------------------- -------- 361.0/459.2 MB 2.3 MB/s eta 0:00:43\n", " ------------------------------- -------- 361.1/459.2 MB 2.3 MB/s eta 0:00:43\n", " ------------------------------- -------- 361.3/459.2 MB 2.3 MB/s eta 0:00:43\n", " ------------------------------- -------- 361.4/459.2 MB 2.3 MB/s eta 0:00:43\n", " ------------------------------- -------- 361.6/459.2 MB 2.3 MB/s eta 0:00:43\n", " ------------------------------- -------- 361.7/459.2 MB 2.3 MB/s eta 0:00:42\n", " ------------------------------- -------- 361.9/459.2 MB 2.3 MB/s eta 0:00:42\n", " ------------------------------- -------- 362.0/459.2 MB 2.3 MB/s eta 0:00:42\n", " ------------------------------- -------- 362.1/459.2 MB 2.3 MB/s eta 0:00:42\n", " ------------------------------- -------- 362.3/459.2 MB 2.3 MB/s eta 0:00:42\n", " ------------------------------- -------- 362.4/459.2 MB 2.3 MB/s eta 0:00:42\n", " ------------------------------- -------- 362.6/459.2 MB 2.3 MB/s eta 0:00:42\n", " ------------------------------- -------- 362.7/459.2 MB 2.4 MB/s eta 0:00:41\n", " ------------------------------- -------- 362.9/459.2 MB 2.4 MB/s eta 0:00:41\n", " ------------------------------- -------- 363.0/459.2 MB 2.4 MB/s eta 0:00:41\n", " ------------------------------- -------- 363.2/459.2 MB 2.4 MB/s eta 0:00:41\n", " ------------------------------- -------- 363.3/459.2 MB 2.4 MB/s eta 0:00:41\n", " ------------------------------- -------- 363.5/459.2 MB 2.4 MB/s eta 0:00:41\n", " ------------------------------- -------- 363.6/459.2 MB 2.4 MB/s eta 0:00:41\n", " ------------------------------- -------- 363.8/459.2 MB 2.4 MB/s eta 0:00:41\n", " ------------------------------- -------- 363.8/459.2 MB 2.4 MB/s eta 0:00:41\n", " ------------------------------- -------- 364.0/459.2 MB 2.4 MB/s eta 0:00:41\n", " ------------------------------- -------- 364.2/459.2 MB 2.4 MB/s eta 0:00:41\n", " ------------------------------- -------- 364.3/459.2 MB 2.4 MB/s eta 0:00:41\n", " ------------------------------- -------- 364.5/459.2 MB 2.4 MB/s eta 0:00:41\n", " ------------------------------- -------- 364.6/459.2 MB 2.4 MB/s eta 0:00:40\n", " ------------------------------- -------- 364.6/459.2 MB 2.4 MB/s eta 0:00:40\n", " ------------------------------- -------- 364.9/459.2 MB 2.3 MB/s eta 0:00:41\n", " ------------------------------- -------- 365.0/459.2 MB 2.3 MB/s eta 0:00:41\n", " ------------------------------- -------- 365.1/459.2 MB 2.3 MB/s eta 0:00:41\n", " ------------------------------- -------- 365.2/459.2 MB 2.3 MB/s eta 0:00:41\n", " ------------------------------- -------- 365.3/459.2 MB 2.3 MB/s eta 0:00:41\n", " ------------------------------- -------- 365.4/459.2 MB 2.3 MB/s eta 0:00:41\n", " ------------------------------- -------- 365.5/459.2 MB 2.3 MB/s eta 0:00:41\n", " ------------------------------- -------- 365.6/459.2 MB 2.3 MB/s eta 0:00:41\n", " ------------------------------- -------- 365.7/459.2 MB 2.3 MB/s eta 0:00:41\n", " ------------------------------- -------- 365.8/459.2 MB 2.3 MB/s eta 0:00:41\n", " ------------------------------- -------- 365.9/459.2 MB 2.3 MB/s eta 0:00:41\n", " ------------------------------- -------- 366.0/459.2 MB 2.3 MB/s eta 0:00:41\n", " ------------------------------- -------- 366.1/459.2 MB 2.3 MB/s eta 0:00:41\n", " ------------------------------- -------- 366.2/459.2 MB 2.3 MB/s eta 0:00:41\n", " ------------------------------- -------- 366.4/459.2 MB 2.3 MB/s eta 0:00:41\n", " ------------------------------- -------- 366.4/459.2 MB 2.3 MB/s eta 0:00:41\n", " ------------------------------- -------- 366.6/459.2 MB 2.3 MB/s eta 0:00:41\n", " ------------------------------- -------- 366.7/459.2 MB 2.3 MB/s eta 0:00:40\n", " ------------------------------- -------- 366.8/459.2 MB 2.3 MB/s eta 0:00:40\n", " ------------------------------- -------- 367.0/459.2 MB 2.3 MB/s eta 0:00:40\n", " ------------------------------- -------- 367.1/459.2 MB 2.3 MB/s eta 0:00:40\n", " ------------------------------- -------- 367.2/459.2 MB 2.3 MB/s eta 0:00:40\n", " ------------------------------- -------- 367.3/459.2 MB 2.3 MB/s eta 0:00:40\n", " -------------------------------- ------- 367.4/459.2 MB 2.3 MB/s eta 0:00:40\n", " -------------------------------- ------- 367.5/459.2 MB 2.3 MB/s eta 0:00:40\n", " -------------------------------- ------- 367.6/459.2 MB 2.4 MB/s eta 0:00:39\n", " -------------------------------- ------- 367.7/459.2 MB 2.3 MB/s eta 0:00:40\n", " -------------------------------- ------- 367.9/459.2 MB 2.3 MB/s eta 0:00:40\n", " -------------------------------- ------- 368.0/459.2 MB 2.3 MB/s eta 0:00:39\n", " -------------------------------- ------- 368.1/459.2 MB 2.3 MB/s eta 0:00:40\n", " -------------------------------- ------- 368.2/459.2 MB 2.3 MB/s eta 0:00:39\n", " -------------------------------- ------- 368.4/459.2 MB 2.3 MB/s eta 0:00:39\n", " -------------------------------- ------- 368.5/459.2 MB 2.3 MB/s eta 0:00:39\n", " -------------------------------- ------- 368.6/459.2 MB 2.3 MB/s eta 0:00:39\n", " -------------------------------- ------- 368.7/459.2 MB 2.3 MB/s eta 0:00:39\n", " -------------------------------- ------- 368.9/459.2 MB 2.3 MB/s eta 0:00:39\n", " -------------------------------- ------- 369.0/459.2 MB 2.4 MB/s eta 0:00:39\n", " -------------------------------- ------- 369.2/459.2 MB 2.4 MB/s eta 0:00:39\n", " -------------------------------- ------- 369.3/459.2 MB 2.4 MB/s eta 0:00:39\n", " -------------------------------- ------- 369.4/459.2 MB 2.4 MB/s eta 0:00:39\n", " -------------------------------- ------- 369.5/459.2 MB 2.4 MB/s eta 0:00:39\n", " -------------------------------- ------- 369.7/459.2 MB 2.4 MB/s eta 0:00:38\n", " -------------------------------- ------- 369.8/459.2 MB 2.4 MB/s eta 0:00:38\n", " -------------------------------- ------- 370.0/459.2 MB 2.4 MB/s eta 0:00:38\n", " -------------------------------- ------- 370.1/459.2 MB 2.4 MB/s eta 0:00:38\n", " -------------------------------- ------- 370.3/459.2 MB 2.4 MB/s eta 0:00:38\n", " -------------------------------- ------- 370.5/459.2 MB 2.4 MB/s eta 0:00:38\n", " -------------------------------- ------- 370.6/459.2 MB 2.4 MB/s eta 0:00:38\n", " -------------------------------- ------- 370.8/459.2 MB 2.4 MB/s eta 0:00:38\n", " -------------------------------- ------- 370.9/459.2 MB 2.4 MB/s eta 0:00:38\n", " -------------------------------- ------- 371.1/459.2 MB 2.4 MB/s eta 0:00:38\n", " -------------------------------- ------- 371.2/459.2 MB 2.4 MB/s eta 0:00:38\n", " -------------------------------- ------- 371.4/459.2 MB 2.4 MB/s eta 0:00:38\n", " -------------------------------- ------- 371.5/459.2 MB 2.3 MB/s eta 0:00:38\n", " -------------------------------- ------- 371.5/459.2 MB 2.3 MB/s eta 0:00:38\n", " -------------------------------- ------- 371.5/459.2 MB 2.3 MB/s eta 0:00:38\n", " -------------------------------- ------- 371.7/459.2 MB 2.3 MB/s eta 0:00:39\n", " -------------------------------- ------- 371.7/459.2 MB 2.3 MB/s eta 0:00:39\n", " -------------------------------- ------- 371.7/459.2 MB 2.2 MB/s eta 0:00:39\n", " -------------------------------- ------- 371.8/459.2 MB 2.2 MB/s eta 0:00:40\n", " -------------------------------- ------- 371.8/459.2 MB 2.2 MB/s eta 0:00:40\n", " -------------------------------- ------- 371.8/459.2 MB 2.2 MB/s eta 0:00:40\n", " -------------------------------- ------- 371.9/459.2 MB 2.2 MB/s eta 0:00:41\n", " -------------------------------- ------- 371.9/459.2 MB 2.1 MB/s eta 0:00:41\n", " -------------------------------- ------- 372.0/459.2 MB 2.1 MB/s eta 0:00:42\n", " -------------------------------- ------- 372.0/459.2 MB 2.1 MB/s eta 0:00:42\n", " -------------------------------- ------- 372.1/459.2 MB 2.1 MB/s eta 0:00:42\n", " -------------------------------- ------- 372.1/459.2 MB 2.1 MB/s eta 0:00:43\n", " -------------------------------- ------- 372.1/459.2 MB 2.0 MB/s eta 0:00:43\n", " -------------------------------- ------- 372.2/459.2 MB 2.0 MB/s eta 0:00:44\n", " -------------------------------- ------- 372.2/459.2 MB 2.0 MB/s eta 0:00:44\n", " -------------------------------- ------- 372.3/459.2 MB 2.0 MB/s eta 0:00:44\n", " -------------------------------- ------- 372.3/459.2 MB 2.0 MB/s eta 0:00:45\n", " -------------------------------- ------- 372.4/459.2 MB 2.0 MB/s eta 0:00:45\n", " -------------------------------- ------- 372.4/459.2 MB 1.9 MB/s eta 0:00:45\n", " -------------------------------- ------- 372.5/459.2 MB 1.9 MB/s eta 0:00:46\n", " -------------------------------- ------- 372.5/459.2 MB 1.9 MB/s eta 0:00:46\n", " -------------------------------- ------- 372.6/459.2 MB 1.9 MB/s eta 0:00:46\n", " -------------------------------- ------- 372.6/459.2 MB 1.9 MB/s eta 0:00:47\n", " -------------------------------- ------- 372.7/459.2 MB 1.9 MB/s eta 0:00:47\n", " -------------------------------- ------- 372.7/459.2 MB 1.9 MB/s eta 0:00:47\n", " -------------------------------- ------- 372.7/459.2 MB 1.8 MB/s eta 0:00:48\n", " -------------------------------- ------- 372.8/459.2 MB 1.8 MB/s eta 0:00:48\n", " -------------------------------- ------- 372.8/459.2 MB 1.8 MB/s eta 0:00:48\n", " -------------------------------- ------- 372.8/459.2 MB 1.8 MB/s eta 0:00:49\n", " -------------------------------- ------- 372.8/459.2 MB 1.8 MB/s eta 0:00:49\n", " -------------------------------- ------- 372.9/459.2 MB 1.8 MB/s eta 0:00:50\n", " -------------------------------- ------- 372.9/459.2 MB 1.7 MB/s eta 0:00:50\n", " -------------------------------- ------- 372.9/459.2 MB 1.7 MB/s eta 0:00:50\n", " -------------------------------- ------- 372.9/459.2 MB 1.7 MB/s eta 0:00:51\n", " -------------------------------- ------- 373.0/459.2 MB 1.7 MB/s eta 0:00:52\n", " -------------------------------- ------- 373.0/459.2 MB 1.7 MB/s eta 0:00:52\n", " -------------------------------- ------- 373.0/459.2 MB 1.7 MB/s eta 0:00:53\n", " -------------------------------- ------- 373.0/459.2 MB 1.6 MB/s eta 0:00:53\n", " -------------------------------- ------- 373.0/459.2 MB 1.6 MB/s eta 0:00:53\n", " -------------------------------- ------- 373.0/459.2 MB 1.6 MB/s eta 0:00:53\n", " -------------------------------- ------- 373.0/459.2 MB 1.6 MB/s eta 0:00:54\n", " -------------------------------- ------- 373.1/459.2 MB 1.6 MB/s eta 0:00:55\n", " -------------------------------- ------- 373.1/459.2 MB 1.6 MB/s eta 0:00:55\n", " -------------------------------- ------- 373.1/459.2 MB 1.6 MB/s eta 0:00:55\n", " -------------------------------- ------- 373.1/459.2 MB 1.6 MB/s eta 0:00:56\n", " -------------------------------- ------- 373.1/459.2 MB 1.6 MB/s eta 0:00:56\n", " -------------------------------- ------- 373.1/459.2 MB 1.5 MB/s eta 0:00:56\n", " -------------------------------- ------- 373.2/459.2 MB 1.5 MB/s eta 0:00:57\n", " -------------------------------- ------- 373.2/459.2 MB 1.5 MB/s eta 0:00:57\n", " -------------------------------- ------- 373.2/459.2 MB 1.5 MB/s eta 0:00:58\n", " -------------------------------- ------- 373.2/459.2 MB 1.5 MB/s eta 0:00:58\n", " -------------------------------- ------- 373.2/459.2 MB 1.5 MB/s eta 0:00:58\n", " -------------------------------- ------- 373.3/459.2 MB 1.5 MB/s eta 0:00:59\n", " -------------------------------- ------- 373.3/459.2 MB 1.5 MB/s eta 0:00:59\n", " -------------------------------- ------- 373.3/459.2 MB 1.5 MB/s eta 0:00:59\n", " -------------------------------- ------- 373.3/459.2 MB 1.5 MB/s eta 0:01:00\n", " -------------------------------- ------- 373.4/459.2 MB 1.4 MB/s eta 0:01:00\n", " -------------------------------- ------- 373.4/459.2 MB 1.4 MB/s eta 0:01:01\n", " -------------------------------- ------- 373.4/459.2 MB 1.4 MB/s eta 0:01:01\n", " -------------------------------- ------- 373.4/459.2 MB 1.4 MB/s eta 0:01:01\n", " -------------------------------- ------- 373.5/459.2 MB 1.4 MB/s eta 0:01:02\n", " -------------------------------- ------- 373.5/459.2 MB 1.4 MB/s eta 0:01:02\n", " -------------------------------- ------- 373.5/459.2 MB 1.4 MB/s eta 0:01:02\n", " -------------------------------- ------- 373.5/459.2 MB 1.4 MB/s eta 0:01:03\n", " -------------------------------- ------- 373.5/459.2 MB 1.4 MB/s eta 0:01:03\n", " -------------------------------- ------- 373.5/459.2 MB 1.4 MB/s eta 0:01:03\n", " -------------------------------- ------- 373.5/459.2 MB 1.4 MB/s eta 0:01:03\n", " -------------------------------- ------- 373.6/459.2 MB 1.3 MB/s eta 0:01:04\n", " -------------------------------- ------- 373.6/459.2 MB 1.3 MB/s eta 0:01:04\n", " -------------------------------- ------- 373.6/459.2 MB 1.3 MB/s eta 0:01:05\n", " -------------------------------- ------- 373.6/459.2 MB 1.3 MB/s eta 0:01:05\n", " -------------------------------- ------- 373.6/459.2 MB 1.3 MB/s eta 0:01:05\n", " -------------------------------- ------- 373.6/459.2 MB 1.3 MB/s eta 0:01:05\n", " -------------------------------- ------- 373.6/459.2 MB 1.3 MB/s eta 0:01:06\n", " -------------------------------- ------- 373.6/459.2 MB 1.3 MB/s eta 0:01:06\n", " -------------------------------- ------- 373.6/459.2 MB 1.3 MB/s eta 0:01:06\n", " -------------------------------- ------- 373.6/459.2 MB 1.3 MB/s eta 0:01:07\n", " -------------------------------- ------- 373.6/459.2 MB 1.3 MB/s eta 0:01:07\n", " -------------------------------- ------- 373.6/459.2 MB 1.3 MB/s eta 0:01:08\n", " -------------------------------- ------- 373.6/459.2 MB 1.3 MB/s eta 0:01:08\n", " -------------------------------- ------- 373.7/459.2 MB 1.2 MB/s eta 0:01:09\n", " -------------------------------- ------- 373.7/459.2 MB 1.2 MB/s eta 0:01:09\n", " -------------------------------- ------- 373.7/459.2 MB 1.2 MB/s eta 0:01:10\n", " -------------------------------- ------- 373.7/459.2 MB 1.2 MB/s eta 0:01:10\n", " -------------------------------- ------- 373.7/459.2 MB 1.2 MB/s eta 0:01:10\n", " -------------------------------- ------- 373.7/459.2 MB 1.2 MB/s eta 0:01:11\n", " -------------------------------- ------- 373.7/459.2 MB 1.2 MB/s eta 0:01:11\n", " -------------------------------- ------- 373.7/459.2 MB 1.2 MB/s eta 0:01:12\n", " -------------------------------- ------- 373.7/459.2 MB 1.2 MB/s eta 0:01:12\n", " -------------------------------- ------- 373.8/459.2 MB 1.2 MB/s eta 0:01:12\n", " -------------------------------- ------- 373.8/459.2 MB 1.2 MB/s eta 0:01:13\n", " -------------------------------- ------- 373.8/459.2 MB 1.2 MB/s eta 0:01:13\n", " -------------------------------- ------- 373.8/459.2 MB 1.2 MB/s eta 0:01:14\n", " -------------------------------- ------- 373.8/459.2 MB 1.2 MB/s eta 0:01:14\n", " -------------------------------- ------- 373.9/459.2 MB 1.2 MB/s eta 0:01:14\n", " -------------------------------- ------- 373.9/459.2 MB 1.2 MB/s eta 0:01:15\n", " -------------------------------- ------- 373.9/459.2 MB 1.1 MB/s eta 0:01:15\n", " -------------------------------- ------- 373.9/459.2 MB 1.1 MB/s eta 0:01:15\n", " -------------------------------- ------- 374.0/459.2 MB 1.1 MB/s eta 0:01:16\n", " -------------------------------- ------- 374.0/459.2 MB 1.1 MB/s eta 0:01:16\n", " -------------------------------- ------- 374.0/459.2 MB 1.1 MB/s eta 0:01:17\n", " -------------------------------- ------- 374.0/459.2 MB 1.1 MB/s eta 0:01:17\n", " -------------------------------- ------- 374.1/459.2 MB 1.1 MB/s eta 0:01:17\n", " -------------------------------- ------- 374.1/459.2 MB 1.1 MB/s eta 0:01:18\n", " -------------------------------- ------- 374.1/459.2 MB 1.1 MB/s eta 0:01:18\n", " -------------------------------- ------- 374.2/459.2 MB 1.1 MB/s eta 0:01:19\n", " -------------------------------- ------- 374.2/459.2 MB 1.1 MB/s eta 0:01:19\n", " -------------------------------- ------- 374.3/459.2 MB 1.1 MB/s eta 0:01:19\n", " -------------------------------- ------- 374.3/459.2 MB 1.1 MB/s eta 0:01:20\n", " -------------------------------- ------- 374.3/459.2 MB 1.1 MB/s eta 0:01:20\n", " -------------------------------- ------- 374.4/459.2 MB 1.1 MB/s eta 0:01:20\n", " -------------------------------- ------- 374.4/459.2 MB 1.1 MB/s eta 0:01:21\n", " -------------------------------- ------- 374.5/459.2 MB 1.1 MB/s eta 0:01:21\n", " -------------------------------- ------- 374.5/459.2 MB 1.0 MB/s eta 0:01:21\n", " -------------------------------- ------- 374.6/459.2 MB 1.0 MB/s eta 0:01:22\n", " -------------------------------- ------- 374.6/459.2 MB 1.0 MB/s eta 0:01:22\n", " -------------------------------- ------- 374.7/459.2 MB 1.0 MB/s eta 0:01:22\n", " -------------------------------- ------- 374.7/459.2 MB 1.0 MB/s eta 0:01:23\n", " -------------------------------- ------- 374.8/459.2 MB 1.0 MB/s eta 0:01:23\n", " -------------------------------- ------- 374.8/459.2 MB 1.0 MB/s eta 0:01:23\n", " -------------------------------- ------- 374.9/459.2 MB 1.0 MB/s eta 0:01:24\n", " -------------------------------- ------- 374.9/459.2 MB 1.0 MB/s eta 0:01:23\n", " -------------------------------- ------- 375.0/459.2 MB 1.0 MB/s eta 0:01:24\n", " -------------------------------- ------- 375.0/459.2 MB 1.0 MB/s eta 0:01:24\n", " -------------------------------- ------- 375.1/459.2 MB 1.0 MB/s eta 0:01:25\n", " -------------------------------- ------- 375.1/459.2 MB 1.0 MB/s eta 0:01:24\n", " ------------------------------- ------ 375.2/459.2 MB 998.0 kB/s eta 0:01:25\n", " ------------------------------- ------ 375.2/459.2 MB 993.5 kB/s eta 0:01:25\n", " ------------------------------- ------ 375.3/459.2 MB 990.5 kB/s eta 0:01:25\n", " ------------------------------- ------ 375.3/459.2 MB 987.5 kB/s eta 0:01:25\n", " ------------------------------- ------ 375.4/459.2 MB 984.6 kB/s eta 0:01:26\n", " ------------------------------- ------ 375.4/459.2 MB 980.0 kB/s eta 0:01:26\n", " ------------------------------- ------ 375.5/459.2 MB 975.7 kB/s eta 0:01:26\n", " ------------------------------- ------ 375.6/459.2 MB 972.9 kB/s eta 0:01:26\n", " ------------------------------- ------ 375.6/459.2 MB 971.4 kB/s eta 0:01:26\n", " ------------------------------- ------ 375.7/459.2 MB 968.5 kB/s eta 0:01:27\n", " ------------------------------- ------ 375.8/459.2 MB 967.1 kB/s eta 0:01:27\n", " ------------------------------- ------ 375.8/459.2 MB 961.4 kB/s eta 0:01:27\n", " ------------------------------- ------ 375.9/459.2 MB 961.4 kB/s eta 0:01:27\n", " ------------------------------- ------ 376.0/459.2 MB 957.2 kB/s eta 0:01:27\n", " ------------------------------- ------ 376.1/459.2 MB 954.4 kB/s eta 0:01:28\n", " ------------------------------- ------ 376.1/459.2 MB 951.6 kB/s eta 0:01:28\n", " ------------------------------- ------ 376.2/459.2 MB 950.3 kB/s eta 0:01:28\n", " ------------------------------- ------ 376.3/459.2 MB 947.5 kB/s eta 0:01:28\n", " ------------------------------- ------ 376.3/459.2 MB 944.8 kB/s eta 0:01:28\n", " ------------------------------- ------ 376.4/459.2 MB 943.4 kB/s eta 0:01:28\n", " ------------------------------- ------ 376.5/459.2 MB 940.7 kB/s eta 0:01:28\n", " ------------------------------- ------ 376.5/459.2 MB 940.7 kB/s eta 0:01:28\n", " ------------------------------- ------ 376.6/459.2 MB 935.2 kB/s eta 0:01:29\n", " ------------------------------- ------ 376.7/459.2 MB 934.0 kB/s eta 0:01:29\n", " ------------------------------- ------ 376.8/459.2 MB 930.0 kB/s eta 0:01:29\n", " ------------------------------- ------ 376.8/459.2 MB 927.4 kB/s eta 0:01:29\n", " ------------------------------- ------ 376.9/459.2 MB 926.0 kB/s eta 0:01:29\n", " ------------------------------- ------ 376.9/459.2 MB 920.9 kB/s eta 0:01:30\n", " ------------------------------- ------ 377.0/459.2 MB 920.8 kB/s eta 0:01:30\n", " ------------------------------- ------ 377.0/459.2 MB 914.4 kB/s eta 0:01:30\n", " ------------------------------- ------ 377.1/459.2 MB 910.6 kB/s eta 0:01:31\n", " ------------------------------- ------ 377.1/459.2 MB 906.8 kB/s eta 0:01:31\n", " ------------------------------- ------ 377.2/459.2 MB 901.8 kB/s eta 0:01:31\n", " ------------------------------- ------ 377.2/459.2 MB 898.1 kB/s eta 0:01:32\n", " ------------------------------- ------ 377.2/459.2 MB 894.4 kB/s eta 0:01:32\n", " ------------------------------- ------ 377.3/459.2 MB 890.7 kB/s eta 0:01:32\n", " ------------------------------- ------ 377.3/459.2 MB 885.9 kB/s eta 0:01:33\n", " ------------------------------- ------ 377.4/459.2 MB 883.6 kB/s eta 0:01:33\n", " ------------------------------- ------ 377.4/459.2 MB 880.0 kB/s eta 0:01:33\n", " ------------------------------- ------ 377.5/459.2 MB 876.4 kB/s eta 0:01:34\n", " ------------------------------- ------ 377.5/459.2 MB 872.9 kB/s eta 0:01:34\n", " ------------------------------- ------ 377.5/459.2 MB 870.6 kB/s eta 0:01:34\n", " ------------------------------- ------ 377.6/459.2 MB 867.1 kB/s eta 0:01:35\n", " ------------------------------- ------ 377.6/459.2 MB 864.9 kB/s eta 0:01:35\n", " ------------------------------- ------ 377.7/459.2 MB 861.5 kB/s eta 0:01:35\n", " ------------------------------- ------ 377.7/459.2 MB 861.5 kB/s eta 0:01:35\n", " ------------------------------- ------ 377.8/459.2 MB 858.1 kB/s eta 0:01:35\n", " ------------------------------- ------ 377.8/459.2 MB 857.0 kB/s eta 0:01:35\n", " ------------------------------- ------ 377.9/459.2 MB 852.5 kB/s eta 0:01:36\n", " ------------------------------- ------ 377.9/459.2 MB 852.5 kB/s eta 0:01:36\n", " ------------------------------- ------ 378.0/459.2 MB 849.2 kB/s eta 0:01:36\n", " ------------------------------- ------ 378.0/459.2 MB 847.0 kB/s eta 0:01:36\n", " ------------------------------- ------ 378.1/459.2 MB 842.6 kB/s eta 0:01:37\n", " ------------------------------- ------ 378.1/459.2 MB 842.6 kB/s eta 0:01:37\n", " ------------------------------- ------ 378.2/459.2 MB 839.4 kB/s eta 0:01:37\n", " ------------------------------- ------ 378.3/459.2 MB 835.1 kB/s eta 0:01:37\n", " ------------------------------- ------ 378.3/459.2 MB 834.0 kB/s eta 0:01:37\n", " ------------------------------- ------ 378.4/459.2 MB 832.9 kB/s eta 0:01:37\n", " ------------------------------- ------ 378.4/459.2 MB 830.9 kB/s eta 0:01:38\n", " ------------------------------- ------ 378.5/459.2 MB 828.7 kB/s eta 0:01:38\n", " ------------------------------- ------ 378.6/459.2 MB 826.6 kB/s eta 0:01:38\n", " ------------------------------- ------ 378.6/459.2 MB 825.6 kB/s eta 0:01:38\n", " ------------------------------- ------ 378.7/459.2 MB 822.5 kB/s eta 0:01:38\n", " ------------------------------- ------ 378.7/459.2 MB 819.4 kB/s eta 0:01:39\n", " ------------------------------- ------ 378.8/459.2 MB 817.4 kB/s eta 0:01:39\n", " ------------------------------- ------ 378.8/459.2 MB 815.3 kB/s eta 0:01:39\n", " ------------------------------- ------ 378.9/459.2 MB 814.3 kB/s eta 0:01:39\n", " ------------------------------- ------ 379.0/459.2 MB 812.3 kB/s eta 0:01:39\n", " ------------------------------- ------ 379.0/459.2 MB 810.3 kB/s eta 0:01:39\n", " ------------------------------- ------ 379.1/459.2 MB 808.3 kB/s eta 0:01:40\n", " ------------------------------- ------ 379.2/459.2 MB 807.3 kB/s eta 0:01:40\n", " ------------------------------- ------ 379.2/459.2 MB 805.3 kB/s eta 0:01:40\n", " ------------------------------- ------ 379.3/459.2 MB 803.3 kB/s eta 0:01:40\n", " ------------------------------- ------ 379.4/459.2 MB 801.3 kB/s eta 0:01:40\n", " ------------------------------- ------ 379.4/459.2 MB 799.4 kB/s eta 0:01:40\n", " ------------------------------- ------ 379.5/459.2 MB 797.5 kB/s eta 0:01:40\n", " ------------------------------- ------ 379.5/459.2 MB 796.5 kB/s eta 0:01:40\n", " ------------------------------- ------ 379.6/459.2 MB 795.5 kB/s eta 0:01:41\n", " ------------------------------- ------ 379.6/459.2 MB 795.5 kB/s eta 0:01:41\n", " ------------------------------- ------ 379.6/459.2 MB 795.5 kB/s eta 0:01:41\n", " ------------------------------- ------ 379.6/459.2 MB 795.5 kB/s eta 0:01:41\n", " ------------------------------- ------ 379.6/459.2 MB 795.5 kB/s eta 0:01:41\n", " ------------------------------- ------ 379.6/459.2 MB 795.5 kB/s eta 0:01:41\n", " ------------------------------- ------ 379.6/459.2 MB 795.5 kB/s eta 0:01:41\n", " ------------------------------- ------ 379.6/459.2 MB 773.9 kB/s eta 0:01:43\n", " ------------------------------- ------ 379.6/459.2 MB 773.9 kB/s eta 0:01:43\n", " ------------------------------- ------ 379.6/459.2 MB 773.9 kB/s eta 0:01:43\n", " ------------------------------- ------ 379.6/459.2 MB 763.9 kB/s eta 0:01:45\n", " ------------------------------- ------ 379.7/459.2 MB 764.8 kB/s eta 0:01:44\n", " ------------------------------- ------ 379.7/459.2 MB 760.4 kB/s eta 0:01:45\n", " ------------------------------- ------ 379.8/459.2 MB 759.5 kB/s eta 0:01:45\n", " ------------------------------- ------ 379.8/459.2 MB 756.9 kB/s eta 0:01:45\n", " ------------------------------- ------ 379.8/459.2 MB 754.3 kB/s eta 0:01:46\n", " ------------------------------- ------ 379.8/459.2 MB 749.0 kB/s eta 0:01:46\n", " ------------------------------- ------ 379.9/459.2 MB 748.2 kB/s eta 0:01:47\n", " ------------------------------- ------ 379.9/459.2 MB 748.2 kB/s eta 0:01:47\n", " ------------------------------- ------ 379.9/459.2 MB 741.4 kB/s eta 0:01:47\n", " ------------------------------- ------ 379.9/459.2 MB 741.4 kB/s eta 0:01:47\n", " ------------------------------- ------ 379.9/459.2 MB 736.5 kB/s eta 0:01:48\n", " ------------------------------- ------ 379.9/459.2 MB 736.5 kB/s eta 0:01:48\n", " ------------------------------- ------ 379.9/459.2 MB 736.5 kB/s eta 0:01:48\n", " ------------------------------- ------ 379.9/459.2 MB 725.9 kB/s eta 0:01:50\n", " ------------------------------- ------ 379.9/459.2 MB 725.9 kB/s eta 0:01:50\n", " ------------------------------- ------ 379.9/459.2 MB 725.9 kB/s eta 0:01:50\n", " ------------------------------- ------ 379.9/459.2 MB 725.9 kB/s eta 0:01:50\n", " ------------------------------- ------ 379.9/459.2 MB 725.9 kB/s eta 0:01:50\n", " ------------------------------- ------ 379.9/459.2 MB 725.9 kB/s eta 0:01:50\n", " ------------------------------- ------ 379.9/459.2 MB 707.8 kB/s eta 0:01:52\n", " ------------------------------- ------ 379.9/459.2 MB 707.8 kB/s eta 0:01:52\n", " ------------------------------- ------ 379.9/459.2 MB 707.8 kB/s eta 0:01:52\n", " ------------------------------- ------ 379.9/459.2 MB 707.8 kB/s eta 0:01:52\n", " ------------------------------- ------ 379.9/459.2 MB 707.8 kB/s eta 0:01:52\n", " ------------------------------- ------ 379.9/459.2 MB 707.8 kB/s eta 0:01:52\n", " ------------------------------- ------ 379.9/459.2 MB 707.8 kB/s eta 0:01:52\n", " ------------------------------- ------ 379.9/459.2 MB 707.8 kB/s eta 0:01:52\n", " ------------------------------- ------ 380.0/459.2 MB 684.8 kB/s eta 0:01:56\n", " ------------------------------- ------ 380.0/459.2 MB 684.8 kB/s eta 0:01:56\n", " ------------------------------- ------ 380.0/459.2 MB 684.8 kB/s eta 0:01:56\n", " ------------------------------- ------ 380.0/459.2 MB 684.8 kB/s eta 0:01:56\n", " ------------------------------- ------ 380.0/459.2 MB 674.3 kB/s eta 0:01:58\n", " ------------------------------- ------ 380.0/459.2 MB 674.3 kB/s eta 0:01:58\n", " ------------------------------- ------ 380.0/459.2 MB 674.3 kB/s eta 0:01:58\n", " ------------------------------- ------ 380.0/459.2 MB 674.3 kB/s eta 0:01:58\n", " ------------------------------- ------ 380.0/459.2 MB 674.3 kB/s eta 0:01:58\n", " ------------------------------- ------ 380.0/459.2 MB 674.3 kB/s eta 0:01:58\n", " ------------------------------- ------ 380.0/459.2 MB 674.3 kB/s eta 0:01:58\n", " ------------------------------- ------ 380.0/459.2 MB 674.3 kB/s eta 0:01:58\n", " ------------------------------- ------ 380.0/459.2 MB 652.7 kB/s eta 0:02:02\n", " ------------------------------- ------ 380.0/459.2 MB 652.7 kB/s eta 0:02:02\n", " ------------------------------- ------ 380.0/459.2 MB 652.7 kB/s eta 0:02:02\n", " ------------------------------- ------ 380.0/459.2 MB 652.7 kB/s eta 0:02:02\n", " ------------------------------- ------ 380.0/459.2 MB 652.7 kB/s eta 0:02:02\n", " ------------------------------- ------ 380.0/459.2 MB 641.2 kB/s eta 0:02:04\n", " ------------------------------- ------ 380.0/459.2 MB 641.2 kB/s eta 0:02:04\n", " ------------------------------- ------ 380.0/459.2 MB 635.7 kB/s eta 0:02:05\n", " ------------------------------- ------ 380.0/459.2 MB 635.7 kB/s eta 0:02:05\n", " ------------------------------- ------ 380.0/459.2 MB 635.7 kB/s eta 0:02:05\n", " ------------------------------- ------ 380.0/459.2 MB 635.7 kB/s eta 0:02:05\n", " ------------------------------- ------ 380.0/459.2 MB 635.7 kB/s eta 0:02:05\n", " ------------------------------- ------ 380.0/459.2 MB 635.7 kB/s eta 0:02:05\n", " ------------------------------- ------ 380.0/459.2 MB 621.8 kB/s eta 0:02:08\n", " ------------------------------- ------ 380.0/459.2 MB 621.8 kB/s eta 0:02:08\n", " ------------------------------- ------ 380.0/459.2 MB 621.8 kB/s eta 0:02:08\n", " ------------------------------- ------ 380.0/459.2 MB 614.8 kB/s eta 0:02:09\n", " ------------------------------- ------ 380.0/459.2 MB 614.8 kB/s eta 0:02:09\n", " ------------------------------- ------ 380.0/459.2 MB 614.8 kB/s eta 0:02:09\n", " ------------------------------- ------ 380.0/459.2 MB 614.8 kB/s eta 0:02:09\n", " ------------------------------- ------ 380.1/459.2 MB 605.6 kB/s eta 0:02:11\n", " ------------------------------- ------ 380.1/459.2 MB 605.6 kB/s eta 0:02:11\n", " ------------------------------- ------ 380.1/459.2 MB 605.6 kB/s eta 0:02:11\n", " ------------------------------- ------ 380.1/459.2 MB 600.7 kB/s eta 0:02:12\n", " ------------------------------- ------ 380.1/459.2 MB 600.7 kB/s eta 0:02:12\n", " ------------------------------- ------ 380.1/459.2 MB 600.7 kB/s eta 0:02:12\n", " ------------------------------- ------ 380.1/459.2 MB 600.7 kB/s eta 0:02:12\n", " ------------------------------- ------ 380.1/459.2 MB 590.9 kB/s eta 0:02:14\n", " ------------------------------- ------ 380.1/459.2 MB 590.9 kB/s eta 0:02:14\n", " ------------------------------- ------ 380.1/459.2 MB 590.9 kB/s eta 0:02:14\n", " ------------------------------- ------ 380.1/459.2 MB 584.1 kB/s eta 0:02:16\n", " ------------------------------- ------ 380.1/459.2 MB 584.1 kB/s eta 0:02:16\n", " ------------------------------- ------ 380.1/459.2 MB 579.9 kB/s eta 0:02:17\n", " ------------------------------- ------ 380.1/459.2 MB 579.9 kB/s eta 0:02:17\n", " ------------------------------- ------ 380.1/459.2 MB 579.9 kB/s eta 0:02:17\n", " ------------------------------- ------ 380.1/459.2 MB 575.8 kB/s eta 0:02:18\n", " ------------------------------- ------ 380.2/459.2 MB 573.3 kB/s eta 0:02:18\n", " ------------------------------- ------ 380.2/459.2 MB 573.3 kB/s eta 0:02:18\n", " ------------------------------- ------ 380.2/459.2 MB 573.3 kB/s eta 0:02:18\n", " ------------------------------- ------ 380.2/459.2 MB 573.3 kB/s eta 0:02:18\n", " ------------------------------- ------ 380.2/459.2 MB 565.9 kB/s eta 0:02:20\n", " ------------------------------- ------ 380.2/459.2 MB 564.4 kB/s eta 0:02:20\n", " ------------------------------- ------ 380.2/459.2 MB 564.4 kB/s eta 0:02:20\n", " ------------------------------- ------ 380.2/459.2 MB 559.6 kB/s eta 0:02:22\n", " ------------------------------- ------ 380.2/459.2 MB 559.6 kB/s eta 0:02:22\n", " ------------------------------- ------ 380.2/459.2 MB 559.6 kB/s eta 0:02:22\n", " ------------------------------- ------ 380.2/459.2 MB 554.8 kB/s eta 0:02:23\n", " ------------------------------- ------ 380.2/459.2 MB 554.8 kB/s eta 0:02:23\n", " ------------------------------- ------ 380.2/459.2 MB 554.8 kB/s eta 0:02:23\n", " ------------------------------- ------ 380.3/459.2 MB 549.7 kB/s eta 0:02:24\n", " ------------------------------- ------ 380.3/459.2 MB 549.7 kB/s eta 0:02:24\n", " ------------------------------- ------ 380.3/459.2 MB 546.0 kB/s eta 0:02:25\n", " ------------------------------- ------ 380.3/459.2 MB 546.0 kB/s eta 0:02:25\n", " ------------------------------- ------ 380.3/459.2 MB 546.0 kB/s eta 0:02:25\n", " ------------------------------- ------ 380.3/459.2 MB 541.5 kB/s eta 0:02:26\n", " ------------------------------- ------ 380.3/459.2 MB 538.9 kB/s eta 0:02:27\n", " ------------------------------- ------ 380.3/459.2 MB 538.9 kB/s eta 0:02:27\n", " ------------------------------- ------ 380.3/459.2 MB 538.9 kB/s eta 0:02:27\n", " ------------------------------- ------ 380.3/459.2 MB 535.3 kB/s eta 0:02:28\n", " ------------------------------- ------ 380.3/459.2 MB 535.3 kB/s eta 0:02:28\n", " ------------------------------- ------ 380.3/459.2 MB 535.3 kB/s eta 0:02:28\n", " ------------------------------- ------ 380.3/459.2 MB 535.3 kB/s eta 0:02:28\n", " ------------------------------- ------ 380.3/459.2 MB 535.3 kB/s eta 0:02:28\n", " ------------------------------- ------ 380.3/459.2 MB 527.1 kB/s eta 0:02:30\n", " ------------------------------- ------ 380.3/459.2 MB 527.1 kB/s eta 0:02:30\n", " ------------------------------- ------ 380.3/459.2 MB 523.8 kB/s eta 0:02:31\n", " ------------------------------- ------ 380.3/459.2 MB 523.8 kB/s eta 0:02:31\n", " ------------------------------- ------ 380.3/459.2 MB 523.8 kB/s eta 0:02:31\n", " ------------------------------- ------ 380.4/459.2 MB 518.4 kB/s eta 0:02:33\n", " ------------------------------- ------ 380.4/459.2 MB 518.4 kB/s eta 0:02:33\n", " ------------------------------- ------ 380.4/459.2 MB 518.4 kB/s eta 0:02:33\n", " ------------------------------- ------ 380.4/459.2 MB 518.4 kB/s eta 0:02:33\n", " ------------------------------- ------ 380.4/459.2 MB 518.4 kB/s eta 0:02:33\n", " ------------------------------- ------ 380.4/459.2 MB 511.5 kB/s eta 0:02:35\n", " ------------------------------- ------ 380.4/459.2 MB 511.5 kB/s eta 0:02:35\n", " ------------------------------- ------ 380.4/459.2 MB 511.5 kB/s eta 0:02:35\n", " ------------------------------- ------ 380.4/459.2 MB 505.9 kB/s eta 0:02:36\n", " ------------------------------- ------ 380.4/459.2 MB 505.9 kB/s eta 0:02:36\n", " ------------------------------- ------ 380.4/459.2 MB 502.8 kB/s eta 0:02:37\n", " ------------------------------- ------ 380.4/459.2 MB 502.8 kB/s eta 0:02:37\n", " ------------------------------- ------ 380.4/459.2 MB 502.8 kB/s eta 0:02:37\n", " ------------------------------- ------ 380.4/459.2 MB 502.8 kB/s eta 0:02:37\n", " ------------------------------- ------ 380.4/459.2 MB 502.8 kB/s eta 0:02:37\n", " ------------------------------- ------ 380.4/459.2 MB 497.1 kB/s eta 0:02:39\n", " ------------------------------- ------ 380.4/459.2 MB 497.1 kB/s eta 0:02:39\n", " ------------------------------- ------ 380.4/459.2 MB 497.1 kB/s eta 0:02:39\n", " ------------------------------- ------ 380.4/459.2 MB 493.7 kB/s eta 0:02:40\n", " ------------------------------- ------ 380.5/459.2 MB 491.5 kB/s eta 0:02:41\n", " ------------------------------- ------ 380.5/459.2 MB 491.5 kB/s eta 0:02:41\n", " ------------------------------- ------ 380.5/459.2 MB 489.3 kB/s eta 0:02:41\n", " ------------------------------- ------ 380.5/459.2 MB 487.9 kB/s eta 0:02:42\n", " ------------------------------- ------ 380.5/459.2 MB 487.9 kB/s eta 0:02:42\n", " ------------------------------- ------ 380.5/459.2 MB 485.7 kB/s eta 0:02:42\n", " ------------------------------- ------ 380.5/459.2 MB 483.9 kB/s eta 0:02:43\n", " ------------------------------- ------ 380.5/459.2 MB 482.5 kB/s eta 0:02:43\n", " ------------------------------- ------ 380.6/459.2 MB 481.4 kB/s eta 0:02:44\n", " ------------------------------- ------ 380.6/459.2 MB 480.7 kB/s eta 0:02:44\n", " ------------------------------- ------ 380.6/459.2 MB 478.6 kB/s eta 0:02:45\n", " ------------------------------- ------ 380.6/459.2 MB 478.6 kB/s eta 0:02:45\n", " ------------------------------- ------ 380.6/459.2 MB 476.8 kB/s eta 0:02:45\n", " ------------------------------- ------ 380.6/459.2 MB 475.8 kB/s eta 0:02:46\n", " ------------------------------- ------ 380.7/459.2 MB 474.4 kB/s eta 0:02:46\n", " ------------------------------- ------ 380.7/459.2 MB 474.4 kB/s eta 0:02:46\n", " ------------------------------- ------ 380.7/459.2 MB 472.4 kB/s eta 0:02:47\n", " ------------------------------- ------ 380.7/459.2 MB 470.7 kB/s eta 0:02:47\n", " ------------------------------- ------ 380.7/459.2 MB 470.0 kB/s eta 0:02:47\n", " ------------------------------- ------ 380.7/459.2 MB 469.0 kB/s eta 0:02:48\n", " ------------------------------- ------ 380.8/459.2 MB 467.3 kB/s eta 0:02:48\n", " ------------------------------- ------ 380.8/459.2 MB 466.0 kB/s eta 0:02:49\n", " ------------------------------- ------ 380.8/459.2 MB 464.7 kB/s eta 0:02:49\n", " ------------------------------- ------ 380.9/459.2 MB 463.0 kB/s eta 0:02:50\n", " ------------------------------- ------ 380.9/459.2 MB 462.0 kB/s eta 0:02:50\n", " ------------------------------- ------ 380.9/459.2 MB 461.1 kB/s eta 0:02:50\n", " ------------------------------- ------ 381.0/459.2 MB 459.8 kB/s eta 0:02:51\n", " ------------------------------- ------ 381.0/459.2 MB 459.1 kB/s eta 0:02:51\n", " ------------------------------- ------ 381.1/459.2 MB 457.8 kB/s eta 0:02:51\n", " ------------------------------- ------ 381.1/459.2 MB 456.9 kB/s eta 0:02:51\n", " ------------------------------- ------ 381.1/459.2 MB 456.2 kB/s eta 0:02:52\n", " ------------------------------- ------ 381.2/459.2 MB 455.3 kB/s eta 0:02:52\n", " ------------------------------- ------ 381.2/459.2 MB 454.0 kB/s eta 0:02:52\n", " ------------------------------- ------ 381.2/459.2 MB 453.7 kB/s eta 0:02:52\n", " ------------------------------- ------ 381.3/459.2 MB 452.4 kB/s eta 0:02:53\n", " ------------------------------- ------ 381.3/459.2 MB 451.5 kB/s eta 0:02:53\n", " ------------------------------- ------ 381.4/459.2 MB 450.6 kB/s eta 0:02:53\n", " ------------------------------- ------ 381.4/459.2 MB 449.7 kB/s eta 0:02:53\n", " ------------------------------- ------ 381.5/459.2 MB 449.0 kB/s eta 0:02:54\n", " ------------------------------- ------ 381.5/459.2 MB 448.1 kB/s eta 0:02:54\n", " ------------------------------- ------ 381.6/459.2 MB 447.2 kB/s eta 0:02:54\n", " ------------------------------- ------ 381.6/459.2 MB 446.9 kB/s eta 0:02:54\n", " ------------------------------- ------ 381.6/459.2 MB 445.7 kB/s eta 0:02:55\n", " ------------------------------- ------ 381.7/459.2 MB 445.4 kB/s eta 0:02:55\n", " ------------------------------- ------ 381.7/459.2 MB 445.4 kB/s eta 0:02:54\n", " ------------------------------- ------ 381.8/459.2 MB 446.0 kB/s eta 0:02:54\n", " ------------------------------- ------ 381.8/459.2 MB 444.5 kB/s eta 0:02:55\n", " ------------------------------- ------ 381.9/459.2 MB 443.6 kB/s eta 0:02:55\n", " ------------------------------- ------ 381.9/459.2 MB 443.0 kB/s eta 0:02:55\n", " ------------------------------- ------ 382.0/459.2 MB 445.1 kB/s eta 0:02:54\n", " ------------------------------- ------ 382.1/459.2 MB 445.4 kB/s eta 0:02:54\n", " ------------------------------- ------ 382.1/459.2 MB 446.3 kB/s eta 0:02:53\n", " ------------------------------- ------ 382.1/459.2 MB 445.1 kB/s eta 0:02:54\n", " ------------------------------- ------ 382.2/459.2 MB 446.6 kB/s eta 0:02:53\n", " ------------------------------- ------ 382.2/459.2 MB 446.6 kB/s eta 0:02:53\n", " ------------------------------- ------ 382.3/459.2 MB 447.5 kB/s eta 0:02:52\n", " ------------------------------- ------ 382.3/459.2 MB 446.9 kB/s eta 0:02:52\n", " ------------------------------- ------ 382.4/459.2 MB 447.2 kB/s eta 0:02:52\n", " ------------------------------- ------ 382.4/459.2 MB 447.2 kB/s eta 0:02:52\n", " ------------------------------- ------ 382.5/459.2 MB 447.2 kB/s eta 0:02:52\n", " ------------------------------- ------ 382.5/459.2 MB 447.5 kB/s eta 0:02:52\n", " ------------------------------- ------ 382.6/459.2 MB 447.5 kB/s eta 0:02:52\n", " ------------------------------- ------ 382.6/459.2 MB 446.9 kB/s eta 0:02:52\n", " ------------------------------- ------ 382.7/459.2 MB 447.2 kB/s eta 0:02:52\n", " ------------------------------- ------ 382.7/459.2 MB 447.2 kB/s eta 0:02:51\n", " ------------------------------- ------ 382.8/459.2 MB 447.8 kB/s eta 0:02:51\n", " ------------------------------- ------ 382.8/459.2 MB 447.5 kB/s eta 0:02:51\n", " ------------------------------- ------ 382.9/459.2 MB 448.4 kB/s eta 0:02:51\n", " ------------------------------- ------ 383.0/459.2 MB 448.7 kB/s eta 0:02:50\n", " ------------------------------- ------ 383.0/459.2 MB 448.4 kB/s eta 0:02:50\n", " ------------------------------- ------ 383.0/459.2 MB 450.6 kB/s eta 0:02:49\n", " ------------------------------- ------ 383.1/459.2 MB 452.8 kB/s eta 0:02:48\n", " ------------------------------- ------ 383.2/459.2 MB 455.6 kB/s eta 0:02:47\n", " ------------------------------- ------ 383.2/459.2 MB 458.2 kB/s eta 0:02:46\n", " ------------------------------- ------ 383.3/459.2 MB 461.4 kB/s eta 0:02:45\n", " ------------------------------- ------ 383.3/459.2 MB 464.3 kB/s eta 0:02:44\n", " ------------------------------- ------ 383.4/459.2 MB 466.3 kB/s eta 0:02:43\n", " ------------------------------- ------ 383.5/459.2 MB 469.7 kB/s eta 0:02:42\n", " ------------------------------- ------ 383.5/459.2 MB 470.7 kB/s eta 0:02:41\n", " ------------------------------- ------ 383.6/459.2 MB 473.1 kB/s eta 0:02:40\n", " ------------------------------- ------ 383.7/459.2 MB 474.8 kB/s eta 0:02:40\n", " ------------------------------- ------ 383.8/459.2 MB 477.6 kB/s eta 0:02:38\n", " ------------------------------- ------ 383.8/459.2 MB 481.8 kB/s eta 0:02:37\n", " ------------------------------- ------ 383.9/459.2 MB 493.4 kB/s eta 0:02:33\n", " ------------------------------- ------ 384.0/459.2 MB 501.3 kB/s eta 0:02:31\n", " ------------------------------- ------ 384.0/459.2 MB 505.2 kB/s eta 0:02:29\n", " ------------------------------- ------ 384.1/459.2 MB 508.3 kB/s eta 0:02:28\n", " ------------------------------- ------ 384.2/459.2 MB 511.9 kB/s eta 0:02:27\n", " ------------------------------- ------ 384.2/459.2 MB 513.1 kB/s eta 0:02:27\n", " ------------------------------- ------ 384.3/459.2 MB 513.9 kB/s eta 0:02:26\n", " ------------------------------- ------ 384.4/459.2 MB 517.5 kB/s eta 0:02:25\n", " ------------------------------- ------ 384.4/459.2 MB 519.2 kB/s eta 0:02:24\n", " ------------------------------- ------ 384.5/459.2 MB 520.9 kB/s eta 0:02:24\n", " ------------------------------- ------ 384.6/459.2 MB 522.1 kB/s eta 0:02:23\n", " ------------------------------- ------ 384.6/459.2 MB 522.9 kB/s eta 0:02:23\n", " ------------------------------- ------ 384.7/459.2 MB 524.6 kB/s eta 0:02:22\n", " ------------------------------- ------ 384.8/459.2 MB 526.3 kB/s eta 0:02:22\n", " ------------------------------- ------ 384.9/459.2 MB 527.6 kB/s eta 0:02:21\n", " ------------------------------- ------ 384.9/459.2 MB 528.0 kB/s eta 0:02:21\n", " ------------------------------- ------ 385.0/459.2 MB 528.9 kB/s eta 0:02:21\n", " ------------------------------- ------ 385.0/459.2 MB 529.3 kB/s eta 0:02:21\n", " ------------------------------- ------ 385.1/459.2 MB 530.1 kB/s eta 0:02:20\n", " ------------------------------- ------ 385.2/459.2 MB 531.4 kB/s eta 0:02:20\n", " ------------------------------- ------ 385.3/459.2 MB 532.3 kB/s eta 0:02:19\n", " ------------------------------- ------ 385.4/459.2 MB 534.0 kB/s eta 0:02:19\n", " ------------------------------- ------ 385.5/459.2 MB 535.3 kB/s eta 0:02:18\n", " ------------------------------- ------ 385.6/459.2 MB 535.8 kB/s eta 0:02:18\n", " ------------------------------- ------ 385.7/459.2 MB 537.5 kB/s eta 0:02:17\n", " ------------------------------- ------ 385.8/459.2 MB 538.0 kB/s eta 0:02:17\n", " ------------------------------- ------ 385.9/459.2 MB 538.9 kB/s eta 0:02:16\n", " ------------------------------- ------ 386.0/459.2 MB 540.2 kB/s eta 0:02:16\n", " ------------------------------- ------ 386.1/459.2 MB 540.6 kB/s eta 0:02:16\n", " ------------------------------- ------ 386.2/459.2 MB 542.0 kB/s eta 0:02:15\n", " ------------------------------- ------ 386.3/459.2 MB 542.0 kB/s eta 0:02:15\n", " ------------------------------- ------ 386.4/459.2 MB 542.4 kB/s eta 0:02:15\n", " ------------------------------- ------ 386.5/459.2 MB 542.9 kB/s eta 0:02:14\n", " ------------------------------- ------ 386.6/459.2 MB 543.8 kB/s eta 0:02:14\n", " ------------------------------- ------ 386.7/459.2 MB 544.2 kB/s eta 0:02:14\n", " -------------------------------- ----- 386.7/459.2 MB 543.8 kB/s eta 0:02:14\n", " -------------------------------- ----- 386.9/459.2 MB 544.2 kB/s eta 0:02:13\n", " -------------------------------- ----- 387.0/459.2 MB 544.7 kB/s eta 0:02:13\n", " -------------------------------- ----- 387.1/459.2 MB 546.0 kB/s eta 0:02:13\n", " -------------------------------- ----- 387.2/459.2 MB 547.9 kB/s eta 0:02:12\n", " -------------------------------- ----- 387.3/459.2 MB 550.2 kB/s eta 0:02:11\n", " -------------------------------- ----- 387.4/459.2 MB 552.5 kB/s eta 0:02:10\n", " -------------------------------- ----- 387.5/459.2 MB 557.7 kB/s eta 0:02:09\n", " -------------------------------- ----- 387.6/459.2 MB 560.1 kB/s eta 0:02:08\n", " -------------------------------- ----- 387.7/459.2 MB 562.0 kB/s eta 0:02:08\n", " -------------------------------- ----- 387.8/459.2 MB 564.9 kB/s eta 0:02:07\n", " -------------------------------- ----- 387.9/459.2 MB 567.3 kB/s eta 0:02:06\n", " -------------------------------- ----- 388.0/459.2 MB 569.8 kB/s eta 0:02:05\n", " -------------------------------- ----- 388.2/459.2 MB 571.8 kB/s eta 0:02:05\n", " -------------------------------- ----- 388.3/459.2 MB 573.8 kB/s eta 0:02:04\n", " -------------------------------- ----- 388.3/459.2 MB 573.8 kB/s eta 0:02:04\n", " -------------------------------- ----- 388.3/459.2 MB 571.8 kB/s eta 0:02:04\n", " -------------------------------- ----- 388.4/459.2 MB 571.8 kB/s eta 0:02:04\n", " -------------------------------- ----- 388.4/459.2 MB 571.8 kB/s eta 0:02:04\n", " -------------------------------- ----- 388.4/459.2 MB 569.3 kB/s eta 0:02:05\n", " -------------------------------- ----- 388.5/459.2 MB 570.3 kB/s eta 0:02:04\n", " -------------------------------- ----- 388.5/459.2 MB 570.3 kB/s eta 0:02:04\n", " -------------------------------- ----- 388.6/459.2 MB 566.8 kB/s eta 0:02:05\n", " -------------------------------- ----- 388.6/459.2 MB 564.9 kB/s eta 0:02:05\n", " -------------------------------- ----- 388.6/459.2 MB 564.9 kB/s eta 0:02:05\n", " -------------------------------- ----- 388.6/459.2 MB 564.9 kB/s eta 0:02:05\n", " -------------------------------- ----- 388.6/459.2 MB 564.9 kB/s eta 0:02:05\n", " -------------------------------- ----- 388.6/459.2 MB 559.6 kB/s eta 0:02:07\n", " -------------------------------- ----- 388.6/459.2 MB 558.1 kB/s eta 0:02:07\n", " -------------------------------- ----- 388.6/459.2 MB 558.1 kB/s eta 0:02:07\n", " -------------------------------- ----- 388.6/459.2 MB 558.1 kB/s eta 0:02:07\n", " -------------------------------- ----- 388.6/459.2 MB 558.1 kB/s eta 0:02:07\n", " -------------------------------- ----- 388.6/459.2 MB 552.0 kB/s eta 0:02:08\n", " -------------------------------- ----- 388.6/459.2 MB 552.0 kB/s eta 0:02:08\n", " -------------------------------- ----- 388.7/459.2 MB 549.7 kB/s eta 0:02:09\n", " -------------------------------- ----- 388.7/459.2 MB 549.7 kB/s eta 0:02:09\n", " -------------------------------- ----- 388.7/459.2 MB 546.5 kB/s eta 0:02:09\n", " -------------------------------- ----- 388.7/459.2 MB 546.5 kB/s eta 0:02:09\n", " -------------------------------- ----- 388.7/459.2 MB 543.8 kB/s eta 0:02:10\n", " -------------------------------- ----- 388.7/459.2 MB 543.8 kB/s eta 0:02:10\n", " -------------------------------- ----- 388.7/459.2 MB 542.0 kB/s eta 0:02:11\n", " -------------------------------- ----- 388.7/459.2 MB 539.7 kB/s eta 0:02:11\n", " -------------------------------- ----- 388.7/459.2 MB 539.7 kB/s eta 0:02:11\n", " -------------------------------- ----- 388.8/459.2 MB 538.8 kB/s eta 0:02:11\n", " -------------------------------- ----- 388.8/459.2 MB 537.5 kB/s eta 0:02:11\n", " -------------------------------- ----- 388.8/459.2 MB 535.8 kB/s eta 0:02:12\n", " -------------------------------- ----- 388.8/459.2 MB 535.3 kB/s eta 0:02:12\n", " -------------------------------- ----- 388.8/459.2 MB 535.3 kB/s eta 0:02:12\n", " -------------------------------- ----- 388.8/459.2 MB 533.6 kB/s eta 0:02:12\n", " -------------------------------- ----- 388.9/459.2 MB 531.4 kB/s eta 0:02:13\n", " -------------------------------- ----- 388.9/459.2 MB 530.1 kB/s eta 0:02:13\n", " -------------------------------- ----- 388.9/459.2 MB 530.1 kB/s eta 0:02:13\n", " -------------------------------- ----- 388.9/459.2 MB 526.7 kB/s eta 0:02:14\n", " -------------------------------- ----- 388.9/459.2 MB 526.7 kB/s eta 0:02:14\n", " -------------------------------- ----- 388.9/459.2 MB 524.6 kB/s eta 0:02:14\n", " -------------------------------- ----- 388.9/459.2 MB 524.2 kB/s eta 0:02:15\n", " -------------------------------- ----- 388.9/459.2 MB 524.2 kB/s eta 0:02:15\n", " -------------------------------- ----- 388.9/459.2 MB 520.8 kB/s eta 0:02:15\n", " -------------------------------- ----- 388.9/459.2 MB 520.8 kB/s eta 0:02:15\n", " -------------------------------- ----- 388.9/459.2 MB 516.7 kB/s eta 0:02:16\n", " -------------------------------- ----- 388.9/459.2 MB 516.7 kB/s eta 0:02:16\n", " -------------------------------- ----- 389.0/459.2 MB 515.1 kB/s eta 0:02:17\n", " -------------------------------- ----- 389.0/459.2 MB 515.1 kB/s eta 0:02:17\n", " -------------------------------- ----- 389.0/459.2 MB 515.1 kB/s eta 0:02:17\n", " -------------------------------- ----- 389.0/459.2 MB 511.5 kB/s eta 0:02:18\n", " -------------------------------- ----- 389.0/459.2 MB 511.5 kB/s eta 0:02:18\n", " -------------------------------- ----- 389.0/459.2 MB 509.5 kB/s eta 0:02:18\n", " -------------------------------- ----- 389.0/459.2 MB 507.5 kB/s eta 0:02:19\n", " -------------------------------- ----- 389.0/459.2 MB 506.3 kB/s eta 0:02:19\n", " -------------------------------- ----- 389.0/459.2 MB 506.3 kB/s eta 0:02:19\n", " -------------------------------- ----- 389.0/459.2 MB 504.0 kB/s eta 0:02:20\n", " -------------------------------- ----- 389.1/459.2 MB 502.4 kB/s eta 0:02:20\n", " -------------------------------- ----- 389.1/459.2 MB 502.4 kB/s eta 0:02:20\n", " -------------------------------- ----- 389.1/459.2 MB 502.4 kB/s eta 0:02:20\n", " -------------------------------- ----- 389.1/459.2 MB 497.9 kB/s eta 0:02:21\n", " -------------------------------- ----- 389.1/459.2 MB 497.5 kB/s eta 0:02:21\n", " -------------------------------- ----- 389.1/459.2 MB 496.0 kB/s eta 0:02:22\n", " -------------------------------- ----- 389.1/459.2 MB 494.5 kB/s eta 0:02:22\n", " -------------------------------- ----- 389.1/459.2 MB 493.0 kB/s eta 0:02:23\n", " -------------------------------- ----- 389.2/459.2 MB 491.9 kB/s eta 0:02:23\n", " -------------------------------- ----- 389.2/459.2 MB 490.8 kB/s eta 0:02:23\n", " -------------------------------- ----- 389.2/459.2 MB 489.3 kB/s eta 0:02:24\n", " -------------------------------- ----- 389.2/459.2 MB 489.3 kB/s eta 0:02:24\n", " -------------------------------- ----- 389.2/459.2 MB 488.2 kB/s eta 0:02:24\n", " -------------------------------- ----- 389.2/459.2 MB 486.8 kB/s eta 0:02:24\n", " -------------------------------- ----- 389.3/459.2 MB 485.3 kB/s eta 0:02:25\n", " -------------------------------- ----- 389.3/459.2 MB 484.2 kB/s eta 0:02:25\n", " -------------------------------- ----- 389.3/459.2 MB 483.5 kB/s eta 0:02:25\n", " -------------------------------- ----- 389.3/459.2 MB 482.5 kB/s eta 0:02:25\n", " -------------------------------- ----- 389.3/459.2 MB 482.1 kB/s eta 0:02:25\n", " -------------------------------- ----- 389.4/459.2 MB 480.3 kB/s eta 0:02:26\n", " -------------------------------- ----- 389.4/459.2 MB 480.0 kB/s eta 0:02:26\n", " -------------------------------- ----- 389.4/459.2 MB 479.3 kB/s eta 0:02:26\n", " -------------------------------- ----- 389.4/459.2 MB 477.6 kB/s eta 0:02:27\n", " -------------------------------- ----- 389.5/459.2 MB 477.2 kB/s eta 0:02:27\n", " -------------------------------- ----- 389.5/459.2 MB 476.5 kB/s eta 0:02:27\n", " -------------------------------- ----- 389.5/459.2 MB 475.8 kB/s eta 0:02:27\n", " -------------------------------- ----- 389.5/459.2 MB 475.1 kB/s eta 0:02:27\n", " -------------------------------- ----- 389.6/459.2 MB 474.4 kB/s eta 0:02:27\n", " -------------------------------- ----- 389.6/459.2 MB 473.8 kB/s eta 0:02:27\n", " -------------------------------- ----- 389.6/459.2 MB 473.4 kB/s eta 0:02:27\n", " -------------------------------- ----- 389.6/459.2 MB 472.7 kB/s eta 0:02:28\n", " -------------------------------- ----- 389.7/459.2 MB 471.7 kB/s eta 0:02:28\n", " -------------------------------- ----- 389.7/459.2 MB 471.0 kB/s eta 0:02:28\n", " -------------------------------- ----- 389.7/459.2 MB 470.7 kB/s eta 0:02:28\n", " -------------------------------- ----- 389.8/459.2 MB 470.0 kB/s eta 0:02:28\n", " -------------------------------- ----- 389.8/459.2 MB 476.5 kB/s eta 0:02:26\n", " -------------------------------- ----- 389.8/459.2 MB 479.6 kB/s eta 0:02:25\n", " -------------------------------- ----- 389.9/459.2 MB 478.6 kB/s eta 0:02:25\n", " -------------------------------- ----- 389.9/459.2 MB 477.2 kB/s eta 0:02:26\n", " -------------------------------- ----- 390.0/459.2 MB 477.9 kB/s eta 0:02:25\n", " -------------------------------- ----- 390.0/459.2 MB 478.9 kB/s eta 0:02:25\n", " -------------------------------- ----- 390.1/459.2 MB 480.3 kB/s eta 0:02:24\n", " -------------------------------- ----- 390.1/459.2 MB 482.5 kB/s eta 0:02:24\n", " -------------------------------- ----- 390.2/459.2 MB 508.7 kB/s eta 0:02:16\n", " -------------------------------- ----- 390.2/459.2 MB 534.9 kB/s eta 0:02:09\n", " -------------------------------- ----- 390.3/459.2 MB 547.4 kB/s eta 0:02:06\n", " -------------------------------- ----- 390.3/459.2 MB 560.1 kB/s eta 0:02:04\n", " -------------------------------- ----- 390.3/459.2 MB 578.3 kB/s eta 0:02:00\n", " -------------------------------- ----- 390.4/459.2 MB 588.8 kB/s eta 0:01:57\n", " -------------------------------- ----- 390.4/459.2 MB 597.4 kB/s eta 0:01:56\n", " -------------------------------- ----- 390.5/459.2 MB 623.5 kB/s eta 0:01:51\n", " -------------------------------- ----- 390.6/459.2 MB 642.5 kB/s eta 0:01:47\n", " -------------------------------- ----- 390.6/459.2 MB 674.3 kB/s eta 0:01:42\n", " -------------------------------- ----- 390.7/459.2 MB 689.9 kB/s eta 0:01:40\n", " -------------------------------- ----- 390.7/459.2 MB 703.2 kB/s eta 0:01:38\n", " -------------------------------- ----- 390.7/459.2 MB 713.2 kB/s eta 0:01:36\n", " -------------------------------- ----- 390.8/459.2 MB 722.6 kB/s eta 0:01:35\n", " -------------------------------- ----- 390.9/459.2 MB 730.7 kB/s eta 0:01:34\n", " -------------------------------- ----- 390.9/459.2 MB 739.8 kB/s eta 0:01:33\n", " -------------------------------- ----- 391.0/459.2 MB 746.5 kB/s eta 0:01:32\n", " -------------------------------- ----- 391.1/459.2 MB 749.1 kB/s eta 0:01:31\n", " -------------------------------- ----- 391.1/459.2 MB 755.1 kB/s eta 0:01:31\n", " -------------------------------- ----- 391.2/459.2 MB 758.6 kB/s eta 0:01:30\n", " -------------------------------- ----- 391.3/459.2 MB 760.4 kB/s eta 0:01:30\n", " -------------------------------- ----- 391.4/459.2 MB 763.1 kB/s eta 0:01:29\n", " -------------------------------- ----- 391.4/459.2 MB 767.5 kB/s eta 0:01:29\n", " -------------------------------- ----- 391.5/459.2 MB 770.3 kB/s eta 0:01:28\n", " -------------------------------- ----- 391.6/459.2 MB 772.1 kB/s eta 0:01:28\n", " -------------------------------- ----- 391.6/459.2 MB 774.8 kB/s eta 0:01:28\n", " -------------------------------- ----- 391.7/459.2 MB 778.5 kB/s eta 0:01:27\n", " -------------------------------- ----- 391.8/459.2 MB 779.4 kB/s eta 0:01:27\n", " -------------------------------- ----- 391.8/459.2 MB 782.2 kB/s eta 0:01:27\n", " -------------------------------- ----- 391.9/459.2 MB 783.2 kB/s eta 0:01:26\n", " -------------------------------- ----- 391.9/459.2 MB 786.9 kB/s eta 0:01:26\n", " -------------------------------- ----- 392.0/459.2 MB 787.9 kB/s eta 0:01:26\n", " -------------------------------- ----- 392.1/459.2 MB 788.8 kB/s eta 0:01:26\n", " -------------------------------- ----- 392.1/459.2 MB 789.8 kB/s eta 0:01:25\n", " -------------------------------- ----- 392.2/459.2 MB 791.7 kB/s eta 0:01:25\n", " -------------------------------- ----- 392.3/459.2 MB 792.6 kB/s eta 0:01:25\n", " -------------------------------- ----- 392.4/459.2 MB 794.5 kB/s eta 0:01:25\n", " -------------------------------- ----- 392.5/459.2 MB 798.4 kB/s eta 0:01:24\n", " -------------------------------- ----- 392.6/459.2 MB 801.4 kB/s eta 0:01:24\n", " -------------------------------- ----- 392.7/459.2 MB 804.3 kB/s eta 0:01:23\n", " -------------------------------- ----- 392.7/459.2 MB 808.2 kB/s eta 0:01:23\n", " -------------------------------- ----- 392.8/459.2 MB 810.3 kB/s eta 0:01:22\n", " -------------------------------- ----- 392.9/459.2 MB 813.3 kB/s eta 0:01:22\n", " -------------------------------- ----- 393.0/459.2 MB 815.3 kB/s eta 0:01:22\n", " -------------------------------- ----- 393.1/459.2 MB 815.3 kB/s eta 0:01:22\n", " -------------------------------- ----- 393.2/459.2 MB 819.4 kB/s eta 0:01:21\n", " -------------------------------- ----- 393.2/459.2 MB 822.5 kB/s eta 0:01:21\n", " -------------------------------- ----- 393.3/459.2 MB 823.5 kB/s eta 0:01:20\n", " -------------------------------- ----- 393.5/459.2 MB 827.7 kB/s eta 0:01:20\n", " -------------------------------- ----- 393.5/459.2 MB 827.6 kB/s eta 0:01:20\n", " -------------------------------- ----- 393.6/459.2 MB 830.9 kB/s eta 0:01:19\n", " -------------------------------- ----- 393.7/459.2 MB 834.0 kB/s eta 0:01:19\n", " -------------------------------- ----- 393.8/459.2 MB 834.1 kB/s eta 0:01:19\n", " -------------------------------- ----- 393.9/459.2 MB 838.3 kB/s eta 0:01:18\n", " -------------------------------- ----- 394.0/459.2 MB 839.3 kB/s eta 0:01:18\n", " -------------------------------- ----- 394.1/459.2 MB 840.4 kB/s eta 0:01:18\n", " -------------------------------- ----- 394.2/459.2 MB 841.5 kB/s eta 0:01:18\n", " -------------------------------- ----- 394.3/459.2 MB 843.7 kB/s eta 0:01:17\n", " -------------------------------- ----- 394.4/459.2 MB 845.9 kB/s eta 0:01:17\n", " -------------------------------- ----- 394.5/459.2 MB 847.0 kB/s eta 0:01:17\n", " -------------------------------- ----- 394.6/459.2 MB 850.2 kB/s eta 0:01:16\n", " -------------------------------- ----- 394.8/459.2 MB 851.3 kB/s eta 0:01:16\n", " -------------------------------- ----- 394.9/459.2 MB 853.6 kB/s eta 0:01:16\n", " -------------------------------- ----- 395.0/459.2 MB 855.8 kB/s eta 0:01:16\n", " -------------------------------- ----- 395.1/459.2 MB 855.8 kB/s eta 0:01:15\n", " -------------------------------- ----- 395.2/459.2 MB 858.1 kB/s eta 0:01:15\n", " -------------------------------- ----- 395.3/459.2 MB 860.3 kB/s eta 0:01:15\n", " -------------------------------- ----- 395.4/459.2 MB 860.3 kB/s eta 0:01:15\n", " -------------------------------- ----- 395.5/459.2 MB 859.2 kB/s eta 0:01:15\n", " -------------------------------- ----- 395.6/459.2 MB 861.5 kB/s eta 0:01:14\n", " -------------------------------- ----- 395.7/459.2 MB 860.4 kB/s eta 0:01:14\n", " -------------------------------- ----- 395.8/459.2 MB 861.5 kB/s eta 0:01:14\n", " -------------------------------- ----- 395.9/459.2 MB 864.8 kB/s eta 0:01:14\n", " -------------------------------- ----- 396.0/459.2 MB 866.0 kB/s eta 0:01:13\n", " -------------------------------- ----- 396.2/459.2 MB 864.9 kB/s eta 0:01:13\n", " -------------------------------- ----- 396.2/459.2 MB 863.7 kB/s eta 0:01:13\n", " -------------------------------- ----- 396.3/459.2 MB 863.7 kB/s eta 0:01:13\n", " -------------------------------- ----- 396.4/459.2 MB 863.7 kB/s eta 0:01:13\n", " -------------------------------- ----- 396.5/459.2 MB 866.0 kB/s eta 0:01:13\n", " -------------------------------- ----- 396.6/459.2 MB 866.0 kB/s eta 0:01:13\n", " -------------------------------- ----- 396.7/459.2 MB 868.3 kB/s eta 0:01:12\n", " -------------------------------- ----- 396.8/459.2 MB 866.0 kB/s eta 0:01:13\n", " -------------------------------- ----- 396.9/459.2 MB 871.8 kB/s eta 0:01:12\n", " -------------------------------- ----- 397.0/459.2 MB 872.9 kB/s eta 0:01:12\n", " -------------------------------- ----- 397.2/459.2 MB 874.1 kB/s eta 0:01:11\n", " -------------------------------- ----- 397.3/459.2 MB 875.2 kB/s eta 0:01:11\n", " -------------------------------- ----- 397.4/459.2 MB 875.3 kB/s eta 0:01:11\n", " -------------------------------- ----- 397.5/459.2 MB 875.2 kB/s eta 0:01:11\n", " -------------------------------- ----- 397.6/459.2 MB 876.4 kB/s eta 0:01:11\n", " -------------------------------- ----- 397.8/459.2 MB 876.4 kB/s eta 0:01:11\n", " -------------------------------- ----- 397.8/459.2 MB 877.6 kB/s eta 0:01:10\n", " -------------------------------- ----- 398.0/459.2 MB 878.8 kB/s eta 0:01:10\n", " -------------------------------- ----- 398.2/459.2 MB 881.2 kB/s eta 0:01:10\n", " -------------------------------- ----- 398.3/459.2 MB 882.3 kB/s eta 0:01:09\n", " -------------------------------- ----- 398.5/459.2 MB 883.6 kB/s eta 0:01:09\n", " -------------------------------- ----- 398.6/459.2 MB 905.5 kB/s eta 0:01:07\n", " --------------------------------- ---- 398.8/459.2 MB 939.4 kB/s eta 0:01:05\n", " --------------------------------- ---- 398.9/459.2 MB 972.8 kB/s eta 0:01:02\n", " ---------------------------------- ----- 399.0/459.2 MB 1.0 MB/s eta 0:01:00\n", " ---------------------------------- ----- 399.2/459.2 MB 1.2 MB/s eta 0:00:52\n", " ---------------------------------- ----- 399.4/459.2 MB 1.3 MB/s eta 0:00:48\n", " ---------------------------------- ----- 399.5/459.2 MB 1.3 MB/s eta 0:00:46\n", " ---------------------------------- ----- 399.6/459.2 MB 1.4 MB/s eta 0:00:44\n", " ---------------------------------- ----- 399.8/459.2 MB 1.4 MB/s eta 0:00:42\n", " ---------------------------------- ----- 399.9/459.2 MB 1.5 MB/s eta 0:00:41\n", " ---------------------------------- ----- 400.1/459.2 MB 1.5 MB/s eta 0:00:40\n", " ---------------------------------- ----- 400.2/459.2 MB 1.5 MB/s eta 0:00:39\n", " ---------------------------------- ----- 400.3/459.2 MB 1.6 MB/s eta 0:00:38\n", " ---------------------------------- ----- 400.4/459.2 MB 1.6 MB/s eta 0:00:38\n", " ---------------------------------- ----- 400.6/459.2 MB 1.6 MB/s eta 0:00:37\n", " ---------------------------------- ----- 400.8/459.2 MB 1.6 MB/s eta 0:00:36\n", " ---------------------------------- ----- 400.9/459.2 MB 1.7 MB/s eta 0:00:35\n", " ---------------------------------- ----- 401.0/459.2 MB 1.7 MB/s eta 0:00:35\n", " ---------------------------------- ----- 401.2/459.2 MB 1.7 MB/s eta 0:00:34\n", " ---------------------------------- ----- 401.3/459.2 MB 1.7 MB/s eta 0:00:34\n", " ---------------------------------- ----- 401.5/459.2 MB 1.8 MB/s eta 0:00:33\n", " ---------------------------------- ----- 401.7/459.2 MB 1.8 MB/s eta 0:00:33\n", " ----------------------------------- ---- 401.8/459.2 MB 1.8 MB/s eta 0:00:32\n", " ----------------------------------- ---- 402.0/459.2 MB 1.8 MB/s eta 0:00:32\n", " ----------------------------------- ---- 402.1/459.2 MB 1.9 MB/s eta 0:00:31\n", " ----------------------------------- ---- 402.3/459.2 MB 1.9 MB/s eta 0:00:31\n", " ----------------------------------- ---- 402.4/459.2 MB 1.9 MB/s eta 0:00:30\n", " ----------------------------------- ---- 402.6/459.2 MB 1.9 MB/s eta 0:00:30\n", " ----------------------------------- ---- 402.7/459.2 MB 1.9 MB/s eta 0:00:30\n", " ----------------------------------- ---- 402.9/459.2 MB 2.0 MB/s eta 0:00:29\n", " ----------------------------------- ---- 403.0/459.2 MB 2.0 MB/s eta 0:00:29\n", " ----------------------------------- ---- 403.2/459.2 MB 2.0 MB/s eta 0:00:28\n", " ----------------------------------- ---- 403.3/459.2 MB 2.0 MB/s eta 0:00:28\n", " ----------------------------------- ---- 403.5/459.2 MB 2.0 MB/s eta 0:00:28\n", " ----------------------------------- ---- 403.7/459.2 MB 2.1 MB/s eta 0:00:28\n", " ----------------------------------- ---- 403.8/459.2 MB 2.1 MB/s eta 0:00:27\n", " ----------------------------------- ---- 403.9/459.2 MB 2.1 MB/s eta 0:00:27\n", " ----------------------------------- ---- 404.1/459.2 MB 2.1 MB/s eta 0:00:27\n", " ----------------------------------- ---- 404.3/459.2 MB 2.1 MB/s eta 0:00:26\n", " ----------------------------------- ---- 404.4/459.2 MB 2.1 MB/s eta 0:00:26\n", " ----------------------------------- ---- 404.6/459.2 MB 2.2 MB/s eta 0:00:26\n", " ----------------------------------- ---- 404.7/459.2 MB 2.2 MB/s eta 0:00:26\n", " ----------------------------------- ---- 404.8/459.2 MB 2.2 MB/s eta 0:00:26\n", " ----------------------------------- ---- 405.0/459.2 MB 2.2 MB/s eta 0:00:25\n", " ----------------------------------- ---- 405.1/459.2 MB 2.2 MB/s eta 0:00:25\n", " ----------------------------------- ---- 405.3/459.2 MB 2.2 MB/s eta 0:00:25\n", " ----------------------------------- ---- 405.4/459.2 MB 2.2 MB/s eta 0:00:25\n", " ----------------------------------- ---- 405.6/459.2 MB 2.2 MB/s eta 0:00:25\n", " ----------------------------------- ---- 405.7/459.2 MB 2.2 MB/s eta 0:00:24\n", " ----------------------------------- ---- 405.9/459.2 MB 2.2 MB/s eta 0:00:24\n", " ----------------------------------- ---- 405.9/459.2 MB 2.2 MB/s eta 0:00:24\n", " ----------------------------------- ---- 406.1/459.2 MB 2.3 MB/s eta 0:00:24\n", " ----------------------------------- ---- 406.2/459.2 MB 2.3 MB/s eta 0:00:24\n", " ----------------------------------- ---- 406.3/459.2 MB 2.3 MB/s eta 0:00:24\n", " ----------------------------------- ---- 406.4/459.2 MB 2.3 MB/s eta 0:00:23\n", " ----------------------------------- ---- 406.6/459.2 MB 2.3 MB/s eta 0:00:23\n", " ----------------------------------- ---- 406.7/459.2 MB 2.3 MB/s eta 0:00:23\n", " ----------------------------------- ---- 406.8/459.2 MB 2.3 MB/s eta 0:00:23\n", " ----------------------------------- ---- 406.9/459.2 MB 2.3 MB/s eta 0:00:23\n", " ----------------------------------- ---- 407.0/459.2 MB 2.3 MB/s eta 0:00:23\n", " ----------------------------------- ---- 407.1/459.2 MB 2.3 MB/s eta 0:00:23\n", " ----------------------------------- ---- 407.2/459.2 MB 2.3 MB/s eta 0:00:23\n", " ----------------------------------- ---- 407.4/459.2 MB 2.3 MB/s eta 0:00:23\n", " ----------------------------------- ---- 407.5/459.2 MB 2.3 MB/s eta 0:00:23\n", " ----------------------------------- ---- 407.7/459.2 MB 2.3 MB/s eta 0:00:22\n", " ----------------------------------- ---- 407.8/459.2 MB 2.3 MB/s eta 0:00:22\n", " ----------------------------------- ---- 407.9/459.2 MB 2.4 MB/s eta 0:00:22\n", " ----------------------------------- ---- 408.1/459.2 MB 2.3 MB/s eta 0:00:22\n", " ----------------------------------- ---- 408.2/459.2 MB 2.3 MB/s eta 0:00:22\n", " ----------------------------------- ---- 408.4/459.2 MB 2.3 MB/s eta 0:00:22\n", " ----------------------------------- ---- 408.5/459.2 MB 2.3 MB/s eta 0:00:22\n", " ----------------------------------- ---- 408.6/459.2 MB 2.3 MB/s eta 0:00:22\n", " ----------------------------------- ---- 408.8/459.2 MB 2.3 MB/s eta 0:00:22\n", " ----------------------------------- ---- 408.9/459.2 MB 2.3 MB/s eta 0:00:22\n", " ----------------------------------- ---- 409.1/459.2 MB 2.3 MB/s eta 0:00:22\n", " ----------------------------------- ---- 409.2/459.2 MB 2.4 MB/s eta 0:00:22\n", " ----------------------------------- ---- 409.3/459.2 MB 2.3 MB/s eta 0:00:22\n", " ----------------------------------- ---- 409.4/459.2 MB 2.3 MB/s eta 0:00:22\n", " ----------------------------------- ---- 409.6/459.2 MB 2.3 MB/s eta 0:00:22\n", " ----------------------------------- ---- 409.8/459.2 MB 2.4 MB/s eta 0:00:21\n", " ----------------------------------- ---- 409.9/459.2 MB 2.4 MB/s eta 0:00:21\n", " ----------------------------------- ---- 410.1/459.2 MB 2.4 MB/s eta 0:00:21\n", " ----------------------------------- ---- 410.3/459.2 MB 2.4 MB/s eta 0:00:21\n", " ----------------------------------- ---- 410.4/459.2 MB 2.4 MB/s eta 0:00:21\n", " ----------------------------------- ---- 410.5/459.2 MB 2.4 MB/s eta 0:00:21\n", " ----------------------------------- ---- 410.7/459.2 MB 2.4 MB/s eta 0:00:21\n", " ----------------------------------- ---- 410.9/459.2 MB 2.4 MB/s eta 0:00:21\n", " ----------------------------------- ---- 411.0/459.2 MB 2.4 MB/s eta 0:00:21\n", " ----------------------------------- ---- 411.2/459.2 MB 2.4 MB/s eta 0:00:21\n", " ----------------------------------- ---- 411.3/459.2 MB 2.4 MB/s eta 0:00:21\n", " ----------------------------------- ---- 411.4/459.2 MB 2.4 MB/s eta 0:00:21\n", " ----------------------------------- ---- 411.5/459.2 MB 2.4 MB/s eta 0:00:21\n", " ----------------------------------- ---- 411.6/459.2 MB 2.4 MB/s eta 0:00:20\n", " ----------------------------------- ---- 411.7/459.2 MB 2.4 MB/s eta 0:00:21\n", " ----------------------------------- ---- 411.8/459.2 MB 2.4 MB/s eta 0:00:20\n", " ----------------------------------- ---- 411.9/459.2 MB 2.4 MB/s eta 0:00:20\n", " ----------------------------------- ---- 412.1/459.2 MB 2.4 MB/s eta 0:00:20\n", " ----------------------------------- ---- 412.2/459.2 MB 2.4 MB/s eta 0:00:20\n", " ----------------------------------- ---- 412.3/459.2 MB 2.4 MB/s eta 0:00:20\n", " ----------------------------------- ---- 412.4/459.2 MB 2.4 MB/s eta 0:00:20\n", " ----------------------------------- ---- 412.5/459.2 MB 2.4 MB/s eta 0:00:20\n", " ----------------------------------- ---- 412.7/459.2 MB 2.4 MB/s eta 0:00:20\n", " ----------------------------------- ---- 412.8/459.2 MB 2.4 MB/s eta 0:00:20\n", " ----------------------------------- ---- 412.9/459.2 MB 2.4 MB/s eta 0:00:20\n", " ----------------------------------- ---- 413.1/459.2 MB 2.4 MB/s eta 0:00:20\n", " ----------------------------------- ---- 413.2/459.2 MB 2.4 MB/s eta 0:00:20\n", " ------------------------------------ --- 413.4/459.2 MB 2.4 MB/s eta 0:00:20\n", " ------------------------------------ --- 413.5/459.2 MB 2.4 MB/s eta 0:00:20\n", " ------------------------------------ --- 413.5/459.2 MB 2.4 MB/s eta 0:00:20\n", " ------------------------------------ --- 413.8/459.2 MB 2.4 MB/s eta 0:00:20\n", " ------------------------------------ --- 413.9/459.2 MB 2.4 MB/s eta 0:00:20\n", " ------------------------------------ --- 414.1/459.2 MB 2.4 MB/s eta 0:00:20\n", " ------------------------------------ --- 414.2/459.2 MB 2.4 MB/s eta 0:00:20\n", " ------------------------------------ --- 414.3/459.2 MB 2.3 MB/s eta 0:00:20\n", " ------------------------------------ --- 414.5/459.2 MB 2.3 MB/s eta 0:00:20\n", " ------------------------------------ --- 414.6/459.2 MB 2.3 MB/s eta 0:00:19\n", " ------------------------------------ --- 414.8/459.2 MB 2.3 MB/s eta 0:00:20\n", " ------------------------------------ --- 414.9/459.2 MB 2.3 MB/s eta 0:00:20\n", " ------------------------------------ --- 415.0/459.2 MB 2.3 MB/s eta 0:00:19\n", " ------------------------------------ --- 415.2/459.2 MB 2.3 MB/s eta 0:00:19\n", " ------------------------------------ --- 415.3/459.2 MB 2.3 MB/s eta 0:00:19\n", " ------------------------------------ --- 415.5/459.2 MB 2.4 MB/s eta 0:00:19\n", " ------------------------------------ --- 415.6/459.2 MB 2.3 MB/s eta 0:00:19\n", " ------------------------------------ --- 415.8/459.2 MB 2.3 MB/s eta 0:00:19\n", " ------------------------------------ --- 416.0/459.2 MB 2.3 MB/s eta 0:00:19\n", " ------------------------------------ --- 416.1/459.2 MB 2.4 MB/s eta 0:00:19\n", " ------------------------------------ --- 416.3/459.2 MB 2.4 MB/s eta 0:00:19\n", " ------------------------------------ --- 416.4/459.2 MB 2.4 MB/s eta 0:00:19\n", " ------------------------------------ --- 416.6/459.2 MB 2.4 MB/s eta 0:00:19\n", " ------------------------------------ --- 416.7/459.2 MB 2.4 MB/s eta 0:00:19\n", " ------------------------------------ --- 416.9/459.2 MB 2.4 MB/s eta 0:00:18\n", " ------------------------------------ --- 417.0/459.2 MB 2.4 MB/s eta 0:00:18\n", " ------------------------------------ --- 417.2/459.2 MB 2.4 MB/s eta 0:00:18\n", " ------------------------------------ --- 417.4/459.2 MB 2.4 MB/s eta 0:00:18\n", " ------------------------------------ --- 417.5/459.2 MB 2.4 MB/s eta 0:00:18\n", " ------------------------------------ --- 417.6/459.2 MB 2.4 MB/s eta 0:00:18\n", " ------------------------------------ --- 417.7/459.2 MB 2.4 MB/s eta 0:00:18\n", " ------------------------------------ --- 417.8/459.2 MB 2.4 MB/s eta 0:00:18\n", " ------------------------------------ --- 417.9/459.2 MB 2.4 MB/s eta 0:00:18\n", " ------------------------------------ --- 418.0/459.2 MB 2.4 MB/s eta 0:00:18\n", " ------------------------------------ --- 418.2/459.2 MB 2.4 MB/s eta 0:00:18\n", " ------------------------------------ --- 418.3/459.2 MB 2.4 MB/s eta 0:00:17\n", " ------------------------------------ --- 418.5/459.2 MB 2.4 MB/s eta 0:00:17\n", " ------------------------------------ --- 418.6/459.2 MB 2.4 MB/s eta 0:00:17\n", " ------------------------------------ --- 418.7/459.2 MB 2.4 MB/s eta 0:00:17\n", " ------------------------------------ --- 418.8/459.2 MB 2.4 MB/s eta 0:00:17\n", " ------------------------------------ --- 418.9/459.2 MB 2.4 MB/s eta 0:00:17\n", " ------------------------------------ --- 419.1/459.2 MB 2.4 MB/s eta 0:00:17\n", " ------------------------------------ --- 419.3/459.2 MB 2.4 MB/s eta 0:00:17\n", " ------------------------------------ --- 419.4/459.2 MB 2.4 MB/s eta 0:00:17\n", " ------------------------------------ --- 419.6/459.2 MB 2.4 MB/s eta 0:00:17\n", " ------------------------------------ --- 419.7/459.2 MB 2.4 MB/s eta 0:00:17\n", " ------------------------------------ --- 419.9/459.2 MB 2.4 MB/s eta 0:00:17\n", " ------------------------------------ --- 420.0/459.2 MB 2.4 MB/s eta 0:00:17\n", " ------------------------------------ --- 420.1/459.2 MB 2.4 MB/s eta 0:00:17\n", " ------------------------------------ --- 420.3/459.2 MB 2.4 MB/s eta 0:00:17\n", " ------------------------------------ --- 420.4/459.2 MB 2.4 MB/s eta 0:00:17\n", " ------------------------------------ --- 420.5/459.2 MB 2.4 MB/s eta 0:00:17\n", " ------------------------------------ --- 420.6/459.2 MB 2.4 MB/s eta 0:00:17\n", " ------------------------------------ --- 420.8/459.2 MB 2.4 MB/s eta 0:00:17\n", " ------------------------------------ --- 420.9/459.2 MB 2.4 MB/s eta 0:00:17\n", " ------------------------------------ --- 421.0/459.2 MB 2.4 MB/s eta 0:00:17\n", " ------------------------------------ --- 421.1/459.2 MB 2.4 MB/s eta 0:00:17\n", " ------------------------------------ --- 421.2/459.2 MB 2.4 MB/s eta 0:00:17\n", " ------------------------------------ --- 421.3/459.2 MB 2.4 MB/s eta 0:00:17\n", " ------------------------------------ --- 421.4/459.2 MB 2.4 MB/s eta 0:00:17\n", " ------------------------------------ --- 421.6/459.2 MB 2.3 MB/s eta 0:00:17\n", " ------------------------------------ --- 421.7/459.2 MB 2.3 MB/s eta 0:00:16\n", " ------------------------------------ --- 421.8/459.2 MB 2.3 MB/s eta 0:00:16\n", " ------------------------------------ --- 422.0/459.2 MB 2.3 MB/s eta 0:00:16\n", " ------------------------------------ --- 422.1/459.2 MB 2.3 MB/s eta 0:00:16\n", " ------------------------------------ --- 422.2/459.2 MB 2.3 MB/s eta 0:00:16\n", " ------------------------------------ --- 422.4/459.2 MB 2.3 MB/s eta 0:00:16\n", " ------------------------------------ --- 422.5/459.2 MB 2.3 MB/s eta 0:00:16\n", " ------------------------------------ --- 422.7/459.2 MB 2.3 MB/s eta 0:00:16\n", " ------------------------------------ --- 422.8/459.2 MB 2.3 MB/s eta 0:00:16\n", " ------------------------------------ --- 422.9/459.2 MB 2.3 MB/s eta 0:00:16\n", " ------------------------------------ --- 423.1/459.2 MB 2.3 MB/s eta 0:00:16\n", " ------------------------------------ --- 423.3/459.2 MB 2.3 MB/s eta 0:00:16\n", " ------------------------------------ --- 423.4/459.2 MB 2.3 MB/s eta 0:00:16\n", " ------------------------------------ --- 423.5/459.2 MB 2.3 MB/s eta 0:00:16\n", " ------------------------------------ --- 423.6/459.2 MB 2.3 MB/s eta 0:00:16\n", " ------------------------------------ --- 423.8/459.2 MB 2.3 MB/s eta 0:00:16\n", " ------------------------------------ --- 423.9/459.2 MB 2.4 MB/s eta 0:00:15\n", " ------------------------------------ --- 424.0/459.2 MB 2.3 MB/s eta 0:00:16\n", " ------------------------------------ --- 424.1/459.2 MB 2.3 MB/s eta 0:00:15\n", " ------------------------------------ --- 424.3/459.2 MB 2.3 MB/s eta 0:00:15\n", " ------------------------------------ --- 424.4/459.2 MB 2.4 MB/s eta 0:00:15\n", " ------------------------------------ --- 424.5/459.2 MB 2.4 MB/s eta 0:00:15\n", " ------------------------------------ --- 424.7/459.2 MB 2.4 MB/s eta 0:00:15\n", " ------------------------------------- -- 424.8/459.2 MB 2.4 MB/s eta 0:00:15\n", " ------------------------------------- -- 424.9/459.2 MB 2.4 MB/s eta 0:00:15\n", " ------------------------------------- -- 425.1/459.2 MB 2.4 MB/s eta 0:00:15\n", " ------------------------------------- -- 425.2/459.2 MB 2.4 MB/s eta 0:00:15\n", " ------------------------------------- -- 425.4/459.2 MB 2.4 MB/s eta 0:00:15\n", " ------------------------------------- -- 425.5/459.2 MB 2.4 MB/s eta 0:00:15\n", " ------------------------------------- -- 425.7/459.2 MB 2.4 MB/s eta 0:00:15\n", " ------------------------------------- -- 425.8/459.2 MB 2.4 MB/s eta 0:00:15\n", " ------------------------------------- -- 426.0/459.2 MB 2.4 MB/s eta 0:00:14\n", " ------------------------------------- -- 426.1/459.2 MB 2.4 MB/s eta 0:00:14\n", " ------------------------------------- -- 426.3/459.2 MB 2.4 MB/s eta 0:00:14\n", " ------------------------------------- -- 426.4/459.2 MB 2.4 MB/s eta 0:00:14\n", " ------------------------------------- -- 426.6/459.2 MB 2.4 MB/s eta 0:00:14\n", " ------------------------------------- -- 426.7/459.2 MB 2.4 MB/s eta 0:00:14\n", " ------------------------------------- -- 426.8/459.2 MB 2.4 MB/s eta 0:00:14\n", " ------------------------------------- -- 427.0/459.2 MB 2.4 MB/s eta 0:00:14\n", " ------------------------------------- -- 427.1/459.2 MB 2.4 MB/s eta 0:00:14\n", " ------------------------------------- -- 427.2/459.2 MB 2.4 MB/s eta 0:00:14\n", " ------------------------------------- -- 427.4/459.2 MB 2.4 MB/s eta 0:00:14\n", " ------------------------------------- -- 427.5/459.2 MB 2.4 MB/s eta 0:00:14\n", " ------------------------------------- -- 427.7/459.2 MB 2.4 MB/s eta 0:00:14\n", " ------------------------------------- -- 427.8/459.2 MB 2.4 MB/s eta 0:00:14\n", " ------------------------------------- -- 428.0/459.2 MB 2.4 MB/s eta 0:00:14\n", " ------------------------------------- -- 428.1/459.2 MB 2.4 MB/s eta 0:00:14\n", " ------------------------------------- -- 428.2/459.2 MB 2.4 MB/s eta 0:00:14\n", " ------------------------------------- -- 428.3/459.2 MB 2.4 MB/s eta 0:00:13\n", " ------------------------------------- -- 428.4/459.2 MB 2.4 MB/s eta 0:00:13\n", " ------------------------------------- -- 428.5/459.2 MB 2.4 MB/s eta 0:00:13\n", " ------------------------------------- -- 428.6/459.2 MB 2.4 MB/s eta 0:00:13\n", " ------------------------------------- -- 428.8/459.2 MB 2.4 MB/s eta 0:00:13\n", " ------------------------------------- -- 428.9/459.2 MB 2.4 MB/s eta 0:00:13\n", " ------------------------------------- -- 429.0/459.2 MB 2.4 MB/s eta 0:00:13\n", " ------------------------------------- -- 429.1/459.2 MB 2.4 MB/s eta 0:00:13\n", " ------------------------------------- -- 429.2/459.2 MB 2.4 MB/s eta 0:00:13\n", " ------------------------------------- -- 429.3/459.2 MB 2.4 MB/s eta 0:00:13\n", " ------------------------------------- -- 429.4/459.2 MB 2.4 MB/s eta 0:00:13\n", " ------------------------------------- -- 429.6/459.2 MB 2.4 MB/s eta 0:00:13\n", " ------------------------------------- -- 429.7/459.2 MB 2.4 MB/s eta 0:00:13\n", " ------------------------------------- -- 429.8/459.2 MB 2.4 MB/s eta 0:00:13\n", " ------------------------------------- -- 429.9/459.2 MB 2.4 MB/s eta 0:00:13\n", " ------------------------------------- -- 430.0/459.2 MB 2.4 MB/s eta 0:00:13\n", " ------------------------------------- -- 430.1/459.2 MB 2.4 MB/s eta 0:00:13\n", " ------------------------------------- -- 430.3/459.2 MB 2.4 MB/s eta 0:00:13\n", " ------------------------------------- -- 430.4/459.2 MB 2.4 MB/s eta 0:00:13\n", " ------------------------------------- -- 430.5/459.2 MB 2.4 MB/s eta 0:00:13\n", " ------------------------------------- -- 430.6/459.2 MB 2.4 MB/s eta 0:00:13\n", " ------------------------------------- -- 430.8/459.2 MB 2.4 MB/s eta 0:00:12\n", " ------------------------------------- -- 430.9/459.2 MB 2.4 MB/s eta 0:00:12\n", " ------------------------------------- -- 431.1/459.2 MB 2.4 MB/s eta 0:00:12\n", " ------------------------------------- -- 431.3/459.2 MB 2.4 MB/s eta 0:00:12\n", " ------------------------------------- -- 431.4/459.2 MB 2.4 MB/s eta 0:00:12\n", " ------------------------------------- -- 431.5/459.2 MB 2.4 MB/s eta 0:00:12\n", " ------------------------------------- -- 431.7/459.2 MB 2.4 MB/s eta 0:00:12\n", " ------------------------------------- -- 431.9/459.2 MB 2.4 MB/s eta 0:00:12\n", " ------------------------------------- -- 432.0/459.2 MB 2.4 MB/s eta 0:00:12\n", " ------------------------------------- -- 432.2/459.2 MB 2.4 MB/s eta 0:00:12\n", " ------------------------------------- -- 432.3/459.2 MB 2.4 MB/s eta 0:00:12\n", " ------------------------------------- -- 432.5/459.2 MB 2.4 MB/s eta 0:00:12\n", " ------------------------------------- -- 432.6/459.2 MB 2.4 MB/s eta 0:00:11\n", " ------------------------------------- -- 432.8/459.2 MB 2.4 MB/s eta 0:00:11\n", " ------------------------------------- -- 432.9/459.2 MB 2.4 MB/s eta 0:00:11\n", " ------------------------------------- -- 433.0/459.2 MB 2.4 MB/s eta 0:00:11\n", " ------------------------------------- -- 433.1/459.2 MB 2.4 MB/s eta 0:00:11\n", " ------------------------------------- -- 433.2/459.2 MB 2.4 MB/s eta 0:00:11\n", " ------------------------------------- -- 433.3/459.2 MB 2.4 MB/s eta 0:00:11\n", " ------------------------------------- -- 433.5/459.2 MB 2.4 MB/s eta 0:00:11\n", " ------------------------------------- -- 433.6/459.2 MB 2.4 MB/s eta 0:00:11\n", " ------------------------------------- -- 433.7/459.2 MB 2.4 MB/s eta 0:00:11\n", " ------------------------------------- -- 433.8/459.2 MB 2.4 MB/s eta 0:00:11\n", " ------------------------------------- -- 433.9/459.2 MB 2.4 MB/s eta 0:00:11\n", " ------------------------------------- -- 434.0/459.2 MB 2.4 MB/s eta 0:00:11\n", " ------------------------------------- -- 434.2/459.2 MB 2.4 MB/s eta 0:00:11\n", " ------------------------------------- -- 434.3/459.2 MB 2.4 MB/s eta 0:00:11\n", " ------------------------------------- -- 434.4/459.2 MB 2.4 MB/s eta 0:00:11\n", " ------------------------------------- -- 434.6/459.2 MB 2.4 MB/s eta 0:00:11\n", " ------------------------------------- -- 434.6/459.2 MB 2.4 MB/s eta 0:00:11\n", " ------------------------------------- -- 434.9/459.2 MB 2.4 MB/s eta 0:00:11\n", " ------------------------------------- -- 435.0/459.2 MB 2.4 MB/s eta 0:00:11\n", " ------------------------------------- -- 435.1/459.2 MB 2.4 MB/s eta 0:00:11\n", " ------------------------------------- -- 435.3/459.2 MB 2.4 MB/s eta 0:00:11\n", " ------------------------------------- -- 435.4/459.2 MB 2.4 MB/s eta 0:00:10\n", " ------------------------------------- -- 435.6/459.2 MB 2.4 MB/s eta 0:00:10\n", " ------------------------------------- -- 435.7/459.2 MB 2.4 MB/s eta 0:00:10\n", " ------------------------------------- -- 435.8/459.2 MB 2.4 MB/s eta 0:00:10\n", " ------------------------------------- -- 435.9/459.2 MB 2.4 MB/s eta 0:00:10\n", " ------------------------------------- -- 436.1/459.2 MB 2.4 MB/s eta 0:00:10\n", " ------------------------------------- -- 436.2/459.2 MB 2.4 MB/s eta 0:00:10\n", " -------------------------------------- - 436.4/459.2 MB 2.4 MB/s eta 0:00:10\n", " -------------------------------------- - 436.5/459.2 MB 2.4 MB/s eta 0:00:10\n", " -------------------------------------- - 436.7/459.2 MB 2.4 MB/s eta 0:00:10\n", " -------------------------------------- - 436.8/459.2 MB 2.4 MB/s eta 0:00:10\n", " -------------------------------------- - 437.0/459.2 MB 2.4 MB/s eta 0:00:10\n", " -------------------------------------- - 437.1/459.2 MB 2.4 MB/s eta 0:00:10\n", " -------------------------------------- - 437.1/459.2 MB 2.4 MB/s eta 0:00:10\n", " -------------------------------------- - 437.2/459.2 MB 2.3 MB/s eta 0:00:10\n", " -------------------------------------- - 437.2/459.2 MB 2.3 MB/s eta 0:00:10\n", " -------------------------------------- - 437.3/459.2 MB 2.3 MB/s eta 0:00:10\n", " -------------------------------------- - 437.5/459.2 MB 2.3 MB/s eta 0:00:10\n", " -------------------------------------- - 437.5/459.2 MB 2.2 MB/s eta 0:00:10\n", " -------------------------------------- - 437.7/459.2 MB 2.2 MB/s eta 0:00:10\n", " -------------------------------------- - 437.7/459.2 MB 2.2 MB/s eta 0:00:10\n", " -------------------------------------- - 437.9/459.2 MB 2.2 MB/s eta 0:00:10\n", " -------------------------------------- - 438.0/459.2 MB 2.2 MB/s eta 0:00:10\n", " -------------------------------------- - 438.1/459.2 MB 2.2 MB/s eta 0:00:10\n", " -------------------------------------- - 438.2/459.2 MB 2.2 MB/s eta 0:00:10\n", " -------------------------------------- - 438.3/459.2 MB 2.2 MB/s eta 0:00:10\n", " -------------------------------------- - 438.4/459.2 MB 2.2 MB/s eta 0:00:10\n", " -------------------------------------- - 438.5/459.2 MB 2.2 MB/s eta 0:00:10\n", " -------------------------------------- - 438.6/459.2 MB 2.2 MB/s eta 0:00:10\n", " -------------------------------------- - 438.7/459.2 MB 2.2 MB/s eta 0:00:10\n", " -------------------------------------- - 438.7/459.2 MB 2.2 MB/s eta 0:00:10\n", " -------------------------------------- - 438.8/459.2 MB 2.2 MB/s eta 0:00:10\n", " -------------------------------------- - 438.9/459.2 MB 2.2 MB/s eta 0:00:10\n", " -------------------------------------- - 439.1/459.2 MB 2.2 MB/s eta 0:00:10\n", " -------------------------------------- - 439.2/459.2 MB 2.2 MB/s eta 0:00:10\n", " -------------------------------------- - 439.3/459.2 MB 2.2 MB/s eta 0:00:10\n", " -------------------------------------- - 439.3/459.2 MB 2.2 MB/s eta 0:00:10\n", " -------------------------------------- - 439.4/459.2 MB 2.2 MB/s eta 0:00:10\n", " -------------------------------------- - 439.5/459.2 MB 2.1 MB/s eta 0:00:10\n", " -------------------------------------- - 439.6/459.2 MB 2.1 MB/s eta 0:00:10\n", " -------------------------------------- - 439.7/459.2 MB 2.1 MB/s eta 0:00:10\n", " -------------------------------------- - 439.8/459.2 MB 2.1 MB/s eta 0:00:10\n", " -------------------------------------- - 440.0/459.2 MB 2.1 MB/s eta 0:00:10\n", " -------------------------------------- - 440.1/459.2 MB 2.1 MB/s eta 0:00:09\n", " -------------------------------------- - 440.2/459.2 MB 2.1 MB/s eta 0:00:09\n", " -------------------------------------- - 440.3/459.2 MB 2.1 MB/s eta 0:00:09\n", " -------------------------------------- - 440.4/459.2 MB 2.1 MB/s eta 0:00:09\n", " -------------------------------------- - 440.5/459.2 MB 2.1 MB/s eta 0:00:09\n", " -------------------------------------- - 440.7/459.2 MB 2.1 MB/s eta 0:00:09\n", " -------------------------------------- - 440.8/459.2 MB 2.1 MB/s eta 0:00:09\n", " -------------------------------------- - 440.9/459.2 MB 2.1 MB/s eta 0:00:09\n", " -------------------------------------- - 441.0/459.2 MB 2.1 MB/s eta 0:00:09\n", " -------------------------------------- - 441.2/459.2 MB 2.1 MB/s eta 0:00:09\n", " -------------------------------------- - 441.3/459.2 MB 2.1 MB/s eta 0:00:09\n", " -------------------------------------- - 441.5/459.2 MB 2.1 MB/s eta 0:00:09\n", " -------------------------------------- - 441.6/459.2 MB 2.1 MB/s eta 0:00:09\n", " -------------------------------------- - 441.7/459.2 MB 2.1 MB/s eta 0:00:09\n", " -------------------------------------- - 441.9/459.2 MB 2.1 MB/s eta 0:00:09\n", " -------------------------------------- - 442.0/459.2 MB 2.1 MB/s eta 0:00:09\n", " -------------------------------------- - 442.1/459.2 MB 2.1 MB/s eta 0:00:09\n", " -------------------------------------- - 442.3/459.2 MB 2.1 MB/s eta 0:00:09\n", " -------------------------------------- - 442.4/459.2 MB 2.0 MB/s eta 0:00:09\n", " -------------------------------------- - 442.5/459.2 MB 2.0 MB/s eta 0:00:09\n", " -------------------------------------- - 442.6/459.2 MB 2.0 MB/s eta 0:00:09\n", " -------------------------------------- - 442.7/459.2 MB 2.0 MB/s eta 0:00:09\n", " -------------------------------------- - 442.8/459.2 MB 2.0 MB/s eta 0:00:09\n", " -------------------------------------- - 443.0/459.2 MB 2.0 MB/s eta 0:00:09\n", " -------------------------------------- - 443.1/459.2 MB 2.0 MB/s eta 0:00:08\n", " -------------------------------------- - 443.2/459.2 MB 2.0 MB/s eta 0:00:08\n", " -------------------------------------- - 443.4/459.2 MB 2.0 MB/s eta 0:00:08\n", " -------------------------------------- - 443.5/459.2 MB 2.0 MB/s eta 0:00:08\n", " -------------------------------------- - 443.6/459.2 MB 2.0 MB/s eta 0:00:08\n", " -------------------------------------- - 443.8/459.2 MB 2.0 MB/s eta 0:00:08\n", " -------------------------------------- - 443.9/459.2 MB 2.0 MB/s eta 0:00:08\n", " -------------------------------------- - 444.1/459.2 MB 2.0 MB/s eta 0:00:08\n", " -------------------------------------- - 444.2/459.2 MB 2.0 MB/s eta 0:00:08\n", " -------------------------------------- - 444.4/459.2 MB 2.0 MB/s eta 0:00:08\n", " -------------------------------------- - 444.5/459.2 MB 2.0 MB/s eta 0:00:08\n", " -------------------------------------- - 444.7/459.2 MB 2.0 MB/s eta 0:00:08\n", " -------------------------------------- - 444.9/459.2 MB 2.0 MB/s eta 0:00:08\n", " -------------------------------------- - 444.9/459.2 MB 2.0 MB/s eta 0:00:08\n", " -------------------------------------- - 444.9/459.2 MB 2.0 MB/s eta 0:00:08\n", " -------------------------------------- - 444.9/459.2 MB 2.0 MB/s eta 0:00:08\n", " -------------------------------------- - 444.9/459.2 MB 2.0 MB/s eta 0:00:08\n", " -------------------------------------- - 444.9/459.2 MB 2.0 MB/s eta 0:00:08\n", " -------------------------------------- - 445.2/459.2 MB 1.9 MB/s eta 0:00:08\n", " -------------------------------------- - 445.3/459.2 MB 1.9 MB/s eta 0:00:08\n", " -------------------------------------- - 445.4/459.2 MB 1.9 MB/s eta 0:00:08\n", " -------------------------------------- - 445.5/459.2 MB 1.9 MB/s eta 0:00:08\n", " -------------------------------------- - 445.5/459.2 MB 1.9 MB/s eta 0:00:08\n", " -------------------------------------- - 445.6/459.2 MB 1.9 MB/s eta 0:00:08\n", " -------------------------------------- - 445.7/459.2 MB 1.9 MB/s eta 0:00:08\n", " -------------------------------------- - 445.8/459.2 MB 1.9 MB/s eta 0:00:08\n", " -------------------------------------- - 445.9/459.2 MB 1.9 MB/s eta 0:00:08\n", " -------------------------------------- - 445.9/459.2 MB 1.9 MB/s eta 0:00:08\n", " -------------------------------------- - 446.0/459.2 MB 1.9 MB/s eta 0:00:08\n", " -------------------------------------- - 446.1/459.2 MB 1.8 MB/s eta 0:00:08\n", " -------------------------------------- - 446.1/459.2 MB 1.8 MB/s eta 0:00:08\n", " -------------------------------------- - 446.2/459.2 MB 1.8 MB/s eta 0:00:08\n", " -------------------------------------- - 446.3/459.2 MB 1.8 MB/s eta 0:00:08\n", " -------------------------------------- - 446.4/459.2 MB 1.8 MB/s eta 0:00:08\n", " -------------------------------------- - 446.5/459.2 MB 1.8 MB/s eta 0:00:07\n", " -------------------------------------- - 446.6/459.2 MB 1.8 MB/s eta 0:00:07\n", " -------------------------------------- - 446.7/459.2 MB 1.8 MB/s eta 0:00:07\n", " -------------------------------------- - 446.8/459.2 MB 1.8 MB/s eta 0:00:07\n", " -------------------------------------- - 446.9/459.2 MB 1.8 MB/s eta 0:00:07\n", " -------------------------------------- - 447.0/459.2 MB 1.8 MB/s eta 0:00:07\n", " -------------------------------------- - 447.1/459.2 MB 1.8 MB/s eta 0:00:07\n", " -------------------------------------- - 447.2/459.2 MB 1.8 MB/s eta 0:00:07\n", " -------------------------------------- - 447.3/459.2 MB 1.8 MB/s eta 0:00:07\n", " -------------------------------------- - 447.4/459.2 MB 1.8 MB/s eta 0:00:07\n", " -------------------------------------- - 447.5/459.2 MB 1.8 MB/s eta 0:00:07\n", " -------------------------------------- - 447.6/459.2 MB 1.8 MB/s eta 0:00:07\n", " --------------------------------------- 447.7/459.2 MB 1.8 MB/s eta 0:00:07\n", " --------------------------------------- 447.8/459.2 MB 1.8 MB/s eta 0:00:07\n", " --------------------------------------- 448.0/459.2 MB 1.8 MB/s eta 0:00:07\n", " --------------------------------------- 448.1/459.2 MB 1.8 MB/s eta 0:00:07\n", " --------------------------------------- 448.2/459.2 MB 1.8 MB/s eta 0:00:07\n", " --------------------------------------- 448.3/459.2 MB 1.8 MB/s eta 0:00:07\n", " --------------------------------------- 448.4/459.2 MB 1.8 MB/s eta 0:00:06\n", " --------------------------------------- 448.5/459.2 MB 1.8 MB/s eta 0:00:06\n", " --------------------------------------- 448.6/459.2 MB 1.8 MB/s eta 0:00:06\n", " --------------------------------------- 448.7/459.2 MB 1.8 MB/s eta 0:00:06\n", " --------------------------------------- 448.8/459.2 MB 1.8 MB/s eta 0:00:06\n", " --------------------------------------- 448.9/459.2 MB 1.8 MB/s eta 0:00:06\n", " --------------------------------------- 449.1/459.2 MB 1.8 MB/s eta 0:00:06\n", " --------------------------------------- 449.1/459.2 MB 1.8 MB/s eta 0:00:06\n", " --------------------------------------- 449.3/459.2 MB 1.8 MB/s eta 0:00:06\n", " --------------------------------------- 449.4/459.2 MB 1.8 MB/s eta 0:00:06\n", " --------------------------------------- 449.5/459.2 MB 1.8 MB/s eta 0:00:06\n", " --------------------------------------- 449.6/459.2 MB 1.8 MB/s eta 0:00:06\n", " --------------------------------------- 449.8/459.2 MB 1.8 MB/s eta 0:00:06\n", " --------------------------------------- 449.9/459.2 MB 1.8 MB/s eta 0:00:06\n", " --------------------------------------- 450.0/459.2 MB 1.8 MB/s eta 0:00:06\n", " --------------------------------------- 450.1/459.2 MB 1.8 MB/s eta 0:00:06\n", " --------------------------------------- 450.3/459.2 MB 1.8 MB/s eta 0:00:05\n", " --------------------------------------- 450.4/459.2 MB 1.8 MB/s eta 0:00:05\n", " --------------------------------------- 450.5/459.2 MB 1.8 MB/s eta 0:00:05\n", " --------------------------------------- 450.6/459.2 MB 1.8 MB/s eta 0:00:05\n", " --------------------------------------- 450.8/459.2 MB 1.8 MB/s eta 0:00:05\n", " --------------------------------------- 450.8/459.2 MB 1.8 MB/s eta 0:00:05\n", " --------------------------------------- 450.8/459.2 MB 1.8 MB/s eta 0:00:05\n", " --------------------------------------- 450.8/459.2 MB 1.8 MB/s eta 0:00:05\n", " --------------------------------------- 450.9/459.2 MB 1.8 MB/s eta 0:00:05\n", " --------------------------------------- 450.9/459.2 MB 1.8 MB/s eta 0:00:05\n", " --------------------------------------- 450.9/459.2 MB 1.8 MB/s eta 0:00:05\n", " --------------------------------------- 451.1/459.2 MB 1.7 MB/s eta 0:00:05\n", " --------------------------------------- 451.1/459.2 MB 1.7 MB/s eta 0:00:05\n", " --------------------------------------- 451.2/459.2 MB 1.7 MB/s eta 0:00:05\n", " --------------------------------------- 451.2/459.2 MB 1.7 MB/s eta 0:00:05\n", " --------------------------------------- 451.3/459.2 MB 1.7 MB/s eta 0:00:05\n", " --------------------------------------- 451.3/459.2 MB 1.7 MB/s eta 0:00:05\n", " --------------------------------------- 451.4/459.2 MB 1.7 MB/s eta 0:00:05\n", " --------------------------------------- 451.5/459.2 MB 1.7 MB/s eta 0:00:05\n", " --------------------------------------- 451.5/459.2 MB 1.7 MB/s eta 0:00:05\n", " --------------------------------------- 451.6/459.2 MB 1.7 MB/s eta 0:00:05\n", " --------------------------------------- 451.7/459.2 MB 1.7 MB/s eta 0:00:05\n", " --------------------------------------- 451.7/459.2 MB 1.7 MB/s eta 0:00:05\n", " --------------------------------------- 451.8/459.2 MB 1.7 MB/s eta 0:00:05\n", " --------------------------------------- 451.9/459.2 MB 1.6 MB/s eta 0:00:05\n", " --------------------------------------- 452.0/459.2 MB 1.6 MB/s eta 0:00:05\n", " --------------------------------------- 452.0/459.2 MB 1.6 MB/s eta 0:00:05\n", " --------------------------------------- 452.1/459.2 MB 1.6 MB/s eta 0:00:05\n", " --------------------------------------- 452.2/459.2 MB 1.6 MB/s eta 0:00:05\n", " --------------------------------------- 452.3/459.2 MB 1.6 MB/s eta 0:00:05\n", " --------------------------------------- 452.3/459.2 MB 1.6 MB/s eta 0:00:05\n", " --------------------------------------- 452.4/459.2 MB 1.6 MB/s eta 0:00:05\n", " --------------------------------------- 452.5/459.2 MB 1.6 MB/s eta 0:00:05\n", " --------------------------------------- 452.6/459.2 MB 1.6 MB/s eta 0:00:05\n", " --------------------------------------- 452.7/459.2 MB 1.6 MB/s eta 0:00:05\n", " --------------------------------------- 452.8/459.2 MB 1.6 MB/s eta 0:00:05\n", " --------------------------------------- 452.8/459.2 MB 1.6 MB/s eta 0:00:05\n", " --------------------------------------- 452.9/459.2 MB 1.6 MB/s eta 0:00:04\n", " --------------------------------------- 453.0/459.2 MB 1.6 MB/s eta 0:00:04\n", " --------------------------------------- 453.1/459.2 MB 1.6 MB/s eta 0:00:04\n", " --------------------------------------- 453.2/459.2 MB 1.6 MB/s eta 0:00:04\n", " --------------------------------------- 453.3/459.2 MB 1.6 MB/s eta 0:00:04\n", " --------------------------------------- 453.4/459.2 MB 1.6 MB/s eta 0:00:04\n", " --------------------------------------- 453.5/459.2 MB 1.5 MB/s eta 0:00:04\n", " --------------------------------------- 453.6/459.2 MB 1.5 MB/s eta 0:00:04\n", " --------------------------------------- 453.7/459.2 MB 1.5 MB/s eta 0:00:04\n", " --------------------------------------- 453.7/459.2 MB 1.5 MB/s eta 0:00:04\n", " --------------------------------------- 453.8/459.2 MB 1.5 MB/s eta 0:00:04\n", " --------------------------------------- 453.9/459.2 MB 1.5 MB/s eta 0:00:04\n", " --------------------------------------- 454.0/459.2 MB 1.5 MB/s eta 0:00:04\n", " --------------------------------------- 454.2/459.2 MB 1.5 MB/s eta 0:00:04\n", " --------------------------------------- 454.3/459.2 MB 1.5 MB/s eta 0:00:04\n", " --------------------------------------- 454.4/459.2 MB 1.5 MB/s eta 0:00:04\n", " --------------------------------------- 454.5/459.2 MB 1.5 MB/s eta 0:00:04\n", " --------------------------------------- 454.6/459.2 MB 1.5 MB/s eta 0:00:04\n", " --------------------------------------- 454.7/459.2 MB 1.5 MB/s eta 0:00:03\n", " --------------------------------------- 454.8/459.2 MB 1.5 MB/s eta 0:00:03\n", " --------------------------------------- 454.9/459.2 MB 1.5 MB/s eta 0:00:03\n", " --------------------------------------- 455.1/459.2 MB 1.5 MB/s eta 0:00:03\n", " --------------------------------------- 455.2/459.2 MB 1.5 MB/s eta 0:00:03\n", " --------------------------------------- 455.3/459.2 MB 1.5 MB/s eta 0:00:03\n", " --------------------------------------- 455.4/459.2 MB 1.5 MB/s eta 0:00:03\n", " --------------------------------------- 455.5/459.2 MB 1.5 MB/s eta 0:00:03\n", " --------------------------------------- 455.6/459.2 MB 1.5 MB/s eta 0:00:03\n", " --------------------------------------- 455.7/459.2 MB 1.5 MB/s eta 0:00:03\n", " --------------------------------------- 455.8/459.2 MB 1.5 MB/s eta 0:00:03\n", " --------------------------------------- 455.9/459.2 MB 1.6 MB/s eta 0:00:03\n", " --------------------------------------- 456.1/459.2 MB 1.6 MB/s eta 0:00:03\n", " --------------------------------------- 456.2/459.2 MB 1.6 MB/s eta 0:00:02\n", " --------------------------------------- 456.3/459.2 MB 1.6 MB/s eta 0:00:02\n", " --------------------------------------- 456.4/459.2 MB 1.6 MB/s eta 0:00:02\n", " --------------------------------------- 456.6/459.2 MB 1.6 MB/s eta 0:00:02\n", " --------------------------------------- 456.7/459.2 MB 1.6 MB/s eta 0:00:02\n", " --------------------------------------- 456.8/459.2 MB 1.6 MB/s eta 0:00:02\n", " --------------------------------------- 456.9/459.2 MB 1.6 MB/s eta 0:00:02\n", " --------------------------------------- 457.1/459.2 MB 1.6 MB/s eta 0:00:02\n", " --------------------------------------- 457.2/459.2 MB 1.6 MB/s eta 0:00:02\n", " --------------------------------------- 457.3/459.2 MB 1.6 MB/s eta 0:00:02\n", " --------------------------------------- 457.4/459.2 MB 1.6 MB/s eta 0:00:02\n", " --------------------------------------- 457.6/459.2 MB 1.6 MB/s eta 0:00:01\n", " --------------------------------------- 457.7/459.2 MB 1.6 MB/s eta 0:00:01\n", " --------------------------------------- 457.9/459.2 MB 1.6 MB/s eta 0:00:01\n", " --------------------------------------- 458.0/459.2 MB 1.6 MB/s eta 0:00:01\n", " --------------------------------------- 458.1/459.2 MB 1.6 MB/s eta 0:00:01\n", " --------------------------------------- 458.3/459.2 MB 1.6 MB/s eta 0:00:01\n", " --------------------------------------- 458.4/459.2 MB 1.6 MB/s eta 0:00:01\n", " --------------------------------------- 458.6/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 458.7/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 458.9/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.0/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 459.2/459.2 MB 1.7 MB/s eta 0:00:01\n", " ---------------------------------------- 459.2/459.2 MB 1.2 MB/s eta 0:00:00\n", "Using cached gast-0.3.3-py2.py3-none-any.whl (9.7 kB)\n", "Downloading scipy-1.4.1-cp38-cp38-win_amd64.whl (31.0 MB)\n", " ---------------------------------------- 0.0/31.0 MB ? eta -:--:--\n", " ---------------------------------------- 0.1/31.0 MB 3.2 MB/s eta 0:00:10\n", " ---------------------------------------- 0.2/31.0 MB 2.0 MB/s eta 0:00:16\n", " ---------------------------------------- 0.3/31.0 MB 2.3 MB/s eta 0:00:14\n", " --------------------------------------- 0.4/31.0 MB 1.9 MB/s eta 0:00:16\n", " --------------------------------------- 0.6/31.0 MB 2.0 MB/s eta 0:00:16\n", " --------------------------------------- 0.7/31.0 MB 1.9 MB/s eta 0:00:16\n", " - -------------------------------------- 0.8/31.0 MB 1.9 MB/s eta 0:00:16\n", " - -------------------------------------- 0.9/31.0 MB 1.9 MB/s eta 0:00:17\n", " - -------------------------------------- 1.0/31.0 MB 1.8 MB/s eta 0:00:17\n", " - -------------------------------------- 1.1/31.0 MB 1.8 MB/s eta 0:00:17\n", " - -------------------------------------- 1.3/31.0 MB 1.9 MB/s eta 0:00:16\n", " - -------------------------------------- 1.4/31.0 MB 1.9 MB/s eta 0:00:16\n", " - -------------------------------------- 1.5/31.0 MB 1.9 MB/s eta 0:00:16\n", " -- ------------------------------------- 1.7/31.0 MB 2.0 MB/s eta 0:00:16\n", " -- ------------------------------------- 1.8/31.0 MB 1.9 MB/s eta 0:00:16\n", " -- ------------------------------------- 1.9/31.0 MB 1.9 MB/s eta 0:00:15\n", " -- ------------------------------------- 2.0/31.0 MB 1.9 MB/s eta 0:00:15\n", " -- ------------------------------------- 2.1/31.0 MB 1.9 MB/s eta 0:00:15\n", " -- ------------------------------------- 2.3/31.0 MB 2.0 MB/s eta 0:00:15\n", " --- ------------------------------------ 2.4/31.0 MB 2.0 MB/s eta 0:00:15\n", " --- ------------------------------------ 2.5/31.0 MB 2.0 MB/s eta 0:00:15\n", " --- ------------------------------------ 2.6/31.0 MB 1.9 MB/s eta 0:00:15\n", " --- ------------------------------------ 2.6/31.0 MB 1.9 MB/s eta 0:00:15\n", " --- ------------------------------------ 2.8/31.0 MB 1.9 MB/s eta 0:00:15\n", " --- ------------------------------------ 2.8/31.0 MB 1.9 MB/s eta 0:00:15\n", " --- ------------------------------------ 2.9/31.0 MB 1.9 MB/s eta 0:00:15\n", " --- ------------------------------------ 3.0/31.0 MB 1.9 MB/s eta 0:00:15\n", " ---- ----------------------------------- 3.2/31.0 MB 1.9 MB/s eta 0:00:15\n", " ---- ----------------------------------- 3.3/31.0 MB 1.9 MB/s eta 0:00:15\n", " ---- ----------------------------------- 3.5/31.0 MB 1.9 MB/s eta 0:00:15\n", " ---- ----------------------------------- 3.5/31.0 MB 1.9 MB/s eta 0:00:15\n", " ---- ----------------------------------- 3.7/31.0 MB 1.9 MB/s eta 0:00:15\n", " ---- ----------------------------------- 3.8/31.0 MB 1.9 MB/s eta 0:00:14\n", " ----- ---------------------------------- 4.0/31.0 MB 2.0 MB/s eta 0:00:14\n", " ----- ---------------------------------- 4.2/31.0 MB 2.0 MB/s eta 0:00:14\n", " ----- ---------------------------------- 4.4/31.0 MB 2.0 MB/s eta 0:00:14\n", " ----- ---------------------------------- 4.5/31.0 MB 2.0 MB/s eta 0:00:14\n", " ----- ---------------------------------- 4.6/31.0 MB 2.0 MB/s eta 0:00:14\n", " ------ --------------------------------- 4.8/31.0 MB 2.0 MB/s eta 0:00:13\n", " ------ --------------------------------- 4.9/31.0 MB 2.0 MB/s eta 0:00:13\n", " ------ --------------------------------- 5.0/31.0 MB 2.0 MB/s eta 0:00:13\n", " ------ --------------------------------- 5.0/31.0 MB 2.0 MB/s eta 0:00:13\n", " ------ --------------------------------- 5.3/31.0 MB 2.1 MB/s eta 0:00:13\n", " ------ --------------------------------- 5.4/31.0 MB 2.1 MB/s eta 0:00:13\n", " ------- -------------------------------- 5.5/31.0 MB 2.1 MB/s eta 0:00:13\n", " ------- -------------------------------- 5.6/31.0 MB 2.1 MB/s eta 0:00:13\n", " ------- -------------------------------- 5.7/31.0 MB 2.1 MB/s eta 0:00:13\n", " ------- -------------------------------- 5.8/31.0 MB 2.1 MB/s eta 0:00:13\n", " ------- -------------------------------- 5.9/31.0 MB 2.1 MB/s eta 0:00:13\n", " ------- -------------------------------- 6.0/31.0 MB 2.1 MB/s eta 0:00:13\n", " ------- -------------------------------- 6.1/31.0 MB 2.1 MB/s eta 0:00:12\n", " -------- ------------------------------- 6.3/31.0 MB 2.1 MB/s eta 0:00:12\n", " -------- ------------------------------- 6.4/31.0 MB 2.1 MB/s eta 0:00:12\n", " -------- ------------------------------- 6.5/31.0 MB 2.1 MB/s eta 0:00:12\n", " -------- ------------------------------- 6.6/31.0 MB 2.1 MB/s eta 0:00:12\n", " -------- ------------------------------- 6.7/31.0 MB 2.1 MB/s eta 0:00:12\n", " -------- ------------------------------- 6.9/31.0 MB 2.1 MB/s eta 0:00:12\n", " --------- ------------------------------ 7.0/31.0 MB 2.1 MB/s eta 0:00:12\n", " --------- ------------------------------ 7.1/31.0 MB 2.1 MB/s eta 0:00:12\n", " --------- ------------------------------ 7.2/31.0 MB 2.1 MB/s eta 0:00:12\n", " --------- ------------------------------ 7.3/31.0 MB 2.1 MB/s eta 0:00:12\n", " --------- ------------------------------ 7.5/31.0 MB 2.1 MB/s eta 0:00:12\n", " --------- ------------------------------ 7.6/31.0 MB 2.1 MB/s eta 0:00:12\n", " --------- ------------------------------ 7.7/31.0 MB 2.1 MB/s eta 0:00:11\n", " ---------- ----------------------------- 7.9/31.0 MB 2.1 MB/s eta 0:00:11\n", " ---------- ----------------------------- 8.0/31.0 MB 2.1 MB/s eta 0:00:11\n", " ---------- ----------------------------- 8.1/31.0 MB 2.1 MB/s eta 0:00:11\n", " ---------- ----------------------------- 8.2/31.0 MB 2.2 MB/s eta 0:00:11\n", " ---------- ----------------------------- 8.4/31.0 MB 2.2 MB/s eta 0:00:11\n", " ----------- ---------------------------- 8.6/31.0 MB 2.2 MB/s eta 0:00:11\n", " ----------- ---------------------------- 8.7/31.0 MB 2.2 MB/s eta 0:00:11\n", " ----------- ---------------------------- 8.8/31.0 MB 2.2 MB/s eta 0:00:11\n", " ----------- ---------------------------- 9.0/31.0 MB 2.2 MB/s eta 0:00:11\n", " ----------- ---------------------------- 9.1/31.0 MB 2.2 MB/s eta 0:00:11\n", " ----------- ---------------------------- 9.3/31.0 MB 2.2 MB/s eta 0:00:10\n", " ------------ --------------------------- 9.5/31.0 MB 2.2 MB/s eta 0:00:10\n", " ------------ --------------------------- 9.6/31.0 MB 2.2 MB/s eta 0:00:10\n", " ------------ --------------------------- 9.7/31.0 MB 2.2 MB/s eta 0:00:10\n", " ------------ --------------------------- 9.9/31.0 MB 2.2 MB/s eta 0:00:10\n", " ------------ --------------------------- 10.0/31.0 MB 2.2 MB/s eta 0:00:10\n", " ------------- -------------------------- 10.1/31.0 MB 2.2 MB/s eta 0:00:10\n", " ------------- -------------------------- 10.2/31.0 MB 2.2 MB/s eta 0:00:10\n", " ------------- -------------------------- 10.3/31.0 MB 2.2 MB/s eta 0:00:10\n", " ------------- -------------------------- 10.4/31.0 MB 2.2 MB/s eta 0:00:10\n", " ------------- -------------------------- 10.5/31.0 MB 2.2 MB/s eta 0:00:10\n", " ------------- -------------------------- 10.6/31.0 MB 2.2 MB/s eta 0:00:10\n", " ------------- -------------------------- 10.8/31.0 MB 2.2 MB/s eta 0:00:10\n", " -------------- ------------------------- 10.9/31.0 MB 2.2 MB/s eta 0:00:09\n", " -------------- ------------------------- 11.0/31.0 MB 2.2 MB/s eta 0:00:09\n", " -------------- ------------------------- 11.1/31.0 MB 2.2 MB/s eta 0:00:09\n", " -------------- ------------------------- 11.1/31.0 MB 2.2 MB/s eta 0:00:09\n", " -------------- ------------------------- 11.3/31.0 MB 2.3 MB/s eta 0:00:09\n", " -------------- ------------------------- 11.4/31.0 MB 2.3 MB/s eta 0:00:09\n", " -------------- ------------------------- 11.5/31.0 MB 2.3 MB/s eta 0:00:09\n", " --------------- ------------------------ 11.7/31.0 MB 2.3 MB/s eta 0:00:09\n", " --------------- ------------------------ 11.8/31.0 MB 2.3 MB/s eta 0:00:09\n", " --------------- ------------------------ 11.9/31.0 MB 2.3 MB/s eta 0:00:09\n", " --------------- ------------------------ 12.0/31.0 MB 2.3 MB/s eta 0:00:09\n", " --------------- ------------------------ 12.2/31.0 MB 2.3 MB/s eta 0:00:09\n", " --------------- ------------------------ 12.3/31.0 MB 2.3 MB/s eta 0:00:09\n", " ---------------- ----------------------- 12.5/31.0 MB 2.3 MB/s eta 0:00:09\n", " ---------------- ----------------------- 12.6/31.0 MB 2.3 MB/s eta 0:00:09\n", " ---------------- ----------------------- 12.7/31.0 MB 2.3 MB/s eta 0:00:08\n", " ---------------- ----------------------- 12.9/31.0 MB 2.3 MB/s eta 0:00:08\n", " ---------------- ----------------------- 13.0/31.0 MB 2.3 MB/s eta 0:00:08\n", " ---------------- ----------------------- 13.1/31.0 MB 2.3 MB/s eta 0:00:08\n", " ----------------- ---------------------- 13.3/31.0 MB 2.3 MB/s eta 0:00:08\n", " ----------------- ---------------------- 13.4/31.0 MB 2.3 MB/s eta 0:00:08\n", " ----------------- ---------------------- 13.6/31.0 MB 2.4 MB/s eta 0:00:08\n", " ----------------- ---------------------- 13.7/31.0 MB 2.3 MB/s eta 0:00:08\n", " ----------------- ---------------------- 13.9/31.0 MB 2.4 MB/s eta 0:00:08\n", " ------------------ --------------------- 14.0/31.0 MB 2.4 MB/s eta 0:00:08\n", " ------------------ --------------------- 14.2/31.0 MB 2.4 MB/s eta 0:00:08\n", " ------------------ --------------------- 14.3/31.0 MB 2.3 MB/s eta 0:00:08\n", " ------------------ --------------------- 14.5/31.0 MB 2.3 MB/s eta 0:00:08\n", " ------------------ --------------------- 14.6/31.0 MB 2.4 MB/s eta 0:00:07\n", " ------------------- -------------------- 14.8/31.0 MB 2.4 MB/s eta 0:00:07\n", " ------------------- -------------------- 14.9/31.0 MB 2.3 MB/s eta 0:00:07\n", " ------------------- -------------------- 15.1/31.0 MB 2.3 MB/s eta 0:00:07\n", " ------------------- -------------------- 15.2/31.0 MB 2.4 MB/s eta 0:00:07\n", " ------------------- -------------------- 15.4/31.0 MB 2.4 MB/s eta 0:00:07\n", " -------------------- ------------------- 15.6/31.0 MB 2.4 MB/s eta 0:00:07\n", " -------------------- ------------------- 15.7/31.0 MB 2.4 MB/s eta 0:00:07\n", " -------------------- ------------------- 15.9/31.0 MB 2.4 MB/s eta 0:00:07\n", " -------------------- ------------------- 16.0/31.0 MB 2.4 MB/s eta 0:00:07\n", " -------------------- ------------------- 16.2/31.0 MB 2.4 MB/s eta 0:00:07\n", " --------------------- ------------------ 16.3/31.0 MB 2.4 MB/s eta 0:00:07\n", " --------------------- ------------------ 16.5/31.0 MB 2.4 MB/s eta 0:00:07\n", " --------------------- ------------------ 16.6/31.0 MB 2.4 MB/s eta 0:00:07\n", " --------------------- ------------------ 16.8/31.0 MB 2.4 MB/s eta 0:00:06\n", " --------------------- ------------------ 16.9/31.0 MB 2.4 MB/s eta 0:00:06\n", " --------------------- ------------------ 17.0/31.0 MB 2.4 MB/s eta 0:00:06\n", " ---------------------- ----------------- 17.1/31.0 MB 2.4 MB/s eta 0:00:06\n", " ---------------------- ----------------- 17.2/31.0 MB 2.4 MB/s eta 0:00:06\n", " ---------------------- ----------------- 17.3/31.0 MB 2.4 MB/s eta 0:00:06\n", " ---------------------- ----------------- 17.5/31.0 MB 2.4 MB/s eta 0:00:06\n", " ---------------------- ----------------- 17.6/31.0 MB 2.4 MB/s eta 0:00:06\n", " ---------------------- ----------------- 17.7/31.0 MB 2.4 MB/s eta 0:00:06\n", " ---------------------- ----------------- 17.8/31.0 MB 2.4 MB/s eta 0:00:06\n", " ----------------------- ---------------- 17.9/31.0 MB 2.4 MB/s eta 0:00:06\n", " ----------------------- ---------------- 18.0/31.0 MB 2.4 MB/s eta 0:00:06\n", " ----------------------- ---------------- 18.2/31.0 MB 2.4 MB/s eta 0:00:06\n", " ----------------------- ---------------- 18.3/31.0 MB 2.4 MB/s eta 0:00:06\n", " ----------------------- ---------------- 18.5/31.0 MB 2.4 MB/s eta 0:00:06\n", " ------------------------ --------------- 18.6/31.0 MB 2.4 MB/s eta 0:00:06\n", " ------------------------ --------------- 18.7/31.0 MB 2.4 MB/s eta 0:00:06\n", " ------------------------ --------------- 18.9/31.0 MB 2.4 MB/s eta 0:00:06\n", " ------------------------ --------------- 19.0/31.0 MB 2.4 MB/s eta 0:00:06\n", " ------------------------ --------------- 19.1/31.0 MB 2.4 MB/s eta 0:00:05\n", " ------------------------ --------------- 19.3/31.0 MB 2.4 MB/s eta 0:00:05\n", " ------------------------- -------------- 19.4/31.0 MB 2.4 MB/s eta 0:00:05\n", " ------------------------- -------------- 19.6/31.0 MB 2.4 MB/s eta 0:00:05\n", " ------------------------- -------------- 19.7/31.0 MB 2.4 MB/s eta 0:00:05\n", " ------------------------- -------------- 19.8/31.0 MB 2.4 MB/s eta 0:00:05\n", " ------------------------- -------------- 20.0/31.0 MB 2.4 MB/s eta 0:00:05\n", " ------------------------- -------------- 20.2/31.0 MB 2.4 MB/s eta 0:00:05\n", " -------------------------- ------------- 20.2/31.0 MB 2.4 MB/s eta 0:00:05\n", " -------------------------- ------------- 20.4/31.0 MB 2.4 MB/s eta 0:00:05\n", " -------------------------- ------------- 20.5/31.0 MB 2.4 MB/s eta 0:00:05\n", " -------------------------- ------------- 20.7/31.0 MB 2.4 MB/s eta 0:00:05\n", " -------------------------- ------------- 20.8/31.0 MB 2.4 MB/s eta 0:00:05\n", " --------------------------- ------------ 21.0/31.0 MB 2.4 MB/s eta 0:00:05\n", " --------------------------- ------------ 21.1/31.0 MB 2.4 MB/s eta 0:00:05\n", " --------------------------- ------------ 21.3/31.0 MB 2.4 MB/s eta 0:00:05\n", " --------------------------- ------------ 21.5/31.0 MB 2.4 MB/s eta 0:00:05\n", " --------------------------- ------------ 21.6/31.0 MB 2.4 MB/s eta 0:00:04\n", " ---------------------------- ----------- 21.8/31.0 MB 2.4 MB/s eta 0:00:04\n", " ---------------------------- ----------- 21.9/31.0 MB 2.4 MB/s eta 0:00:04\n", " ---------------------------- ----------- 22.1/31.0 MB 2.4 MB/s eta 0:00:04\n", " ---------------------------- ----------- 22.2/31.0 MB 2.4 MB/s eta 0:00:04\n", " ---------------------------- ----------- 22.4/31.0 MB 2.4 MB/s eta 0:00:04\n", " ----------------------------- ---------- 22.5/31.0 MB 2.4 MB/s eta 0:00:04\n", " ----------------------------- ---------- 22.6/31.0 MB 2.4 MB/s eta 0:00:04\n", " ----------------------------- ---------- 22.8/31.0 MB 2.4 MB/s eta 0:00:04\n", " ----------------------------- ---------- 22.9/31.0 MB 2.4 MB/s eta 0:00:04\n", " ----------------------------- ---------- 23.0/31.0 MB 2.4 MB/s eta 0:00:04\n", " ----------------------------- ---------- 23.2/31.0 MB 2.4 MB/s eta 0:00:04\n", " ------------------------------ --------- 23.3/31.0 MB 2.4 MB/s eta 0:00:04\n", " ------------------------------ --------- 23.5/31.0 MB 2.4 MB/s eta 0:00:04\n", " ------------------------------ --------- 23.6/31.0 MB 2.4 MB/s eta 0:00:04\n", " ------------------------------ --------- 23.8/31.0 MB 2.4 MB/s eta 0:00:03\n", " ------------------------------ --------- 23.9/31.0 MB 2.4 MB/s eta 0:00:03\n", " ------------------------------- -------- 24.1/31.0 MB 2.4 MB/s eta 0:00:03\n", " ------------------------------- -------- 24.2/31.0 MB 2.4 MB/s eta 0:00:03\n", " ------------------------------- -------- 24.3/31.0 MB 2.4 MB/s eta 0:00:03\n", " ------------------------------- -------- 24.4/31.0 MB 2.4 MB/s eta 0:00:03\n", " ------------------------------- -------- 24.5/31.0 MB 2.4 MB/s eta 0:00:03\n", " ------------------------------- -------- 24.6/31.0 MB 2.4 MB/s eta 0:00:03\n", " ------------------------------- -------- 24.8/31.0 MB 2.4 MB/s eta 0:00:03\n", " -------------------------------- ------- 24.9/31.0 MB 2.4 MB/s eta 0:00:03\n", " -------------------------------- ------- 25.0/31.0 MB 2.4 MB/s eta 0:00:03\n", " -------------------------------- ------- 25.2/31.0 MB 2.4 MB/s eta 0:00:03\n", " -------------------------------- ------- 25.3/31.0 MB 2.4 MB/s eta 0:00:03\n", " -------------------------------- ------- 25.4/31.0 MB 2.4 MB/s eta 0:00:03\n", " -------------------------------- ------- 25.6/31.0 MB 2.4 MB/s eta 0:00:03\n", " --------------------------------- ------ 25.7/31.0 MB 2.4 MB/s eta 0:00:03\n", " --------------------------------- ------ 25.8/31.0 MB 2.4 MB/s eta 0:00:03\n", " --------------------------------- ------ 25.8/31.0 MB 2.4 MB/s eta 0:00:03\n", " --------------------------------- ------ 26.1/31.0 MB 2.4 MB/s eta 0:00:03\n", " --------------------------------- ------ 26.1/31.0 MB 2.4 MB/s eta 0:00:03\n", " --------------------------------- ------ 26.3/31.0 MB 2.4 MB/s eta 0:00:02\n", " ---------------------------------- ----- 26.4/31.0 MB 2.4 MB/s eta 0:00:02\n", " ---------------------------------- ----- 26.6/31.0 MB 2.4 MB/s eta 0:00:02\n", " ---------------------------------- ----- 26.7/31.0 MB 2.4 MB/s eta 0:00:02\n", " ---------------------------------- ----- 26.8/31.0 MB 2.4 MB/s eta 0:00:02\n", " ---------------------------------- ----- 26.9/31.0 MB 2.4 MB/s eta 0:00:02\n", " ---------------------------------- ----- 27.1/31.0 MB 2.4 MB/s eta 0:00:02\n", " ----------------------------------- ---- 27.2/31.0 MB 2.4 MB/s eta 0:00:02\n", " ----------------------------------- ---- 27.4/31.0 MB 2.4 MB/s eta 0:00:02\n", " ----------------------------------- ---- 27.5/31.0 MB 2.4 MB/s eta 0:00:02\n", " ----------------------------------- ---- 27.6/31.0 MB 2.4 MB/s eta 0:00:02\n", " ----------------------------------- ---- 27.8/31.0 MB 2.4 MB/s eta 0:00:02\n", " ------------------------------------ --- 27.9/31.0 MB 2.4 MB/s eta 0:00:02\n", " ------------------------------------ --- 28.1/31.0 MB 2.4 MB/s eta 0:00:02\n", " ------------------------------------ --- 28.2/31.0 MB 2.4 MB/s eta 0:00:02\n", " ------------------------------------ --- 28.4/31.0 MB 2.4 MB/s eta 0:00:02\n", " ------------------------------------ --- 28.5/31.0 MB 2.4 MB/s eta 0:00:02\n", " ------------------------------------ --- 28.7/31.0 MB 2.4 MB/s eta 0:00:01\n", " ------------------------------------- -- 28.8/31.0 MB 2.4 MB/s eta 0:00:01\n", " ------------------------------------- -- 28.9/31.0 MB 2.3 MB/s eta 0:00:01\n", " ------------------------------------- -- 29.1/31.0 MB 2.3 MB/s eta 0:00:01\n", " ------------------------------------- -- 29.2/31.0 MB 2.3 MB/s eta 0:00:01\n", " ------------------------------------- -- 29.4/31.0 MB 2.4 MB/s eta 0:00:01\n", " -------------------------------------- - 29.5/31.0 MB 2.3 MB/s eta 0:00:01\n", " -------------------------------------- - 29.7/31.0 MB 2.4 MB/s eta 0:00:01\n", " -------------------------------------- - 29.8/31.0 MB 2.4 MB/s eta 0:00:01\n", " -------------------------------------- - 30.0/31.0 MB 2.4 MB/s eta 0:00:01\n", " -------------------------------------- - 30.1/31.0 MB 2.4 MB/s eta 0:00:01\n", " --------------------------------------- 30.3/31.0 MB 2.4 MB/s eta 0:00:01\n", " --------------------------------------- 30.5/31.0 MB 2.4 MB/s eta 0:00:01\n", " --------------------------------------- 30.6/31.0 MB 2.4 MB/s eta 0:00:01\n", " --------------------------------------- 30.8/31.0 MB 2.4 MB/s eta 0:00:01\n", " --------------------------------------- 30.9/31.0 MB 2.4 MB/s eta 0:00:01\n", " --------------------------------------- 31.0/31.0 MB 2.4 MB/s eta 0:00:01\n", " --------------------------------------- 31.0/31.0 MB 2.4 MB/s eta 0:00:01\n", " --------------------------------------- 31.0/31.0 MB 2.4 MB/s eta 0:00:01\n", " ---------------------------------------- 31.0/31.0 MB 2.3 MB/s eta 0:00:00\n", "Using cached h5py-2.10.0-cp38-cp38-win_amd64.whl (2.5 MB)\n", "Using cached Keras_Preprocessing-1.1.2-py2.py3-none-any.whl (42 kB)\n", "Using cached tensorboard-2.2.2-py3-none-any.whl (3.0 MB)\n", "Using cached tensorflow_estimator-2.2.0-py2.py3-none-any.whl (454 kB)\n", "Using cached google_auth-1.35.0-py2.py3-none-any.whl (152 kB)\n", "Using cached google_auth_oauthlib-0.4.6-py2.py3-none-any.whl (18 kB)\n", "Using cached tensorboard_plugin_wit-1.8.1-py3-none-any.whl (781 kB)\n", "Using cached cachetools-4.2.4-py3-none-any.whl (10 kB)\n", "Installing collected packages: tensorflow-estimator, tensorboard-plugin-wit, scipy, keras-preprocessing, h5py, gast, cachetools, google-auth, google-auth-oauthlib, tensorboard, tensorflow\n", " Attempting uninstall: tensorflow-estimator\n", " Found existing installation: tensorflow-estimator 2.13.0\n", " Uninstalling tensorflow-estimator-2.13.0:\n", " Successfully uninstalled tensorflow-estimator-2.13.0\n", " Attempting uninstall: scipy\n", " Found existing installation: scipy 1.10.1\n", " Uninstalling scipy-1.10.1:\n", " Successfully uninstalled scipy-1.10.1\n", " Attempting uninstall: h5py\n", " Found existing installation: h5py 3.10.0\n", " Uninstalling h5py-3.10.0:\n", " Successfully uninstalled h5py-3.10.0\n", " Attempting uninstall: gast\n", " Found existing installation: gast 0.4.0\n", " Uninstalling gast-0.4.0:\n", " Successfully uninstalled gast-0.4.0\n", " Attempting uninstall: cachetools\n", " Found existing installation: cachetools 5.3.3\n", " Uninstalling cachetools-5.3.3:\n", " Successfully uninstalled cachetools-5.3.3\n", " Attempting uninstall: google-auth\n", " Found existing installation: google-auth 2.29.0\n", " Uninstalling google-auth-2.29.0:\n", " Successfully uninstalled google-auth-2.29.0\n", " Attempting uninstall: google-auth-oauthlib\n", " Found existing installation: google-auth-oauthlib 1.0.0\n", " Uninstalling google-auth-oauthlib-1.0.0:\n", " Successfully uninstalled google-auth-oauthlib-1.0.0\n", " Attempting uninstall: tensorboard\n", " Found existing installation: tensorboard 2.13.0\n", " Uninstalling tensorboard-2.13.0:\n", " Successfully uninstalled tensorboard-2.13.0\n", " Attempting uninstall: tensorflow\n", " Found existing installation: tensorflow 2.13.0\n", " Uninstalling tensorflow-2.13.0:\n", " Successfully uninstalled tensorflow-2.13.0\n", "Successfully installed cachetools-4.2.4 gast-0.3.3 google-auth-1.35.0 google-auth-oauthlib-0.4.6 h5py-2.10.0 keras-preprocessing-1.1.2 scipy-1.4.1 tensorboard-2.2.2 tensorboard-plugin-wit-1.8.1 tensorflow-2.2.0 tensorflow-estimator-2.2.0\n" ] } ], "source": [ "pip install keras==2.4.0" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Note: you may need to restart the kernel to use updated packages.Collecting tf-models-official\n", " Downloading tf_models_official-2.16.0-py2.py3-none-any.whl.metadata (1.4 kB)\n", "Collecting Cython (from tf-models-official)\n", " Downloading Cython-3.0.10-cp38-cp38-win_amd64.whl.metadata (3.2 kB)\n", "Collecting Pillow (from tf-models-official)\n", " Downloading pillow-10.3.0-cp38-cp38-win_amd64.whl.metadata (9.4 kB)\n", "Collecting gin-config (from tf-models-official)\n", " Downloading gin_config-0.5.0-py3-none-any.whl.metadata (2.9 kB)\n", "Collecting google-api-python-client>=1.6.7 (from tf-models-official)\n", " Downloading google_api_python_client-2.127.0-py2.py3-none-any.whl.metadata (6.7 kB)\n", "Collecting immutabledict (from tf-models-official)\n", " Downloading immutabledict-4.2.0-py3-none-any.whl.metadata (3.4 kB)\n", "Collecting kaggle>=1.3.9 (from tf-models-official)\n", " Downloading kaggle-1.6.12.tar.gz (79 kB)\n", " ---------------------------------------- 0.0/79.7 kB ? eta -:--:--\n", " ---------------------------------------- 79.7/79.7 kB 2.2 MB/s eta 0:00:00\n", " Preparing metadata (setup.py): started\n", " Preparing metadata (setup.py): finished with status 'done'\n", "Collecting matplotlib (from tf-models-official)\n", " Downloading matplotlib-3.7.5-cp38-cp38-win_amd64.whl.metadata (5.8 kB)\n", "Requirement already satisfied: numpy>=1.20 in c:\\detection\\tensor\\lib\\site-packages (from tf-models-official) (1.24.4)\n", "Collecting oauth2client (from tf-models-official)\n", " Downloading oauth2client-4.1.3-py2.py3-none-any.whl.metadata (1.2 kB)\n", "Collecting opencv-python-headless (from tf-models-official)\n", " Downloading opencv_python_headless-4.9.0.80-cp37-abi3-win_amd64.whl.metadata (20 kB)\n", "Collecting pandas>=0.22.0 (from tf-models-official)\n", " Downloading pandas-2.0.3-cp38-cp38-win_amd64.whl.metadata (18 kB)\n", "Requirement already satisfied: psutil>=5.4.3 in c:\\detection\\tensor\\lib\\site-packages (from tf-models-official) (5.9.8)\n", "Collecting py-cpuinfo>=3.3.0 (from tf-models-official)\n", " Downloading py_cpuinfo-9.0.0-py3-none-any.whl.metadata (794 bytes)\n", "Collecting pycocotools (from tf-models-official)\n", " Downloading pycocotools-2.0.7-cp38-cp38-win_amd64.whl.metadata (1.1 kB)\n", "Requirement already satisfied: pyyaml>=6.0.0 in c:\\detection\\tensor\\lib\\site-packages (from tf-models-official) (6.0.1)\n", "Requirement already satisfied: sacrebleu in c:\\detection\\tensor\\lib\\site-packages\\sacrebleu-2.2.0-py3.8.egg (from tf-models-official) (2.2.0)\n", "Requirement already satisfied: scipy>=0.19.1 in c:\\detection\\tensor\\lib\\site-packages (from tf-models-official) (1.10.1)\n", "Collecting sentencepiece (from tf-models-official)\n", " Downloading sentencepiece-0.2.0-cp38-cp38-win_amd64.whl.metadata (8.3 kB)\n", "Collecting seqeval (from tf-models-official)\n", " Downloading seqeval-1.2.2.tar.gz (43 kB)\n", " ---------------------------------------- 0.0/43.6 kB ? eta -:--:--\n", " ---------------------------------------- 43.6/43.6 kB 2.2 MB/s eta 0:00:00\n", " Preparing metadata (setup.py): started\n", " Preparing metadata (setup.py): finished with status 'done'\n", "Requirement already satisfied: six in c:\\detection\\tensor\\lib\\site-packages (from tf-models-official) (1.16.0)\n", "Collecting tensorflow-datasets (from tf-models-official)\n", " Downloading tensorflow_datasets-4.9.2-py3-none-any.whl.metadata (9.0 kB)\n", "Collecting tensorflow-hub>=0.6.0 (from tf-models-official)\n", " Downloading tensorflow_hub-0.16.1-py2.py3-none-any.whl.metadata (1.3 kB)\n", "Collecting tensorflow-model-optimization>=0.4.1 (from tf-models-official)\n", " Downloading tensorflow_model_optimization-0.8.0-py2.py3-none-any.whl.metadata (904 bytes)\n", "INFO: pip is looking at multiple versions of tf-models-official to determine which version is compatible with other requirements. This could take a while.\n", "Collecting tf-models-official\n", " Downloading tf_models_official-2.15.0-py2.py3-none-any.whl.metadata (1.4 kB)\n", " Downloading tf_models_official-2.14.2-py2.py3-none-any.whl.metadata (1.4 kB)\n", " Downloading tf_models_official-2.14.1-py2.py3-none-any.whl.metadata (1.4 kB)\n", " Downloading tf_models_official-2.14.0-py2.py3-none-any.whl.metadata (1.4 kB)\n", " Downloading tf_models_official-2.13.2-py2.py3-none-any.whl.metadata (1.4 kB)\n", " Downloading tf_models_official-2.13.1-py2.py3-none-any.whl.metadata (1.4 kB)\n", "Collecting pyyaml<5.4.0,>=5.1 (from tf-models-official)\n", " Downloading PyYAML-5.3.1-cp38-cp38-win_amd64.whl.metadata (1.7 kB)\n", "Collecting tf-models-official\n", " Downloading tf_models_official-2.13.0-py2.py3-none-any.whl.metadata (1.4 kB)\n", "Collecting pyyaml<6.0,>=5.1 (from tf-models-official)\n", " Downloading PyYAML-5.4.1-cp38-cp38-win_amd64.whl.metadata (2.1 kB)\n", "INFO: pip is still looking at multiple versions of tf-models-official to determine which version is compatible with other requirements. This could take a while.\n", "Collecting tf-models-official\n", " Downloading tf_models_official-2.12.1-py2.py3-none-any.whl.metadata (1.5 kB)\n", "Collecting tensorflow-addons (from tf-models-official)\n", " Downloading tensorflow_addons-0.21.0-cp38-cp38-win_amd64.whl.metadata (1.9 kB)\n", "Collecting tf-models-official\n", " Downloading tf_models_official-2.12.0-py2.py3-none-any.whl.metadata (1.5 kB)\n", " Downloading tf_models_official-2.11.6-py2.py3-none-any.whl.metadata (1.5 kB)\n", " Downloading tf_models_official-2.11.5-py2.py3-none-any.whl.metadata (1.5 kB)\n", " Downloading tf_models_official-2.11.4-py2.py3-none-any.whl.metadata (1.5 kB)\n", "INFO: This is taking longer than usual. You might need to provide the dependency resolver with stricter constraints to reduce runtime. See https://pip.pypa.io/warnings/backtracking for guidance. If you want to abort this run, press Ctrl + C.\n", " Downloading tf_models_official-2.11.3-py2.py3-none-any.whl.metadata (1.5 kB)\n", " Downloading tf_models_official-2.11.2-py2.py3-none-any.whl.metadata (1.5 kB)\n", " Downloading tf_models_official-2.11.0-py2.py3-none-any.whl.metadata (1.5 kB)\n", "Collecting opencv-python-headless==4.5.2.52 (from tf-models-official)\n", " Downloading opencv_python_headless-4.5.2.52-cp38-cp38-win_amd64.whl.metadata (17 kB)\n", "Collecting tf-models-official\n", " Downloading tf_models_official-2.10.1-py2.py3-none-any.whl.metadata (1.5 kB)\n", "Collecting tensorflow-text~=2.10.0 (from tf-models-official)\n", " Downloading tensorflow_text-2.10.0-cp38-cp38-win_amd64.whl.metadata (2.1 kB)\n", "Collecting tensorflow~=2.10.0 (from tf-models-official)\n", " Downloading tensorflow-2.10.1-cp38-cp38-win_amd64.whl.metadata (3.1 kB)\n", "Requirement already satisfied: tf-slim>=1.1.0 in c:\\detection\\tensor\\lib\\site-packages (from tf-models-official) (1.1.0)\n", "Requirement already satisfied: colorama in c:\\detection\\tensor\\lib\\site-packages (from sacrebleu->tf-models-official) (0.4.6)\n", "Collecting lxml (from sacrebleu->tf-models-official)\n", " Downloading lxml-5.2.1-cp38-cp38-win_amd64.whl.metadata (3.5 kB)\n", "Collecting portalocker (from sacrebleu->tf-models-official)\n", " Downloading portalocker-2.8.2-py3-none-any.whl.metadata (8.5 kB)\n", "Collecting regex (from sacrebleu->tf-models-official)\n", " Downloading regex-2024.4.28-cp38-cp38-win_amd64.whl.metadata (41 kB)\n", " ---------------------------------------- 0.0/41.9 kB ? eta -:--:--\n", " ---------------------------------------- 41.9/41.9 kB 2.0 MB/s eta 0:00:00\n", "Collecting tabulate>=0.8.9 (from sacrebleu->tf-models-official)\n", " Downloading tabulate-0.9.0-py3-none-any.whl.metadata (34 kB)\n", "Collecting httplib2<1.dev0,>=0.19.0 (from google-api-python-client>=1.6.7->tf-models-official)\n", " Downloading httplib2-0.22.0-py3-none-any.whl.metadata (2.6 kB)\n", "Requirement already satisfied: google-auth!=2.24.0,!=2.25.0,<3.0.0.dev0,>=1.32.0 in c:\\detection\\tensor\\lib\\site-packages (from google-api-python-client>=1.6.7->tf-models-official) (2.29.0)\n", "Collecting google-auth-httplib2<1.0.0,>=0.2.0 (from google-api-python-client>=1.6.7->tf-models-official)\n", " Downloading google_auth_httplib2-0.2.0-py2.py3-none-any.whl.metadata (2.2 kB)\n", "Collecting google-api-core!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0.dev0,>=1.31.5 (from google-api-python-client>=1.6.7->tf-models-official)\n", " Downloading google_api_core-2.19.0-py3-none-any.whl.metadata (2.7 kB)\n", "Collecting uritemplate<5,>=3.0.1 (from google-api-python-client>=1.6.7->tf-models-official)\n", " Downloading uritemplate-4.1.1-py2.py3-none-any.whl.metadata (2.9 kB)\n", "Requirement already satisfied: certifi>=2023.7.22 in c:\\detection\\tensor\\lib\\site-packages (from kaggle>=1.3.9->tf-models-official) (2024.2.2)\n", "Requirement already satisfied: python-dateutil in c:\\detection\\tensor\\lib\\site-packages (from kaggle>=1.3.9->tf-models-official) (2.9.0.post0)\n", "Requirement already satisfied: requests in c:\\detection\\tensor\\lib\\site-packages (from kaggle>=1.3.9->tf-models-official) (2.31.0)\n", "Collecting tqdm (from kaggle>=1.3.9->tf-models-official)\n", " Downloading tqdm-4.66.2-py3-none-any.whl.metadata (57 kB)\n", " ---------------------------------------- 0.0/57.6 kB ? eta -:--:--\n", " ---------------------------------------- 57.6/57.6 kB ? eta 0:00:00\n", "Collecting python-slugify (from kaggle>=1.3.9->tf-models-official)\n", " Downloading python_slugify-8.0.4-py2.py3-none-any.whl.metadata (8.5 kB)\n", "Requirement already satisfied: urllib3 in c:\\detection\\tensor\\lib\\site-packages (from kaggle>=1.3.9->tf-models-official) (2.2.1)\n", "Requirement already satisfied: bleach in c:\\detection\\tensor\\lib\\site-packages (from kaggle>=1.3.9->tf-models-official) (6.1.0)\n", "Requirement already satisfied: pytz>=2020.1 in c:\\detection\\tensor\\lib\\site-packages (from pandas>=0.22.0->tf-models-official) (2024.1)\n", "Collecting tzdata>=2022.1 (from pandas>=0.22.0->tf-models-official)\n", " Downloading tzdata-2024.1-py2.py3-none-any.whl.metadata (1.4 kB)\n", "Requirement already satisfied: absl-py>=1.0.0 in c:\\detection\\tensor\\lib\\site-packages (from tensorflow~=2.10.0->tf-models-official) (2.1.0)\n", "Requirement already satisfied: astunparse>=1.6.0 in c:\\detection\\tensor\\lib\\site-packages (from tensorflow~=2.10.0->tf-models-official) (1.6.3)\n", "Collecting flatbuffers>=2.0 (from tensorflow~=2.10.0->tf-models-official)\n", " Downloading flatbuffers-24.3.25-py2.py3-none-any.whl.metadata (850 bytes)\n", "Requirement already satisfied: gast<=0.4.0,>=0.2.1 in c:\\detection\\tensor\\lib\\site-packages (from tensorflow~=2.10.0->tf-models-official) (0.4.0)\n", "Requirement already satisfied: google-pasta>=0.1.1 in c:\\detection\\tensor\\lib\\site-packages (from tensorflow~=2.10.0->tf-models-official) (0.2.0)\n", "Requirement already satisfied: h5py>=2.9.0 in c:\\detection\\tensor\\lib\\site-packages (from tensorflow~=2.10.0->tf-models-official) (3.11.0)\n", "Requirement already satisfied: keras-preprocessing>=1.1.1 in c:\\detection\\tensor\\lib\\site-packages (from tensorflow~=2.10.0->tf-models-official) (1.1.2)\n", "Requirement already satisfied: libclang>=13.0.0 in c:\\detection\\tensor\\lib\\site-packages (from tensorflow~=2.10.0->tf-models-official) (18.1.1)\n", "Requirement already satisfied: opt-einsum>=2.3.2 in c:\\detection\\tensor\\lib\\site-packages (from tensorflow~=2.10.0->tf-models-official) (3.3.0)\n", "Requirement already satisfied: packaging in c:\\detection\\tensor\\lib\\site-packages (from tensorflow~=2.10.0->tf-models-official) (24.0)\n", "Collecting protobuf<3.20,>=3.9.2 (from tensorflow~=2.10.0->tf-models-official)\n", " Using cached protobuf-3.19.6-cp38-cp38-win_amd64.whl.metadata (807 bytes)\n", "Requirement already satisfied: setuptools in c:\\detection\\tensor\\lib\\site-packages (from tensorflow~=2.10.0->tf-models-official) (41.2.0)\n", "Requirement already satisfied: termcolor>=1.1.0 in c:\\detection\\tensor\\lib\\site-packages (from tensorflow~=2.10.0->tf-models-official) (2.4.0)\n", "Requirement already satisfied: typing-extensions>=3.6.6 in c:\\detection\\tensor\\lib\\site-packages (from tensorflow~=2.10.0->tf-models-official) (4.11.0)\n", "Requirement already satisfied: wrapt>=1.11.0 in c:\\detection\\tensor\\lib\\site-packages (from tensorflow~=2.10.0->tf-models-official) (1.16.0)\n", "Requirement already satisfied: tensorflow-io-gcs-filesystem>=0.23.1 in c:\\detection\\tensor\\lib\\site-packages (from tensorflow~=2.10.0->tf-models-official) (0.31.0)\n", "Requirement already satisfied: grpcio<2.0,>=1.24.3 in c:\\detection\\tensor\\lib\\site-packages (from tensorflow~=2.10.0->tf-models-official) (1.63.0)\n", "Collecting tensorboard<2.11,>=2.10 (from tensorflow~=2.10.0->tf-models-official)\n", " Downloading tensorboard-2.10.1-py3-none-any.whl.metadata (1.9 kB)\n", "Collecting tensorflow-estimator<2.11,>=2.10.0 (from tensorflow~=2.10.0->tf-models-official)\n", " Downloading tensorflow_estimator-2.10.0-py2.py3-none-any.whl.metadata (1.3 kB)\n", "Collecting keras<2.11,>=2.10.0 (from tensorflow~=2.10.0->tf-models-official)\n", " Downloading keras-2.10.0-py2.py3-none-any.whl.metadata (1.3 kB)\n", "Collecting tf-keras>=2.14.1 (from tensorflow-hub>=0.6.0->tf-models-official)\n", " Downloading tf_keras-2.15.1-py3-none-any.whl.metadata (1.7 kB)\n", "Collecting absl-py>=1.0.0 (from tensorflow~=2.10.0->tf-models-official)\n", " Downloading absl_py-1.4.0-py3-none-any.whl.metadata (2.3 kB)\n", "Collecting dm-tree~=0.1.1 (from tensorflow-model-optimization>=0.4.1->tf-models-official)\n", " Downloading dm_tree-0.1.8-cp38-cp38-win_amd64.whl.metadata (2.0 kB)\n", "Collecting contourpy>=1.0.1 (from matplotlib->tf-models-official)\n", " Downloading contourpy-1.1.1-cp38-cp38-win_amd64.whl.metadata (5.9 kB)\n", "Collecting cycler>=0.10 (from matplotlib->tf-models-official)\n", " Using cached cycler-0.12.1-py3-none-any.whl.metadata (3.8 kB)\n", "Collecting fonttools>=4.22.0 (from matplotlib->tf-models-official)\n", " Downloading fonttools-4.51.0-cp38-cp38-win_amd64.whl.metadata (162 kB)\n", " ---------------------------------------- 0.0/162.8 kB ? eta -:--:--\n", " ------------------------------------- 162.8/162.8 kB 10.2 MB/s eta 0:00:00\n", "Collecting kiwisolver>=1.0.1 (from matplotlib->tf-models-official)\n", " Downloading kiwisolver-1.4.5-cp38-cp38-win_amd64.whl.metadata (6.5 kB)\n", "Requirement already satisfied: pyparsing>=2.3.1 in c:\\detection\\tensor\\lib\\site-packages\\pyparsing-2.4.7-py3.8.egg (from matplotlib->tf-models-official) (2.4.7)\n", "Requirement already satisfied: importlib-resources>=3.2.0 in c:\\detection\\tensor\\lib\\site-packages (from matplotlib->tf-models-official) (6.4.0)\n", "Requirement already satisfied: pyasn1>=0.1.7 in c:\\detection\\tensor\\lib\\site-packages (from oauth2client->tf-models-official) (0.6.0)\n", "Requirement already satisfied: pyasn1-modules>=0.0.5 in c:\\detection\\tensor\\lib\\site-packages (from oauth2client->tf-models-official) (0.4.0)\n", "Requirement already satisfied: rsa>=3.1.4 in c:\\detection\\tensor\\lib\\site-packages (from oauth2client->tf-models-official) (4.9)\n", "Collecting scikit-learn>=0.21.3 (from seqeval->tf-models-official)\n", " Downloading scikit_learn-1.3.2-cp38-cp38-win_amd64.whl.metadata (11 kB)\n", "Collecting typeguard<3.0.0,>=2.7 (from tensorflow-addons->tf-models-official)\n", " Downloading typeguard-2.13.3-py3-none-any.whl.metadata (3.6 kB)\n", "Collecting array-record (from tensorflow-datasets->tf-models-official)\n", " Downloading array_record-0.4.0-py38-none-any.whl.metadata (502 bytes)\n", "Collecting click (from tensorflow-datasets->tf-models-official)\n", " Downloading click-8.1.7-py3-none-any.whl.metadata (3.0 kB)\n", "Collecting etils>=0.9.0 (from etils[enp,epath]>=0.9.0->tensorflow-datasets->tf-models-official)\n", " Downloading etils-1.3.0-py3-none-any.whl.metadata (5.5 kB)\n", "Collecting promise (from tensorflow-datasets->tf-models-official)\n", " Downloading promise-2.3.tar.gz (19 kB)\n", " Preparing metadata (setup.py): started\n", " Preparing metadata (setup.py): finished with status 'done'\n", "INFO: pip is looking at multiple versions of tensorflow-datasets to determine which version is compatible with other requirements. This could take a while.\n", "Collecting tensorflow-datasets (from tf-models-official)\n", " Downloading tensorflow_datasets-4.9.1-py3-none-any.whl.metadata (9.0 kB)\n", " Downloading tensorflow_datasets-4.9.0-py3-none-any.whl.metadata (9.0 kB)\n", "Collecting tensorflow-metadata (from tensorflow-datasets->tf-models-official)\n", " Downloading tensorflow_metadata-1.14.0-py3-none-any.whl.metadata (2.1 kB)\n", "Collecting toml (from tensorflow-datasets->tf-models-official)\n", " Downloading toml-0.10.2-py2.py3-none-any.whl.metadata (7.1 kB)\n", "Requirement already satisfied: wheel<1.0,>=0.23.0 in c:\\detection\\tensor\\lib\\site-packages (from astunparse>=1.6.0->tensorflow~=2.10.0->tf-models-official) (0.43.0)\n", "Requirement already satisfied: zipp in c:\\detection\\tensor\\lib\\site-packages (from etils[enp,epath]>=0.9.0->tensorflow-datasets->tf-models-official) (3.18.1)\n", "Collecting googleapis-common-protos<2.0.dev0,>=1.56.2 (from google-api-core!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0.dev0,>=1.31.5->google-api-python-client>=1.6.7->tf-models-official)\n", " Downloading googleapis_common_protos-1.63.0-py2.py3-none-any.whl.metadata (1.5 kB)\n", "Collecting proto-plus<2.0.0dev,>=1.22.3 (from google-api-core!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0.dev0,>=1.31.5->google-api-python-client>=1.6.7->tf-models-official)\n", " Downloading proto_plus-1.23.0-py3-none-any.whl.metadata (2.2 kB)\n", "Requirement already satisfied: cachetools<6.0,>=2.0.0 in c:\\detection\\tensor\\lib\\site-packages (from google-auth!=2.24.0,!=2.25.0,<3.0.0.dev0,>=1.32.0->google-api-python-client>=1.6.7->tf-models-official) (5.3.3)\n", "Requirement already satisfied: charset-normalizer<4,>=2 in c:\\detection\\tensor\\lib\\site-packages (from requests->kaggle>=1.3.9->tf-models-official) (3.3.2)\n", "Requirement already satisfied: idna<4,>=2.5 in c:\\detection\\tensor\\lib\\site-packages (from requests->kaggle>=1.3.9->tf-models-official) (3.7)\n", "Collecting joblib>=1.1.1 (from scikit-learn>=0.21.3->seqeval->tf-models-official)\n", " Downloading joblib-1.4.0-py3-none-any.whl.metadata (5.4 kB)\n", "Collecting threadpoolctl>=2.0.0 (from scikit-learn>=0.21.3->seqeval->tf-models-official)\n", " Downloading threadpoolctl-3.5.0-py3-none-any.whl.metadata (13 kB)\n", "Requirement already satisfied: google-auth-oauthlib<0.5,>=0.4.1 in c:\\detection\\tensor\\lib\\site-packages (from tensorboard<2.11,>=2.10->tensorflow~=2.10.0->tf-models-official) (0.4.6)\n", "Requirement already satisfied: markdown>=2.6.8 in c:\\detection\\tensor\\lib\\site-packages (from tensorboard<2.11,>=2.10->tensorflow~=2.10.0->tf-models-official) (3.6)\n", "Requirement already satisfied: tensorboard-data-server<0.7.0,>=0.6.0 in c:\\detection\\tensor\\lib\\site-packages (from tensorboard<2.11,>=2.10->tensorflow~=2.10.0->tf-models-official) (0.6.1)\n", "Requirement already satisfied: tensorboard-plugin-wit>=1.6.0 in c:\\detection\\tensor\\lib\\site-packages (from tensorboard<2.11,>=2.10->tensorflow~=2.10.0->tf-models-official) (1.8.1)\n", "Requirement already satisfied: werkzeug>=1.0.1 in c:\\detection\\tensor\\lib\\site-packages (from tensorboard<2.11,>=2.10->tensorflow~=2.10.0->tf-models-official) (3.0.2)\n", "INFO: pip is looking at multiple versions of tf-keras to determine which version is compatible with other requirements. This could take a while.\n", "Collecting tf-keras>=2.14.1 (from tensorflow-hub>=0.6.0->tf-models-official)\n", " Downloading tf_keras-2.15.0-py3-none-any.whl.metadata (1.6 kB)\n", "Requirement already satisfied: webencodings in c:\\detection\\tensor\\lib\\site-packages (from bleach->kaggle>=1.3.9->tf-models-official) (0.5.1)\n", "Requirement already satisfied: pywin32>=226 in c:\\detection\\tensor\\lib\\site-packages (from portalocker->sacrebleu->tf-models-official) (306)\n", "Collecting text-unidecode>=1.3 (from python-slugify->kaggle>=1.3.9->tf-models-official)\n", " Downloading text_unidecode-1.3-py2.py3-none-any.whl.metadata (2.4 kB)\n", "INFO: pip is looking at multiple versions of tensorflow-metadata to determine which version is compatible with other requirements. This could take a while.\n", "Collecting tensorflow-metadata (from tensorflow-datasets->tf-models-official)\n", " Downloading tensorflow_metadata-1.13.1-py3-none-any.whl.metadata (2.1 kB)\n", " Downloading tensorflow_metadata-1.13.0-py3-none-any.whl.metadata (2.1 kB)\n", "Requirement already satisfied: requests-oauthlib>=0.7.0 in c:\\detection\\tensor\\lib\\site-packages (from google-auth-oauthlib<0.5,>=0.4.1->tensorboard<2.11,>=2.10->tensorflow~=2.10.0->tf-models-official) (2.0.0)\n", "Requirement already satisfied: importlib-metadata>=4.4 in c:\\detection\\tensor\\lib\\site-packages (from markdown>=2.6.8->tensorboard<2.11,>=2.10->tensorflow~=2.10.0->tf-models-official) (7.1.0)\n", "Requirement already satisfied: MarkupSafe>=2.1.1 in c:\\detection\\tensor\\lib\\site-packages (from werkzeug>=1.0.1->tensorboard<2.11,>=2.10->tensorflow~=2.10.0->tf-models-official) (2.1.5)\n", "Requirement already satisfied: oauthlib>=3.0.0 in c:\\detection\\tensor\\lib\\site-packages (from requests-oauthlib>=0.7.0->google-auth-oauthlib<0.5,>=0.4.1->tensorboard<2.11,>=2.10->tensorflow~=2.10.0->tf-models-official) (3.2.2)\n", "Downloading tf_models_official-2.10.1-py2.py3-none-any.whl (2.2 MB)\n", " ---------------------------------------- 0.0/2.2 MB ? eta -:--:--\n", " ----- ---------------------------------- 0.3/2.2 MB 5.7 MB/s eta 0:00:01\n", " ---------- ----------------------------- 0.6/2.2 MB 6.0 MB/s eta 0:00:01\n", " ---------------- ----------------------- 0.9/2.2 MB 6.2 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.0/2.2 MB 6.0 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.1/2.2 MB 425.8 kB/s eta 0:00:03\n", " ------------------- -------------------- 1.1/2.2 MB 432.9 kB/s eta 0:00:03\n", " --------------------- ------------------ 1.2/2.2 MB 461.2 kB/s eta 0:00:03\n", " ------------------------- -------------- 1.4/2.2 MB 536.9 kB/s eta 0:00:02\n", " ----------------------------- ---------- 1.6/2.2 MB 616.5 kB/s eta 0:00:01\n", " ---------------------------------- ----- 1.9/2.2 MB 689.8 kB/s eta 0:00:01\n", " ------------------------------------ --- 2.0/2.2 MB 742.5 kB/s eta 0:00:01\n", " --------------------------------------- 2.2/2.2 MB 789.4 kB/s eta 0:00:01\n", " ---------------------------------------- 2.2/2.2 MB 783.3 kB/s eta 0:00:00\n", "Downloading google_api_python_client-2.127.0-py2.py3-none-any.whl (12.7 MB)\n", " ---------------------------------------- 0.0/12.7 MB ? eta -:--:--\n", " --------------------------------------- 0.2/12.7 MB 9.6 MB/s eta 0:00:02\n", " - -------------------------------------- 0.6/12.7 MB 6.5 MB/s eta 0:00:02\n", " --- ------------------------------------ 1.0/12.7 MB 6.6 MB/s eta 0:00:02\n", " ---- ----------------------------------- 1.4/12.7 MB 6.3 MB/s eta 0:00:02\n", " ----- ---------------------------------- 1.9/12.7 MB 6.7 MB/s eta 0:00:02\n", " ------ --------------------------------- 2.1/12.7 MB 6.5 MB/s eta 0:00:02\n", " ------- -------------------------------- 2.5/12.7 MB 6.6 MB/s eta 0:00:02\n", " -------- ------------------------------- 2.8/12.7 MB 6.6 MB/s eta 0:00:02\n", " --------- ------------------------------ 3.1/12.7 MB 6.5 MB/s eta 0:00:02\n", " ---------- ----------------------------- 3.3/12.7 MB 6.5 MB/s eta 0:00:02\n", " ----------- ---------------------------- 3.6/12.7 MB 6.4 MB/s eta 0:00:02\n", " ------------ --------------------------- 4.1/12.7 MB 6.6 MB/s eta 0:00:02\n", " ------------- -------------------------- 4.3/12.7 MB 6.5 MB/s eta 0:00:02\n", " -------------- ------------------------- 4.6/12.7 MB 6.5 MB/s eta 0:00:02\n", " --------------- ------------------------ 4.9/12.7 MB 6.6 MB/s eta 0:00:02\n", " ---------------- ----------------------- 5.3/12.7 MB 6.7 MB/s eta 0:00:02\n", " ----------------- ---------------------- 5.6/12.7 MB 6.7 MB/s eta 0:00:02\n", " ------------------ --------------------- 5.9/12.7 MB 6.6 MB/s eta 0:00:02\n", " ------------------- -------------------- 6.2/12.7 MB 6.7 MB/s eta 0:00:01\n", " -------------------- ------------------- 6.6/12.7 MB 6.7 MB/s eta 0:00:01\n", " --------------------- ------------------ 6.9/12.7 MB 6.7 MB/s eta 0:00:01\n", " ---------------------- ----------------- 7.1/12.7 MB 6.7 MB/s eta 0:00:01\n", " ----------------------- ---------------- 7.4/12.7 MB 6.7 MB/s eta 0:00:01\n", " ------------------------ --------------- 7.8/12.7 MB 6.6 MB/s eta 0:00:01\n", " ------------------------- -------------- 8.1/12.7 MB 6.7 MB/s eta 0:00:01\n", " -------------------------- ------------- 8.3/12.7 MB 6.7 MB/s eta 0:00:01\n", " --------------------------- ------------ 8.6/12.7 MB 6.7 MB/s eta 0:00:01\n", " --------------------------- ------------ 8.8/12.7 MB 6.6 MB/s eta 0:00:01\n", " ---------------------------- ----------- 9.0/12.7 MB 6.4 MB/s eta 0:00:01\n", " ------------------------------ --------- 9.6/12.7 MB 6.5 MB/s eta 0:00:01\n", " ------------------------------- -------- 10.0/12.7 MB 6.5 MB/s eta 0:00:01\n", " -------------------------------- ------- 10.4/12.7 MB 6.5 MB/s eta 0:00:01\n", " ---------------------------------- ----- 10.8/12.7 MB 6.5 MB/s eta 0:00:01\n", " ----------------------------------- ---- 11.1/12.7 MB 6.6 MB/s eta 0:00:01\n", " ------------------------------------ --- 11.5/12.7 MB 6.7 MB/s eta 0:00:01\n", " ------------------------------------- -- 11.9/12.7 MB 6.6 MB/s eta 0:00:01\n", " -------------------------------------- - 12.2/12.7 MB 6.6 MB/s eta 0:00:01\n", " --------------------------------------- 12.6/12.7 MB 6.6 MB/s eta 0:00:01\n", " --------------------------------------- 12.7/12.7 MB 6.7 MB/s eta 0:00:01\n", " --------------------------------------- 12.7/12.7 MB 6.7 MB/s eta 0:00:01\n", " ---------------------------------------- 12.7/12.7 MB 6.2 MB/s eta 0:00:00\n", "Downloading pandas-2.0.3-cp38-cp38-win_amd64.whl (10.8 MB)\n", " ---------------------------------------- 0.0/10.8 MB ? eta -:--:--\n", " --------------------------------------- 0.3/10.8 MB 5.2 MB/s eta 0:00:03\n", " - -------------------------------------- 0.4/10.8 MB 5.3 MB/s eta 0:00:02\n", " -- ------------------------------------- 0.7/10.8 MB 5.2 MB/s eta 0:00:02\n", " --- ------------------------------------ 1.0/10.8 MB 5.2 MB/s eta 0:00:02\n", " ---- ----------------------------------- 1.2/10.8 MB 5.1 MB/s eta 0:00:02\n", " ----- ---------------------------------- 1.5/10.8 MB 5.8 MB/s eta 0:00:02\n", " ------- -------------------------------- 2.0/10.8 MB 6.2 MB/s eta 0:00:02\n", " -------- ------------------------------- 2.4/10.8 MB 6.0 MB/s eta 0:00:02\n", " ---------- ----------------------------- 2.8/10.8 MB 6.1 MB/s eta 0:00:02\n", " ----------- ---------------------------- 3.1/10.8 MB 6.2 MB/s eta 0:00:02\n", " ------------- -------------------------- 3.7/10.8 MB 6.3 MB/s eta 0:00:02\n", " -------------- ------------------------- 3.9/10.8 MB 6.3 MB/s eta 0:00:02\n", " --------------- ------------------------ 4.1/10.8 MB 6.1 MB/s eta 0:00:02\n", " ---------------- ----------------------- 4.5/10.8 MB 6.2 MB/s eta 0:00:02\n", " ----------------- ---------------------- 4.8/10.8 MB 6.4 MB/s eta 0:00:01\n", " ------------------ --------------------- 5.1/10.8 MB 6.2 MB/s eta 0:00:01\n", " ------------------- -------------------- 5.3/10.8 MB 6.3 MB/s eta 0:00:01\n", " --------------------- ------------------ 5.7/10.8 MB 6.3 MB/s eta 0:00:01\n", " --------------------- ------------------ 5.9/10.8 MB 6.2 MB/s eta 0:00:01\n", " ----------------------- ---------------- 6.2/10.8 MB 6.2 MB/s eta 0:00:01\n", " ------------------------ --------------- 6.5/10.8 MB 6.3 MB/s eta 0:00:01\n", " ------------------------- -------------- 6.9/10.8 MB 6.3 MB/s eta 0:00:01\n", " -------------------------- ------------- 7.1/10.8 MB 6.3 MB/s eta 0:00:01\n", " --------------------------- ------------ 7.4/10.8 MB 6.3 MB/s eta 0:00:01\n", " ----------------------------- ---------- 8.0/10.8 MB 6.4 MB/s eta 0:00:01\n", " ------------------------------- -------- 8.4/10.8 MB 6.5 MB/s eta 0:00:01\n", " --------------------------------- ------ 9.0/10.8 MB 6.6 MB/s eta 0:00:01\n", " ---------------------------------- ----- 9.2/10.8 MB 6.5 MB/s eta 0:00:01\n", " ----------------------------------- ---- 9.5/10.8 MB 6.5 MB/s eta 0:00:01\n", " ------------------------------------- -- 10.0/10.8 MB 6.7 MB/s eta 0:00:01\n", " -------------------------------------- - 10.3/10.8 MB 6.6 MB/s eta 0:00:01\n", " --------------------------------------- 10.8/10.8 MB 6.7 MB/s eta 0:00:01\n", " --------------------------------------- 10.8/10.8 MB 6.7 MB/s eta 0:00:01\n", " ---------------------------------------- 10.8/10.8 MB 6.2 MB/s eta 0:00:00\n", "Downloading py_cpuinfo-9.0.0-py3-none-any.whl (22 kB)\n", "Downloading PyYAML-5.4.1-cp38-cp38-win_amd64.whl (213 kB)\n", " ---------------------------------------- 0.0/213.6 kB ? eta -:--:--\n", " ---------------------------------------- 213.6/213.6 kB 6.6 MB/s eta 0:00:00\n", "Downloading tensorflow-2.10.1-cp38-cp38-win_amd64.whl (455.9 MB)\n", " ---------------------------------------- 0.0/455.9 MB ? eta -:--:--\n", " ---------------------------------------- 0.5/455.9 MB 10.2 MB/s eta 0:00:45\n", " ---------------------------------------- 0.8/455.9 MB 8.9 MB/s eta 0:00:51\n", " ---------------------------------------- 1.1/455.9 MB 7.7 MB/s eta 0:01:00\n", " ---------------------------------------- 1.5/455.9 MB 8.0 MB/s eta 0:00:57\n", " ---------------------------------------- 1.9/455.9 MB 8.1 MB/s eta 0:00:56\n", " ---------------------------------------- 2.3/455.9 MB 8.2 MB/s eta 0:00:56\n", " ---------------------------------------- 2.7/455.9 MB 8.6 MB/s eta 0:00:53\n", " ---------------------------------------- 3.2/455.9 MB 8.4 MB/s eta 0:00:54\n", " ---------------------------------------- 3.7/455.9 MB 8.4 MB/s eta 0:00:54\n", " ---------------------------------------- 4.1/455.9 MB 8.4 MB/s eta 0:00:54\n", " ---------------------------------------- 4.6/455.9 MB 8.2 MB/s eta 0:00:55\n", " ---------------------------------------- 5.2/455.9 MB 8.2 MB/s eta 0:00:55\n", " ---------------------------------------- 5.4/455.9 MB 8.2 MB/s eta 0:00:55\n", " --------------------------------------- 5.9/455.9 MB 8.2 MB/s eta 0:00:55\n", " --------------------------------------- 6.2/455.9 MB 8.1 MB/s eta 0:00:56\n", " --------------------------------------- 6.6/455.9 MB 8.2 MB/s eta 0:00:56\n", " --------------------------------------- 6.9/455.9 MB 8.2 MB/s eta 0:00:55\n", " --------------------------------------- 7.2/455.9 MB 8.0 MB/s eta 0:00:57\n", " --------------------------------------- 7.6/455.9 MB 7.9 MB/s eta 0:00:57\n", " --------------------------------------- 8.1/455.9 MB 7.9 MB/s eta 0:00:57\n", " --------------------------------------- 8.6/455.9 MB 8.1 MB/s eta 0:00:56\n", " --------------------------------------- 8.8/455.9 MB 8.0 MB/s eta 0:00:57\n", " --------------------------------------- 9.2/455.9 MB 8.0 MB/s eta 0:00:57\n", " --------------------------------------- 9.6/455.9 MB 8.0 MB/s eta 0:00:56\n", " --------------------------------------- 9.9/455.9 MB 7.9 MB/s eta 0:00:57\n", " --------------------------------------- 10.2/455.9 MB 8.0 MB/s eta 0:00:56\n", " --------------------------------------- 10.6/455.9 MB 7.9 MB/s eta 0:00:57\n", " --------------------------------------- 10.8/455.9 MB 7.7 MB/s eta 0:00:58\n", " --------------------------------------- 11.3/455.9 MB 7.9 MB/s eta 0:00:57\n", " - -------------------------------------- 11.7/455.9 MB 7.7 MB/s eta 0:00:58\n", " - -------------------------------------- 12.0/455.9 MB 7.6 MB/s eta 0:00:59\n", " - -------------------------------------- 12.4/455.9 MB 7.6 MB/s eta 0:00:59\n", " - -------------------------------------- 12.9/455.9 MB 7.6 MB/s eta 0:00:59\n", " - -------------------------------------- 13.2/455.9 MB 7.6 MB/s eta 0:00:59\n", " - -------------------------------------- 13.5/455.9 MB 7.6 MB/s eta 0:00:59\n", " - -------------------------------------- 13.8/455.9 MB 7.4 MB/s eta 0:01:00\n", " - -------------------------------------- 14.2/455.9 MB 7.4 MB/s eta 0:01:00\n", " - -------------------------------------- 14.6/455.9 MB 7.4 MB/s eta 0:01:00\n", " - -------------------------------------- 15.0/455.9 MB 7.4 MB/s eta 0:01:00\n", " - -------------------------------------- 15.3/455.9 MB 7.4 MB/s eta 0:01:00\n", " - -------------------------------------- 15.6/455.9 MB 7.4 MB/s eta 0:01:00\n", " - -------------------------------------- 15.9/455.9 MB 7.4 MB/s eta 0:01:00\n", " - -------------------------------------- 16.3/455.9 MB 7.4 MB/s eta 0:01:00\n", " - -------------------------------------- 16.7/455.9 MB 7.4 MB/s eta 0:01:00\n", " - -------------------------------------- 16.7/455.9 MB 7.4 MB/s eta 0:01:00\n", " - -------------------------------------- 17.0/455.9 MB 7.0 MB/s eta 0:01:03\n", " - -------------------------------------- 17.5/455.9 MB 7.2 MB/s eta 0:01:01\n", " - -------------------------------------- 17.8/455.9 MB 7.4 MB/s eta 0:01:00\n", " - -------------------------------------- 18.2/455.9 MB 7.3 MB/s eta 0:01:01\n", " - -------------------------------------- 18.5/455.9 MB 7.2 MB/s eta 0:01:01\n", " - -------------------------------------- 18.9/455.9 MB 7.2 MB/s eta 0:01:01\n", " - -------------------------------------- 19.5/455.9 MB 7.2 MB/s eta 0:01:01\n", " - -------------------------------------- 19.8/455.9 MB 7.2 MB/s eta 0:01:01\n", " - -------------------------------------- 20.2/455.9 MB 7.2 MB/s eta 0:01:01\n", " - -------------------------------------- 20.6/455.9 MB 7.1 MB/s eta 0:01:02\n", " - -------------------------------------- 20.9/455.9 MB 7.1 MB/s eta 0:01:02\n", " - -------------------------------------- 21.3/455.9 MB 7.2 MB/s eta 0:01:01\n", " - -------------------------------------- 21.7/455.9 MB 7.3 MB/s eta 0:01:00\n", " - -------------------------------------- 22.1/455.9 MB 7.4 MB/s eta 0:00:59\n", " - -------------------------------------- 22.6/455.9 MB 7.4 MB/s eta 0:00:59\n", " -- ------------------------------------- 23.1/455.9 MB 7.4 MB/s eta 0:00:59\n", " -- ------------------------------------- 23.2/455.9 MB 7.3 MB/s eta 0:01:00\n", " -- ------------------------------------- 23.5/455.9 MB 7.3 MB/s eta 0:01:00\n", " -- ------------------------------------- 23.9/455.9 MB 7.4 MB/s eta 0:00:59\n", " -- ------------------------------------- 24.4/455.9 MB 7.6 MB/s eta 0:00:57\n", " -- ------------------------------------- 24.7/455.9 MB 7.5 MB/s eta 0:00:58\n", " -- ------------------------------------- 24.9/455.9 MB 7.4 MB/s eta 0:00:59\n", " -- ------------------------------------- 25.5/455.9 MB 7.4 MB/s eta 0:00:58\n", " -- ------------------------------------- 25.9/455.9 MB 7.5 MB/s eta 0:00:58\n", " -- ------------------------------------- 26.4/455.9 MB 7.5 MB/s eta 0:00:58\n", " -- ------------------------------------- 26.7/455.9 MB 7.4 MB/s eta 0:00:58\n", " -- ------------------------------------- 27.3/455.9 MB 7.8 MB/s eta 0:00:56\n", " -- ------------------------------------- 27.6/455.9 MB 7.7 MB/s eta 0:00:56\n", " -- ------------------------------------- 28.0/455.9 MB 7.7 MB/s eta 0:00:56\n", " -- ------------------------------------- 28.5/455.9 MB 7.8 MB/s eta 0:00:55\n", " -- ------------------------------------- 28.9/455.9 MB 7.9 MB/s eta 0:00:55\n", " -- ------------------------------------- 29.1/455.9 MB 7.9 MB/s eta 0:00:55\n", " -- ------------------------------------- 29.7/455.9 MB 7.8 MB/s eta 0:00:55\n", " -- ------------------------------------- 29.9/455.9 MB 7.7 MB/s eta 0:00:56\n", " -- ------------------------------------- 30.3/455.9 MB 7.7 MB/s eta 0:00:56\n", " -- ------------------------------------- 30.6/455.9 MB 7.7 MB/s eta 0:00:56\n", " -- ------------------------------------- 31.0/455.9 MB 7.7 MB/s eta 0:00:56\n", " -- ------------------------------------- 31.3/455.9 MB 7.6 MB/s eta 0:00:56\n", " -- ------------------------------------- 31.5/455.9 MB 7.5 MB/s eta 0:00:57\n", " -- ------------------------------------- 31.7/455.9 MB 7.5 MB/s eta 0:00:57\n", " -- ------------------------------------- 32.1/455.9 MB 7.4 MB/s eta 0:00:57\n", " -- ------------------------------------- 32.4/455.9 MB 7.4 MB/s eta 0:00:58\n", " -- ------------------------------------- 32.5/455.9 MB 7.3 MB/s eta 0:00:59\n", " -- ------------------------------------- 33.0/455.9 MB 7.3 MB/s eta 0:00:59\n", " -- ------------------------------------- 33.4/455.9 MB 7.3 MB/s eta 0:00:59\n", " -- ------------------------------------- 33.7/455.9 MB 7.3 MB/s eta 0:00:59\n", " -- ------------------------------------- 34.1/455.9 MB 7.1 MB/s eta 0:01:00\n", " --- ------------------------------------ 34.5/455.9 MB 7.1 MB/s eta 0:01:00\n", " --- ------------------------------------ 34.8/455.9 MB 7.1 MB/s eta 0:01:00\n", " --- ------------------------------------ 35.1/455.9 MB 7.2 MB/s eta 0:00:59\n", " --- ------------------------------------ 35.5/455.9 MB 7.2 MB/s eta 0:00:59\n", " --- ------------------------------------ 35.8/455.9 MB 7.1 MB/s eta 0:01:00\n", " --- ------------------------------------ 36.1/455.9 MB 7.0 MB/s eta 0:01:00\n", " --- ------------------------------------ 36.4/455.9 MB 7.1 MB/s eta 0:00:59\n", " --- ------------------------------------ 36.6/455.9 MB 6.9 MB/s eta 0:01:01\n", " --- ------------------------------------ 37.0/455.9 MB 6.9 MB/s eta 0:01:01\n", " --- ------------------------------------ 37.3/455.9 MB 6.8 MB/s eta 0:01:02\n", " --- ------------------------------------ 37.6/455.9 MB 6.8 MB/s eta 0:01:02\n", " --- ------------------------------------ 37.9/455.9 MB 6.7 MB/s eta 0:01:02\n", " --- ------------------------------------ 38.2/455.9 MB 6.7 MB/s eta 0:01:03\n", " --- ------------------------------------ 38.5/455.9 MB 6.7 MB/s eta 0:01:03\n", " --- ------------------------------------ 38.9/455.9 MB 6.6 MB/s eta 0:01:04\n", " --- ------------------------------------ 39.3/455.9 MB 6.7 MB/s eta 0:01:03\n", " --- ------------------------------------ 39.6/455.9 MB 6.7 MB/s eta 0:01:03\n", " --- ------------------------------------ 39.8/455.9 MB 6.5 MB/s eta 0:01:04\n", " --- ------------------------------------ 40.2/455.9 MB 6.7 MB/s eta 0:01:02\n", " --- ------------------------------------ 40.6/455.9 MB 6.8 MB/s eta 0:01:02\n", " --- ------------------------------------ 40.9/455.9 MB 6.7 MB/s eta 0:01:03\n", " --- ------------------------------------ 41.4/455.9 MB 6.7 MB/s eta 0:01:02\n", " --- ------------------------------------ 41.8/455.9 MB 6.7 MB/s eta 0:01:02\n", " --- ------------------------------------ 42.2/455.9 MB 6.7 MB/s eta 0:01:02\n", " --- ------------------------------------ 42.6/455.9 MB 6.8 MB/s eta 0:01:01\n", " --- ------------------------------------ 43.1/455.9 MB 6.9 MB/s eta 0:01:00\n", " --- ------------------------------------ 43.4/455.9 MB 6.8 MB/s eta 0:01:01\n", " --- ------------------------------------ 43.6/455.9 MB 6.8 MB/s eta 0:01:02\n", " --- ------------------------------------ 43.9/455.9 MB 6.7 MB/s eta 0:01:02\n", " --- ------------------------------------ 44.3/455.9 MB 6.7 MB/s eta 0:01:02\n", " --- ------------------------------------ 44.5/455.9 MB 6.7 MB/s eta 0:01:01\n", " --- ------------------------------------ 44.7/455.9 MB 6.8 MB/s eta 0:01:01\n", " --- ------------------------------------ 45.1/455.9 MB 6.7 MB/s eta 0:01:02\n", " --- ------------------------------------ 45.4/455.9 MB 6.5 MB/s eta 0:01:03\n", " ---- ----------------------------------- 45.7/455.9 MB 6.5 MB/s eta 0:01:04\n", " ---- ----------------------------------- 46.1/455.9 MB 6.6 MB/s eta 0:01:02\n", " ---- ----------------------------------- 46.3/455.9 MB 6.5 MB/s eta 0:01:03\n", " ---- ----------------------------------- 46.6/455.9 MB 6.5 MB/s eta 0:01:03\n", " ---- ----------------------------------- 47.0/455.9 MB 6.6 MB/s eta 0:01:02\n", " ---- ----------------------------------- 47.3/455.9 MB 6.5 MB/s eta 0:01:03\n", " ---- ----------------------------------- 47.6/455.9 MB 6.6 MB/s eta 0:01:02\n", " ---- ----------------------------------- 48.0/455.9 MB 6.7 MB/s eta 0:01:02\n", " ---- ----------------------------------- 48.3/455.9 MB 6.7 MB/s eta 0:01:02\n", " ---- ----------------------------------- 48.6/455.9 MB 6.6 MB/s eta 0:01:02\n", " ---- ----------------------------------- 49.1/455.9 MB 6.6 MB/s eta 0:01:02\n", " ---- ----------------------------------- 49.4/455.9 MB 6.7 MB/s eta 0:01:01\n", " ---- ----------------------------------- 49.7/455.9 MB 6.6 MB/s eta 0:01:02\n", " ---- ----------------------------------- 50.1/455.9 MB 6.7 MB/s eta 0:01:01\n", " ---- ----------------------------------- 50.5/455.9 MB 6.7 MB/s eta 0:01:01\n", " ---- ----------------------------------- 50.8/455.9 MB 6.7 MB/s eta 0:01:01\n", " ---- ----------------------------------- 51.1/455.9 MB 6.7 MB/s eta 0:01:00\n", " ---- ----------------------------------- 51.4/455.9 MB 6.7 MB/s eta 0:01:01\n", " ---- ----------------------------------- 51.9/455.9 MB 6.7 MB/s eta 0:01:00\n", " ---- ----------------------------------- 52.1/455.9 MB 6.8 MB/s eta 0:01:00\n", " ---- ----------------------------------- 52.4/455.9 MB 6.8 MB/s eta 0:01:00\n", " ---- ----------------------------------- 52.7/455.9 MB 6.7 MB/s eta 0:01:01\n", " ---- ----------------------------------- 53.0/455.9 MB 6.7 MB/s eta 0:01:01\n", " ---- ----------------------------------- 53.4/455.9 MB 6.7 MB/s eta 0:01:01\n", " ---- ----------------------------------- 53.6/455.9 MB 6.7 MB/s eta 0:01:01\n", " ---- ----------------------------------- 54.0/455.9 MB 6.8 MB/s eta 0:00:59\n", " ---- ----------------------------------- 54.2/455.9 MB 6.7 MB/s eta 0:01:01\n", " ---- ----------------------------------- 54.6/455.9 MB 6.7 MB/s eta 0:01:00\n", " ---- ----------------------------------- 54.9/455.9 MB 6.7 MB/s eta 0:01:01\n", " ---- ----------------------------------- 55.1/455.9 MB 6.8 MB/s eta 0:00:59\n", " ---- ----------------------------------- 55.4/455.9 MB 6.8 MB/s eta 0:00:59\n", " ---- ----------------------------------- 55.6/455.9 MB 6.8 MB/s eta 0:01:00\n", " ---- ----------------------------------- 55.9/455.9 MB 6.7 MB/s eta 0:01:00\n", " ---- ----------------------------------- 56.1/455.9 MB 6.6 MB/s eta 0:01:01\n", " ---- ----------------------------------- 56.7/455.9 MB 6.8 MB/s eta 0:01:00\n", " ----- ---------------------------------- 57.1/455.9 MB 6.7 MB/s eta 0:01:00\n", " ----- ---------------------------------- 57.3/455.9 MB 6.6 MB/s eta 0:01:01\n", " ----- ---------------------------------- 57.7/455.9 MB 6.6 MB/s eta 0:01:01\n", " ----- ---------------------------------- 58.0/455.9 MB 6.5 MB/s eta 0:01:01\n", " ----- ---------------------------------- 58.5/455.9 MB 6.5 MB/s eta 0:01:01\n", " ----- ---------------------------------- 58.9/455.9 MB 6.5 MB/s eta 0:01:02\n", " ----- ---------------------------------- 59.3/455.9 MB 6.5 MB/s eta 0:01:02\n", " ----- ---------------------------------- 59.7/455.9 MB 6.4 MB/s eta 0:01:02\n", " ----- ---------------------------------- 60.0/455.9 MB 6.4 MB/s eta 0:01:02\n", " ----- ---------------------------------- 60.4/455.9 MB 6.3 MB/s eta 0:01:03\n", " ----- ---------------------------------- 60.8/455.9 MB 6.4 MB/s eta 0:01:03\n", " ----- ---------------------------------- 61.0/455.9 MB 6.3 MB/s eta 0:01:03\n", " ----- ---------------------------------- 61.1/455.9 MB 6.1 MB/s eta 0:01:05\n", " ----- ---------------------------------- 61.5/455.9 MB 6.1 MB/s eta 0:01:06\n", " ----- ---------------------------------- 61.7/455.9 MB 6.1 MB/s eta 0:01:06\n", " ----- ---------------------------------- 62.0/455.9 MB 6.1 MB/s eta 0:01:06\n", " ----- ---------------------------------- 62.3/455.9 MB 6.1 MB/s eta 0:01:05\n", " ----- ---------------------------------- 62.6/455.9 MB 6.0 MB/s eta 0:01:06\n", " ----- ---------------------------------- 62.9/455.9 MB 6.1 MB/s eta 0:01:05\n", " ----- ---------------------------------- 63.1/455.9 MB 6.0 MB/s eta 0:01:06\n", " ----- ---------------------------------- 63.3/455.9 MB 6.0 MB/s eta 0:01:06\n", " ----- ---------------------------------- 63.5/455.9 MB 5.7 MB/s eta 0:01:09\n", " ----- ---------------------------------- 63.7/455.9 MB 5.7 MB/s eta 0:01:09\n", " ----- ---------------------------------- 63.9/455.9 MB 5.6 MB/s eta 0:01:11\n", " ----- ---------------------------------- 64.2/455.9 MB 5.5 MB/s eta 0:01:12\n", " ----- ---------------------------------- 64.4/455.9 MB 5.5 MB/s eta 0:01:12\n", " ----- ---------------------------------- 64.5/455.9 MB 5.4 MB/s eta 0:01:13\n", " ----- ---------------------------------- 64.7/455.9 MB 5.3 MB/s eta 0:01:14\n", " ----- ---------------------------------- 64.9/455.9 MB 5.3 MB/s eta 0:01:15\n", " ----- ---------------------------------- 65.1/455.9 MB 5.2 MB/s eta 0:01:15\n", " ----- ---------------------------------- 65.3/455.9 MB 5.2 MB/s eta 0:01:15\n", " ----- ---------------------------------- 65.6/455.9 MB 5.2 MB/s eta 0:01:16\n", " ----- ---------------------------------- 65.9/455.9 MB 5.2 MB/s eta 0:01:15\n", " ----- ---------------------------------- 66.0/455.9 MB 5.2 MB/s eta 0:01:16\n", " ----- ---------------------------------- 66.3/455.9 MB 5.2 MB/s eta 0:01:15\n", " ----- ---------------------------------- 66.6/455.9 MB 5.2 MB/s eta 0:01:15\n", " ----- ---------------------------------- 67.0/455.9 MB 5.2 MB/s eta 0:01:15\n", " ----- ---------------------------------- 67.2/455.9 MB 5.2 MB/s eta 0:01:16\n", " ----- ---------------------------------- 67.5/455.9 MB 5.2 MB/s eta 0:01:15\n", " ----- ---------------------------------- 67.8/455.9 MB 5.3 MB/s eta 0:01:14\n", " ----- ---------------------------------- 68.2/455.9 MB 5.3 MB/s eta 0:01:13\n", " ------ --------------------------------- 68.5/455.9 MB 5.4 MB/s eta 0:01:13\n", " ------ --------------------------------- 68.8/455.9 MB 5.3 MB/s eta 0:01:14\n", " ------ --------------------------------- 69.1/455.9 MB 5.4 MB/s eta 0:01:13\n", " ------ --------------------------------- 69.5/455.9 MB 5.3 MB/s eta 0:01:13\n", " ------ --------------------------------- 69.8/455.9 MB 5.3 MB/s eta 0:01:13\n", " ------ --------------------------------- 70.2/455.9 MB 5.3 MB/s eta 0:01:13\n", " ------ --------------------------------- 70.5/455.9 MB 5.4 MB/s eta 0:01:12\n", " ------ --------------------------------- 71.0/455.9 MB 5.4 MB/s eta 0:01:12\n", " ------ --------------------------------- 71.2/455.9 MB 5.4 MB/s eta 0:01:12\n", " ------ --------------------------------- 71.6/455.9 MB 5.5 MB/s eta 0:01:11\n", " ------ --------------------------------- 72.0/455.9 MB 5.5 MB/s eta 0:01:10\n", " ------ --------------------------------- 72.2/455.9 MB 5.5 MB/s eta 0:01:10\n", " ------ --------------------------------- 72.5/455.9 MB 5.5 MB/s eta 0:01:10\n", " ------ --------------------------------- 72.9/455.9 MB 5.5 MB/s eta 0:01:10\n", " ------ --------------------------------- 73.1/455.9 MB 5.5 MB/s eta 0:01:11\n", " ------ --------------------------------- 73.3/455.9 MB 5.5 MB/s eta 0:01:09\n", " ------ --------------------------------- 73.4/455.9 MB 5.4 MB/s eta 0:01:11\n", " ------ --------------------------------- 73.7/455.9 MB 5.5 MB/s eta 0:01:10\n", " ------ --------------------------------- 74.0/455.9 MB 5.6 MB/s eta 0:01:08\n", " ------ --------------------------------- 74.3/455.9 MB 5.8 MB/s eta 0:01:06\n", " ------ --------------------------------- 74.6/455.9 MB 6.0 MB/s eta 0:01:04\n", " ------ --------------------------------- 74.9/455.9 MB 6.1 MB/s eta 0:01:03\n", " ------ --------------------------------- 75.3/455.9 MB 6.2 MB/s eta 0:01:02\n", " ------ --------------------------------- 75.7/455.9 MB 6.2 MB/s eta 0:01:01\n", " ------ --------------------------------- 76.1/455.9 MB 6.4 MB/s eta 0:01:00\n", " ------ --------------------------------- 76.5/455.9 MB 6.4 MB/s eta 0:01:00\n", " ------ --------------------------------- 76.6/455.9 MB 6.2 MB/s eta 0:01:01\n", " ------ --------------------------------- 76.8/455.9 MB 6.2 MB/s eta 0:01:01\n", " ------ --------------------------------- 77.0/455.9 MB 6.0 MB/s eta 0:01:04\n", " ------ --------------------------------- 77.2/455.9 MB 5.8 MB/s eta 0:01:05\n", " ------ --------------------------------- 77.4/455.9 MB 5.7 MB/s eta 0:01:06\n", " ------ --------------------------------- 77.5/455.9 MB 5.6 MB/s eta 0:01:08\n", " ------ --------------------------------- 77.7/455.9 MB 5.6 MB/s eta 0:01:08\n", " ------ --------------------------------- 77.8/455.9 MB 5.5 MB/s eta 0:01:09\n", " ------ --------------------------------- 77.9/455.9 MB 5.5 MB/s eta 0:01:10\n", " ------ --------------------------------- 78.1/455.9 MB 5.4 MB/s eta 0:01:11\n", " ------ --------------------------------- 78.1/455.9 MB 5.2 MB/s eta 0:01:13\n", " ------ --------------------------------- 78.3/455.9 MB 5.2 MB/s eta 0:01:13\n", " ------ --------------------------------- 78.5/455.9 MB 5.1 MB/s eta 0:01:14\n", " ------ --------------------------------- 78.6/455.9 MB 5.1 MB/s eta 0:01:14\n", " ------ --------------------------------- 78.7/455.9 MB 5.0 MB/s eta 0:01:17\n", " ------ --------------------------------- 78.9/455.9 MB 5.0 MB/s eta 0:01:17\n", " ------ --------------------------------- 79.1/455.9 MB 4.9 MB/s eta 0:01:18\n", " ------ --------------------------------- 79.3/455.9 MB 4.8 MB/s eta 0:01:19\n", " ------ --------------------------------- 79.5/455.9 MB 4.8 MB/s eta 0:01:18\n", " ------ --------------------------------- 79.7/455.9 MB 4.8 MB/s eta 0:01:19\n", " ------- -------------------------------- 79.9/455.9 MB 4.7 MB/s eta 0:01:20\n", " ------- -------------------------------- 80.1/455.9 MB 4.7 MB/s eta 0:01:21\n", " ------- -------------------------------- 80.3/455.9 MB 4.6 MB/s eta 0:01:22\n", " ------- -------------------------------- 80.6/455.9 MB 4.6 MB/s eta 0:01:22\n", " ------- -------------------------------- 80.8/455.9 MB 4.6 MB/s eta 0:01:22\n", " ------- -------------------------------- 81.1/455.9 MB 4.5 MB/s eta 0:01:23\n", " ------- -------------------------------- 81.4/455.9 MB 4.5 MB/s eta 0:01:23\n", " ------- -------------------------------- 81.6/455.9 MB 4.5 MB/s eta 0:01:23\n", " ------- -------------------------------- 81.9/455.9 MB 4.5 MB/s eta 0:01:24\n", " ------- -------------------------------- 82.2/455.9 MB 4.5 MB/s eta 0:01:24\n", " ------- -------------------------------- 82.4/455.9 MB 4.5 MB/s eta 0:01:24\n", " ------- -------------------------------- 82.8/455.9 MB 4.4 MB/s eta 0:01:25\n", " ------- -------------------------------- 83.0/455.9 MB 4.4 MB/s eta 0:01:25\n", " ------- -------------------------------- 83.2/455.9 MB 4.4 MB/s eta 0:01:26\n", " ------- -------------------------------- 83.5/455.9 MB 4.4 MB/s eta 0:01:25\n", " ------- -------------------------------- 83.8/455.9 MB 4.5 MB/s eta 0:01:24\n", " ------- -------------------------------- 84.0/455.9 MB 4.4 MB/s eta 0:01:25\n", " ------- -------------------------------- 84.3/455.9 MB 4.4 MB/s eta 0:01:25\n", " ------- -------------------------------- 84.6/455.9 MB 4.4 MB/s eta 0:01:24\n", " ------- -------------------------------- 84.8/455.9 MB 4.4 MB/s eta 0:01:24\n", " ------- -------------------------------- 85.2/455.9 MB 4.5 MB/s eta 0:01:23\n", " ------- -------------------------------- 85.5/455.9 MB 4.5 MB/s eta 0:01:24\n", " ------- -------------------------------- 85.7/455.9 MB 4.4 MB/s eta 0:01:24\n", " ------- -------------------------------- 85.9/455.9 MB 4.4 MB/s eta 0:01:25\n", " ------- -------------------------------- 86.3/455.9 MB 4.4 MB/s eta 0:01:25\n", " ------- -------------------------------- 86.6/455.9 MB 4.4 MB/s eta 0:01:25\n", " ------- -------------------------------- 86.9/455.9 MB 4.5 MB/s eta 0:01:23\n", " ------- -------------------------------- 87.2/455.9 MB 4.5 MB/s eta 0:01:22\n", " ------- -------------------------------- 87.4/455.9 MB 4.6 MB/s eta 0:01:20\n", " ------- -------------------------------- 87.7/455.9 MB 4.7 MB/s eta 0:01:19\n", " ------- -------------------------------- 88.0/455.9 MB 4.8 MB/s eta 0:01:17\n", " ------- -------------------------------- 88.3/455.9 MB 5.0 MB/s eta 0:01:15\n", " ------- -------------------------------- 88.6/455.9 MB 5.1 MB/s eta 0:01:12\n", " ------- -------------------------------- 88.9/455.9 MB 5.2 MB/s eta 0:01:11\n", " ------- -------------------------------- 89.1/455.9 MB 5.2 MB/s eta 0:01:11\n", " ------- -------------------------------- 89.4/455.9 MB 5.3 MB/s eta 0:01:10\n", " ------- -------------------------------- 89.7/455.9 MB 5.4 MB/s eta 0:01:09\n", " ------- -------------------------------- 90.0/455.9 MB 5.5 MB/s eta 0:01:08\n", " ------- -------------------------------- 90.2/455.9 MB 5.5 MB/s eta 0:01:08\n", " ------- -------------------------------- 90.5/455.9 MB 5.6 MB/s eta 0:01:06\n", " ------- -------------------------------- 90.9/455.9 MB 5.6 MB/s eta 0:01:05\n", " ------- -------------------------------- 91.1/455.9 MB 5.6 MB/s eta 0:01:05\n", " -------- ------------------------------- 91.5/455.9 MB 5.6 MB/s eta 0:01:06\n", " -------- ------------------------------- 91.8/455.9 MB 5.7 MB/s eta 0:01:04\n", " -------- ------------------------------- 92.2/455.9 MB 5.6 MB/s eta 0:01:05\n", " -------- ------------------------------- 92.4/455.9 MB 5.6 MB/s eta 0:01:05\n", " -------- ------------------------------- 92.7/455.9 MB 5.7 MB/s eta 0:01:04\n", " -------- ------------------------------- 92.9/455.9 MB 5.7 MB/s eta 0:01:04\n", " -------- ------------------------------- 93.2/455.9 MB 5.6 MB/s eta 0:01:05\n", " -------- ------------------------------- 93.6/455.9 MB 5.7 MB/s eta 0:01:04\n", " -------- ------------------------------- 93.9/455.9 MB 5.8 MB/s eta 0:01:03\n", " -------- ------------------------------- 94.2/455.9 MB 5.8 MB/s eta 0:01:02\n", " -------- ------------------------------- 94.6/455.9 MB 5.9 MB/s eta 0:01:02\n", " -------- ------------------------------- 94.9/455.9 MB 5.9 MB/s eta 0:01:02\n", " -------- ------------------------------- 95.2/455.9 MB 6.0 MB/s eta 0:01:01\n", " -------- ------------------------------- 95.5/455.9 MB 6.0 MB/s eta 0:01:01\n", " -------- ------------------------------- 95.9/455.9 MB 6.1 MB/s eta 0:01:00\n", " -------- ------------------------------- 96.2/455.9 MB 6.1 MB/s eta 0:01:00\n", " -------- ------------------------------- 96.6/455.9 MB 6.1 MB/s eta 0:01:00\n", " -------- ------------------------------- 97.0/455.9 MB 6.1 MB/s eta 0:01:00\n", " -------- ------------------------------- 97.4/455.9 MB 6.1 MB/s eta 0:01:00\n", " -------- ------------------------------- 97.6/455.9 MB 6.0 MB/s eta 0:01:00\n", " -------- ------------------------------- 97.9/455.9 MB 6.0 MB/s eta 0:01:00\n", " -------- ------------------------------- 98.3/455.9 MB 6.0 MB/s eta 0:01:00\n", " -------- ------------------------------- 98.7/455.9 MB 6.1 MB/s eta 0:00:59\n", " -------- ------------------------------- 98.8/455.9 MB 6.0 MB/s eta 0:01:01\n", " -------- ------------------------------- 99.2/455.9 MB 6.1 MB/s eta 0:00:59\n", " -------- ------------------------------- 99.5/455.9 MB 6.1 MB/s eta 0:00:59\n", " -------- ------------------------------- 99.8/455.9 MB 6.1 MB/s eta 0:00:59\n", " -------- ------------------------------- 100.1/455.9 MB 6.1 MB/s eta 0:00:59\n", " -------- ------------------------------- 100.3/455.9 MB 6.1 MB/s eta 0:00:59\n", " -------- ------------------------------- 100.7/455.9 MB 6.1 MB/s eta 0:00:59\n", " -------- ------------------------------- 100.9/455.9 MB 6.1 MB/s eta 0:00:59\n", " -------- ------------------------------- 101.3/455.9 MB 6.2 MB/s eta 0:00:57\n", " -------- ------------------------------- 101.6/455.9 MB 6.2 MB/s eta 0:00:57\n", " -------- ------------------------------- 101.9/455.9 MB 6.2 MB/s eta 0:00:57\n", " -------- ------------------------------- 102.2/455.9 MB 6.2 MB/s eta 0:00:57\n", " -------- ------------------------------- 102.6/455.9 MB 6.5 MB/s eta 0:00:55\n", " --------- ------------------------------ 102.9/455.9 MB 6.5 MB/s eta 0:00:55\n", " --------- ------------------------------ 103.2/455.9 MB 6.5 MB/s eta 0:00:55\n", " --------- ------------------------------ 103.5/455.9 MB 6.5 MB/s eta 0:00:55\n", " --------- ------------------------------ 103.8/455.9 MB 6.5 MB/s eta 0:00:54\n", " --------- ------------------------------ 104.3/455.9 MB 6.5 MB/s eta 0:00:55\n", " --------- ------------------------------ 104.6/455.9 MB 6.4 MB/s eta 0:00:55\n", " --------- ------------------------------ 105.0/455.9 MB 6.4 MB/s eta 0:00:55\n", " --------- ------------------------------ 105.3/455.9 MB 6.4 MB/s eta 0:00:55\n", " --------- ------------------------------ 105.5/455.9 MB 6.2 MB/s eta 0:00:57\n", " --------- ------------------------------ 105.9/455.9 MB 6.2 MB/s eta 0:00:57\n", " --------- ------------------------------ 106.2/455.9 MB 6.4 MB/s eta 0:00:55\n", " --------- ------------------------------ 106.6/455.9 MB 6.4 MB/s eta 0:00:55\n", " --------- ------------------------------ 106.9/455.9 MB 6.4 MB/s eta 0:00:55\n", " --------- ------------------------------ 107.3/455.9 MB 6.5 MB/s eta 0:00:54\n", " --------- ------------------------------ 107.5/455.9 MB 6.4 MB/s eta 0:00:55\n", " --------- ------------------------------ 107.9/455.9 MB 6.5 MB/s eta 0:00:54\n", " --------- ------------------------------ 108.2/455.9 MB 6.6 MB/s eta 0:00:53\n", " --------- ------------------------------ 108.5/455.9 MB 6.6 MB/s eta 0:00:53\n", " --------- ------------------------------ 108.9/455.9 MB 6.5 MB/s eta 0:00:53\n", " --------- ------------------------------ 109.3/455.9 MB 6.7 MB/s eta 0:00:52\n", " --------- ------------------------------ 109.7/455.9 MB 6.8 MB/s eta 0:00:51\n", " --------- ------------------------------ 110.2/455.9 MB 6.8 MB/s eta 0:00:51\n", " --------- ------------------------------ 110.6/455.9 MB 7.0 MB/s eta 0:00:50\n", " --------- ------------------------------ 111.1/455.9 MB 6.9 MB/s eta 0:00:51\n", " --------- ------------------------------ 111.4/455.9 MB 7.0 MB/s eta 0:00:49\n", " --------- ------------------------------ 111.8/455.9 MB 7.0 MB/s eta 0:00:50\n", " --------- ------------------------------ 112.0/455.9 MB 6.8 MB/s eta 0:00:51\n", " --------- ------------------------------ 112.3/455.9 MB 6.8 MB/s eta 0:00:51\n", " --------- ------------------------------ 112.7/455.9 MB 6.7 MB/s eta 0:00:51\n", " --------- ------------------------------ 113.0/455.9 MB 6.8 MB/s eta 0:00:51\n", " --------- ------------------------------ 113.3/455.9 MB 6.9 MB/s eta 0:00:50\n", " --------- ------------------------------ 113.8/455.9 MB 6.8 MB/s eta 0:00:51\n", " ---------- ----------------------------- 114.1/455.9 MB 6.8 MB/s eta 0:00:51\n", " ---------- ----------------------------- 114.5/455.9 MB 6.8 MB/s eta 0:00:51\n", " ---------- ----------------------------- 114.7/455.9 MB 6.9 MB/s eta 0:00:50\n", " ---------- ----------------------------- 115.0/455.9 MB 6.8 MB/s eta 0:00:51\n", " ---------- ----------------------------- 115.2/455.9 MB 6.8 MB/s eta 0:00:50\n", " ---------- ----------------------------- 115.6/455.9 MB 6.7 MB/s eta 0:00:51\n", " ---------- ----------------------------- 116.1/455.9 MB 7.0 MB/s eta 0:00:49\n", " ---------- ----------------------------- 116.5/455.9 MB 7.0 MB/s eta 0:00:49\n", " ---------- ----------------------------- 116.9/455.9 MB 7.0 MB/s eta 0:00:49\n", " ---------- ----------------------------- 117.3/455.9 MB 7.0 MB/s eta 0:00:49\n", " ---------- ----------------------------- 117.7/455.9 MB 7.0 MB/s eta 0:00:49\n", " ---------- ----------------------------- 118.0/455.9 MB 7.1 MB/s eta 0:00:48\n", " ---------- ----------------------------- 118.3/455.9 MB 7.0 MB/s eta 0:00:48\n", " ---------- ----------------------------- 118.6/455.9 MB 7.0 MB/s eta 0:00:48\n", " ---------- ----------------------------- 118.9/455.9 MB 7.0 MB/s eta 0:00:48\n", " ---------- ----------------------------- 119.2/455.9 MB 7.0 MB/s eta 0:00:49\n", " ---------- ----------------------------- 119.4/455.9 MB 6.8 MB/s eta 0:00:50\n", " ---------- ----------------------------- 119.8/455.9 MB 6.8 MB/s eta 0:00:50\n", " ---------- ----------------------------- 120.1/455.9 MB 6.8 MB/s eta 0:00:50\n", " ---------- ----------------------------- 120.4/455.9 MB 6.8 MB/s eta 0:00:50\n", " ---------- ----------------------------- 121.0/455.9 MB 6.8 MB/s eta 0:00:50\n", " ---------- ----------------------------- 121.4/455.9 MB 6.8 MB/s eta 0:00:50\n", " ---------- ----------------------------- 121.7/455.9 MB 6.9 MB/s eta 0:00:49\n", " ---------- ----------------------------- 122.2/455.9 MB 6.9 MB/s eta 0:00:49\n", " ---------- ----------------------------- 122.6/455.9 MB 7.0 MB/s eta 0:00:48\n", " ---------- ----------------------------- 122.6/455.9 MB 6.8 MB/s eta 0:00:50\n", " ---------- ----------------------------- 123.0/455.9 MB 6.8 MB/s eta 0:00:50\n", " ---------- ----------------------------- 123.3/455.9 MB 6.7 MB/s eta 0:00:50\n", " ---------- ----------------------------- 123.7/455.9 MB 6.8 MB/s eta 0:00:49\n", " ---------- ----------------------------- 124.1/455.9 MB 6.8 MB/s eta 0:00:49\n", " ---------- ----------------------------- 124.4/455.9 MB 6.9 MB/s eta 0:00:49\n", " ---------- ----------------------------- 124.7/455.9 MB 7.0 MB/s eta 0:00:48\n", " ---------- ----------------------------- 125.1/455.9 MB 7.0 MB/s eta 0:00:47\n", " ----------- ---------------------------- 125.5/455.9 MB 7.0 MB/s eta 0:00:47\n", " ----------- ---------------------------- 125.9/455.9 MB 7.1 MB/s eta 0:00:47\n", " ----------- ---------------------------- 126.3/455.9 MB 7.1 MB/s eta 0:00:47\n", " ----------- ---------------------------- 126.6/455.9 MB 7.1 MB/s eta 0:00:47\n", " ----------- ---------------------------- 127.1/455.9 MB 7.3 MB/s eta 0:00:46\n", " ----------- ---------------------------- 127.4/455.9 MB 7.3 MB/s eta 0:00:46\n", " ----------- ---------------------------- 127.8/455.9 MB 7.3 MB/s eta 0:00:46\n", " ----------- ---------------------------- 128.3/455.9 MB 7.3 MB/s eta 0:00:46\n", " ----------- ---------------------------- 128.6/455.9 MB 7.3 MB/s eta 0:00:45\n", " ----------- ---------------------------- 129.1/455.9 MB 7.4 MB/s eta 0:00:44\n", " ----------- ---------------------------- 129.4/455.9 MB 7.4 MB/s eta 0:00:44\n", " ----------- ---------------------------- 129.7/455.9 MB 7.4 MB/s eta 0:00:44\n", " ----------- ---------------------------- 130.2/455.9 MB 7.5 MB/s eta 0:00:44\n", " ----------- ---------------------------- 130.6/455.9 MB 7.6 MB/s eta 0:00:43\n", " ----------- ---------------------------- 131.1/455.9 MB 7.6 MB/s eta 0:00:43\n", " ----------- ---------------------------- 131.6/455.9 MB 7.6 MB/s eta 0:00:43\n", " ----------- ---------------------------- 132.0/455.9 MB 7.6 MB/s eta 0:00:43\n", " ----------- ---------------------------- 132.5/455.9 MB 7.6 MB/s eta 0:00:43\n", " ----------- ---------------------------- 132.9/455.9 MB 7.9 MB/s eta 0:00:41\n", " ----------- ---------------------------- 133.4/455.9 MB 7.9 MB/s eta 0:00:41\n", " ----------- ---------------------------- 133.8/455.9 MB 7.8 MB/s eta 0:00:42\n", " ----------- ---------------------------- 134.3/455.9 MB 7.7 MB/s eta 0:00:42\n", " ----------- ---------------------------- 134.6/455.9 MB 7.8 MB/s eta 0:00:42\n", " ----------- ---------------------------- 135.0/455.9 MB 7.8 MB/s eta 0:00:42\n", " ----------- ---------------------------- 135.5/455.9 MB 7.9 MB/s eta 0:00:41\n", " ----------- ---------------------------- 135.8/455.9 MB 7.9 MB/s eta 0:00:41\n", " ----------- ---------------------------- 136.1/455.9 MB 7.8 MB/s eta 0:00:42\n", " ----------- ---------------------------- 136.5/455.9 MB 7.8 MB/s eta 0:00:41\n", " ----------- ---------------------------- 136.8/455.9 MB 7.8 MB/s eta 0:00:41\n", " ------------ --------------------------- 137.2/455.9 MB 7.6 MB/s eta 0:00:42\n", " ------------ --------------------------- 137.5/455.9 MB 7.8 MB/s eta 0:00:41\n", " ------------ --------------------------- 138.2/455.9 MB 7.9 MB/s eta 0:00:41\n", " ------------ --------------------------- 138.6/455.9 MB 7.9 MB/s eta 0:00:41\n", " ------------ --------------------------- 138.9/455.9 MB 7.8 MB/s eta 0:00:41\n", " ------------ --------------------------- 139.1/455.9 MB 7.9 MB/s eta 0:00:41\n", " ------------ --------------------------- 139.7/455.9 MB 7.9 MB/s eta 0:00:41\n", " ------------ --------------------------- 140.0/455.9 MB 7.8 MB/s eta 0:00:41\n", " ------------ --------------------------- 140.6/455.9 MB 7.9 MB/s eta 0:00:40\n", " ------------ --------------------------- 140.9/455.9 MB 8.0 MB/s eta 0:00:40\n", " ------------ --------------------------- 140.9/455.9 MB 8.0 MB/s eta 0:00:40\n", " ------------ --------------------------- 141.8/455.9 MB 7.8 MB/s eta 0:00:41\n", " ------------ --------------------------- 142.2/455.9 MB 7.8 MB/s eta 0:00:41\n", " ------------ --------------------------- 142.6/455.9 MB 7.8 MB/s eta 0:00:41\n", " ------------ --------------------------- 142.9/455.9 MB 7.5 MB/s eta 0:00:42\n", " ------------ --------------------------- 143.4/455.9 MB 7.7 MB/s eta 0:00:41\n", " ------------ --------------------------- 143.8/455.9 MB 7.7 MB/s eta 0:00:41\n", " ------------ --------------------------- 144.6/455.9 MB 7.9 MB/s eta 0:00:40\n", " ------------ --------------------------- 145.1/455.9 MB 7.9 MB/s eta 0:00:40\n", " ------------ --------------------------- 145.4/455.9 MB 7.9 MB/s eta 0:00:40\n", " ------------ --------------------------- 145.8/455.9 MB 7.9 MB/s eta 0:00:40\n", " ------------ --------------------------- 146.3/455.9 MB 7.9 MB/s eta 0:00:40\n", " ------------ --------------------------- 146.8/455.9 MB 8.0 MB/s eta 0:00:39\n", " ------------ --------------------------- 147.2/455.9 MB 8.2 MB/s eta 0:00:38\n", " ------------ --------------------------- 147.5/455.9 MB 8.0 MB/s eta 0:00:39\n", " ------------ --------------------------- 148.0/455.9 MB 8.2 MB/s eta 0:00:38\n", " ------------- -------------------------- 148.5/455.9 MB 8.2 MB/s eta 0:00:38\n", " ------------- -------------------------- 149.1/455.9 MB 8.2 MB/s eta 0:00:38\n", " ------------- -------------------------- 149.5/455.9 MB 8.3 MB/s eta 0:00:37\n", " ------------- -------------------------- 150.1/455.9 MB 8.4 MB/s eta 0:00:37\n", " ------------- -------------------------- 150.6/455.9 MB 8.3 MB/s eta 0:00:37\n", " ------------- -------------------------- 151.0/455.9 MB 8.3 MB/s eta 0:00:37\n", " ------------- -------------------------- 151.3/455.9 MB 8.6 MB/s eta 0:00:36\n", " ------------- -------------------------- 151.8/455.9 MB 8.5 MB/s eta 0:00:36\n", " ------------- -------------------------- 152.3/455.9 MB 8.7 MB/s eta 0:00:35\n", " ------------- -------------------------- 153.0/455.9 MB 9.1 MB/s eta 0:00:34\n", " ------------- -------------------------- 153.4/455.9 MB 9.1 MB/s eta 0:00:34\n", " ------------- -------------------------- 153.8/455.9 MB 9.2 MB/s eta 0:00:33\n", " ------------- -------------------------- 154.2/455.9 MB 9.4 MB/s eta 0:00:33\n", " ------------- -------------------------- 154.7/455.9 MB 9.1 MB/s eta 0:00:34\n", " ------------- -------------------------- 155.1/455.9 MB 9.4 MB/s eta 0:00:33\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 9.5 MB/s eta 0:00:32\n", " ------------- -------------------------- 155.5/455.9 MB 3.3 MB/s eta 0:01:31\n", " ------------- -------------------------- 155.5/455.9 MB 3.3 MB/s eta 0:01:32\n", " ------------- -------------------------- 155.7/455.9 MB 3.2 MB/s eta 0:01:34\n", " ------------- -------------------------- 156.0/455.9 MB 3.2 MB/s eta 0:01:33\n", " ------------- -------------------------- 156.5/455.9 MB 3.2 MB/s eta 0:01:33\n", " ------------- -------------------------- 156.9/455.9 MB 3.2 MB/s eta 0:01:33\n", " ------------- -------------------------- 157.4/455.9 MB 3.2 MB/s eta 0:01:33\n", " ------------- -------------------------- 158.0/455.9 MB 3.2 MB/s eta 0:01:33\n", " ------------- -------------------------- 158.4/455.9 MB 3.2 MB/s eta 0:01:33\n", " ------------- -------------------------- 159.1/455.9 MB 3.2 MB/s eta 0:01:33\n", " ------------- -------------------------- 159.4/455.9 MB 3.2 MB/s eta 0:01:33\n", " -------------- ------------------------- 159.8/455.9 MB 3.2 MB/s eta 0:01:32\n", " -------------- ------------------------- 160.1/455.9 MB 3.2 MB/s eta 0:01:33\n", " -------------- ------------------------- 160.6/455.9 MB 3.2 MB/s eta 0:01:33\n", " -------------- ------------------------- 160.8/455.9 MB 3.2 MB/s eta 0:01:33\n", " -------------- ------------------------- 161.5/455.9 MB 3.2 MB/s eta 0:01:32\n", " -------------- ------------------------- 161.8/455.9 MB 3.2 MB/s eta 0:01:33\n", " -------------- ------------------------- 162.2/455.9 MB 3.2 MB/s eta 0:01:33\n", " -------------- ------------------------- 162.7/455.9 MB 3.2 MB/s eta 0:01:33\n", " -------------- ------------------------- 163.0/455.9 MB 3.1 MB/s eta 0:01:34\n", " -------------- ------------------------- 163.4/455.9 MB 3.2 MB/s eta 0:01:33\n", " -------------- ------------------------- 163.9/455.9 MB 3.1 MB/s eta 0:01:33\n", " -------------- ------------------------- 164.2/455.9 MB 3.1 MB/s eta 0:01:33\n", " -------------- ------------------------- 164.7/455.9 MB 3.2 MB/s eta 0:01:32\n", " -------------- ------------------------- 165.2/455.9 MB 3.1 MB/s eta 0:01:33\n", " -------------- ------------------------- 165.7/455.9 MB 3.1 MB/s eta 0:01:33\n", " -------------- ------------------------- 166.3/455.9 MB 8.7 MB/s eta 0:00:34\n", " -------------- ------------------------- 166.8/455.9 MB 8.6 MB/s eta 0:00:34\n", " -------------- ------------------------- 167.2/455.9 MB 8.5 MB/s eta 0:00:34\n", " -------------- ------------------------- 167.8/455.9 MB 8.5 MB/s eta 0:00:34\n", " -------------- ------------------------- 168.4/455.9 MB 8.6 MB/s eta 0:00:34\n", " -------------- ------------------------- 168.7/455.9 MB 8.6 MB/s eta 0:00:34\n", " -------------- ------------------------- 169.1/455.9 MB 8.5 MB/s eta 0:00:34\n", " -------------- ------------------------- 169.5/455.9 MB 8.6 MB/s eta 0:00:34\n", " -------------- ------------------------- 170.0/455.9 MB 8.6 MB/s eta 0:00:34\n", " -------------- ------------------------- 170.3/455.9 MB 8.7 MB/s eta 0:00:33\n", " -------------- ------------------------- 170.8/455.9 MB 8.8 MB/s eta 0:00:33\n", " --------------- ------------------------ 171.2/455.9 MB 8.8 MB/s eta 0:00:33\n", " --------------- ------------------------ 171.7/455.9 MB 8.7 MB/s eta 0:00:33\n", " --------------- ------------------------ 172.4/455.9 MB 8.7 MB/s eta 0:00:33\n", " --------------- ------------------------ 172.9/455.9 MB 8.8 MB/s eta 0:00:32\n", " --------------- ------------------------ 173.5/455.9 MB 8.8 MB/s eta 0:00:32\n", " --------------- ------------------------ 174.2/455.9 MB 9.1 MB/s eta 0:00:31\n", " --------------- ------------------------ 174.7/455.9 MB 9.0 MB/s eta 0:00:32\n", " --------------- ------------------------ 175.2/455.9 MB 9.0 MB/s eta 0:00:32\n", " --------------- ------------------------ 175.8/455.9 MB 9.1 MB/s eta 0:00:31\n", " --------------- ------------------------ 176.0/455.9 MB 9.2 MB/s eta 0:00:31\n", " --------------- ------------------------ 176.3/455.9 MB 9.0 MB/s eta 0:00:32\n", " --------------- ------------------------ 176.6/455.9 MB 9.1 MB/s eta 0:00:31\n", " --------------- ------------------------ 177.3/455.9 MB 9.1 MB/s eta 0:00:31\n", " --------------- ------------------------ 177.6/455.9 MB 9.1 MB/s eta 0:00:31\n", " --------------- ------------------------ 178.0/455.9 MB 9.1 MB/s eta 0:00:31\n", " --------------- ------------------------ 178.3/455.9 MB 9.1 MB/s eta 0:00:31\n", " --------------- ------------------------ 178.8/455.9 MB 9.1 MB/s eta 0:00:31\n", " --------------- ------------------------ 179.1/455.9 MB 9.1 MB/s eta 0:00:31\n", " --------------- ------------------------ 179.5/455.9 MB 9.0 MB/s eta 0:00:31\n", " --------------- ------------------------ 180.0/455.9 MB 9.1 MB/s eta 0:00:31\n", " --------------- ------------------------ 180.4/455.9 MB 9.1 MB/s eta 0:00:31\n", " --------------- ------------------------ 180.7/455.9 MB 9.0 MB/s eta 0:00:31\n", " --------------- ------------------------ 181.0/455.9 MB 8.8 MB/s eta 0:00:32\n", " --------------- ------------------------ 181.5/455.9 MB 9.0 MB/s eta 0:00:31\n", " --------------- ------------------------ 181.8/455.9 MB 8.8 MB/s eta 0:00:31\n", " --------------- ------------------------ 182.3/455.9 MB 9.0 MB/s eta 0:00:31\n", " ---------------- ----------------------- 182.9/455.9 MB 9.0 MB/s eta 0:00:31\n", " ---------------- ----------------------- 183.5/455.9 MB 8.8 MB/s eta 0:00:31\n", " ---------------- ----------------------- 184.2/455.9 MB 9.0 MB/s eta 0:00:31\n", " ---------------- ----------------------- 184.6/455.9 MB 8.8 MB/s eta 0:00:31\n", " ---------------- ----------------------- 185.1/455.9 MB 8.8 MB/s eta 0:00:31\n", " ---------------- ----------------------- 185.4/455.9 MB 8.6 MB/s eta 0:00:32\n", " ---------------- ----------------------- 185.8/455.9 MB 8.6 MB/s eta 0:00:32\n", " ---------------- ----------------------- 186.3/455.9 MB 8.6 MB/s eta 0:00:32\n", " ---------------- ----------------------- 186.9/455.9 MB 9.0 MB/s eta 0:00:31\n", " ---------------- ----------------------- 187.3/455.9 MB 8.7 MB/s eta 0:00:31\n", " ---------------- ----------------------- 187.7/455.9 MB 8.6 MB/s eta 0:00:32\n", " ---------------- ----------------------- 188.2/455.9 MB 8.7 MB/s eta 0:00:31\n", " ---------------- ----------------------- 188.6/455.9 MB 8.8 MB/s eta 0:00:31\n", " ---------------- ----------------------- 189.1/455.9 MB 9.0 MB/s eta 0:00:30\n", " ---------------- ----------------------- 189.5/455.9 MB 9.0 MB/s eta 0:00:30\n", " ---------------- ----------------------- 190.1/455.9 MB 9.0 MB/s eta 0:00:30\n", " ---------------- ----------------------- 190.6/455.9 MB 9.1 MB/s eta 0:00:30\n", " ---------------- ----------------------- 191.0/455.9 MB 9.4 MB/s eta 0:00:29\n", " ---------------- ----------------------- 191.5/455.9 MB 9.5 MB/s eta 0:00:28\n", " ---------------- ----------------------- 191.6/455.9 MB 9.5 MB/s eta 0:00:28\n", " ---------------- ----------------------- 192.2/455.9 MB 9.2 MB/s eta 0:00:29\n", " ---------------- ----------------------- 192.6/455.9 MB 8.8 MB/s eta 0:00:30\n", " ---------------- ----------------------- 193.2/455.9 MB 9.0 MB/s eta 0:00:30\n", " ---------------- ----------------------- 193.8/455.9 MB 9.0 MB/s eta 0:00:30\n", " ----------------- ---------------------- 194.0/455.9 MB 8.7 MB/s eta 0:00:30\n", " ----------------- ---------------------- 194.5/455.9 MB 8.8 MB/s eta 0:00:30\n", " ----------------- ---------------------- 195.1/455.9 MB 9.0 MB/s eta 0:00:30\n", " ----------------- ---------------------- 195.5/455.9 MB 9.1 MB/s eta 0:00:29\n", " ----------------- ---------------------- 196.0/455.9 MB 8.8 MB/s eta 0:00:30\n", " ----------------- ---------------------- 196.2/455.9 MB 9.0 MB/s eta 0:00:29\n", " ----------------- ---------------------- 196.7/455.9 MB 8.7 MB/s eta 0:00:30\n", " ----------------- ---------------------- 197.2/455.9 MB 8.7 MB/s eta 0:00:30\n", " ----------------- ---------------------- 197.6/455.9 MB 8.7 MB/s eta 0:00:30\n", " ----------------- ---------------------- 198.1/455.9 MB 8.7 MB/s eta 0:00:30\n", " ----------------- ---------------------- 198.4/455.9 MB 8.6 MB/s eta 0:00:30\n", " ----------------- ---------------------- 199.0/455.9 MB 8.6 MB/s eta 0:00:30\n", " ----------------- ---------------------- 199.4/455.9 MB 8.6 MB/s eta 0:00:30\n", " ----------------- ---------------------- 200.0/455.9 MB 8.6 MB/s eta 0:00:30\n", " ----------------- ---------------------- 200.3/455.9 MB 8.5 MB/s eta 0:00:31\n", " ----------------- ---------------------- 200.8/455.9 MB 8.5 MB/s eta 0:00:31\n", " ----------------- ---------------------- 201.2/455.9 MB 8.4 MB/s eta 0:00:31\n", " ----------------- ---------------------- 201.5/455.9 MB 8.4 MB/s eta 0:00:31\n", " ----------------- ---------------------- 202.2/455.9 MB 8.8 MB/s eta 0:00:29\n", " ----------------- ---------------------- 202.9/455.9 MB 9.1 MB/s eta 0:00:28\n", " ----------------- ---------------------- 203.4/455.9 MB 9.0 MB/s eta 0:00:29\n", " ----------------- ---------------------- 204.1/455.9 MB 9.2 MB/s eta 0:00:28\n", " ----------------- ---------------------- 204.8/455.9 MB 9.4 MB/s eta 0:00:27\n", " ------------------ --------------------- 205.2/455.9 MB 9.2 MB/s eta 0:00:28\n", " ------------------ --------------------- 205.7/455.9 MB 9.4 MB/s eta 0:00:27\n", " ------------------ --------------------- 206.3/455.9 MB 9.4 MB/s eta 0:00:27\n", " ------------------ --------------------- 206.8/455.9 MB 9.5 MB/s eta 0:00:27\n", " ------------------ --------------------- 207.3/455.9 MB 9.5 MB/s eta 0:00:27\n", " ------------------ --------------------- 207.3/455.9 MB 9.1 MB/s eta 0:00:28\n", " ------------------ --------------------- 207.9/455.9 MB 9.1 MB/s eta 0:00:28\n", " ------------------ --------------------- 208.4/455.9 MB 9.2 MB/s eta 0:00:27\n", " ------------------ --------------------- 208.8/455.9 MB 9.2 MB/s eta 0:00:27\n", " ------------------ --------------------- 209.2/455.9 MB 9.2 MB/s eta 0:00:27\n", " ------------------ --------------------- 209.7/455.9 MB 9.2 MB/s eta 0:00:27\n", " ------------------ --------------------- 210.2/455.9 MB 9.4 MB/s eta 0:00:27\n", " ------------------ --------------------- 210.6/455.9 MB 9.2 MB/s eta 0:00:27\n", " ------------------ --------------------- 211.0/455.9 MB 9.2 MB/s eta 0:00:27\n", " ------------------ --------------------- 211.4/455.9 MB 9.2 MB/s eta 0:00:27\n", " ------------------ --------------------- 211.9/455.9 MB 9.5 MB/s eta 0:00:26\n", " ------------------ --------------------- 212.4/455.9 MB 9.4 MB/s eta 0:00:27\n", " ------------------ --------------------- 212.9/455.9 MB 9.2 MB/s eta 0:00:27\n", " ------------------ --------------------- 213.6/455.9 MB 9.4 MB/s eta 0:00:26\n", " ------------------ --------------------- 214.3/455.9 MB 9.4 MB/s eta 0:00:26\n", " ------------------ --------------------- 214.9/455.9 MB 9.2 MB/s eta 0:00:27\n", " ------------------ --------------------- 215.5/455.9 MB 9.4 MB/s eta 0:00:26\n", " ------------------ --------------------- 216.1/455.9 MB 9.4 MB/s eta 0:00:26\n", " ------------------- -------------------- 216.6/455.9 MB 9.2 MB/s eta 0:00:26\n", " ------------------- -------------------- 217.3/455.9 MB 9.4 MB/s eta 0:00:26\n", " ------------------- -------------------- 217.7/455.9 MB 9.6 MB/s eta 0:00:25\n", " ------------------- -------------------- 218.2/455.9 MB 9.5 MB/s eta 0:00:26\n", " ------------------- -------------------- 218.8/455.9 MB 9.5 MB/s eta 0:00:25\n", " ------------------- -------------------- 219.3/455.9 MB 9.5 MB/s eta 0:00:25\n", " ------------------- -------------------- 219.9/455.9 MB 9.5 MB/s eta 0:00:25\n", " ------------------- -------------------- 220.2/455.9 MB 9.4 MB/s eta 0:00:26\n", " ------------------- -------------------- 220.9/455.9 MB 9.5 MB/s eta 0:00:25\n", " ------------------- -------------------- 221.1/455.9 MB 9.5 MB/s eta 0:00:25\n", " ------------------- -------------------- 221.5/455.9 MB 9.2 MB/s eta 0:00:26\n", " ------------------- -------------------- 221.8/455.9 MB 9.2 MB/s eta 0:00:26\n", " ------------------- -------------------- 222.1/455.9 MB 9.0 MB/s eta 0:00:27\n", " ------------------- -------------------- 222.5/455.9 MB 9.1 MB/s eta 0:00:26\n", " ------------------- -------------------- 222.5/455.9 MB 9.1 MB/s eta 0:00:26\n", " ------------------- -------------------- 222.5/455.9 MB 9.1 MB/s eta 0:00:26\n", " ------------------- -------------------- 223.2/455.9 MB 8.5 MB/s eta 0:00:28\n", " ------------------- -------------------- 223.5/455.9 MB 8.3 MB/s eta 0:00:29\n", " ------------------- -------------------- 223.6/455.9 MB 8.3 MB/s eta 0:00:29\n", " ------------------- -------------------- 223.9/455.9 MB 8.0 MB/s eta 0:00:30\n", " ------------------- -------------------- 224.1/455.9 MB 7.8 MB/s eta 0:00:30\n", " ------------------- -------------------- 224.3/455.9 MB 7.5 MB/s eta 0:00:31\n", " ------------------- -------------------- 224.5/455.9 MB 7.3 MB/s eta 0:00:32\n", " ------------------- -------------------- 224.8/455.9 MB 7.1 MB/s eta 0:00:33\n", " ------------------- -------------------- 224.8/455.9 MB 7.1 MB/s eta 0:00:33\n", " ------------------- -------------------- 225.2/455.9 MB 6.7 MB/s eta 0:00:35\n", " ------------------- -------------------- 225.2/455.9 MB 6.4 MB/s eta 0:00:36\n", " ------------------- -------------------- 225.5/455.9 MB 6.3 MB/s eta 0:00:37\n", " ------------------- -------------------- 225.7/455.9 MB 6.3 MB/s eta 0:00:37\n", " ------------------- -------------------- 226.0/455.9 MB 6.2 MB/s eta 0:00:37\n", " ------------------- -------------------- 226.1/455.9 MB 6.1 MB/s eta 0:00:38\n", " ------------------- -------------------- 226.2/455.9 MB 5.9 MB/s eta 0:00:39\n", " ------------------- -------------------- 226.2/455.9 MB 5.8 MB/s eta 0:00:40\n", " ------------------- -------------------- 226.3/455.9 MB 5.5 MB/s eta 0:00:42\n", " ------------------- -------------------- 226.7/455.9 MB 5.5 MB/s eta 0:00:42\n", " ------------------- -------------------- 227.0/455.9 MB 5.4 MB/s eta 0:00:43\n", " ------------------- -------------------- 227.4/455.9 MB 5.4 MB/s eta 0:00:43\n", " ------------------- -------------------- 227.6/455.9 MB 5.3 MB/s eta 0:00:44\n", " ------------------- -------------------- 227.9/455.9 MB 5.3 MB/s eta 0:00:44\n", " -------------------- ------------------- 228.1/455.9 MB 5.2 MB/s eta 0:00:44\n", " -------------------- ------------------- 228.3/455.9 MB 5.1 MB/s eta 0:00:45\n", " -------------------- ------------------- 228.5/455.9 MB 5.0 MB/s eta 0:00:46\n", " -------------------- ------------------- 228.7/455.9 MB 5.0 MB/s eta 0:00:46\n", " -------------------- ------------------- 228.9/455.9 MB 4.9 MB/s eta 0:00:47\n", " -------------------- ------------------- 229.0/455.9 MB 4.8 MB/s eta 0:00:48\n", " -------------------- ------------------- 229.3/455.9 MB 4.7 MB/s eta 0:00:48\n", " -------------------- ------------------- 229.6/455.9 MB 4.7 MB/s eta 0:00:49\n", " -------------------- ------------------- 229.8/455.9 MB 4.7 MB/s eta 0:00:49\n", " -------------------- ------------------- 230.1/455.9 MB 4.6 MB/s eta 0:00:49\n", " -------------------- ------------------- 230.4/455.9 MB 4.6 MB/s eta 0:00:49\n", " -------------------- ------------------- 230.6/455.9 MB 4.5 MB/s eta 0:00:50\n", " -------------------- ------------------- 230.9/455.9 MB 4.5 MB/s eta 0:00:51\n", " -------------------- ------------------- 231.3/455.9 MB 4.4 MB/s eta 0:00:51\n", " -------------------- ------------------- 231.5/455.9 MB 4.4 MB/s eta 0:00:51\n", " -------------------- ------------------- 231.9/455.9 MB 4.4 MB/s eta 0:00:51\n", " -------------------- ------------------- 232.3/455.9 MB 4.4 MB/s eta 0:00:51\n", " -------------------- ------------------- 232.5/455.9 MB 4.3 MB/s eta 0:00:52\n", " -------------------- ------------------- 232.8/455.9 MB 4.5 MB/s eta 0:00:51\n", " -------------------- ------------------- 233.3/455.9 MB 4.4 MB/s eta 0:00:52\n", " -------------------- ------------------- 233.6/455.9 MB 4.4 MB/s eta 0:00:51\n", " -------------------- ------------------- 233.9/455.9 MB 4.5 MB/s eta 0:00:50\n", " -------------------- ------------------- 234.2/455.9 MB 4.4 MB/s eta 0:00:51\n", " -------------------- ------------------- 234.6/455.9 MB 4.5 MB/s eta 0:00:50\n", " -------------------- ------------------- 234.8/455.9 MB 4.5 MB/s eta 0:00:49\n", " -------------------- ------------------- 235.3/455.9 MB 4.8 MB/s eta 0:00:47\n", " -------------------- ------------------- 235.7/455.9 MB 4.9 MB/s eta 0:00:46\n", " -------------------- ------------------- 236.0/455.9 MB 4.9 MB/s eta 0:00:45\n", " -------------------- ------------------- 236.3/455.9 MB 5.0 MB/s eta 0:00:44\n", " -------------------- ------------------- 236.6/455.9 MB 5.5 MB/s eta 0:00:41\n", " -------------------- ------------------- 237.0/455.9 MB 5.6 MB/s eta 0:00:39\n", " -------------------- ------------------- 237.4/455.9 MB 5.5 MB/s eta 0:00:40\n", " -------------------- ------------------- 237.6/455.9 MB 5.5 MB/s eta 0:00:40\n", " -------------------- ------------------- 237.9/455.9 MB 5.6 MB/s eta 0:00:39\n", " -------------------- ------------------- 238.2/455.9 MB 5.6 MB/s eta 0:00:39\n", " -------------------- ------------------- 238.4/455.9 MB 5.7 MB/s eta 0:00:39\n", " -------------------- ------------------- 238.7/455.9 MB 5.7 MB/s eta 0:00:39\n", " -------------------- ------------------- 239.0/455.9 MB 5.8 MB/s eta 0:00:38\n", " --------------------- ------------------ 239.4/455.9 MB 6.0 MB/s eta 0:00:37\n", " --------------------- ------------------ 239.7/455.9 MB 6.0 MB/s eta 0:00:36\n", " --------------------- ------------------ 240.1/455.9 MB 6.0 MB/s eta 0:00:36\n", " --------------------- ------------------ 240.4/455.9 MB 6.0 MB/s eta 0:00:36\n", " --------------------- ------------------ 240.7/455.9 MB 6.1 MB/s eta 0:00:36\n", " --------------------- ------------------ 241.0/455.9 MB 6.1 MB/s eta 0:00:36\n", " --------------------- ------------------ 241.2/455.9 MB 6.0 MB/s eta 0:00:36\n", " --------------------- ------------------ 241.4/455.9 MB 5.9 MB/s eta 0:00:37\n", " --------------------- ------------------ 241.6/455.9 MB 5.8 MB/s eta 0:00:37\n", " --------------------- ------------------ 241.8/455.9 MB 5.7 MB/s eta 0:00:38\n", " --------------------- ------------------ 242.0/455.9 MB 5.6 MB/s eta 0:00:38\n", " --------------------- ------------------ 242.2/455.9 MB 5.6 MB/s eta 0:00:39\n", " --------------------- ------------------ 242.4/455.9 MB 5.6 MB/s eta 0:00:39\n", " --------------------- ------------------ 242.6/455.9 MB 5.5 MB/s eta 0:00:39\n", " --------------------- ------------------ 242.8/455.9 MB 5.5 MB/s eta 0:00:39\n", " --------------------- ------------------ 243.0/455.9 MB 5.5 MB/s eta 0:00:40\n", " --------------------- ------------------ 243.2/455.9 MB 5.4 MB/s eta 0:00:40\n", " --------------------- ------------------ 243.4/455.9 MB 5.4 MB/s eta 0:00:40\n", " --------------------- ------------------ 243.5/455.9 MB 5.4 MB/s eta 0:00:40\n", " --------------------- ------------------ 243.8/455.9 MB 5.3 MB/s eta 0:00:40\n", " --------------------- ------------------ 243.8/455.9 MB 5.3 MB/s eta 0:00:40\n", " --------------------- ------------------ 244.0/455.9 MB 5.1 MB/s eta 0:00:42\n", " --------------------- ------------------ 244.1/455.9 MB 5.0 MB/s eta 0:00:43\n", " --------------------- ------------------ 244.2/455.9 MB 5.0 MB/s eta 0:00:43\n", " --------------------- ------------------ 244.4/455.9 MB 5.0 MB/s eta 0:00:43\n", " --------------------- ------------------ 244.6/455.9 MB 4.9 MB/s eta 0:00:43\n", " --------------------- ------------------ 244.7/455.9 MB 4.9 MB/s eta 0:00:44\n", " --------------------- ------------------ 244.9/455.9 MB 4.8 MB/s eta 0:00:44\n", " --------------------- ------------------ 245.1/455.9 MB 4.8 MB/s eta 0:00:44\n", " --------------------- ------------------ 245.3/455.9 MB 4.7 MB/s eta 0:00:45\n", " --------------------- ------------------ 245.5/455.9 MB 4.6 MB/s eta 0:00:46\n", " --------------------- ------------------ 245.7/455.9 MB 4.5 MB/s eta 0:00:47\n", " --------------------- ------------------ 245.9/455.9 MB 4.5 MB/s eta 0:00:47\n", " --------------------- ------------------ 246.2/455.9 MB 4.5 MB/s eta 0:00:48\n", " --------------------- ------------------ 246.4/455.9 MB 4.4 MB/s eta 0:00:48\n", " --------------------- ------------------ 246.7/455.9 MB 4.4 MB/s eta 0:00:48\n", " --------------------- ------------------ 247.0/455.9 MB 4.3 MB/s eta 0:00:49\n", " --------------------- ------------------ 247.1/455.9 MB 4.2 MB/s eta 0:00:50\n", " --------------------- ------------------ 247.3/455.9 MB 4.2 MB/s eta 0:00:51\n", " --------------------- ------------------ 247.5/455.9 MB 4.1 MB/s eta 0:00:51\n", " --------------------- ------------------ 247.7/455.9 MB 4.0 MB/s eta 0:00:52\n", " --------------------- ------------------ 247.9/455.9 MB 4.0 MB/s eta 0:00:53\n", " --------------------- ------------------ 248.0/455.9 MB 3.9 MB/s eta 0:00:53\n", " --------------------- ------------------ 248.3/455.9 MB 3.9 MB/s eta 0:00:53\n", " --------------------- ------------------ 248.5/455.9 MB 3.9 MB/s eta 0:00:53\n", " --------------------- ------------------ 248.8/455.9 MB 3.9 MB/s eta 0:00:54\n", " --------------------- ------------------ 249.1/455.9 MB 3.9 MB/s eta 0:00:54\n", " --------------------- ------------------ 249.2/455.9 MB 3.9 MB/s eta 0:00:54\n", " --------------------- ------------------ 249.5/455.9 MB 3.8 MB/s eta 0:00:55\n", " --------------------- ------------------ 249.7/455.9 MB 3.8 MB/s eta 0:00:55\n", " --------------------- ------------------ 249.8/455.9 MB 3.8 MB/s eta 0:00:55\n", " --------------------- ------------------ 250.0/455.9 MB 3.7 MB/s eta 0:00:56\n", " --------------------- ------------------ 250.3/455.9 MB 3.7 MB/s eta 0:00:56\n", " --------------------- ------------------ 250.4/455.9 MB 3.7 MB/s eta 0:00:57\n", " --------------------- ------------------ 250.7/455.9 MB 3.7 MB/s eta 0:00:56\n", " ---------------------- ----------------- 251.1/455.9 MB 3.7 MB/s eta 0:00:56\n", " ---------------------- ----------------- 251.4/455.9 MB 3.7 MB/s eta 0:00:56\n", " ---------------------- ----------------- 251.7/455.9 MB 3.7 MB/s eta 0:00:55\n", " ---------------------- ----------------- 252.1/455.9 MB 3.8 MB/s eta 0:00:54\n", " ---------------------- ----------------- 252.4/455.9 MB 3.9 MB/s eta 0:00:53\n", " ---------------------- ----------------- 252.7/455.9 MB 3.9 MB/s eta 0:00:53\n", " ---------------------- ----------------- 253.1/455.9 MB 3.9 MB/s eta 0:00:52\n", " ---------------------- ----------------- 253.3/455.9 MB 3.9 MB/s eta 0:00:52\n", " ---------------------- ----------------- 253.4/455.9 MB 3.9 MB/s eta 0:00:52\n", " ---------------------- ----------------- 253.7/455.9 MB 4.0 MB/s eta 0:00:51\n", " ---------------------- ----------------- 253.9/455.9 MB 4.0 MB/s eta 0:00:51\n", " ---------------------- ----------------- 254.2/455.9 MB 4.1 MB/s eta 0:00:50\n", " ---------------------- ----------------- 254.4/455.9 MB 4.1 MB/s eta 0:00:49\n", " ---------------------- ----------------- 254.6/455.9 MB 4.2 MB/s eta 0:00:49\n", " ---------------------- ----------------- 255.0/455.9 MB 4.2 MB/s eta 0:00:48\n", " ---------------------- ----------------- 255.2/455.9 MB 4.3 MB/s eta 0:00:48\n", " ---------------------- ----------------- 255.6/455.9 MB 4.4 MB/s eta 0:00:46\n", " ---------------------- ----------------- 255.9/455.9 MB 4.5 MB/s eta 0:00:45\n", " ---------------------- ----------------- 256.0/455.9 MB 4.4 MB/s eta 0:00:46\n", " ---------------------- ----------------- 256.3/455.9 MB 4.4 MB/s eta 0:00:46\n", " ---------------------- ----------------- 256.5/455.9 MB 4.4 MB/s eta 0:00:46\n", " ---------------------- ----------------- 256.8/455.9 MB 4.4 MB/s eta 0:00:46\n", " ---------------------- ----------------- 257.1/455.9 MB 4.5 MB/s eta 0:00:45\n", " ---------------------- ----------------- 257.5/455.9 MB 4.6 MB/s eta 0:00:44\n", " ---------------------- ----------------- 257.8/455.9 MB 4.6 MB/s eta 0:00:43\n", " ---------------------- ----------------- 258.0/455.9 MB 4.7 MB/s eta 0:00:43\n", " ---------------------- ----------------- 258.3/455.9 MB 4.8 MB/s eta 0:00:42\n", " ---------------------- ----------------- 258.6/455.9 MB 4.8 MB/s eta 0:00:41\n", " ---------------------- ----------------- 258.9/455.9 MB 4.9 MB/s eta 0:00:41\n", " ---------------------- ----------------- 259.1/455.9 MB 4.9 MB/s eta 0:00:41\n", " ---------------------- ----------------- 259.4/455.9 MB 5.0 MB/s eta 0:00:40\n", " ---------------------- ----------------- 259.6/455.9 MB 5.0 MB/s eta 0:00:39\n", " ---------------------- ----------------- 259.9/455.9 MB 5.1 MB/s eta 0:00:39\n", " ---------------------- ----------------- 260.3/455.9 MB 5.2 MB/s eta 0:00:38\n", " ---------------------- ----------------- 260.6/455.9 MB 5.3 MB/s eta 0:00:37\n", " ---------------------- ----------------- 260.9/455.9 MB 5.3 MB/s eta 0:00:37\n", " ---------------------- ----------------- 261.1/455.9 MB 5.4 MB/s eta 0:00:37\n", " ---------------------- ----------------- 261.5/455.9 MB 5.4 MB/s eta 0:00:36\n", " ---------------------- ----------------- 261.8/455.9 MB 5.5 MB/s eta 0:00:36\n", " ----------------------- ---------------- 262.3/455.9 MB 5.6 MB/s eta 0:00:35\n", " ----------------------- ---------------- 262.6/455.9 MB 5.6 MB/s eta 0:00:35\n", " ----------------------- ---------------- 262.9/455.9 MB 5.6 MB/s eta 0:00:35\n", " ----------------------- ---------------- 263.4/455.9 MB 5.7 MB/s eta 0:00:34\n", " ----------------------- ---------------- 263.8/455.9 MB 5.7 MB/s eta 0:00:34\n", " ----------------------- ---------------- 264.3/455.9 MB 5.9 MB/s eta 0:00:33\n", " ----------------------- ---------------- 264.7/455.9 MB 5.9 MB/s eta 0:00:33\n", " ----------------------- ---------------- 265.0/455.9 MB 5.9 MB/s eta 0:00:33\n", " ----------------------- ---------------- 265.2/455.9 MB 6.0 MB/s eta 0:00:33\n", " ----------------------- ---------------- 265.6/455.9 MB 6.0 MB/s eta 0:00:32\n", " ----------------------- ---------------- 265.9/455.9 MB 6.0 MB/s eta 0:00:32\n", " ----------------------- ---------------- 266.3/455.9 MB 6.2 MB/s eta 0:00:31\n", " ----------------------- ---------------- 266.5/455.9 MB 6.2 MB/s eta 0:00:31\n", " ----------------------- ---------------- 266.9/455.9 MB 6.4 MB/s eta 0:00:30\n", " ----------------------- ---------------- 267.1/455.9 MB 6.4 MB/s eta 0:00:30\n", " ----------------------- ---------------- 267.6/455.9 MB 6.5 MB/s eta 0:00:30\n", " ----------------------- ---------------- 267.9/455.9 MB 6.6 MB/s eta 0:00:29\n", " ----------------------- ---------------- 268.2/455.9 MB 6.6 MB/s eta 0:00:29\n", " ----------------------- ---------------- 268.4/455.9 MB 6.6 MB/s eta 0:00:29\n", " ----------------------- ---------------- 268.7/455.9 MB 6.6 MB/s eta 0:00:29\n", " ----------------------- ---------------- 269.1/455.9 MB 6.7 MB/s eta 0:00:28\n", " ----------------------- ---------------- 269.3/455.9 MB 6.7 MB/s eta 0:00:28\n", " ----------------------- ---------------- 269.6/455.9 MB 6.7 MB/s eta 0:00:28\n", " ----------------------- ---------------- 270.1/455.9 MB 6.8 MB/s eta 0:00:28\n", " ----------------------- ---------------- 270.5/455.9 MB 6.7 MB/s eta 0:00:28\n", " ----------------------- ---------------- 270.9/455.9 MB 6.7 MB/s eta 0:00:28\n", " ----------------------- ---------------- 271.3/455.9 MB 6.7 MB/s eta 0:00:28\n", " ----------------------- ---------------- 271.7/455.9 MB 6.8 MB/s eta 0:00:28\n", " ----------------------- ---------------- 272.1/455.9 MB 6.7 MB/s eta 0:00:28\n", " ----------------------- ---------------- 272.4/455.9 MB 6.5 MB/s eta 0:00:29\n", " ----------------------- ---------------- 272.7/455.9 MB 6.5 MB/s eta 0:00:28\n", " ----------------------- ---------------- 273.1/455.9 MB 6.4 MB/s eta 0:00:29\n", " ------------------------ --------------- 273.6/455.9 MB 6.5 MB/s eta 0:00:28\n", " ------------------------ --------------- 273.9/455.9 MB 6.5 MB/s eta 0:00:28\n", " ------------------------ --------------- 274.3/455.9 MB 6.5 MB/s eta 0:00:29\n", " ------------------------ --------------- 274.6/455.9 MB 6.6 MB/s eta 0:00:28\n", " ------------------------ --------------- 275.0/455.9 MB 6.6 MB/s eta 0:00:28\n", " ------------------------ --------------- 275.3/455.9 MB 6.5 MB/s eta 0:00:28\n", " ------------------------ --------------- 275.7/455.9 MB 6.6 MB/s eta 0:00:28\n", " ------------------------ --------------- 275.8/455.9 MB 6.5 MB/s eta 0:00:28\n", " ------------------------ --------------- 275.8/455.9 MB 6.5 MB/s eta 0:00:28\n", " ------------------------ --------------- 275.8/455.9 MB 6.5 MB/s eta 0:00:28\n", " ------------------------ --------------- 275.8/455.9 MB 6.5 MB/s eta 0:00:28\n", " ------------------------ --------------- 275.8/455.9 MB 6.5 MB/s eta 0:00:28\n", " ------------------------ --------------- 275.8/455.9 MB 6.5 MB/s eta 0:00:28\n", " ------------------------ --------------- 275.8/455.9 MB 6.5 MB/s eta 0:00:28\n", " ------------------------ --------------- 275.8/455.9 MB 6.5 MB/s eta 0:00:28\n", " ------------------------ --------------- 275.8/455.9 MB 6.5 MB/s eta 0:00:28\n", " ------------------------ --------------- 275.8/455.9 MB 6.5 MB/s eta 0:00:28\n", " ------------------------ --------------- 276.1/455.9 MB 5.1 MB/s eta 0:00:36\n", " ------------------------ --------------- 276.4/455.9 MB 5.1 MB/s eta 0:00:36\n", " ------------------------ --------------- 276.8/455.9 MB 5.2 MB/s eta 0:00:35\n", " ------------------------ --------------- 277.1/455.9 MB 5.1 MB/s eta 0:00:35\n", " ------------------------ --------------- 277.5/455.9 MB 5.2 MB/s eta 0:00:35\n", " ------------------------ --------------- 277.7/455.9 MB 5.1 MB/s eta 0:00:36\n", " ------------------------ --------------- 277.9/455.9 MB 5.1 MB/s eta 0:00:36\n", " ------------------------ --------------- 278.2/455.9 MB 5.0 MB/s eta 0:00:36\n", " ------------------------ --------------- 278.7/455.9 MB 5.0 MB/s eta 0:00:36\n", " ------------------------ --------------- 279.3/455.9 MB 5.1 MB/s eta 0:00:35\n", " ------------------------ --------------- 279.8/455.9 MB 5.1 MB/s eta 0:00:35\n", " ------------------------ --------------- 280.3/455.9 MB 5.1 MB/s eta 0:00:35\n", " ------------------------ --------------- 280.8/455.9 MB 5.2 MB/s eta 0:00:34\n", " ------------------------ --------------- 281.2/455.9 MB 5.2 MB/s eta 0:00:34\n", " ------------------------ --------------- 281.5/455.9 MB 5.2 MB/s eta 0:00:34\n", " ------------------------ --------------- 281.9/455.9 MB 5.2 MB/s eta 0:00:34\n", " ------------------------ --------------- 282.3/455.9 MB 5.2 MB/s eta 0:00:34\n", " ------------------------ --------------- 282.7/455.9 MB 5.3 MB/s eta 0:00:33\n", " ------------------------ --------------- 283.0/455.9 MB 5.3 MB/s eta 0:00:33\n", " ------------------------ --------------- 283.5/455.9 MB 5.3 MB/s eta 0:00:33\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " WARNING: Failed to remove contents in a temporary directory 'C:\\detection\\tensor\\Lib\\site-packages\\~aml'.\n", " You can safely remove it manually.\n", "ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.\n", "object-detection 0.1 requires apache-beam, which is not installed.\n", "object-detection 0.1 requires avro-python3, which is not installed.\n", "object-detection 0.1 requires contextlib2, which is not installed.\n", "object-detection 0.1 requires lvis, which is not installed.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n", " ------------------------ --------------- 284.1/455.9 MB 5.4 MB/s eta 0:00:32\n", " ------------------------ --------------- 284.4/455.9 MB 5.5 MB/s eta 0:00:32\n", " ------------------------ --------------- 284.7/455.9 MB 5.4 MB/s eta 0:00:32\n", " ------------------------- -------------- 285.0/455.9 MB 5.4 MB/s eta 0:00:32\n", " ------------------------- -------------- 285.3/455.9 MB 5.4 MB/s eta 0:00:32\n", " ------------------------- -------------- 285.7/455.9 MB 5.4 MB/s eta 0:00:32\n", " ------------------------- -------------- 286.1/455.9 MB 7.1 MB/s eta 0:00:24\n", " ------------------------- -------------- 286.4/455.9 MB 7.1 MB/s eta 0:00:24\n", " ------------------------- -------------- 286.9/455.9 MB 7.2 MB/s eta 0:00:24\n", " ------------------------- -------------- 287.4/455.9 MB 7.2 MB/s eta 0:00:24\n", " ------------------------- -------------- 287.8/455.9 MB 7.2 MB/s eta 0:00:24\n", " ------------------------- -------------- 288.3/455.9 MB 7.6 MB/s eta 0:00:23\n", " ------------------------- -------------- 288.9/455.9 MB 7.6 MB/s eta 0:00:22\n", " ------------------------- -------------- 289.4/455.9 MB 7.6 MB/s eta 0:00:22\n", " ------------------------- -------------- 289.7/455.9 MB 7.4 MB/s eta 0:00:23\n", " ------------------------- -------------- 290.2/455.9 MB 7.5 MB/s eta 0:00:23\n", " ------------------------- -------------- 290.4/455.9 MB 7.4 MB/s eta 0:00:23\n", " ------------------------- -------------- 290.8/455.9 MB 7.4 MB/s eta 0:00:23\n", " ------------------------- -------------- 291.0/455.9 MB 7.4 MB/s eta 0:00:23\n", " ------------------------- -------------- 291.4/455.9 MB 7.3 MB/s eta 0:00:23\n", " ------------------------- -------------- 291.9/455.9 MB 7.3 MB/s eta 0:00:23\n", " ------------------------- -------------- 292.2/455.9 MB 7.3 MB/s eta 0:00:23\n", " ------------------------- -------------- 292.5/455.9 MB 7.4 MB/s eta 0:00:23\n", " ------------------------- -------------- 292.8/455.9 MB 7.4 MB/s eta 0:00:23\n", " ------------------------- -------------- 293.1/455.9 MB 7.2 MB/s eta 0:00:23\n", " ------------------------- -------------- 293.4/455.9 MB 7.2 MB/s eta 0:00:23\n", " ------------------------- -------------- 293.6/455.9 MB 7.4 MB/s eta 0:00:23\n", " ------------------------- -------------- 294.2/455.9 MB 7.2 MB/s eta 0:00:23\n", " ------------------------- -------------- 294.6/455.9 MB 7.1 MB/s eta 0:00:23\n", " ------------------------- -------------- 295.3/455.9 MB 7.4 MB/s eta 0:00:22\n", " ------------------------- -------------- 295.6/455.9 MB 7.4 MB/s eta 0:00:22\n", " ------------------------- -------------- 296.1/455.9 MB 7.2 MB/s eta 0:00:23\n", " -------------------------- ------------- 296.6/455.9 MB 7.3 MB/s eta 0:00:22\n", " -------------------------- ------------- 297.0/455.9 MB 7.2 MB/s eta 0:00:23\n", " -------------------------- ------------- 297.6/455.9 MB 7.2 MB/s eta 0:00:23\n", " -------------------------- ------------- 297.6/455.9 MB 7.2 MB/s eta 0:00:23\n", " -------------------------- ------------- 298.0/455.9 MB 7.0 MB/s eta 0:00:23\n", " -------------------------- ------------- 298.4/455.9 MB 7.2 MB/s eta 0:00:22\n", " -------------------------- ------------- 298.7/455.9 MB 7.0 MB/s eta 0:00:23\n", " -------------------------- ------------- 299.0/455.9 MB 7.0 MB/s eta 0:00:23\n", " -------------------------- ------------- 299.5/455.9 MB 7.0 MB/s eta 0:00:23\n", " -------------------------- ------------- 299.8/455.9 MB 7.0 MB/s eta 0:00:23\n", " -------------------------- ------------- 300.3/455.9 MB 7.1 MB/s eta 0:00:22\n", " -------------------------- ------------- 300.7/455.9 MB 7.2 MB/s eta 0:00:22\n", " -------------------------- ------------- 301.0/455.9 MB 7.2 MB/s eta 0:00:22\n", " -------------------------- ------------- 301.4/455.9 MB 7.4 MB/s eta 0:00:21\n", " -------------------------- ------------- 301.7/455.9 MB 7.4 MB/s eta 0:00:21\n", " -------------------------- ------------- 302.0/455.9 MB 7.4 MB/s eta 0:00:21\n", " -------------------------- ------------- 302.3/455.9 MB 7.4 MB/s eta 0:00:21\n", " -------------------------- ------------- 302.6/455.9 MB 7.3 MB/s eta 0:00:22\n", " -------------------------- ------------- 302.7/455.9 MB 7.1 MB/s eta 0:00:22\n", " -------------------------- ------------- 302.8/455.9 MB 6.8 MB/s eta 0:00:23\n", " -------------------------- ------------- 303.2/455.9 MB 6.9 MB/s eta 0:00:23\n", " -------------------------- ------------- 303.5/455.9 MB 6.8 MB/s eta 0:00:23\n", " -------------------------- ------------- 304.0/455.9 MB 6.9 MB/s eta 0:00:23\n", " -------------------------- ------------- 304.3/455.9 MB 6.7 MB/s eta 0:00:23\n", " -------------------------- ------------- 304.6/455.9 MB 6.8 MB/s eta 0:00:23\n", " -------------------------- ------------- 304.9/455.9 MB 6.8 MB/s eta 0:00:23\n", " -------------------------- ------------- 305.2/455.9 MB 6.6 MB/s eta 0:00:23\n", " -------------------------- ------------- 305.5/455.9 MB 6.6 MB/s eta 0:00:23\n", " -------------------------- ------------- 305.8/455.9 MB 6.5 MB/s eta 0:00:23\n", " -------------------------- ------------- 306.1/455.9 MB 6.5 MB/s eta 0:00:23\n", " -------------------------- ------------- 306.3/455.9 MB 6.6 MB/s eta 0:00:23\n", " -------------------------- ------------- 306.5/455.9 MB 6.4 MB/s eta 0:00:24\n", " -------------------------- ------------- 306.7/455.9 MB 6.3 MB/s eta 0:00:24\n", " -------------------------- ------------- 307.0/455.9 MB 6.3 MB/s eta 0:00:24\n", " -------------------------- ------------- 307.4/455.9 MB 6.4 MB/s eta 0:00:24\n", " --------------------------- ------------ 308.0/455.9 MB 6.5 MB/s eta 0:00:23\n", " --------------------------- ------------ 308.4/455.9 MB 6.4 MB/s eta 0:00:23\n", " --------------------------- ------------ 308.8/455.9 MB 6.4 MB/s eta 0:00:23\n", " --------------------------- ------------ 309.3/455.9 MB 6.4 MB/s eta 0:00:23\n", " --------------------------- ------------ 309.5/455.9 MB 6.4 MB/s eta 0:00:24\n", " --------------------------- ------------ 309.9/455.9 MB 6.4 MB/s eta 0:00:23\n", " --------------------------- ------------ 310.2/455.9 MB 6.3 MB/s eta 0:00:24\n", " --------------------------- ------------ 310.5/455.9 MB 6.2 MB/s eta 0:00:24\n", " --------------------------- ------------ 311.0/455.9 MB 6.3 MB/s eta 0:00:24\n", " --------------------------- ------------ 311.3/455.9 MB 6.2 MB/s eta 0:00:24\n", " --------------------------- ------------ 311.7/455.9 MB 6.2 MB/s eta 0:00:24\n", " --------------------------- ------------ 312.2/455.9 MB 6.3 MB/s eta 0:00:23\n", " --------------------------- ------------ 312.6/455.9 MB 6.3 MB/s eta 0:00:23\n", " --------------------------- ------------ 313.0/455.9 MB 6.7 MB/s eta 0:00:22\n", " --------------------------- ------------ 313.5/455.9 MB 6.8 MB/s eta 0:00:21\n", " --------------------------- ------------ 313.8/455.9 MB 6.9 MB/s eta 0:00:21\n", " --------------------------- ------------ 314.2/455.9 MB 6.9 MB/s eta 0:00:21\n", " --------------------------- ------------ 314.7/455.9 MB 7.0 MB/s eta 0:00:21\n", " --------------------------- ------------ 315.1/455.9 MB 7.1 MB/s eta 0:00:20\n", " --------------------------- ------------ 315.3/455.9 MB 7.0 MB/s eta 0:00:20\n", " --------------------------- ------------ 315.6/455.9 MB 7.0 MB/s eta 0:00:20\n", " --------------------------- ------------ 316.0/455.9 MB 7.1 MB/s eta 0:00:20\n", " --------------------------- ------------ 316.4/455.9 MB 7.3 MB/s eta 0:00:20\n", " --------------------------- ------------ 316.8/455.9 MB 7.5 MB/s eta 0:00:19\n", " --------------------------- ------------ 317.3/455.9 MB 7.6 MB/s eta 0:00:19\n", " --------------------------- ------------ 317.7/455.9 MB 7.7 MB/s eta 0:00:18\n", " --------------------------- ------------ 318.1/455.9 MB 7.6 MB/s eta 0:00:19\n", " --------------------------- ------------ 318.4/455.9 MB 7.6 MB/s eta 0:00:19\n", " --------------------------- ------------ 318.8/455.9 MB 7.6 MB/s eta 0:00:19\n", " --------------------------- ------------ 319.0/455.9 MB 7.7 MB/s eta 0:00:18\n", " ---------------------------- ----------- 319.5/455.9 MB 7.6 MB/s eta 0:00:18\n", " ---------------------------- ----------- 320.0/455.9 MB 7.7 MB/s eta 0:00:18\n", " ---------------------------- ----------- 320.5/455.9 MB 7.7 MB/s eta 0:00:18\n", " ---------------------------- ----------- 320.9/455.9 MB 7.8 MB/s eta 0:00:18\n", " ---------------------------- ----------- 321.3/455.9 MB 7.8 MB/s eta 0:00:18\n", " ---------------------------- ----------- 321.7/455.9 MB 7.8 MB/s eta 0:00:18\n", " ---------------------------- ----------- 322.0/455.9 MB 7.9 MB/s eta 0:00:17\n", " ---------------------------- ----------- 322.3/455.9 MB 7.9 MB/s eta 0:00:17\n", " ---------------------------- ----------- 322.7/455.9 MB 7.9 MB/s eta 0:00:17\n", " ---------------------------- ----------- 323.0/455.9 MB 7.9 MB/s eta 0:00:17\n", " ---------------------------- ----------- 323.2/455.9 MB 7.7 MB/s eta 0:00:18\n", " ---------------------------- ----------- 323.5/455.9 MB 7.6 MB/s eta 0:00:18\n", " ---------------------------- ----------- 323.8/455.9 MB 7.7 MB/s eta 0:00:18\n", " ---------------------------- ----------- 324.2/455.9 MB 7.5 MB/s eta 0:00:18\n", " ---------------------------- ----------- 324.5/455.9 MB 7.5 MB/s eta 0:00:18\n", " ---------------------------- ----------- 325.0/455.9 MB 7.5 MB/s eta 0:00:18\n", " ---------------------------- ----------- 325.2/455.9 MB 7.5 MB/s eta 0:00:18\n", " ---------------------------- ----------- 325.7/455.9 MB 7.6 MB/s eta 0:00:18\n", " ---------------------------- ----------- 326.2/455.9 MB 7.8 MB/s eta 0:00:17\n", " ---------------------------- ----------- 326.3/455.9 MB 7.7 MB/s eta 0:00:17\n", " ---------------------------- ----------- 326.8/455.9 MB 7.6 MB/s eta 0:00:17\n", " ---------------------------- ----------- 327.2/455.9 MB 7.6 MB/s eta 0:00:17\n", " ---------------------------- ----------- 327.7/455.9 MB 7.6 MB/s eta 0:00:17\n", " ---------------------------- ----------- 328.1/455.9 MB 7.5 MB/s eta 0:00:17\n", " ---------------------------- ----------- 328.6/455.9 MB 7.4 MB/s eta 0:00:18\n", " ---------------------------- ----------- 329.1/455.9 MB 7.5 MB/s eta 0:00:17\n", " ---------------------------- ----------- 329.5/455.9 MB 7.4 MB/s eta 0:00:17\n", " ---------------------------- ----------- 329.8/455.9 MB 7.5 MB/s eta 0:00:17\n", " ---------------------------- ----------- 330.3/455.9 MB 7.4 MB/s eta 0:00:17\n", " ----------------------------- ---------- 330.6/455.9 MB 7.4 MB/s eta 0:00:18\n", " ----------------------------- ---------- 331.0/455.9 MB 7.4 MB/s eta 0:00:17\n", " ----------------------------- ---------- 331.3/455.9 MB 7.4 MB/s eta 0:00:17\n", " ----------------------------- ---------- 331.7/455.9 MB 7.3 MB/s eta 0:00:18\n", " ----------------------------- ---------- 332.0/455.9 MB 7.3 MB/s eta 0:00:18\n", " ----------------------------- ---------- 332.4/455.9 MB 7.4 MB/s eta 0:00:17\n", " ----------------------------- ---------- 332.9/455.9 MB 7.4 MB/s eta 0:00:17\n", " ----------------------------- ---------- 333.2/455.9 MB 7.4 MB/s eta 0:00:17\n", " ----------------------------- ---------- 333.5/455.9 MB 7.5 MB/s eta 0:00:17\n", " ----------------------------- ---------- 333.8/455.9 MB 7.5 MB/s eta 0:00:17\n", " ----------------------------- ---------- 334.2/455.9 MB 7.5 MB/s eta 0:00:17\n", " ----------------------------- ---------- 334.6/455.9 MB 7.4 MB/s eta 0:00:17\n", " ----------------------------- ---------- 335.1/455.9 MB 7.4 MB/s eta 0:00:17\n", " ----------------------------- ---------- 335.5/455.9 MB 7.4 MB/s eta 0:00:17\n", " ----------------------------- ---------- 336.0/455.9 MB 7.4 MB/s eta 0:00:17\n", " ----------------------------- ---------- 336.3/455.9 MB 7.3 MB/s eta 0:00:17\n", " ----------------------------- ---------- 336.8/455.9 MB 7.4 MB/s eta 0:00:17\n", " ----------------------------- ---------- 337.2/455.9 MB 7.4 MB/s eta 0:00:17\n", " ----------------------------- ---------- 337.6/455.9 MB 7.3 MB/s eta 0:00:17\n", " ----------------------------- ---------- 337.8/455.9 MB 7.4 MB/s eta 0:00:16\n", " ----------------------------- ---------- 338.2/455.9 MB 7.3 MB/s eta 0:00:17\n", " ----------------------------- ---------- 338.5/455.9 MB 7.1 MB/s eta 0:00:17\n", " ----------------------------- ---------- 339.0/455.9 MB 7.2 MB/s eta 0:00:17\n", " ----------------------------- ---------- 339.4/455.9 MB 7.2 MB/s eta 0:00:17\n", " ----------------------------- ---------- 339.7/455.9 MB 7.3 MB/s eta 0:00:16\n", " ----------------------------- ---------- 340.0/455.9 MB 7.3 MB/s eta 0:00:16\n", " ----------------------------- ---------- 340.4/455.9 MB 7.3 MB/s eta 0:00:16\n", " ----------------------------- ---------- 340.6/455.9 MB 7.2 MB/s eta 0:00:17\n", " ----------------------------- ---------- 340.7/455.9 MB 7.2 MB/s eta 0:00:17\n", " ----------------------------- ---------- 341.0/455.9 MB 7.0 MB/s eta 0:00:17\n", " ----------------------------- ---------- 341.5/455.9 MB 7.0 MB/s eta 0:00:17\n", " ----------------------------- ---------- 341.8/455.9 MB 7.0 MB/s eta 0:00:17\n", " ------------------------------ --------- 342.1/455.9 MB 7.0 MB/s eta 0:00:17\n", " ------------------------------ --------- 342.5/455.9 MB 7.0 MB/s eta 0:00:17\n", " ------------------------------ --------- 342.8/455.9 MB 6.8 MB/s eta 0:00:17\n", " ------------------------------ --------- 343.3/455.9 MB 6.9 MB/s eta 0:00:17\n", " ------------------------------ --------- 343.6/455.9 MB 7.0 MB/s eta 0:00:17\n", " ------------------------------ --------- 344.0/455.9 MB 7.0 MB/s eta 0:00:17\n", " ------------------------------ --------- 344.2/455.9 MB 7.0 MB/s eta 0:00:16\n", " ------------------------------ --------- 344.2/455.9 MB 7.0 MB/s eta 0:00:16\n", " ------------------------------ --------- 344.2/455.9 MB 7.0 MB/s eta 0:00:16\n", " ------------------------------ --------- 344.2/455.9 MB 7.0 MB/s eta 0:00:16\n", " ------------------------------ --------- 344.2/455.9 MB 7.0 MB/s eta 0:00:16\n", " ------------------------------ --------- 344.2/455.9 MB 7.0 MB/s eta 0:00:16\n", " ------------------------------ --------- 344.2/455.9 MB 7.0 MB/s eta 0:00:16\n", " ------------------------------ --------- 344.2/455.9 MB 7.0 MB/s eta 0:00:16\n", " ------------------------------ --------- 344.2/455.9 MB 7.0 MB/s eta 0:00:16\n", " ------------------------------ --------- 344.2/455.9 MB 7.0 MB/s eta 0:00:16\n", " ------------------------------ --------- 344.2/455.9 MB 7.0 MB/s eta 0:00:16\n", " ------------------------------ --------- 344.2/455.9 MB 7.0 MB/s eta 0:00:16\n", " ------------------------------ --------- 344.2/455.9 MB 7.0 MB/s eta 0:00:16\n", " ------------------------------ --------- 344.2/455.9 MB 7.0 MB/s eta 0:00:16\n", " ------------------------------ --------- 344.2/455.9 MB 7.0 MB/s eta 0:00:16\n", " ------------------------------ --------- 344.2/455.9 MB 7.0 MB/s eta 0:00:16\n", " ------------------------------ --------- 344.2/455.9 MB 7.0 MB/s eta 0:00:16\n", " ------------------------------ --------- 344.2/455.9 MB 7.0 MB/s eta 0:00:16\n", " ------------------------------ --------- 344.2/455.9 MB 7.0 MB/s eta 0:00:16\n", " ------------------------------ --------- 344.2/455.9 MB 7.0 MB/s eta 0:00:16\n", " ------------------------------ --------- 344.2/455.9 MB 7.0 MB/s eta 0:00:16\n", " ------------------------------ --------- 344.2/455.9 MB 7.0 MB/s eta 0:00:16\n", " ------------------------------ --------- 344.2/455.9 MB 7.0 MB/s eta 0:00:16\n", " ------------------------------ --------- 344.3/455.9 MB 3.6 MB/s eta 0:00:31\n", " ------------------------------ --------- 344.3/455.9 MB 3.5 MB/s eta 0:00:32\n", " ------------------------------ --------- 344.4/455.9 MB 3.5 MB/s eta 0:00:33\n", " ------------------------------ --------- 344.4/455.9 MB 3.4 MB/s eta 0:00:33\n", " ------------------------------ --------- 344.5/455.9 MB 3.3 MB/s eta 0:00:34\n", " ------------------------------ --------- 344.5/455.9 MB 3.3 MB/s eta 0:00:34\n", " ------------------------------ --------- 344.6/455.9 MB 3.2 MB/s eta 0:00:35\n", " ------------------------------ --------- 344.8/455.9 MB 3.2 MB/s eta 0:00:35\n", " ------------------------------ --------- 345.1/455.9 MB 3.2 MB/s eta 0:00:35\n", " ------------------------------ --------- 345.5/455.9 MB 3.2 MB/s eta 0:00:35\n", " ------------------------------ --------- 345.8/455.9 MB 3.2 MB/s eta 0:00:35\n", " ------------------------------ --------- 346.1/455.9 MB 3.2 MB/s eta 0:00:35\n", " ------------------------------ --------- 346.4/455.9 MB 3.2 MB/s eta 0:00:35\n", " ------------------------------ --------- 346.8/455.9 MB 3.2 MB/s eta 0:00:34\n", " ------------------------------ --------- 347.1/455.9 MB 3.2 MB/s eta 0:00:34\n", " ------------------------------ --------- 347.6/455.9 MB 3.2 MB/s eta 0:00:34\n", " ------------------------------ --------- 347.8/455.9 MB 3.2 MB/s eta 0:00:34\n", " ------------------------------ --------- 348.2/455.9 MB 3.2 MB/s eta 0:00:34\n", " ------------------------------ --------- 348.6/455.9 MB 3.2 MB/s eta 0:00:34\n", " ------------------------------ --------- 349.1/455.9 MB 3.2 MB/s eta 0:00:34\n", " ------------------------------ --------- 349.4/455.9 MB 3.2 MB/s eta 0:00:34\n", " ------------------------------ --------- 349.9/455.9 MB 3.2 MB/s eta 0:00:34\n", " ------------------------------ --------- 350.2/455.9 MB 3.2 MB/s eta 0:00:34\n", " ------------------------------ --------- 350.6/455.9 MB 3.2 MB/s eta 0:00:34\n", " ------------------------------ --------- 351.1/455.9 MB 3.2 MB/s eta 0:00:33\n", " ------------------------------ --------- 351.2/455.9 MB 3.2 MB/s eta 0:00:33\n", " ------------------------------ --------- 351.2/455.9 MB 3.2 MB/s eta 0:00:33\n", " ------------------------------ --------- 351.2/455.9 MB 3.2 MB/s eta 0:00:33\n", " ------------------------------ --------- 351.2/455.9 MB 3.2 MB/s eta 0:00:33\n", " ------------------------------ --------- 351.3/455.9 MB 3.0 MB/s eta 0:00:35\n", " ------------------------------ --------- 351.6/455.9 MB 3.0 MB/s eta 0:00:35\n", " ------------------------------ --------- 352.0/455.9 MB 3.0 MB/s eta 0:00:35\n", " ------------------------------ --------- 352.4/455.9 MB 3.0 MB/s eta 0:00:35\n", " ------------------------------ --------- 352.9/455.9 MB 3.0 MB/s eta 0:00:35\n", " ------------------------------ --------- 353.3/455.9 MB 3.0 MB/s eta 0:00:35\n", " ------------------------------- -------- 353.7/455.9 MB 3.0 MB/s eta 0:00:35\n", " ------------------------------- -------- 354.0/455.9 MB 3.0 MB/s eta 0:00:34\n", " ------------------------------- -------- 354.3/455.9 MB 3.0 MB/s eta 0:00:34\n", " ------------------------------- -------- 354.6/455.9 MB 5.2 MB/s eta 0:00:20\n", " ------------------------------- -------- 354.9/455.9 MB 5.9 MB/s eta 0:00:18\n", " ------------------------------- -------- 355.2/455.9 MB 5.8 MB/s eta 0:00:18\n", " ------------------------------- -------- 355.5/455.9 MB 5.9 MB/s eta 0:00:18\n", " ------------------------------- -------- 355.7/455.9 MB 5.8 MB/s eta 0:00:18\n", " ------------------------------- -------- 356.0/455.9 MB 5.8 MB/s eta 0:00:18\n", " ------------------------------- -------- 356.3/455.9 MB 5.7 MB/s eta 0:00:18\n", " ------------------------------- -------- 356.8/455.9 MB 5.7 MB/s eta 0:00:18\n", " ------------------------------- -------- 357.0/455.9 MB 5.7 MB/s eta 0:00:18\n", " ------------------------------- -------- 357.2/455.9 MB 5.7 MB/s eta 0:00:18\n", " ------------------------------- -------- 357.7/455.9 MB 5.7 MB/s eta 0:00:18\n", " ------------------------------- -------- 358.0/455.9 MB 5.7 MB/s eta 0:00:18\n", " ------------------------------- -------- 358.5/455.9 MB 5.8 MB/s eta 0:00:17\n", " ------------------------------- -------- 359.0/455.9 MB 5.8 MB/s eta 0:00:17\n", " ------------------------------- -------- 359.1/455.9 MB 5.8 MB/s eta 0:00:17\n", " ------------------------------- -------- 359.4/455.9 MB 5.7 MB/s eta 0:00:17\n", " ------------------------------- -------- 359.7/455.9 MB 5.7 MB/s eta 0:00:17\n", " ------------------------------- -------- 360.0/455.9 MB 5.6 MB/s eta 0:00:18\n", " ------------------------------- -------- 360.2/455.9 MB 5.7 MB/s eta 0:00:17\n", " ------------------------------- -------- 360.5/455.9 MB 5.6 MB/s eta 0:00:17\n", " ------------------------------- -------- 360.8/455.9 MB 5.6 MB/s eta 0:00:18\n", " ------------------------------- -------- 361.1/455.9 MB 5.6 MB/s eta 0:00:17\n", " ------------------------------- -------- 361.5/455.9 MB 6.3 MB/s eta 0:00:15\n", " ------------------------------- -------- 361.8/455.9 MB 6.3 MB/s eta 0:00:15\n", " ------------------------------- -------- 362.2/455.9 MB 6.3 MB/s eta 0:00:15\n", " ------------------------------- -------- 362.5/455.9 MB 6.2 MB/s eta 0:00:15\n", " ------------------------------- -------- 362.9/455.9 MB 6.2 MB/s eta 0:00:15\n", " ------------------------------- -------- 363.1/455.9 MB 6.3 MB/s eta 0:00:15\n", " ------------------------------- -------- 363.5/455.9 MB 6.3 MB/s eta 0:00:15\n", " ------------------------------- -------- 363.7/455.9 MB 6.2 MB/s eta 0:00:15\n", " ------------------------------- -------- 364.1/455.9 MB 6.3 MB/s eta 0:00:15\n", " ------------------------------- -------- 364.3/455.9 MB 6.2 MB/s eta 0:00:15\n", " ------------------------------- -------- 364.7/455.9 MB 6.2 MB/s eta 0:00:15\n", " -------------------------------- ------- 365.1/455.9 MB 6.4 MB/s eta 0:00:15\n", " -------------------------------- ------- 365.6/455.9 MB 6.4 MB/s eta 0:00:15\n", " -------------------------------- ------- 365.9/455.9 MB 6.4 MB/s eta 0:00:15\n", " -------------------------------- ------- 366.2/455.9 MB 6.4 MB/s eta 0:00:15\n", " -------------------------------- ------- 366.6/455.9 MB 6.4 MB/s eta 0:00:14\n", " -------------------------------- ------- 367.1/455.9 MB 6.4 MB/s eta 0:00:14\n", " -------------------------------- ------- 367.5/455.9 MB 6.5 MB/s eta 0:00:14\n", " -------------------------------- ------- 367.9/455.9 MB 6.4 MB/s eta 0:00:14\n", " -------------------------------- ------- 368.2/455.9 MB 6.4 MB/s eta 0:00:14\n", " -------------------------------- ------- 368.8/455.9 MB 6.4 MB/s eta 0:00:14\n", " -------------------------------- ------- 369.1/455.9 MB 6.3 MB/s eta 0:00:14\n", " -------------------------------- ------- 369.4/455.9 MB 6.2 MB/s eta 0:00:15\n", " -------------------------------- ------- 369.8/455.9 MB 6.3 MB/s eta 0:00:14\n", " -------------------------------- ------- 370.2/455.9 MB 6.4 MB/s eta 0:00:14\n", " -------------------------------- ------- 370.7/455.9 MB 6.5 MB/s eta 0:00:14\n", " -------------------------------- ------- 371.1/455.9 MB 6.6 MB/s eta 0:00:13\n", " -------------------------------- ------- 371.8/455.9 MB 6.8 MB/s eta 0:00:13\n", " -------------------------------- ------- 372.2/455.9 MB 6.8 MB/s eta 0:00:13\n", " -------------------------------- ------- 372.4/455.9 MB 6.7 MB/s eta 0:00:13\n", " -------------------------------- ------- 372.5/455.9 MB 6.6 MB/s eta 0:00:13\n", " -------------------------------- ------- 372.9/455.9 MB 6.6 MB/s eta 0:00:13\n", " -------------------------------- ------- 373.2/455.9 MB 6.6 MB/s eta 0:00:13\n", " -------------------------------- ------- 373.6/455.9 MB 6.6 MB/s eta 0:00:13\n", " -------------------------------- ------- 373.9/455.9 MB 6.6 MB/s eta 0:00:13\n", " -------------------------------- ------- 374.3/455.9 MB 6.6 MB/s eta 0:00:13\n", " -------------------------------- ------- 374.7/455.9 MB 6.7 MB/s eta 0:00:13\n", " -------------------------------- ------- 375.0/455.9 MB 6.7 MB/s eta 0:00:12\n", " -------------------------------- ------- 375.2/455.9 MB 6.5 MB/s eta 0:00:13\n", " -------------------------------- ------- 375.6/455.9 MB 6.7 MB/s eta 0:00:13\n", " -------------------------------- ------- 375.9/455.9 MB 6.7 MB/s eta 0:00:12\n", " --------------------------------- ------ 376.3/455.9 MB 6.7 MB/s eta 0:00:12\n", " --------------------------------- ------ 376.7/455.9 MB 6.9 MB/s eta 0:00:12\n", " --------------------------------- ------ 377.0/455.9 MB 6.9 MB/s eta 0:00:12\n", " --------------------------------- ------ 377.3/455.9 MB 7.0 MB/s eta 0:00:12\n", " --------------------------------- ------ 377.6/455.9 MB 6.8 MB/s eta 0:00:12\n", " --------------------------------- ------ 378.0/455.9 MB 6.8 MB/s eta 0:00:12\n", " --------------------------------- ------ 378.1/455.9 MB 6.8 MB/s eta 0:00:12\n", " --------------------------------- ------ 378.5/455.9 MB 6.8 MB/s eta 0:00:12\n", " --------------------------------- ------ 378.9/455.9 MB 6.7 MB/s eta 0:00:12\n", " --------------------------------- ------ 379.5/455.9 MB 7.0 MB/s eta 0:00:11\n", " --------------------------------- ------ 379.9/455.9 MB 7.1 MB/s eta 0:00:11\n", " --------------------------------- ------ 380.3/455.9 MB 7.2 MB/s eta 0:00:11\n", " --------------------------------- ------ 380.9/455.9 MB 7.2 MB/s eta 0:00:11\n", " --------------------------------- ------ 381.4/455.9 MB 7.3 MB/s eta 0:00:11\n", " --------------------------------- ------ 382.0/455.9 MB 7.2 MB/s eta 0:00:11\n", " --------------------------------- ------ 382.3/455.9 MB 7.0 MB/s eta 0:00:11\n", " --------------------------------- ------ 382.8/455.9 MB 7.4 MB/s eta 0:00:10\n", " --------------------------------- ------ 383.2/455.9 MB 7.4 MB/s eta 0:00:10\n", " --------------------------------- ------ 383.5/455.9 MB 7.4 MB/s eta 0:00:10\n", " --------------------------------- ------ 383.9/455.9 MB 7.4 MB/s eta 0:00:10\n", " --------------------------------- ------ 384.3/455.9 MB 7.4 MB/s eta 0:00:10\n", " --------------------------------- ------ 384.6/455.9 MB 7.4 MB/s eta 0:00:10\n", " --------------------------------- ------ 385.3/455.9 MB 7.8 MB/s eta 0:00:10\n", " --------------------------------- ------ 385.6/455.9 MB 7.7 MB/s eta 0:00:10\n", " --------------------------------- ------ 386.0/455.9 MB 7.8 MB/s eta 0:00:09\n", " --------------------------------- ------ 386.2/455.9 MB 7.7 MB/s eta 0:00:10\n", " --------------------------------- ------ 386.7/455.9 MB 7.7 MB/s eta 0:00:09\n", " --------------------------------- ------ 387.0/455.9 MB 7.6 MB/s eta 0:00:10\n", " --------------------------------- ------ 387.4/455.9 MB 7.7 MB/s eta 0:00:09\n", " ---------------------------------- ----- 387.7/455.9 MB 7.8 MB/s eta 0:00:09\n", " ---------------------------------- ----- 388.1/455.9 MB 7.7 MB/s eta 0:00:09\n", " ---------------------------------- ----- 388.4/455.9 MB 7.9 MB/s eta 0:00:09\n", " ---------------------------------- ----- 388.7/455.9 MB 7.9 MB/s eta 0:00:09\n", " ---------------------------------- ----- 389.1/455.9 MB 7.9 MB/s eta 0:00:09\n", " ---------------------------------- ----- 389.4/455.9 MB 7.8 MB/s eta 0:00:09\n", " ---------------------------------- ----- 389.7/455.9 MB 7.7 MB/s eta 0:00:09\n", " ---------------------------------- ----- 390.1/455.9 MB 7.7 MB/s eta 0:00:09\n", " ---------------------------------- ----- 390.5/455.9 MB 7.7 MB/s eta 0:00:09\n", " ---------------------------------- ----- 391.0/455.9 MB 7.7 MB/s eta 0:00:09\n", " ---------------------------------- ----- 391.4/455.9 MB 7.6 MB/s eta 0:00:09\n", " ---------------------------------- ----- 391.8/455.9 MB 7.5 MB/s eta 0:00:09\n", " ---------------------------------- ----- 392.2/455.9 MB 7.5 MB/s eta 0:00:09\n", " ---------------------------------- ----- 392.8/455.9 MB 7.6 MB/s eta 0:00:09\n", " ---------------------------------- ----- 393.2/455.9 MB 7.5 MB/s eta 0:00:09\n", " ---------------------------------- ----- 393.7/455.9 MB 7.5 MB/s eta 0:00:09\n", " ---------------------------------- ----- 394.2/455.9 MB 7.6 MB/s eta 0:00:09\n", " ---------------------------------- ----- 394.6/455.9 MB 7.6 MB/s eta 0:00:09\n", " ---------------------------------- ----- 395.0/455.9 MB 7.5 MB/s eta 0:00:09\n", " ---------------------------------- ----- 395.6/455.9 MB 7.5 MB/s eta 0:00:09\n", " ---------------------------------- ----- 396.1/455.9 MB 7.5 MB/s eta 0:00:08\n", " ---------------------------------- ----- 396.6/455.9 MB 7.6 MB/s eta 0:00:08\n", " ---------------------------------- ----- 396.9/455.9 MB 7.4 MB/s eta 0:00:08\n", " ---------------------------------- ----- 397.3/455.9 MB 7.6 MB/s eta 0:00:08\n", " ---------------------------------- ----- 397.6/455.9 MB 7.6 MB/s eta 0:00:08\n", " ---------------------------------- ----- 397.9/455.9 MB 7.4 MB/s eta 0:00:08\n", " ---------------------------------- ----- 398.3/455.9 MB 7.5 MB/s eta 0:00:08\n", " ---------------------------------- ----- 398.6/455.9 MB 7.4 MB/s eta 0:00:08\n", " ---------------------------------- ----- 398.8/455.9 MB 7.4 MB/s eta 0:00:08\n", " ----------------------------------- ---- 399.2/455.9 MB 7.4 MB/s eta 0:00:08\n", " ----------------------------------- ---- 399.6/455.9 MB 7.7 MB/s eta 0:00:08\n", " ----------------------------------- ---- 399.9/455.9 MB 7.6 MB/s eta 0:00:08\n", " ----------------------------------- ---- 400.4/455.9 MB 7.8 MB/s eta 0:00:08\n", " ----------------------------------- ---- 400.7/455.9 MB 7.7 MB/s eta 0:00:08\n", " ----------------------------------- ---- 401.2/455.9 MB 7.6 MB/s eta 0:00:08\n", " ----------------------------------- ---- 401.7/455.9 MB 7.8 MB/s eta 0:00:07\n", " ----------------------------------- ---- 402.4/455.9 MB 8.0 MB/s eta 0:00:07\n", " ----------------------------------- ---- 402.6/455.9 MB 7.9 MB/s eta 0:00:07\n", " ----------------------------------- ---- 403.0/455.9 MB 7.6 MB/s eta 0:00:07\n", " ----------------------------------- ---- 403.4/455.9 MB 7.8 MB/s eta 0:00:07\n", " ----------------------------------- ---- 403.8/455.9 MB 7.7 MB/s eta 0:00:07\n", " ----------------------------------- ---- 404.0/455.9 MB 7.6 MB/s eta 0:00:07\n", " ----------------------------------- ---- 404.3/455.9 MB 7.5 MB/s eta 0:00:07\n", " ----------------------------------- ---- 404.8/455.9 MB 7.7 MB/s eta 0:00:07\n", " ----------------------------------- ---- 405.1/455.9 MB 7.4 MB/s eta 0:00:07\n", " ----------------------------------- ---- 405.6/455.9 MB 7.5 MB/s eta 0:00:07\n", " ----------------------------------- ---- 405.9/455.9 MB 7.4 MB/s eta 0:00:07\n", " ----------------------------------- ---- 406.1/455.9 MB 7.4 MB/s eta 0:00:07\n", " ----------------------------------- ---- 406.7/455.9 MB 7.4 MB/s eta 0:00:07\n", " ----------------------------------- ---- 407.1/455.9 MB 7.4 MB/s eta 0:00:07\n", " ----------------------------------- ---- 407.4/455.9 MB 7.4 MB/s eta 0:00:07\n", " ----------------------------------- ---- 407.7/455.9 MB 7.4 MB/s eta 0:00:07\n", " ----------------------------------- ---- 408.1/455.9 MB 7.4 MB/s eta 0:00:07\n", " ----------------------------------- ---- 408.5/455.9 MB 7.4 MB/s eta 0:00:07\n", " ----------------------------------- ---- 408.9/455.9 MB 7.5 MB/s eta 0:00:07\n", " ----------------------------------- ---- 409.3/455.9 MB 7.5 MB/s eta 0:00:07\n", " ----------------------------------- ---- 409.8/455.9 MB 7.4 MB/s eta 0:00:07\n", " ----------------------------------- ---- 410.2/455.9 MB 7.4 MB/s eta 0:00:07\n", " ------------------------------------ --- 410.6/455.9 MB 7.4 MB/s eta 0:00:07\n", " ------------------------------------ --- 410.9/455.9 MB 7.2 MB/s eta 0:00:07\n", " ------------------------------------ --- 411.2/455.9 MB 7.2 MB/s eta 0:00:07\n", " ------------------------------------ --- 411.7/455.9 MB 7.2 MB/s eta 0:00:07\n", " ------------------------------------ --- 412.1/455.9 MB 7.2 MB/s eta 0:00:07\n", " ------------------------------------ --- 412.4/455.9 MB 7.0 MB/s eta 0:00:07\n", " ------------------------------------ --- 412.8/455.9 MB 7.0 MB/s eta 0:00:07\n", " ------------------------------------ --- 413.1/455.9 MB 7.2 MB/s eta 0:00:06\n", " ------------------------------------ --- 413.3/455.9 MB 7.1 MB/s eta 0:00:06\n", " ------------------------------------ --- 413.8/455.9 MB 7.2 MB/s eta 0:00:06\n", " ------------------------------------ --- 414.1/455.9 MB 7.1 MB/s eta 0:00:06\n", " ------------------------------------ --- 414.4/455.9 MB 7.1 MB/s eta 0:00:06\n", " ------------------------------------ --- 414.8/455.9 MB 7.1 MB/s eta 0:00:06\n", " ------------------------------------ --- 415.0/455.9 MB 7.1 MB/s eta 0:00:06\n", " ------------------------------------ --- 415.4/455.9 MB 7.3 MB/s eta 0:00:06\n", " ------------------------------------ --- 415.7/455.9 MB 7.2 MB/s eta 0:00:06\n", " ------------------------------------ --- 416.1/455.9 MB 7.2 MB/s eta 0:00:06\n", " ------------------------------------ --- 416.6/455.9 MB 7.1 MB/s eta 0:00:06\n", " ------------------------------------ --- 417.0/455.9 MB 7.0 MB/s eta 0:00:06\n", " ------------------------------------ --- 417.3/455.9 MB 7.0 MB/s eta 0:00:06\n", " ------------------------------------ --- 417.6/455.9 MB 7.0 MB/s eta 0:00:06\n", " ------------------------------------ --- 418.0/455.9 MB 7.0 MB/s eta 0:00:06\n", " ------------------------------------ --- 418.4/455.9 MB 7.0 MB/s eta 0:00:06\n", " ------------------------------------ --- 418.6/455.9 MB 6.9 MB/s eta 0:00:06\n", " ------------------------------------ --- 419.0/455.9 MB 6.8 MB/s eta 0:00:06\n", " ------------------------------------ --- 419.3/455.9 MB 6.8 MB/s eta 0:00:06\n", " ------------------------------------ --- 419.7/455.9 MB 6.9 MB/s eta 0:00:06\n", " ------------------------------------ --- 420.0/455.9 MB 6.9 MB/s eta 0:00:06\n", " ------------------------------------ --- 420.3/455.9 MB 6.9 MB/s eta 0:00:06\n", " ------------------------------------ --- 420.7/455.9 MB 6.8 MB/s eta 0:00:06\n", " ------------------------------------ --- 421.0/455.9 MB 7.0 MB/s eta 0:00:06\n", " ------------------------------------ --- 421.4/455.9 MB 6.9 MB/s eta 0:00:06\n", " ------------------------------------ --- 421.7/455.9 MB 6.9 MB/s eta 0:00:05\n", " ------------------------------------- -- 422.0/455.9 MB 6.8 MB/s eta 0:00:05\n", " ------------------------------------- -- 422.4/455.9 MB 6.9 MB/s eta 0:00:05\n", " ------------------------------------- -- 422.7/455.9 MB 7.0 MB/s eta 0:00:05\n", " ------------------------------------- -- 423.0/455.9 MB 6.9 MB/s eta 0:00:05\n", " ------------------------------------- -- 423.3/455.9 MB 7.0 MB/s eta 0:00:05\n", " ------------------------------------- -- 423.6/455.9 MB 7.0 MB/s eta 0:00:05\n", " ------------------------------------- -- 424.1/455.9 MB 6.9 MB/s eta 0:00:05\n", " ------------------------------------- -- 424.4/455.9 MB 6.8 MB/s eta 0:00:05\n", " ------------------------------------- -- 424.8/455.9 MB 7.0 MB/s eta 0:00:05\n", " ------------------------------------- -- 425.1/455.9 MB 6.9 MB/s eta 0:00:05\n", " ------------------------------------- -- 425.5/455.9 MB 6.9 MB/s eta 0:00:05\n", " ------------------------------------- -- 425.8/455.9 MB 7.0 MB/s eta 0:00:05\n", " ------------------------------------- -- 426.1/455.9 MB 7.0 MB/s eta 0:00:05\n", " ------------------------------------- -- 426.5/455.9 MB 7.1 MB/s eta 0:00:05\n", " ------------------------------------- -- 426.7/455.9 MB 7.0 MB/s eta 0:00:05\n", " ------------------------------------- -- 426.8/455.9 MB 7.0 MB/s eta 0:00:05\n", " ------------------------------------- -- 427.2/455.9 MB 6.8 MB/s eta 0:00:05\n", " ------------------------------------- -- 427.6/455.9 MB 7.0 MB/s eta 0:00:05\n", " ------------------------------------- -- 427.8/455.9 MB 6.9 MB/s eta 0:00:05\n", " ------------------------------------- -- 428.0/455.9 MB 6.9 MB/s eta 0:00:05\n", " ------------------------------------- -- 428.4/455.9 MB 6.8 MB/s eta 0:00:05\n", " ------------------------------------- -- 428.7/455.9 MB 6.8 MB/s eta 0:00:04\n", " ------------------------------------- -- 429.2/455.9 MB 6.7 MB/s eta 0:00:04\n", " ------------------------------------- -- 429.7/455.9 MB 6.9 MB/s eta 0:00:04\n", " ------------------------------------- -- 430.1/455.9 MB 6.7 MB/s eta 0:00:04\n", " ------------------------------------- -- 430.5/455.9 MB 6.8 MB/s eta 0:00:04\n", " ------------------------------------- -- 430.9/455.9 MB 6.8 MB/s eta 0:00:04\n", " ------------------------------------- -- 431.2/455.9 MB 6.7 MB/s eta 0:00:04\n", " ------------------------------------- -- 431.4/455.9 MB 6.7 MB/s eta 0:00:04\n", " ------------------------------------- -- 431.6/455.9 MB 6.6 MB/s eta 0:00:04\n", " ------------------------------------- -- 432.0/455.9 MB 6.6 MB/s eta 0:00:04\n", " ------------------------------------- -- 432.3/455.9 MB 6.6 MB/s eta 0:00:04\n", " ------------------------------------- -- 432.7/455.9 MB 6.7 MB/s eta 0:00:04\n", " ------------------------------------- -- 433.0/455.9 MB 6.5 MB/s eta 0:00:04\n", " -------------------------------------- - 433.4/455.9 MB 6.6 MB/s eta 0:00:04\n", " -------------------------------------- - 433.6/455.9 MB 6.6 MB/s eta 0:00:04\n", " -------------------------------------- - 434.0/455.9 MB 6.6 MB/s eta 0:00:04\n", " -------------------------------------- - 434.2/455.9 MB 6.5 MB/s eta 0:00:04\n", " -------------------------------------- - 434.6/455.9 MB 6.7 MB/s eta 0:00:04\n", " -------------------------------------- - 434.9/455.9 MB 6.5 MB/s eta 0:00:04\n", " -------------------------------------- - 435.3/455.9 MB 6.5 MB/s eta 0:00:04\n", " -------------------------------------- - 435.7/455.9 MB 6.5 MB/s eta 0:00:04\n", " -------------------------------------- - 436.1/455.9 MB 6.5 MB/s eta 0:00:04\n", " -------------------------------------- - 436.6/455.9 MB 6.6 MB/s eta 0:00:03\n", " -------------------------------------- - 437.1/455.9 MB 6.9 MB/s eta 0:00:03\n", " -------------------------------------- - 437.5/455.9 MB 6.7 MB/s eta 0:00:03\n", " -------------------------------------- - 437.9/455.9 MB 6.7 MB/s eta 0:00:03\n", " -------------------------------------- - 438.3/455.9 MB 6.8 MB/s eta 0:00:03\n", " -------------------------------------- - 438.6/455.9 MB 6.7 MB/s eta 0:00:03\n", " -------------------------------------- - 439.1/455.9 MB 6.8 MB/s eta 0:00:03\n", " -------------------------------------- - 439.5/455.9 MB 6.8 MB/s eta 0:00:03\n", " -------------------------------------- - 439.9/455.9 MB 6.7 MB/s eta 0:00:03\n", " -------------------------------------- - 440.4/455.9 MB 6.8 MB/s eta 0:00:03\n", " -------------------------------------- - 440.7/455.9 MB 6.6 MB/s eta 0:00:03\n", " -------------------------------------- - 440.9/455.9 MB 6.7 MB/s eta 0:00:03\n", " -------------------------------------- - 441.3/455.9 MB 6.6 MB/s eta 0:00:03\n", " -------------------------------------- - 441.7/455.9 MB 6.7 MB/s eta 0:00:03\n", " -------------------------------------- - 442.0/455.9 MB 6.8 MB/s eta 0:00:03\n", " -------------------------------------- - 442.2/455.9 MB 6.6 MB/s eta 0:00:03\n", " -------------------------------------- - 442.6/455.9 MB 6.6 MB/s eta 0:00:03\n", " -------------------------------------- - 443.2/455.9 MB 6.7 MB/s eta 0:00:02\n", " -------------------------------------- - 443.4/455.9 MB 6.7 MB/s eta 0:00:02\n", " -------------------------------------- - 443.9/455.9 MB 6.7 MB/s eta 0:00:02\n", " -------------------------------------- - 444.1/455.9 MB 6.7 MB/s eta 0:00:02\n", " --------------------------------------- 444.7/455.9 MB 6.8 MB/s eta 0:00:02\n", " --------------------------------------- 445.2/455.9 MB 6.8 MB/s eta 0:00:02\n", " --------------------------------------- 445.6/455.9 MB 6.8 MB/s eta 0:00:02\n", " --------------------------------------- 446.0/455.9 MB 6.8 MB/s eta 0:00:02\n", " --------------------------------------- 446.5/455.9 MB 6.9 MB/s eta 0:00:02\n", " --------------------------------------- 447.0/455.9 MB 6.9 MB/s eta 0:00:02\n", " --------------------------------------- 447.5/455.9 MB 7.0 MB/s eta 0:00:02\n", " --------------------------------------- 448.1/455.9 MB 7.0 MB/s eta 0:00:02\n", " --------------------------------------- 448.4/455.9 MB 7.0 MB/s eta 0:00:02\n", " --------------------------------------- 448.8/455.9 MB 7.3 MB/s eta 0:00:01\n", " --------------------------------------- 449.1/455.9 MB 7.1 MB/s eta 0:00:01\n", " --------------------------------------- 449.6/455.9 MB 7.3 MB/s eta 0:00:01\n", " --------------------------------------- 449.9/455.9 MB 7.2 MB/s eta 0:00:01\n", " --------------------------------------- 450.2/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 450.6/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 451.0/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 451.4/455.9 MB 7.7 MB/s eta 0:00:01\n", " --------------------------------------- 451.9/455.9 MB 7.8 MB/s eta 0:00:01\n", " --------------------------------------- 452.1/455.9 MB 7.6 MB/s eta 0:00:01\n", " --------------------------------------- 452.5/455.9 MB 8.0 MB/s eta 0:00:01\n", " --------------------------------------- 453.0/455.9 MB 8.0 MB/s eta 0:00:01\n", " --------------------------------------- 453.3/455.9 MB 7.9 MB/s eta 0:00:01\n", " --------------------------------------- 453.7/455.9 MB 7.8 MB/s eta 0:00:01\n", " --------------------------------------- 454.1/455.9 MB 7.7 MB/s eta 0:00:01\n", " --------------------------------------- 454.6/455.9 MB 7.7 MB/s eta 0:00:01\n", " --------------------------------------- 454.9/455.9 MB 7.6 MB/s eta 0:00:01\n", " --------------------------------------- 455.3/455.9 MB 7.6 MB/s eta 0:00:01\n", " --------------------------------------- 455.8/455.9 MB 7.6 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " --------------------------------------- 455.9/455.9 MB 7.4 MB/s eta 0:00:01\n", " ---------------------------------------- 455.9/455.9 MB 1.6 MB/s eta 0:00:00\n", "Downloading tensorflow_hub-0.16.1-py2.py3-none-any.whl (30 kB)\n", "Downloading tensorflow_model_optimization-0.8.0-py2.py3-none-any.whl (242 kB)\n", " ---------------------------------------- 0.0/242.5 kB ? eta -:--:--\n", " -------------------------------------- - 235.5/242.5 kB 7.3 MB/s eta 0:00:01\n", " ---------------------------------------- 242.5/242.5 kB 4.9 MB/s eta 0:00:00\n", "Downloading tensorflow_text-2.10.0-cp38-cp38-win_amd64.whl (5.0 MB)\n", " ---------------------------------------- 0.0/5.0 MB ? eta -:--:--\n", " - -------------------------------------- 0.2/5.0 MB 5.9 MB/s eta 0:00:01\n", " -- ------------------------------------- 0.3/5.0 MB 3.8 MB/s eta 0:00:02\n", " --- ------------------------------------ 0.4/5.0 MB 2.7 MB/s eta 0:00:02\n", " ----- ---------------------------------- 0.7/5.0 MB 3.6 MB/s eta 0:00:02\n", " ------- -------------------------------- 0.9/5.0 MB 3.6 MB/s eta 0:00:02\n", " ------- -------------------------------- 0.9/5.0 MB 3.7 MB/s eta 0:00:02\n", " -------- ------------------------------- 1.0/5.0 MB 2.9 MB/s eta 0:00:02\n", " --------- ------------------------------ 1.2/5.0 MB 3.1 MB/s eta 0:00:02\n", " ---------- ----------------------------- 1.3/5.0 MB 2.9 MB/s eta 0:00:02\n", " ----------- ---------------------------- 1.5/5.0 MB 3.0 MB/s eta 0:00:02\n", " ------------ --------------------------- 1.6/5.0 MB 3.0 MB/s eta 0:00:02\n", " -------------- ------------------------- 1.8/5.0 MB 3.2 MB/s eta 0:00:01\n", " -------------- ------------------------- 1.9/5.0 MB 3.2 MB/s eta 0:00:01\n", " --------------- ------------------------ 1.9/5.0 MB 3.0 MB/s eta 0:00:02\n", " ----------------- ---------------------- 2.1/5.0 MB 3.0 MB/s eta 0:00:01\n", " ----------------- ---------------------- 2.2/5.0 MB 3.0 MB/s eta 0:00:01\n", " ------------------ --------------------- 2.3/5.0 MB 2.9 MB/s eta 0:00:01\n", " ------------------- -------------------- 2.4/5.0 MB 2.9 MB/s eta 0:00:01\n", " -------------------- ------------------- 2.5/5.0 MB 2.8 MB/s eta 0:00:01\n", " --------------------- ------------------ 2.6/5.0 MB 2.8 MB/s eta 0:00:01\n", " --------------------- ------------------ 2.6/5.0 MB 2.8 MB/s eta 0:00:01\n", " --------------------- ------------------ 2.6/5.0 MB 2.8 MB/s eta 0:00:01\n", " --------------------- ------------------ 2.7/5.0 MB 2.5 MB/s eta 0:00:01\n", " --------------------- ------------------ 2.7/5.0 MB 2.5 MB/s eta 0:00:01\n", " --------------------- ------------------ 2.7/5.0 MB 2.5 MB/s eta 0:00:01\n", " --------------------- ------------------ 2.7/5.0 MB 2.2 MB/s eta 0:00:02\n", " ---------------------- ----------------- 2.8/5.0 MB 2.2 MB/s eta 0:00:01\n", " ---------------------- ----------------- 2.8/5.0 MB 2.2 MB/s eta 0:00:01\n", " ----------------------- ---------------- 2.9/5.0 MB 2.1 MB/s eta 0:00:01\n", " ----------------------- ---------------- 2.9/5.0 MB 2.1 MB/s eta 0:00:01\n", " ------------------------ --------------- 3.0/5.0 MB 2.0 MB/s eta 0:00:01\n", " ------------------------ --------------- 3.1/5.0 MB 2.0 MB/s eta 0:00:01\n", " ------------------------ --------------- 3.1/5.0 MB 2.0 MB/s eta 0:00:01\n", " ------------------------- -------------- 3.2/5.0 MB 1.9 MB/s eta 0:00:01\n", " -------------------------- ------------- 3.3/5.0 MB 1.9 MB/s eta 0:00:01\n", " --------------------------- ------------ 3.4/5.0 MB 1.9 MB/s eta 0:00:01\n", " --------------------------- ------------ 3.4/5.0 MB 1.9 MB/s eta 0:00:01\n", " ---------------------------- ----------- 3.6/5.0 MB 1.9 MB/s eta 0:00:01\n", " ----------------------------- ---------- 3.7/5.0 MB 1.9 MB/s eta 0:00:01\n", " ------------------------------ --------- 3.8/5.0 MB 1.9 MB/s eta 0:00:01\n", " ------------------------------ --------- 3.9/5.0 MB 1.8 MB/s eta 0:00:01\n", " ------------------------------- -------- 3.9/5.0 MB 1.8 MB/s eta 0:00:01\n", " -------------------------------- ------- 4.0/5.0 MB 1.8 MB/s eta 0:00:01\n", " -------------------------------- ------- 4.1/5.0 MB 1.8 MB/s eta 0:00:01\n", " -------------------------------- ------- 4.1/5.0 MB 1.8 MB/s eta 0:00:01\n", " -------------------------------- ------- 4.1/5.0 MB 1.8 MB/s eta 0:00:01\n", " ----------------------------------- ---- 4.4/5.0 MB 1.8 MB/s eta 0:00:01\n", " ----------------------------------- ---- 4.5/5.0 MB 1.8 MB/s eta 0:00:01\n", " ----------------------------------- ---- 4.5/5.0 MB 1.8 MB/s eta 0:00:01\n", " ----------------------------------- ---- 4.5/5.0 MB 1.8 MB/s eta 0:00:01\n", " ------------------------------------ --- 4.5/5.0 MB 1.7 MB/s eta 0:00:01\n", " ------------------------------------ --- 4.5/5.0 MB 1.7 MB/s eta 0:00:01\n", " ------------------------------------ --- 4.5/5.0 MB 1.7 MB/s eta 0:00:01\n", " ------------------------------------ --- 4.6/5.0 MB 1.7 MB/s eta 0:00:01\n", " ------------------------------------- -- 4.7/5.0 MB 1.7 MB/s eta 0:00:01\n", " ------------------------------------- -- 4.7/5.0 MB 1.6 MB/s eta 0:00:01\n", " ------------------------------------- -- 4.8/5.0 MB 1.6 MB/s eta 0:00:01\n", " -------------------------------------- - 4.8/5.0 MB 1.6 MB/s eta 0:00:01\n", " --------------------------------------- 5.0/5.0 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 5.0/5.0 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 5.0/5.0 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 5.0/5.0 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 5.0/5.0 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 5.0/5.0 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 5.0/5.0 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 5.0/5.0 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 5.0/5.0 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 5.0/5.0 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 5.0/5.0 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 5.0/5.0 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------------- 5.0/5.0 MB 1.7 MB/s eta 0:00:01\n", " ---------------------------------------- 5.0/5.0 MB 1.4 MB/s eta 0:00:00\n", "Downloading Cython-3.0.10-cp38-cp38-win_amd64.whl (2.8 MB)\n", " ---------------------------------------- 0.0/2.8 MB ? eta -:--:--\n", " -- ------------------------------------- 0.2/2.8 MB 4.2 MB/s eta 0:00:01\n", " ---- ----------------------------------- 0.3/2.8 MB 3.6 MB/s eta 0:00:01\n", " ------- -------------------------------- 0.5/2.8 MB 3.9 MB/s eta 0:00:01\n", " ------- -------------------------------- 0.5/2.8 MB 3.1 MB/s eta 0:00:01\n", " ---------- ----------------------------- 0.7/2.8 MB 3.1 MB/s eta 0:00:01\n", " ------------- -------------------------- 0.9/2.8 MB 3.5 MB/s eta 0:00:01\n", " ---------------- ----------------------- 1.1/2.8 MB 3.4 MB/s eta 0:00:01\n", " ------------------ --------------------- 1.3/2.8 MB 3.4 MB/s eta 0:00:01\n", " -------------------- ------------------- 1.4/2.8 MB 3.1 MB/s eta 0:00:01\n", " ---------------------- ----------------- 1.6/2.8 MB 3.1 MB/s eta 0:00:01\n", " ---------------------- ----------------- 1.6/2.8 MB 3.1 MB/s eta 0:00:01\n", " ------------------------ --------------- 1.7/2.8 MB 2.7 MB/s eta 0:00:01\n", " -------------------------- ------------- 1.8/2.8 MB 2.6 MB/s eta 0:00:01\n", " -------------------------- ------------- 1.8/2.8 MB 2.5 MB/s eta 0:00:01\n", " -------------------------- ------------- 1.8/2.8 MB 2.5 MB/s eta 0:00:01\n", " --------------------------- ------------ 1.9/2.8 MB 2.3 MB/s eta 0:00:01\n", " ---------------------------- ----------- 2.0/2.8 MB 2.3 MB/s eta 0:00:01\n", " ----------------------------- ---------- 2.0/2.8 MB 2.2 MB/s eta 0:00:01\n", " ----------------------------- ---------- 2.0/2.8 MB 2.2 MB/s eta 0:00:01\n", " ----------------------------- ---------- 2.0/2.8 MB 2.1 MB/s eta 0:00:01\n", " ------------------------------ --------- 2.1/2.8 MB 2.0 MB/s eta 0:00:01\n", " ------------------------------- -------- 2.2/2.8 MB 2.0 MB/s eta 0:00:01\n", " ------------------------------- -------- 2.2/2.8 MB 1.9 MB/s eta 0:00:01\n", " ------------------------------- -------- 2.2/2.8 MB 1.9 MB/s eta 0:00:01\n", " ------------------------------- -------- 2.2/2.8 MB 1.9 MB/s eta 0:00:01\n", " -------------------------------- ------- 2.3/2.8 MB 1.8 MB/s eta 0:00:01\n", " ---------------------------------- ----- 2.4/2.8 MB 1.8 MB/s eta 0:00:01\n", " ----------------------------------- ---- 2.5/2.8 MB 1.8 MB/s eta 0:00:01\n", " -------------------------------------- - 2.7/2.8 MB 1.8 MB/s eta 0:00:01\n", " ---------------------------------------- 2.8/2.8 MB 1.8 MB/s eta 0:00:00\n", "Downloading gin_config-0.5.0-py3-none-any.whl (61 kB)\n", " ---------------------------------------- 0.0/61.3 kB ? eta -:--:--\n", " ---------------------------------------- 61.3/61.3 kB 1.6 MB/s eta 0:00:00\n", "Downloading immutabledict-4.2.0-py3-none-any.whl (4.7 kB)\n", "Downloading matplotlib-3.7.5-cp38-cp38-win_amd64.whl (7.5 MB)\n", " ---------------------------------------- 0.0/7.5 MB ? eta -:--:--\n", " ---------------------------------------- 0.1/7.5 MB 4.5 MB/s eta 0:00:02\n", " ---------------------------------------- 0.1/7.5 MB 4.5 MB/s eta 0:00:02\n", " --------------------------------------- 0.1/7.5 MB 798.9 kB/s eta 0:00:10\n", " - -------------------------------------- 0.3/7.5 MB 1.4 MB/s eta 0:00:06\n", " - -------------------------------------- 0.3/7.5 MB 1.4 MB/s eta 0:00:05\n", " - -------------------------------------- 0.3/7.5 MB 1.4 MB/s eta 0:00:05\n", " - -------------------------------------- 0.3/7.5 MB 1.4 MB/s eta 0:00:05\n", " -- ------------------------------------- 0.5/7.5 MB 1.2 MB/s eta 0:00:06\n", " -- ------------------------------------- 0.5/7.5 MB 1.2 MB/s eta 0:00:06\n", " --- ------------------------------------ 0.6/7.5 MB 1.4 MB/s eta 0:00:06\n", " ---- ----------------------------------- 0.9/7.5 MB 1.6 MB/s eta 0:00:05\n", " ----- ---------------------------------- 1.0/7.5 MB 1.7 MB/s eta 0:00:04\n", " ------ --------------------------------- 1.2/7.5 MB 2.0 MB/s eta 0:00:04\n", " ------- -------------------------------- 1.5/7.5 MB 2.2 MB/s eta 0:00:03\n", " -------- ------------------------------- 1.7/7.5 MB 2.4 MB/s eta 0:00:03\n", " --------- ------------------------------ 1.8/7.5 MB 2.5 MB/s eta 0:00:03\n", " ----------- ---------------------------- 2.1/7.5 MB 2.7 MB/s eta 0:00:03\n", " ------------ --------------------------- 2.4/7.5 MB 2.8 MB/s eta 0:00:02\n", " ------------- -------------------------- 2.6/7.5 MB 2.9 MB/s eta 0:00:02\n", " --------------- ------------------------ 3.0/7.5 MB 3.1 MB/s eta 0:00:02\n", " ----------------- ---------------------- 3.3/7.5 MB 3.3 MB/s eta 0:00:02\n", " ------------------- -------------------- 3.6/7.5 MB 3.4 MB/s eta 0:00:02\n", " -------------------- ------------------- 3.8/7.5 MB 3.5 MB/s eta 0:00:02\n", " --------------------- ------------------ 4.0/7.5 MB 3.4 MB/s eta 0:00:02\n", " ---------------------- ----------------- 4.2/7.5 MB 3.5 MB/s eta 0:00:01\n", " ----------------------- ---------------- 4.4/7.5 MB 3.5 MB/s eta 0:00:01\n", " ------------------------ --------------- 4.7/7.5 MB 3.6 MB/s eta 0:00:01\n", " -------------------------- ------------- 5.0/7.5 MB 3.7 MB/s eta 0:00:01\n", " --------------------------- ------------ 5.2/7.5 MB 3.8 MB/s eta 0:00:01\n", " ----------------------------- ---------- 5.5/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------ --------- 5.7/7.5 MB 1.7 MB/s eta 0:00:02\n", " ------------------------------ --------- 5.7/7.5 MB 1.7 MB/s eta 0:00:02\n", " ------------------------------ --------- 5.7/7.5 MB 1.7 MB/s eta 0:00:02\n", " ------------------------------ --------- 5.7/7.5 MB 1.7 MB/s eta 0:00:02\n", " ------------------------------- -------- 5.9/7.5 MB 1.7 MB/s eta 0:00:01\n", " -------------------------------- ------- 6.1/7.5 MB 1.7 MB/s eta 0:00:01\n", " --------------------------------- ------ 6.3/7.5 MB 1.8 MB/s eta 0:00:01\n", " ---------------------------------- ----- 6.5/7.5 MB 1.8 MB/s eta 0:00:01\n", " ----------------------------------- ---- 6.6/7.5 MB 1.8 MB/s eta 0:00:01\n", " ----------------------------------- ---- 6.7/7.5 MB 1.8 MB/s eta 0:00:01\n", " ------------------------------------- -- 7.0/7.5 MB 1.9 MB/s eta 0:00:01\n", " -------------------------------------- - 7.3/7.5 MB 1.9 MB/s eta 0:00:01\n", " --------------------------------------- 7.5/7.5 MB 1.9 MB/s eta 0:00:01\n", " --------------------------------------- 7.5/7.5 MB 1.9 MB/s eta 0:00:01\n", " ---------------------------------------- 7.5/7.5 MB 1.9 MB/s eta 0:00:00\n", "Downloading pillow-10.3.0-cp38-cp38-win_amd64.whl (2.5 MB)\n", " ---------------------------------------- 0.0/2.5 MB ? eta -:--:--\n", " --------------------------------------- 0.1/2.5 MB 3.4 MB/s eta 0:00:01\n", " --- ------------------------------------ 0.2/2.5 MB 2.5 MB/s eta 0:00:01\n", " ---- ----------------------------------- 0.3/2.5 MB 2.2 MB/s eta 0:00:02\n", " ------- -------------------------------- 0.5/2.5 MB 2.6 MB/s eta 0:00:01\n", " ------- -------------------------------- 0.5/2.5 MB 2.6 MB/s eta 0:00:01\n", " -------- ------------------------------- 0.5/2.5 MB 1.7 MB/s eta 0:00:02\n", " ----------- ---------------------------- 0.7/2.5 MB 2.0 MB/s eta 0:00:01\n", " ------------------ --------------------- 1.2/2.5 MB 2.7 MB/s eta 0:00:01\n", " ----------------------- ---------------- 1.5/2.5 MB 3.0 MB/s eta 0:00:01\n", " ---------------------------- ----------- 1.8/2.5 MB 3.2 MB/s eta 0:00:01\n", " ---------------------------------- ----- 2.2/2.5 MB 3.5 MB/s eta 0:00:01\n", " ------------------------------------- -- 2.3/2.5 MB 3.6 MB/s eta 0:00:01\n", " ------------------------------------- -- 2.4/2.5 MB 3.1 MB/s eta 0:00:01\n", " --------------------------------------- 2.5/2.5 MB 3.2 MB/s eta 0:00:01\n", " ---------------------------------------- 2.5/2.5 MB 3.0 MB/s eta 0:00:00\n", "Downloading oauth2client-4.1.3-py2.py3-none-any.whl (98 kB)\n", " ---------------------------------------- 0.0/98.2 kB ? eta -:--:--\n", " ---------------------------------------- 98.2/98.2 kB 1.9 MB/s eta 0:00:00\n", "Downloading opencv_python_headless-4.9.0.80-cp37-abi3-win_amd64.whl (38.5 MB)\n", " ---------------------------------------- 0.0/38.5 MB ? eta -:--:--\n", " --------------------------------------- 0.5/38.5 MB 11.1 MB/s eta 0:00:04\n", " --------------------------------------- 0.8/38.5 MB 7.3 MB/s eta 0:00:06\n", " - -------------------------------------- 1.1/38.5 MB 6.6 MB/s eta 0:00:06\n", " - -------------------------------------- 1.4/38.5 MB 6.1 MB/s eta 0:00:07\n", " - -------------------------------------- 1.6/38.5 MB 5.9 MB/s eta 0:00:07\n", " - -------------------------------------- 1.6/38.5 MB 5.1 MB/s eta 0:00:08\n", " - -------------------------------------- 1.9/38.5 MB 5.2 MB/s eta 0:00:08\n", " -- ------------------------------------- 2.2/38.5 MB 5.4 MB/s eta 0:00:07\n", " -- ------------------------------------- 2.6/38.5 MB 5.3 MB/s eta 0:00:07\n", " --- ------------------------------------ 3.0/38.5 MB 5.5 MB/s eta 0:00:07\n", " --- ------------------------------------ 3.4/38.5 MB 5.7 MB/s eta 0:00:07\n", " --- ------------------------------------ 3.8/38.5 MB 5.7 MB/s eta 0:00:07\n", " ---- ----------------------------------- 4.2/38.5 MB 5.8 MB/s eta 0:00:06\n", " ---- ----------------------------------- 4.2/38.5 MB 5.9 MB/s eta 0:00:06\n", " ---- ----------------------------------- 4.4/38.5 MB 5.5 MB/s eta 0:00:07\n", " ---- ----------------------------------- 4.8/38.5 MB 5.6 MB/s eta 0:00:07\n", " ----- ---------------------------------- 5.2/38.5 MB 5.6 MB/s eta 0:00:06\n", " ----- ---------------------------------- 5.5/38.5 MB 5.7 MB/s eta 0:00:06\n", " ----- ---------------------------------- 5.6/38.5 MB 5.7 MB/s eta 0:00:06\n", " ----- ---------------------------------- 5.6/38.5 MB 5.7 MB/s eta 0:00:06\n", " ------ --------------------------------- 5.9/38.5 MB 5.3 MB/s eta 0:00:07\n", " ------ --------------------------------- 6.1/38.5 MB 5.2 MB/s eta 0:00:07\n", " ------ --------------------------------- 6.4/38.5 MB 5.1 MB/s eta 0:00:07\n", " ------ --------------------------------- 6.6/38.5 MB 5.1 MB/s eta 0:00:07\n", " ------- -------------------------------- 6.8/38.5 MB 5.0 MB/s eta 0:00:07\n", " ------- -------------------------------- 7.1/38.5 MB 5.0 MB/s eta 0:00:07\n", " ------- -------------------------------- 7.4/38.5 MB 5.0 MB/s eta 0:00:07\n", " -------- ------------------------------- 7.7/38.5 MB 5.0 MB/s eta 0:00:07\n", " -------- ------------------------------- 7.9/38.5 MB 4.9 MB/s eta 0:00:07\n", " -------- ------------------------------- 8.0/38.5 MB 4.9 MB/s eta 0:00:07\n", " -------- ------------------------------- 8.0/38.5 MB 4.7 MB/s eta 0:00:07\n", " -------- ------------------------------- 8.2/38.5 MB 4.7 MB/s eta 0:00:07\n", " -------- ------------------------------- 8.4/38.5 MB 4.7 MB/s eta 0:00:07\n", " --------- ------------------------------ 8.7/38.5 MB 4.7 MB/s eta 0:00:07\n", " --------- ------------------------------ 8.9/38.5 MB 4.7 MB/s eta 0:00:07\n", " --------- ------------------------------ 9.1/38.5 MB 4.7 MB/s eta 0:00:07\n", " --------- ------------------------------ 9.3/38.5 MB 4.6 MB/s eta 0:00:07\n", " --------- ------------------------------ 9.4/38.5 MB 4.6 MB/s eta 0:00:07\n", " ---------- ----------------------------- 9.7/38.5 MB 4.7 MB/s eta 0:00:07\n", " ---------- ----------------------------- 9.9/38.5 MB 4.6 MB/s eta 0:00:07\n", " ---------- ----------------------------- 10.1/38.5 MB 4.6 MB/s eta 0:00:07\n", " ---------- ----------------------------- 10.2/38.5 MB 4.6 MB/s eta 0:00:07\n", " ---------- ----------------------------- 10.5/38.5 MB 4.5 MB/s eta 0:00:07\n", " ----------- ---------------------------- 10.8/38.5 MB 4.5 MB/s eta 0:00:07\n", " ----------- ---------------------------- 11.1/38.5 MB 4.5 MB/s eta 0:00:07\n", " ----------- ---------------------------- 11.4/38.5 MB 4.6 MB/s eta 0:00:06\n", " ------------ --------------------------- 11.8/38.5 MB 4.5 MB/s eta 0:00:06\n", " ------------ --------------------------- 12.2/38.5 MB 4.7 MB/s eta 0:00:06\n", " ------------ --------------------------- 12.5/38.5 MB 4.7 MB/s eta 0:00:06\n", " ------------- -------------------------- 12.9/38.5 MB 4.7 MB/s eta 0:00:06\n", " ------------- -------------------------- 13.2/38.5 MB 4.6 MB/s eta 0:00:06\n", " -------------- ------------------------- 13.6/38.5 MB 4.6 MB/s eta 0:00:06\n", " -------------- ------------------------- 14.0/38.5 MB 4.6 MB/s eta 0:00:06\n", " -------------- ------------------------- 14.2/38.5 MB 4.6 MB/s eta 0:00:06\n", " --------------- ------------------------ 14.5/38.5 MB 4.7 MB/s eta 0:00:06\n", " --------------- ------------------------ 14.9/38.5 MB 4.7 MB/s eta 0:00:06\n", " --------------- ------------------------ 15.3/38.5 MB 4.7 MB/s eta 0:00:05\n", " ---------------- ----------------------- 15.7/38.5 MB 4.7 MB/s eta 0:00:05\n", " ---------------- ----------------------- 16.2/38.5 MB 5.0 MB/s eta 0:00:05\n", " ---------------- ----------------------- 16.3/38.5 MB 4.9 MB/s eta 0:00:05\n", " ----------------- ---------------------- 16.6/38.5 MB 5.0 MB/s eta 0:00:05\n", " ----------------- ---------------------- 16.9/38.5 MB 5.0 MB/s eta 0:00:05\n", " ----------------- ---------------------- 17.0/38.5 MB 5.0 MB/s eta 0:00:05\n", " ------------------ --------------------- 17.4/38.5 MB 5.1 MB/s eta 0:00:05\n", " ------------------ --------------------- 17.7/38.5 MB 5.2 MB/s eta 0:00:05\n", " ------------------ --------------------- 17.8/38.5 MB 5.1 MB/s eta 0:00:05\n", " ------------------ --------------------- 17.9/38.5 MB 5.0 MB/s eta 0:00:05\n", " ------------------ --------------------- 18.1/38.5 MB 5.0 MB/s eta 0:00:05\n", " ------------------- -------------------- 18.4/38.5 MB 5.2 MB/s eta 0:00:04\n", " ------------------- -------------------- 18.8/38.5 MB 5.3 MB/s eta 0:00:04\n", " ------------------- -------------------- 18.8/38.5 MB 5.2 MB/s eta 0:00:04\n", " ------------------- -------------------- 19.3/38.5 MB 5.2 MB/s eta 0:00:04\n", " -------------------- ------------------- 19.6/38.5 MB 5.3 MB/s eta 0:00:04\n", " -------------------- ------------------- 20.1/38.5 MB 5.4 MB/s eta 0:00:04\n", " --------------------- ------------------ 20.4/38.5 MB 5.5 MB/s eta 0:00:04\n", " --------------------- ------------------ 20.8/38.5 MB 5.6 MB/s eta 0:00:04\n", " --------------------- ------------------ 20.8/38.5 MB 5.5 MB/s eta 0:00:04\n", " --------------------- ------------------ 20.9/38.5 MB 5.4 MB/s eta 0:00:04\n", " --------------------- ------------------ 21.0/38.5 MB 5.3 MB/s eta 0:00:04\n", " --------------------- ------------------ 21.0/38.5 MB 5.2 MB/s eta 0:00:04\n", " --------------------- ------------------ 21.1/38.5 MB 5.0 MB/s eta 0:00:04\n", " ---------------------- ----------------- 21.4/38.5 MB 5.0 MB/s eta 0:00:04\n", " ---------------------- ----------------- 21.6/38.5 MB 5.0 MB/s eta 0:00:04\n", " ---------------------- ----------------- 21.8/38.5 MB 4.9 MB/s eta 0:00:04\n", " ---------------------- ----------------- 22.1/38.5 MB 4.9 MB/s eta 0:00:04\n", " ----------------------- ---------------- 22.5/38.5 MB 4.9 MB/s eta 0:00:04\n", " ----------------------- ---------------- 22.7/38.5 MB 5.0 MB/s eta 0:00:04\n", " ----------------------- ---------------- 22.9/38.5 MB 4.9 MB/s eta 0:00:04\n", " ----------------------- ---------------- 22.9/38.5 MB 4.9 MB/s eta 0:00:04\n", " ------------------------ --------------- 23.2/38.5 MB 4.8 MB/s eta 0:00:04\n", " ------------------------ --------------- 23.4/38.5 MB 4.8 MB/s eta 0:00:04\n", " ------------------------ --------------- 23.7/38.5 MB 4.7 MB/s eta 0:00:04\n", " ------------------------- -------------- 24.2/38.5 MB 4.7 MB/s eta 0:00:04\n", " ------------------------- -------------- 24.5/38.5 MB 4.8 MB/s eta 0:00:03\n", " ------------------------- -------------- 24.9/38.5 MB 4.8 MB/s eta 0:00:03\n", " -------------------------- ------------- 25.3/38.5 MB 4.8 MB/s eta 0:00:03\n", " -------------------------- ------------- 25.6/38.5 MB 4.7 MB/s eta 0:00:03\n", " -------------------------- ------------- 25.9/38.5 MB 4.7 MB/s eta 0:00:03\n", " --------------------------- ------------ 26.3/38.5 MB 4.7 MB/s eta 0:00:03\n", " --------------------------- ------------ 26.5/38.5 MB 4.7 MB/s eta 0:00:03\n", " --------------------------- ------------ 26.7/38.5 MB 4.7 MB/s eta 0:00:03\n", " --------------------------- ------------ 26.8/38.5 MB 4.5 MB/s eta 0:00:03\n", " --------------------------- ------------ 26.9/38.5 MB 4.5 MB/s eta 0:00:03\n", " ---------------------------- ----------- 27.2/38.5 MB 4.5 MB/s eta 0:00:03\n", " ---------------------------- ----------- 27.5/38.5 MB 4.4 MB/s eta 0:00:03\n", " ----------------------------- ---------- 28.0/38.5 MB 4.5 MB/s eta 0:00:03\n", " ----------------------------- ---------- 28.0/38.5 MB 4.4 MB/s eta 0:00:03\n", " ----------------------------- ---------- 28.3/38.5 MB 4.5 MB/s eta 0:00:03\n", " ----------------------------- ---------- 28.6/38.5 MB 4.5 MB/s eta 0:00:03\n", " ----------------------------- ---------- 28.8/38.5 MB 4.5 MB/s eta 0:00:03\n", " ------------------------------ --------- 29.1/38.5 MB 4.6 MB/s eta 0:00:03\n", " ------------------------------ --------- 29.4/38.5 MB 4.6 MB/s eta 0:00:02\n", " ------------------------------ --------- 29.7/38.5 MB 4.5 MB/s eta 0:00:02\n", " ------------------------------- -------- 29.9/38.5 MB 4.6 MB/s eta 0:00:02\n", " ------------------------------- -------- 30.2/38.5 MB 4.5 MB/s eta 0:00:02\n", " ------------------------------- -------- 30.5/38.5 MB 4.6 MB/s eta 0:00:02\n", " -------------------------------- ------- 31.0/38.5 MB 4.6 MB/s eta 0:00:02\n", " -------------------------------- ------- 31.3/38.5 MB 5.0 MB/s eta 0:00:02\n", " --------------------------------- ------ 31.8/38.5 MB 5.1 MB/s eta 0:00:02\n", " --------------------------------- ------ 31.9/38.5 MB 5.1 MB/s eta 0:00:02\n", " --------------------------------- ------ 32.2/38.5 MB 5.1 MB/s eta 0:00:02\n", " --------------------------------- ------ 32.5/38.5 MB 5.0 MB/s eta 0:00:02\n", " ---------------------------------- ----- 32.8/38.5 MB 5.0 MB/s eta 0:00:02\n", " ---------------------------------- ----- 33.2/38.5 MB 5.2 MB/s eta 0:00:02\n", " ---------------------------------- ----- 33.5/38.5 MB 5.3 MB/s eta 0:00:01\n", " ----------------------------------- ---- 33.9/38.5 MB 5.3 MB/s eta 0:00:01\n", " ----------------------------------- ---- 34.2/38.5 MB 5.4 MB/s eta 0:00:01\n", " ----------------------------------- ---- 34.3/38.5 MB 5.3 MB/s eta 0:00:01\n", " ----------------------------------- ---- 34.4/38.5 MB 5.2 MB/s eta 0:00:01\n", " ----------------------------------- ---- 34.6/38.5 MB 5.1 MB/s eta 0:00:01\n", " ------------------------------------ --- 34.8/38.5 MB 5.1 MB/s eta 0:00:01\n", " ------------------------------------ --- 35.0/38.5 MB 5.1 MB/s eta 0:00:01\n", " ------------------------------------ --- 35.2/38.5 MB 5.1 MB/s eta 0:00:01\n", " ------------------------------------ --- 35.5/38.5 MB 5.1 MB/s eta 0:00:01\n", " ------------------------------------- -- 35.8/38.5 MB 5.1 MB/s eta 0:00:01\n", " ------------------------------------- -- 36.2/38.5 MB 5.1 MB/s eta 0:00:01\n", " ------------------------------------- -- 36.6/38.5 MB 5.1 MB/s eta 0:00:01\n", " -------------------------------------- - 36.8/38.5 MB 5.1 MB/s eta 0:00:01\n", " -------------------------------------- - 37.0/38.5 MB 5.2 MB/s eta 0:00:01\n", " -------------------------------------- - 37.2/38.5 MB 5.2 MB/s eta 0:00:01\n", " -------------------------------------- - 37.5/38.5 MB 5.3 MB/s eta 0:00:01\n", " --------------------------------------- 37.8/38.5 MB 5.3 MB/s eta 0:00:01\n", " --------------------------------------- 38.1/38.5 MB 5.2 MB/s eta 0:00:01\n", " --------------------------------------- 38.5/38.5 MB 5.3 MB/s eta 0:00:01\n", " --------------------------------------- 38.5/38.5 MB 5.3 MB/s eta 0:00:01\n", " --------------------------------------- 38.5/38.5 MB 5.3 MB/s eta 0:00:01\n", " --------------------------------------- 38.5/38.5 MB 5.3 MB/s eta 0:00:01\n", " --------------------------------------- 38.5/38.5 MB 5.3 MB/s eta 0:00:01\n", " --------------------------------------- 38.5/38.5 MB 5.3 MB/s eta 0:00:01\n", " ---------------------------------------- 38.5/38.5 MB 4.7 MB/s eta 0:00:00\n", "Downloading pycocotools-2.0.7-cp38-cp38-win_amd64.whl (85 kB)\n", " ---------------------------------------- 0.0/85.3 kB ? eta -:--:--\n", " -------------------------------------- - 81.9/85.3 kB 2.3 MB/s eta 0:00:01\n", " ---------------------------------------- 85.3/85.3 kB 1.6 MB/s eta 0:00:00\n", "Downloading sentencepiece-0.2.0-cp38-cp38-win_amd64.whl (991 kB)\n", " ---------------------------------------- 0.0/991.7 kB ? eta -:--:--\n", " ----------- ---------------------------- 286.7/991.7 kB 5.9 MB/s eta 0:00:01\n", " -------------------- ------------------- 501.8/991.7 kB 5.2 MB/s eta 0:00:01\n", " ---------------------------- ----------- 716.8/991.7 kB 5.0 MB/s eta 0:00:01\n", " ------------------------------------- -- 942.1/991.7 kB 6.0 MB/s eta 0:00:01\n", " --------------------------------------- 983.0/991.7 kB 5.2 MB/s eta 0:00:01\n", " --------------------------------------- 983.0/991.7 kB 5.2 MB/s eta 0:00:01\n", " ---------------------------------------- 991.7/991.7 kB 3.1 MB/s eta 0:00:00\n", "Downloading tensorflow_addons-0.21.0-cp38-cp38-win_amd64.whl (729 kB)\n", " ---------------------------------------- 0.0/729.9 kB ? eta -:--:--\n", " ------------------------ --------------- 450.6/729.9 kB 9.4 MB/s eta 0:00:01\n", " --------------------------------------- 727.0/729.9 kB 6.6 MB/s eta 0:00:01\n", " ---------------------------------------- 729.9/729.9 kB 5.8 MB/s eta 0:00:00\n", "Downloading tensorflow_datasets-4.9.0-py3-none-any.whl (5.4 MB)\n", " ---------------------------------------- 0.0/5.4 MB ? eta -:--:--\n", " -- ------------------------------------- 0.3/5.4 MB 5.7 MB/s eta 0:00:01\n", " ---- ----------------------------------- 0.7/5.4 MB 5.9 MB/s eta 0:00:01\n", " ------ --------------------------------- 0.9/5.4 MB 5.2 MB/s eta 0:00:01\n", " ------ --------------------------------- 0.9/5.4 MB 3.8 MB/s eta 0:00:02\n", " -------- ------------------------------- 1.1/5.4 MB 3.9 MB/s eta 0:00:02\n", " --------- ------------------------------ 1.3/5.4 MB 3.5 MB/s eta 0:00:02\n", " ----------- ---------------------------- 1.6/5.4 MB 3.8 MB/s eta 0:00:02\n", " ------------- -------------------------- 1.8/5.4 MB 3.9 MB/s eta 0:00:01\n", " -------------- ------------------------- 2.0/5.4 MB 3.9 MB/s eta 0:00:01\n", " ---------------- ----------------------- 2.2/5.4 MB 3.9 MB/s eta 0:00:01\n", " ------------------ --------------------- 2.4/5.4 MB 4.1 MB/s eta 0:00:01\n", " -------------------- ------------------- 2.8/5.4 MB 4.4 MB/s eta 0:00:01\n", " ---------------------- ----------------- 3.0/5.4 MB 4.4 MB/s eta 0:00:01\n", " ----------------------- ---------------- 3.1/5.4 MB 4.2 MB/s eta 0:00:01\n", " -------------------------- ------------- 3.5/5.4 MB 4.4 MB/s eta 0:00:01\n", " ---------------------------- ----------- 3.8/5.4 MB 4.4 MB/s eta 0:00:01\n", " ----------------------------- ---------- 4.0/5.4 MB 4.4 MB/s eta 0:00:01\n", " -------------------------------- ------- 4.4/5.4 MB 4.4 MB/s eta 0:00:01\n", " ---------------------------------- ----- 4.7/5.4 MB 4.5 MB/s eta 0:00:01\n", " ------------------------------------- -- 5.0/5.4 MB 4.5 MB/s eta 0:00:01\n", " --------------------------------------- 5.3/5.4 MB 4.5 MB/s eta 0:00:01\n", " ---------------------------------------- 5.4/5.4 MB 4.4 MB/s eta 0:00:00\n", "Downloading absl_py-1.4.0-py3-none-any.whl (126 kB)\n", " ---------------------------------------- 0.0/126.5 kB ? eta -:--:--\n", " ---------------------------------------- 126.5/126.5 kB 7.8 MB/s eta 0:00:00\n", "Downloading contourpy-1.1.1-cp38-cp38-win_amd64.whl (477 kB)\n", " ---------------------------------------- 0.0/477.9 kB ? eta -:--:--\n", " ----------------------- ---------------- 286.7/477.9 kB 5.9 MB/s eta 0:00:01\n", " --------------------------------------- 471.0/477.9 kB 4.9 MB/s eta 0:00:01\n", " ---------------------------------------- 477.9/477.9 kB 3.3 MB/s eta 0:00:00\n", "Using cached cycler-0.12.1-py3-none-any.whl (8.3 kB)\n", "Downloading dm_tree-0.1.8-cp38-cp38-win_amd64.whl (101 kB)\n", " ---------------------------------------- 0.0/101.4 kB ? eta -:--:--\n", " ---------------------------------------- 101.4/101.4 kB 5.7 MB/s eta 0:00:00\n", "Downloading etils-1.3.0-py3-none-any.whl (126 kB)\n", " ---------------------------------------- 0.0/126.4 kB ? eta -:--:--\n", " ---------------------------------------- 126.4/126.4 kB 3.6 MB/s eta 0:00:00\n", "Downloading flatbuffers-24.3.25-py2.py3-none-any.whl (26 kB)\n", "Downloading fonttools-4.51.0-cp38-cp38-win_amd64.whl (1.5 MB)\n", " ---------------------------------------- 0.0/1.5 MB ? eta -:--:--\n", " -------- ------------------------------- 0.3/1.5 MB 9.3 MB/s eta 0:00:01\n", " ------------- -------------------------- 0.5/1.5 MB 5.1 MB/s eta 0:00:01\n", " --------------------- ------------------ 0.8/1.5 MB 6.6 MB/s eta 0:00:01\n", " ----------------------------- ---------- 1.1/1.5 MB 5.8 MB/s eta 0:00:01\n", " ------------------------------- -------- 1.2/1.5 MB 5.3 MB/s eta 0:00:01\n", " ---------------------------------- ----- 1.3/1.5 MB 4.9 MB/s eta 0:00:01\n", " --------------------------------------- 1.5/1.5 MB 4.6 MB/s eta 0:00:01\n", " ---------------------------------------- 1.5/1.5 MB 4.2 MB/s eta 0:00:00\n", "Downloading google_api_core-2.19.0-py3-none-any.whl (139 kB)\n", " ---------------------------------------- 0.0/139.0 kB ? eta -:--:--\n", " ---------------------------------------- 139.0/139.0 kB 4.2 MB/s eta 0:00:00\n", "Downloading google_auth_httplib2-0.2.0-py2.py3-none-any.whl (9.3 kB)\n", "Downloading httplib2-0.22.0-py3-none-any.whl (96 kB)\n", " ---------------------------------------- 0.0/96.9 kB ? eta -:--:--\n", " ---------------------------------------- 96.9/96.9 kB 2.7 MB/s eta 0:00:00\n", "Downloading keras-2.10.0-py2.py3-none-any.whl (1.7 MB)\n", " ---------------------------------------- 0.0/1.7 MB ? eta -:--:--\n", " ------ --------------------------------- 0.3/1.7 MB 7.9 MB/s eta 0:00:01\n", " ------------- -------------------------- 0.6/1.7 MB 5.0 MB/s eta 0:00:01\n", " -------------------- ------------------- 0.9/1.7 MB 5.0 MB/s eta 0:00:01\n", " ---------------------------- ----------- 1.2/1.7 MB 5.0 MB/s eta 0:00:01\n", " --------------------------------- ------ 1.4/1.7 MB 4.7 MB/s eta 0:00:01\n", " --------------------------------------- 1.7/1.7 MB 4.6 MB/s eta 0:00:01\n", " ---------------------------------------- 1.7/1.7 MB 4.1 MB/s eta 0:00:00\n", "Downloading kiwisolver-1.4.5-cp38-cp38-win_amd64.whl (56 kB)\n", " ---------------------------------------- 0.0/56.2 kB ? eta -:--:--\n", " ---------------------------------------- 56.2/56.2 kB 2.9 MB/s eta 0:00:00\n", "Using cached protobuf-3.19.6-cp38-cp38-win_amd64.whl (896 kB)\n", "Downloading scikit_learn-1.3.2-cp38-cp38-win_amd64.whl (9.3 MB)\n", " ---------------------------------------- 0.0/9.3 MB ? eta -:--:--\n", " - -------------------------------------- 0.3/9.3 MB 5.7 MB/s eta 0:00:02\n", " -- ------------------------------------- 0.6/9.3 MB 5.2 MB/s eta 0:00:02\n", " --- ------------------------------------ 0.8/9.3 MB 4.6 MB/s eta 0:00:02\n", " --- ------------------------------------ 0.9/9.3 MB 4.0 MB/s eta 0:00:03\n", " ---- ----------------------------------- 1.0/9.3 MB 3.8 MB/s eta 0:00:03\n", " ----- ---------------------------------- 1.3/9.3 MB 3.9 MB/s eta 0:00:03\n", " ------ --------------------------------- 1.6/9.3 MB 4.0 MB/s eta 0:00:02\n", " ------- -------------------------------- 1.8/9.3 MB 4.0 MB/s eta 0:00:02\n", " --------- ------------------------------ 2.1/9.3 MB 4.2 MB/s eta 0:00:02\n", " --------- ------------------------------ 2.3/9.3 MB 4.2 MB/s eta 0:00:02\n", " ---------- ----------------------------- 2.5/9.3 MB 4.0 MB/s eta 0:00:02\n", " ----------- ---------------------------- 2.7/9.3 MB 4.2 MB/s eta 0:00:02\n", " ------------ --------------------------- 3.0/9.3 MB 4.1 MB/s eta 0:00:02\n", " ------------- -------------------------- 3.2/9.3 MB 4.2 MB/s eta 0:00:02\n", " --------------- ------------------------ 3.5/9.3 MB 4.3 MB/s eta 0:00:02\n", " ---------------- ----------------------- 3.8/9.3 MB 4.4 MB/s eta 0:00:02\n", " ----------------- ---------------------- 4.1/9.3 MB 4.3 MB/s eta 0:00:02\n", " ------------------ --------------------- 4.3/9.3 MB 4.3 MB/s eta 0:00:02\n", " ------------------- -------------------- 4.5/9.3 MB 4.4 MB/s eta 0:00:02\n", " -------------------- ------------------- 4.7/9.3 MB 4.3 MB/s eta 0:00:02\n", " --------------------- ------------------ 5.0/9.3 MB 4.4 MB/s eta 0:00:01\n", " ----------------------- ---------------- 5.4/9.3 MB 4.6 MB/s eta 0:00:01\n", " ----------------------- ---------------- 5.6/9.3 MB 4.5 MB/s eta 0:00:01\n", " ------------------------- -------------- 5.8/9.3 MB 4.6 MB/s eta 0:00:01\n", " ------------------------- -------------- 6.0/9.3 MB 4.5 MB/s eta 0:00:01\n", " -------------------------- ------------- 6.1/9.3 MB 4.5 MB/s eta 0:00:01\n", " --------------------------- ------------ 6.3/9.3 MB 4.5 MB/s eta 0:00:01\n", " ---------------------------- ----------- 6.6/9.3 MB 4.5 MB/s eta 0:00:01\n", " ------------------------------ --------- 7.0/9.3 MB 4.6 MB/s eta 0:00:01\n", " ------------------------------- -------- 7.3/9.3 MB 4.6 MB/s eta 0:00:01\n", " --------------------------------- ------ 7.7/9.3 MB 4.7 MB/s eta 0:00:01\n", " ---------------------------------- ----- 8.0/9.3 MB 4.6 MB/s eta 0:00:01\n", " ----------------------------------- ---- 8.3/9.3 MB 4.6 MB/s eta 0:00:01\n", " ------------------------------------- -- 8.7/9.3 MB 4.7 MB/s eta 0:00:01\n", " --------------------------------------- 9.1/9.3 MB 4.7 MB/s eta 0:00:01\n", " --------------------------------------- 9.3/9.3 MB 4.8 MB/s eta 0:00:01\n", " ---------------------------------------- 9.3/9.3 MB 4.6 MB/s eta 0:00:00\n", "Downloading tabulate-0.9.0-py3-none-any.whl (35 kB)\n", "Downloading tensorboard-2.10.1-py3-none-any.whl (5.9 MB)\n", " ---------------------------------------- 0.0/5.9 MB ? eta -:--:--\n", " - -------------------------------------- 0.2/5.9 MB 4.1 MB/s eta 0:00:02\n", " --- ------------------------------------ 0.5/5.9 MB 4.3 MB/s eta 0:00:02\n", " ----- ---------------------------------- 0.8/5.9 MB 4.8 MB/s eta 0:00:02\n", " ------- -------------------------------- 1.1/5.9 MB 5.0 MB/s eta 0:00:01\n", " -------- ------------------------------- 1.3/5.9 MB 4.8 MB/s eta 0:00:01\n", " --------- ------------------------------ 1.5/5.9 MB 4.4 MB/s eta 0:00:01\n", " ----------- ---------------------------- 1.6/5.9 MB 4.3 MB/s eta 0:00:01\n", " ------------- -------------------------- 2.0/5.9 MB 4.7 MB/s eta 0:00:01\n", " --------------- ------------------------ 2.3/5.9 MB 4.6 MB/s eta 0:00:01\n", " ---------------- ----------------------- 2.4/5.9 MB 4.6 MB/s eta 0:00:01\n", " ---------------- ----------------------- 2.5/5.9 MB 4.4 MB/s eta 0:00:01\n", " ----------------- ---------------------- 2.6/5.9 MB 4.2 MB/s eta 0:00:01\n", " ----------------- ---------------------- 2.6/5.9 MB 4.0 MB/s eta 0:00:01\n", " ------------------ --------------------- 2.7/5.9 MB 3.8 MB/s eta 0:00:01\n", " -------------------- ------------------- 3.0/5.9 MB 3.8 MB/s eta 0:00:01\n", " ----------------------- ---------------- 3.4/5.9 MB 4.0 MB/s eta 0:00:01\n", " ------------------------ --------------- 3.6/5.9 MB 4.0 MB/s eta 0:00:01\n", " -------------------------- ------------- 3.9/5.9 MB 4.2 MB/s eta 0:00:01\n", " -------------------------- ------------- 3.9/5.9 MB 4.1 MB/s eta 0:00:01\n", " ---------------------------- ----------- 4.2/5.9 MB 4.1 MB/s eta 0:00:01\n", " ------------------------------ --------- 4.4/5.9 MB 4.1 MB/s eta 0:00:01\n", " ------------------------------ --------- 4.5/5.9 MB 4.0 MB/s eta 0:00:01\n", " ------------------------------ --------- 4.5/5.9 MB 3.9 MB/s eta 0:00:01\n", " ------------------------------- -------- 4.6/5.9 MB 3.8 MB/s eta 0:00:01\n", " -------------------------------- ------- 4.8/5.9 MB 3.8 MB/s eta 0:00:01\n", " --------------------------------- ------ 4.9/5.9 MB 3.8 MB/s eta 0:00:01\n", " ----------------------------------- ---- 5.2/5.9 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------------ --- 5.4/5.9 MB 3.9 MB/s eta 0:00:01\n", " -------------------------------------- - 5.7/5.9 MB 4.0 MB/s eta 0:00:01\n", " --------------------------------------- 5.9/5.9 MB 3.9 MB/s eta 0:00:01\n", " --------------------------------------- 5.9/5.9 MB 3.9 MB/s eta 0:00:01\n", " ---------------------------------------- 5.9/5.9 MB 3.8 MB/s eta 0:00:00\n", "Downloading tensorflow_estimator-2.10.0-py2.py3-none-any.whl (438 kB)\n", " ---------------------------------------- 0.0/438.7 kB ? eta -:--:--\n", " ---------------- ---------------------- 184.3/438.7 kB 11.6 MB/s eta 0:00:01\n", " ------------------------------------ --- 399.4/438.7 kB 4.1 MB/s eta 0:00:01\n", " ---------------------------------------- 438.7/438.7 kB 3.4 MB/s eta 0:00:00\n", "Downloading tf_keras-2.15.0-py3-none-any.whl (1.7 MB)\n", " ---------------------------------------- 0.0/1.7 MB ? eta -:--:--\n", " ------ --------------------------------- 0.3/1.7 MB 8.3 MB/s eta 0:00:01\n", " ------------ --------------------------- 0.5/1.7 MB 5.6 MB/s eta 0:00:01\n", " --------------- ------------------------ 0.7/1.7 MB 4.2 MB/s eta 0:00:01\n", " -------------------- ------------------- 0.9/1.7 MB 3.9 MB/s eta 0:00:01\n", " ------------------------ --------------- 1.0/1.7 MB 4.1 MB/s eta 0:00:01\n", " ------------------------------ --------- 1.3/1.7 MB 3.8 MB/s eta 0:00:01\n", " ------------------------------------- -- 1.6/1.7 MB 4.1 MB/s eta 0:00:01\n", " ---------------------------------------- 1.7/1.7 MB 3.6 MB/s eta 0:00:00\n", "Downloading typeguard-2.13.3-py3-none-any.whl (17 kB)\n", "Downloading tzdata-2024.1-py2.py3-none-any.whl (345 kB)\n", " ---------------------------------------- 0.0/345.4 kB ? eta -:--:--\n", " ---------------------------------- ----- 297.0/345.4 kB 6.1 MB/s eta 0:00:01\n", " ---------------------------------------- 345.4/345.4 kB 4.3 MB/s eta 0:00:00\n", "Downloading uritemplate-4.1.1-py2.py3-none-any.whl (10 kB)\n", "Downloading array_record-0.4.0-py38-none-any.whl (3.0 MB)\n", " ---------------------------------------- 0.0/3.0 MB ? eta -:--:--\n", " - -------------------------------------- 0.1/3.0 MB 1.5 MB/s eta 0:00:02\n", " -- ------------------------------------- 0.2/3.0 MB 2.9 MB/s eta 0:00:01\n", " --- ------------------------------------ 0.2/3.0 MB 1.7 MB/s eta 0:00:02\n", " ---- ----------------------------------- 0.3/3.0 MB 1.5 MB/s eta 0:00:02\n", " ----- ---------------------------------- 0.5/3.0 MB 2.0 MB/s eta 0:00:02\n", " ------ --------------------------------- 0.5/3.0 MB 1.5 MB/s eta 0:00:02\n", " ------- -------------------------------- 0.5/3.0 MB 1.4 MB/s eta 0:00:02\n", " --------- ------------------------------ 0.7/3.0 MB 1.6 MB/s eta 0:00:02\n", " --------- ------------------------------ 0.7/3.0 MB 1.5 MB/s eta 0:00:02\n", " --------- ------------------------------ 0.7/3.0 MB 1.5 MB/s eta 0:00:02\n", " ----------- ---------------------------- 0.9/3.0 MB 1.4 MB/s eta 0:00:02\n", " ------------- -------------------------- 1.0/3.0 MB 1.5 MB/s eta 0:00:02\n", " ---------------- ----------------------- 1.2/3.0 MB 1.6 MB/s eta 0:00:02\n", " ---------------- ----------------------- 1.2/3.0 MB 1.6 MB/s eta 0:00:02\n", " ---------------- ----------------------- 1.2/3.0 MB 1.5 MB/s eta 0:00:02\n", " ---------------- ----------------------- 1.3/3.0 MB 1.4 MB/s eta 0:00:02\n", " ------------------ --------------------- 1.4/3.0 MB 1.5 MB/s eta 0:00:02\n", " ------------------- -------------------- 1.4/3.0 MB 1.4 MB/s eta 0:00:02\n", " -------------------- ------------------- 1.5/3.0 MB 1.4 MB/s eta 0:00:02\n", " ----------------------- ---------------- 1.7/3.0 MB 1.5 MB/s eta 0:00:01\n", " ------------------------- -------------- 1.9/3.0 MB 1.6 MB/s eta 0:00:01\n", " --------------------------- ------------ 2.0/3.0 MB 1.6 MB/s eta 0:00:01\n", " ---------------------------- ----------- 2.1/3.0 MB 1.7 MB/s eta 0:00:01\n", " ------------------------------ --------- 2.3/3.0 MB 1.8 MB/s eta 0:00:01\n", " --------------------------------- ------ 2.5/3.0 MB 1.8 MB/s eta 0:00:01\n", " ------------------------------------ --- 2.7/3.0 MB 1.9 MB/s eta 0:00:01\n", " --------------------------------------- 3.0/3.0 MB 2.0 MB/s eta 0:00:01\n", " --------------------------------------- 3.0/3.0 MB 2.0 MB/s eta 0:00:01\n", " ---------------------------------------- 3.0/3.0 MB 1.9 MB/s eta 0:00:00\n", "Downloading click-8.1.7-py3-none-any.whl (97 kB)\n", " ---------------------------------------- 0.0/97.9 kB ? eta -:--:--\n", " ---------------------------------------- 97.9/97.9 kB 2.8 MB/s eta 0:00:00\n", "Downloading lxml-5.2.1-cp38-cp38-win_amd64.whl (3.8 MB)\n", " ---------------------------------------- 0.0/3.8 MB ? eta -:--:--\n", " --- ------------------------------------ 0.4/3.8 MB 7.6 MB/s eta 0:00:01\n", " ------ --------------------------------- 0.6/3.8 MB 5.5 MB/s eta 0:00:01\n", " --------- ------------------------------ 0.9/3.8 MB 5.2 MB/s eta 0:00:01\n", " ------------ --------------------------- 1.1/3.8 MB 4.8 MB/s eta 0:00:01\n", " -------------- ------------------------- 1.4/3.8 MB 5.0 MB/s eta 0:00:01\n", " ---------------- ----------------------- 1.6/3.8 MB 4.5 MB/s eta 0:00:01\n", " ------------------ --------------------- 1.7/3.8 MB 4.6 MB/s eta 0:00:01\n", " -------------------- ------------------- 1.9/3.8 MB 4.3 MB/s eta 0:00:01\n", " ---------------------- ----------------- 2.1/3.8 MB 4.4 MB/s eta 0:00:01\n", " ------------------------- -------------- 2.4/3.8 MB 4.5 MB/s eta 0:00:01\n", " --------------------------- ------------ 2.6/3.8 MB 4.5 MB/s eta 0:00:01\n", " ------------------------------ --------- 2.9/3.8 MB 4.7 MB/s eta 0:00:01\n", " --------------------------------- ------ 3.2/3.8 MB 4.8 MB/s eta 0:00:01\n", " ----------------------------------- ---- 3.4/3.8 MB 4.9 MB/s eta 0:00:01\n", " -------------------------------------- - 3.7/3.8 MB 4.8 MB/s eta 0:00:01\n", " --------------------------------------- 3.8/3.8 MB 4.8 MB/s eta 0:00:01\n", " ---------------------------------------- 3.8/3.8 MB 4.5 MB/s eta 0:00:00\n", "Downloading portalocker-2.8.2-py3-none-any.whl (17 kB)\n", "Downloading python_slugify-8.0.4-py2.py3-none-any.whl (10 kB)\n", "Downloading regex-2024.4.28-cp38-cp38-win_amd64.whl (269 kB)\n", " ---------------------------------------- 0.0/269.0 kB ? eta -:--:--\n", " --------------------------------------- 266.2/269.0 kB 5.4 MB/s eta 0:00:01\n", " ---------------------------------------- 269.0/269.0 kB 3.3 MB/s eta 0:00:00\n", "Downloading tensorflow_metadata-1.13.0-py3-none-any.whl (53 kB)\n", " ---------------------------------------- 0.0/53.3 kB ? eta -:--:--\n", " ---------------------------------------- 53.3/53.3 kB 2.7 MB/s eta 0:00:00\n", "Downloading toml-0.10.2-py2.py3-none-any.whl (16 kB)\n", "Downloading tqdm-4.66.2-py3-none-any.whl (78 kB)\n", " ---------------------------------------- 0.0/78.3 kB ? eta -:--:--\n", " ---------------------------------------- 78.3/78.3 kB 2.1 MB/s eta 0:00:00\n", "Downloading googleapis_common_protos-1.63.0-py2.py3-none-any.whl (229 kB)\n", " ---------------------------------------- 0.0/229.1 kB ? eta -:--:--\n", " --------------------------------------- 225.3/229.1 kB 6.7 MB/s eta 0:00:01\n", " ---------------------------------------- 229.1/229.1 kB 2.8 MB/s eta 0:00:00\n", "Downloading joblib-1.4.0-py3-none-any.whl (301 kB)\n", " ---------------------------------------- 0.0/301.2 kB ? eta -:--:--\n", " ------------------------------------ --- 276.5/301.2 kB 5.7 MB/s eta 0:00:01\n", " ---------------------------------------- 301.2/301.2 kB 3.7 MB/s eta 0:00:00\n", "Downloading proto_plus-1.23.0-py3-none-any.whl (48 kB)\n", " ---------------------------------------- 0.0/48.8 kB ? eta -:--:--\n", " ---------------------------------------- 48.8/48.8 kB 1.2 MB/s eta 0:00:00\n", "Downloading text_unidecode-1.3-py2.py3-none-any.whl (78 kB)\n", " ---------------------------------------- 0.0/78.2 kB ? eta -:--:--\n", " ---------------------------------------- 78.2/78.2 kB 4.5 MB/s eta 0:00:00\n", "Downloading threadpoolctl-3.5.0-py3-none-any.whl (18 kB)\n", "Building wheels for collected packages: kaggle, seqeval, promise\n", " Building wheel for kaggle (setup.py): started\n", " Building wheel for kaggle (setup.py): finished with status 'done'\n", " Created wheel for kaggle: filename=kaggle-1.6.12-py3-none-any.whl size=102985 sha256=4271bdc22eff768ef4f44875dafc079942442be68dcc82312600167f18093c94\n", " Stored in directory: c:\\users\\user\\appdata\\local\\pip\\cache\\wheels\\a0\\87\\83\\f9893bb1660a03ca5808b7429e77808120f091569651323dd1\n", " Building wheel for seqeval (setup.py): started\n", " Building wheel for seqeval (setup.py): finished with status 'done'\n", " Created wheel for seqeval: filename=seqeval-1.2.2-py3-none-any.whl size=16193 sha256=cc0810a32c6511eee237dbc979fee246dbaba54db3b53052f024a1f8f4701736\n", " Stored in directory: c:\\users\\user\\appdata\\local\\pip\\cache\\wheels\\ad\\5c\\ba\\05fa33fa5855777b7d686e843ec07452f22a66a138e290e732\n", " Building wheel for promise (setup.py): started\n", " Building wheel for promise (setup.py): finished with status 'done'\n", " Created wheel for promise: filename=promise-2.3-py3-none-any.whl size=21551 sha256=a4499e740a02aecd8243b80b19745a1eab4dad1a8a1090784b5e692da6fb812c\n", " Stored in directory: c:\\users\\user\\appdata\\local\\pip\\cache\\wheels\\54\\aa\\01\\724885182f93150035a2a91bce34a12877e8067a97baaf5dc8\n", "Successfully built kaggle seqeval promise\n", "Installing collected packages: text-unidecode, sentencepiece, py-cpuinfo, keras, gin-config, flatbuffers, dm-tree, uritemplate, tzdata, typeguard, tqdm, toml, threadpoolctl, tf-keras, tensorflow-estimator, tabulate, regex, pyyaml, python-slugify, protobuf, promise, portalocker, Pillow, opencv-python-headless, lxml, kiwisolver, joblib, immutabledict, httplib2, fonttools, etils, Cython, cycler, contourpy, click, absl-py, tensorflow-model-optimization, tensorflow-hub, tensorflow-addons, scikit-learn, proto-plus, pandas, oauth2client, matplotlib, kaggle, googleapis-common-protos, tensorflow-metadata, seqeval, pycocotools, google-auth-httplib2, google-api-core, tensorboard, google-api-python-client, array-record, tensorflow-datasets, tensorflow, tensorflow-text, tf-models-official\n", " Attempting uninstall: keras\n", " Found existing installation: keras 2.9.0\n", " Uninstalling keras-2.9.0:\n", " Successfully uninstalled keras-2.9.0\n", " Attempting uninstall: flatbuffers\n", " Found existing installation: flatbuffers 1.12\n", " Uninstalling flatbuffers-1.12:\n", " Successfully uninstalled flatbuffers-1.12\n", " Attempting uninstall: tensorflow-estimator\n", " Found existing installation: tensorflow-estimator 2.9.0\n", " Uninstalling tensorflow-estimator-2.9.0:\n", " Successfully uninstalled tensorflow-estimator-2.9.0\n", " Attempting uninstall: pyyaml\n", " Found existing installation: PyYAML 6.0.1\n", " Uninstalling PyYAML-6.0.1:\n", " Successfully uninstalled PyYAML-6.0.1\n", " Attempting uninstall: protobuf\n", " Found existing installation: protobuf 3.20.0\n", " Uninstalling protobuf-3.20.0:\n", " Successfully uninstalled protobuf-3.20.0\n", " Attempting uninstall: absl-py\n", " Found existing installation: absl-py 2.1.0\n", " Uninstalling absl-py-2.1.0:\n", " Successfully uninstalled absl-py-2.1.0\n", " Attempting uninstall: tensorboard\n", " Found existing installation: tensorboard 2.9.1\n", " Uninstalling tensorboard-2.9.1:\n", " Successfully uninstalled tensorboard-2.9.1\n", " Attempting uninstall: tensorflow\n", " Found existing installation: tensorflow 2.9.0\n", " Uninstalling tensorflow-2.9.0:\n", " Successfully uninstalled tensorflow-2.9.0\n", "Successfully installed Cython-3.0.10 Pillow-10.3.0 absl-py-1.4.0 array-record-0.4.0 click-8.1.7 contourpy-1.1.1 cycler-0.12.1 dm-tree-0.1.8 etils-1.3.0 flatbuffers-24.3.25 fonttools-4.51.0 gin-config-0.5.0 google-api-core-2.19.0 google-api-python-client-2.127.0 google-auth-httplib2-0.2.0 googleapis-common-protos-1.63.0 httplib2-0.22.0 immutabledict-4.2.0 joblib-1.4.0 kaggle-1.6.12 keras-2.10.0 kiwisolver-1.4.5 lxml-5.2.1 matplotlib-3.7.5 oauth2client-4.1.3 opencv-python-headless-4.9.0.80 pandas-2.0.3 portalocker-2.8.2 promise-2.3 proto-plus-1.23.0 protobuf-3.19.6 py-cpuinfo-9.0.0 pycocotools-2.0.7 python-slugify-8.0.4 pyyaml-5.4.1 regex-2024.4.28 scikit-learn-1.3.2 sentencepiece-0.2.0 seqeval-1.2.2 tabulate-0.9.0 tensorboard-2.10.1 tensorflow-2.10.1 tensorflow-addons-0.21.0 tensorflow-datasets-4.9.0 tensorflow-estimator-2.10.0 tensorflow-hub-0.16.1 tensorflow-metadata-1.13.0 tensorflow-model-optimization-0.8.0 tensorflow-text-2.10.0 text-unidecode-1.3 tf-keras-2.15.0 tf-models-official-2.10.1 threadpoolctl-3.5.0 toml-0.10.2 tqdm-4.66.2 typeguard-2.13.3 tzdata-2024.1 uritemplate-4.1.1\n" ] } ], "source": [ "pip install tf-models-official" ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Collecting Pillow\n", " Downloading pillow-10.3.0-cp38-cp38-win_amd64.whl.metadata (9.4 kB)\n", "Downloading pillow-10.3.0-cp38-cp38-win_amd64.whl (2.5 MB)\n", " ---------------------------------------- 0.0/2.5 MB ? eta -:--:--\n", " - -------------------------------------- 0.1/2.5 MB 2.0 MB/s eta 0:00:02\n", " ---- ----------------------------------- 0.3/2.5 MB 2.6 MB/s eta 0:00:01\n", " ------ --------------------------------- 0.4/2.5 MB 2.5 MB/s eta 0:00:01\n", " ------- -------------------------------- 0.5/2.5 MB 2.5 MB/s eta 0:00:01\n", " --------- ------------------------------ 0.6/2.5 MB 2.1 MB/s eta 0:00:01\n", " ---------- ----------------------------- 0.7/2.5 MB 2.3 MB/s eta 0:00:01\n", " ---------- ----------------------------- 0.7/2.5 MB 2.3 MB/s eta 0:00:01\n", " ----------------- ---------------------- 1.1/2.5 MB 2.5 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.2/2.5 MB 2.5 MB/s eta 0:00:01\n", " ------------------- -------------------- 1.2/2.5 MB 2.5 MB/s eta 0:00:01\n", " ---------------------- ----------------- 1.4/2.5 MB 2.5 MB/s eta 0:00:01\n", " ------------------------ --------------- 1.5/2.5 MB 2.4 MB/s eta 0:00:01\n", " -------------------------- ------------- 1.6/2.5 MB 2.5 MB/s eta 0:00:01\n", " --------------------------- ------------ 1.8/2.5 MB 2.5 MB/s eta 0:00:01\n", " ----------------------------- ---------- 1.9/2.5 MB 2.5 MB/s eta 0:00:01\n", " ------------------------------- -------- 2.0/2.5 MB 2.5 MB/s eta 0:00:01\n", " --------------------------------- ------ 2.1/2.5 MB 2.5 MB/s eta 0:00:01\n", " ----------------------------------- ---- 2.2/2.5 MB 2.5 MB/s eta 0:00:01\n", " ------------------------------------- -- 2.4/2.5 MB 2.5 MB/s eta 0:00:01\n", " --------------------------------------- 2.5/2.5 MB 2.5 MB/s eta 0:00:01\n", " ---------------------------------------- 2.5/2.5 MB 2.4 MB/s eta 0:00:00\n", "Installing collected packages: Pillow\n", "Successfully installed Pillow-10.3.0\n", "Note: you may need to restart the kernel to use updated packages.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.\n", "object-detection 0.1 requires apache-beam, which is not installed.\n", "object-detection 0.1 requires avro-python3, which is not installed.\n", "object-detection 0.1 requires contextlib2, which is not installed.\n", "object-detection 0.1 requires Cython, which is not installed.\n", "object-detection 0.1 requires lvis, which is not installed.\n", "object-detection 0.1 requires lxml, which is not installed.\n", "object-detection 0.1 requires pandas, which is not installed.\n", "object-detection 0.1 requires pycocotools, which is not installed.\n", "object-detection 0.1 requires tf-models-official<2.16.0,>=2.5.1, which is not installed.\n" ] } ], "source": [ "pip install Pillow" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Collecting matplotlib==3.2\n", " Using cached matplotlib-3.2.0-cp38-cp38-win_amd64.whl.metadata (5.1 kB)\n", "Collecting cycler>=0.10 (from matplotlib==3.2)\n", " Using cached cycler-0.12.1-py3-none-any.whl.metadata (3.8 kB)\n", "Collecting kiwisolver>=1.0.1 (from matplotlib==3.2)\n", " Using cached kiwisolver-1.4.5-cp38-cp38-win_amd64.whl.metadata (6.5 kB)\n", "Requirement already satisfied: numpy>=1.11 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from matplotlib==3.2) (1.21.0)\n", "Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages\\pyparsing-2.4.7-py3.8.egg (from matplotlib==3.2) (2.4.7)\n", "Requirement already satisfied: python-dateutil>=2.1 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from matplotlib==3.2) (2.9.0.post0)\n", "Requirement already satisfied: six>=1.5 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from python-dateutil>=2.1->matplotlib==3.2) (1.15.0)\n", "Using cached matplotlib-3.2.0-cp38-cp38-win_amd64.whl (9.2 MB)\n", "Using cached cycler-0.12.1-py3-none-any.whl (8.3 kB)\n", "Using cached kiwisolver-1.4.5-cp38-cp38-win_amd64.whl (56 kB)\n", "Installing collected packages: kiwisolver, cycler, matplotlib\n", "Successfully installed cycler-0.12.1 kiwisolver-1.4.5 matplotlib-3.2.0\n", "Note: you may need to restart the kernel to use updated packages.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.\n", "object-detection 0.1 requires apache-beam, which is not installed.\n", "object-detection 0.1 requires avro-python3, which is not installed.\n", "object-detection 0.1 requires contextlib2, which is not installed.\n", "object-detection 0.1 requires Cython, which is not installed.\n", "object-detection 0.1 requires lvis, which is not installed.\n", "object-detection 0.1 requires lxml, which is not installed.\n", "object-detection 0.1 requires pandas, which is not installed.\n", "object-detection 0.1 requires pillow, which is not installed.\n", "object-detection 0.1 requires pycocotools, which is not installed.\n", "object-detection 0.1 requires tf-models-official>=2.5.1, which is not installed.\n" ] } ], "source": [ "pip install matplotlib==3.2" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Collecting tensorflow_io\n", " Downloading tensorflow_io-0.31.0-cp38-cp38-win_amd64.whl.metadata (14 kB)\n", "Requirement already satisfied: tensorflow-io-gcs-filesystem==0.31.0 in c:\\detection\\tensor\\lib\\site-packages (from tensorflow_io) (0.31.0)\n", "Downloading tensorflow_io-0.31.0-cp38-cp38-win_amd64.whl (22.9 MB)\n", " ---------------------------------------- 0.0/22.9 MB ? eta -:--:--\n", " ---------------------------------------- 0.2/22.9 MB 3.9 MB/s eta 0:00:06\n", " --------------------------------------- 0.4/22.9 MB 4.5 MB/s eta 0:00:06\n", " - -------------------------------------- 0.6/22.9 MB 4.6 MB/s eta 0:00:05\n", " - -------------------------------------- 0.8/22.9 MB 4.5 MB/s eta 0:00:05\n", " -- ------------------------------------- 1.2/22.9 MB 5.1 MB/s eta 0:00:05\n", " -- ------------------------------------- 1.4/22.9 MB 4.8 MB/s eta 0:00:05\n", " --- ------------------------------------ 1.9/22.9 MB 5.2 MB/s eta 0:00:05\n", " --- ------------------------------------ 2.1/22.9 MB 5.1 MB/s eta 0:00:05\n", " --- ------------------------------------ 2.1/22.9 MB 5.1 MB/s eta 0:00:05\n", " --- ------------------------------------ 2.1/22.9 MB 5.1 MB/s eta 0:00:05\n", " --- ------------------------------------ 2.1/22.9 MB 5.1 MB/s eta 0:00:05\n", " --- ------------------------------------ 2.1/22.9 MB 5.1 MB/s eta 0:00:05\n", " --- ------------------------------------ 2.2/22.9 MB 3.3 MB/s eta 0:00:07\n", " ---- ----------------------------------- 2.7/22.9 MB 3.7 MB/s eta 0:00:06\n", " ----- ---------------------------------- 3.0/22.9 MB 3.9 MB/s eta 0:00:06\n", " ----- ---------------------------------- 3.3/22.9 MB 4.0 MB/s eta 0:00:05\n", " ------ --------------------------------- 3.7/22.9 MB 4.3 MB/s eta 0:00:05\n", " ------- -------------------------------- 4.0/22.9 MB 4.4 MB/s eta 0:00:05\n", " ------- -------------------------------- 4.4/22.9 MB 4.6 MB/s eta 0:00:05\n", " -------- ------------------------------- 4.7/22.9 MB 4.7 MB/s eta 0:00:04\n", " -------- ------------------------------- 5.1/22.9 MB 5.0 MB/s eta 0:00:04\n", " --------- ------------------------------ 5.3/22.9 MB 4.9 MB/s eta 0:00:04\n", " --------- ------------------------------ 5.5/22.9 MB 4.8 MB/s eta 0:00:04\n", " ---------- ----------------------------- 5.8/22.9 MB 4.8 MB/s eta 0:00:04\n", " ---------- ----------------------------- 6.0/22.9 MB 4.9 MB/s eta 0:00:04\n", " ---------- ----------------------------- 6.2/22.9 MB 4.8 MB/s eta 0:00:04\n", " ----------- ---------------------------- 6.5/22.9 MB 4.8 MB/s eta 0:00:04\n", " ----------- ---------------------------- 6.6/22.9 MB 4.9 MB/s eta 0:00:04\n", " ----------- ---------------------------- 6.8/22.9 MB 4.8 MB/s eta 0:00:04\n", " ------------ --------------------------- 7.1/22.9 MB 4.8 MB/s eta 0:00:04\n", " ------------ --------------------------- 7.4/22.9 MB 4.8 MB/s eta 0:00:04\n", " ------------- -------------------------- 7.6/22.9 MB 4.7 MB/s eta 0:00:04\n", " ------------- -------------------------- 7.9/22.9 MB 4.8 MB/s eta 0:00:04\n", " -------------- ------------------------- 8.0/22.9 MB 4.8 MB/s eta 0:00:04\n", " -------------- ------------------------- 8.3/22.9 MB 4.7 MB/s eta 0:00:04\n", " -------------- ------------------------- 8.4/22.9 MB 4.7 MB/s eta 0:00:04\n", " --------------- ------------------------ 8.6/22.9 MB 4.7 MB/s eta 0:00:04\n", " --------------- ------------------------ 8.7/22.9 MB 4.7 MB/s eta 0:00:04\n", " --------------- ------------------------ 9.0/22.9 MB 4.6 MB/s eta 0:00:03\n", " ---------------- ----------------------- 9.2/22.9 MB 4.6 MB/s eta 0:00:03\n", " ---------------- ----------------------- 9.5/22.9 MB 4.6 MB/s eta 0:00:03\n", " ---------------- ----------------------- 9.7/22.9 MB 4.6 MB/s eta 0:00:03\n", " ----------------- ---------------------- 9.9/22.9 MB 4.7 MB/s eta 0:00:03\n", " ----------------- ---------------------- 10.1/22.9 MB 4.7 MB/s eta 0:00:03\n", " ------------------ --------------------- 10.3/22.9 MB 4.6 MB/s eta 0:00:03\n", " ------------------ --------------------- 10.5/22.9 MB 4.6 MB/s eta 0:00:03\n", " ------------------ --------------------- 10.7/22.9 MB 4.6 MB/s eta 0:00:03\n", " ------------------- -------------------- 10.9/22.9 MB 4.6 MB/s eta 0:00:03\n", " ------------------- -------------------- 11.3/22.9 MB 4.6 MB/s eta 0:00:03\n", " -------------------- ------------------- 11.6/22.9 MB 4.6 MB/s eta 0:00:03\n", " -------------------- ------------------- 11.7/22.9 MB 4.6 MB/s eta 0:00:03\n", " -------------------- ------------------- 11.9/22.9 MB 4.6 MB/s eta 0:00:03\n", " --------------------- ------------------ 12.2/22.9 MB 4.5 MB/s eta 0:00:03\n", " --------------------- ------------------ 12.5/22.9 MB 5.0 MB/s eta 0:00:03\n", " ---------------------- ----------------- 12.8/22.9 MB 5.0 MB/s eta 0:00:03\n", " ---------------------- ----------------- 13.1/22.9 MB 5.0 MB/s eta 0:00:02\n", " ----------------------- ---------------- 13.4/22.9 MB 4.9 MB/s eta 0:00:02\n", " ----------------------- ---------------- 13.6/22.9 MB 4.9 MB/s eta 0:00:02\n", " ----------------------- ---------------- 13.6/22.9 MB 4.9 MB/s eta 0:00:02\n", " ----------------------- ---------------- 13.6/22.9 MB 4.9 MB/s eta 0:00:02\n", " ------------------------ --------------- 13.9/22.9 MB 4.6 MB/s eta 0:00:02\n", " ------------------------ --------------- 14.2/22.9 MB 4.6 MB/s eta 0:00:02\n", " ------------------------- -------------- 14.5/22.9 MB 4.6 MB/s eta 0:00:02\n", " ------------------------- -------------- 14.8/22.9 MB 4.6 MB/s eta 0:00:02\n", " -------------------------- ------------- 15.1/22.9 MB 4.6 MB/s eta 0:00:02\n", " -------------------------- ------------- 15.4/22.9 MB 4.6 MB/s eta 0:00:02\n", " --------------------------- ------------ 15.7/22.9 MB 4.6 MB/s eta 0:00:02\n", " --------------------------- ------------ 16.0/22.9 MB 4.6 MB/s eta 0:00:02\n", " ---------------------------- ----------- 16.4/22.9 MB 4.6 MB/s eta 0:00:02\n", " ----------------------------- ---------- 16.6/22.9 MB 4.7 MB/s eta 0:00:02\n", " ----------------------------- ---------- 16.9/22.9 MB 4.7 MB/s eta 0:00:02\n", " ----------------------------- ---------- 17.1/22.9 MB 4.7 MB/s eta 0:00:02\n", " ------------------------------ --------- 17.3/22.9 MB 4.6 MB/s eta 0:00:02\n", " ------------------------------ --------- 17.6/22.9 MB 4.7 MB/s eta 0:00:02\n", " ------------------------------- -------- 17.9/22.9 MB 4.8 MB/s eta 0:00:02\n", " ------------------------------- -------- 18.3/22.9 MB 4.8 MB/s eta 0:00:01\n", " -------------------------------- ------- 18.6/22.9 MB 4.8 MB/s eta 0:00:01\n", " --------------------------------- ------ 18.9/22.9 MB 5.0 MB/s eta 0:00:01\n", " --------------------------------- ------ 19.1/22.9 MB 5.0 MB/s eta 0:00:01\n", " --------------------------------- ------ 19.4/22.9 MB 5.0 MB/s eta 0:00:01\n", " ---------------------------------- ----- 19.6/22.9 MB 5.0 MB/s eta 0:00:01\n", " ---------------------------------- ----- 19.9/22.9 MB 5.1 MB/s eta 0:00:01\n", " ----------------------------------- ---- 20.3/22.9 MB 5.2 MB/s eta 0:00:01\n", " ------------------------------------ --- 20.8/22.9 MB 5.3 MB/s eta 0:00:01\n", " ------------------------------------- -- 21.2/22.9 MB 5.4 MB/s eta 0:00:01\n", " ------------------------------------- -- 21.5/22.9 MB 5.4 MB/s eta 0:00:01\n", " -------------------------------------- - 21.9/22.9 MB 5.5 MB/s eta 0:00:01\n", " --------------------------------------- 22.3/22.9 MB 5.5 MB/s eta 0:00:01\n", " --------------------------------------- 22.7/22.9 MB 5.6 MB/s eta 0:00:01\n", " --------------------------------------- 22.9/22.9 MB 5.6 MB/s eta 0:00:01\n", " --------------------------------------- 22.9/22.9 MB 5.6 MB/s eta 0:00:01\n", " --------------------------------------- 22.9/22.9 MB 5.6 MB/s eta 0:00:01\n", " --------------------------------------- 22.9/22.9 MB 5.6 MB/s eta 0:00:01\n", " --------------------------------------- 22.9/22.9 MB 5.6 MB/s eta 0:00:01\n", " --------------------------------------- 22.9/22.9 MB 5.6 MB/s eta 0:00:01\n", " --------------------------------------- 22.9/22.9 MB 5.6 MB/s eta 0:00:01\n", " --------------------------------------- 22.9/22.9 MB 5.6 MB/s eta 0:00:01\n", " --------------------------------------- 22.9/22.9 MB 5.6 MB/s eta 0:00:01\n", " --------------------------------------- 22.9/22.9 MB 5.6 MB/s eta 0:00:01\n", " --------------------------------------- 22.9/22.9 MB 5.6 MB/s eta 0:00:01\n", " --------------------------------------- 22.9/22.9 MB 5.6 MB/s eta 0:00:01\n", " --------------------------------------- 22.9/22.9 MB 5.6 MB/s eta 0:00:01\n", " --------------------------------------- 22.9/22.9 MB 5.6 MB/s eta 0:00:01\n", " --------------------------------------- 22.9/22.9 MB 5.6 MB/s eta 0:00:01\n", " ---------------------------------------- 22.9/22.9 MB 4.0 MB/s eta 0:00:00\n", "Installing collected packages: tensorflow_io\n", "Successfully installed tensorflow_io-0.31.0\n", "Note: you may need to restart the kernel to use updated packages.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.\n", "object-detection 0.1 requires apache-beam, which is not installed.\n", "object-detection 0.1 requires avro-python3, which is not installed.\n", "object-detection 0.1 requires contextlib2, which is not installed.\n", "object-detection 0.1 requires Cython, which is not installed.\n", "object-detection 0.1 requires lvis, which is not installed.\n", "object-detection 0.1 requires lxml, which is not installed.\n", "object-detection 0.1 requires matplotlib, which is not installed.\n", "object-detection 0.1 requires pandas, which is not installed.\n", "object-detection 0.1 requires pillow, which is not installed.\n", "object-detection 0.1 requires pycocotools, which is not installed.\n", "object-detection 0.1 requires tf-models-official>=2.5.1, which is not installed.\n" ] } ], "source": [ "pip install tensorflow_io" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Collecting scipy\n", " Using cached scipy-1.10.1-cp38-cp38-win_amd64.whl.metadata (58 kB)\n", "Requirement already satisfied: numpy<1.27.0,>=1.19.5 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from scipy) (1.19.5)\n", "Using cached scipy-1.10.1-cp38-cp38-win_amd64.whl (42.2 MB)\n", "Installing collected packages: scipy\n", "Successfully installed scipy-1.10.1\n", "Note: you may need to restart the kernel to use updated packages.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.\n", "object-detection 0.1 requires apache-beam, which is not installed.\n", "object-detection 0.1 requires avro-python3, which is not installed.\n", "object-detection 0.1 requires contextlib2, which is not installed.\n", "object-detection 0.1 requires Cython, which is not installed.\n", "object-detection 0.1 requires lvis, which is not installed.\n", "object-detection 0.1 requires lxml, which is not installed.\n", "object-detection 0.1 requires matplotlib, which is not installed.\n", "object-detection 0.1 requires pandas, which is not installed.\n", "object-detection 0.1 requires pillow, which is not installed.\n", "object-detection 0.1 requires pycocotools, which is not installed.\n", "object-detection 0.1 requires tensorflow_io, which is not installed.\n", "object-detection 0.1 requires tf-models-official>=2.5.1, which is not installed.\n" ] } ], "source": [ "pip install scipy" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Collecting protobuf==3.20.*Note: you may need to restart the kernel to use updated packages.\n", "\n", " Downloading protobuf-3.20.3-cp37-cp37m-win_amd64.whl.metadata (699 bytes)\n", "Downloading protobuf-3.20.3-cp37-cp37m-win_amd64.whl (905 kB)\n", " ---------------------------------------- 905.1/905.1 kB 1.7 MB/s eta 0:00:00\n", "Installing collected packages: protobuf\n", " Attempting uninstall: protobuf\n", " Found existing installation: protobuf 4.24.4\n", " Uninstalling protobuf-4.24.4:\n", " Successfully uninstalled protobuf-4.24.4\n", "Successfully installed protobuf-3.20.3\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.\n", "tf-models-official 2.15.0 requires Cython, which is not installed.\n", "tf-models-official 2.15.0 requires gin-config, which is not installed.\n", "tf-models-official 2.15.0 requires google-api-python-client>=1.6.7, which is not installed.\n", "tf-models-official 2.15.0 requires immutabledict, which is not installed.\n", "tf-models-official 2.15.0 requires kaggle>=1.3.9, which is not installed.\n", "tf-models-official 2.15.0 requires matplotlib, which is not installed.\n", "tf-models-official 2.15.0 requires oauth2client, which is not installed.\n", "tf-models-official 2.15.0 requires opencv-python-headless, which is not installed.\n", "tf-models-official 2.15.0 requires pandas>=0.22.0, which is not installed.\n", "tf-models-official 2.15.0 requires Pillow, which is not installed.\n", "tf-models-official 2.15.0 requires py-cpuinfo>=3.3.0, which is not installed.\n", "tf-models-official 2.15.0 requires pycocotools, which is not installed.\n", "tf-models-official 2.15.0 requires pyyaml>=6.0.0, which is not installed.\n", "tf-models-official 2.15.0 requires scipy>=0.19.1, which is not installed.\n", "tf-models-official 2.15.0 requires sentencepiece, which is not installed.\n", "tf-models-official 2.15.0 requires seqeval, which is not installed.\n", "tf-models-official 2.15.0 requires tensorflow-datasets, which is not installed.\n", "tf-models-official 2.15.0 requires tensorflow-hub>=0.6.0, which is not installed.\n", "tf-models-official 2.15.0 requires tensorflow-model-optimization>=0.4.1, which is not installed.\n", "tf-models-official 2.15.0 requires tensorflow-text~=2.15.0, which is not installed.\n", "tf-models-official 2.15.0 requires tensorflow~=2.15.0, but you have tensorflow 1.15.2 which is incompatible.\n" ] } ], "source": [ "pip install protobuf==3.20.*" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Requirement already satisfied: tensorflow in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (2.4.0)\n", "Collecting tensorflow\n", " Using cached tensorflow-2.13.1-cp38-cp38-win_amd64.whl.metadata (2.6 kB)\n", "INFO: pip is looking at multiple versions of tensorflow to determine which version is compatible with other requirements. This could take a while.\n", " Using cached tensorflow-2.13.0-cp38-cp38-win_amd64.whl.metadata (2.6 kB)\n", "Collecting tensorflow-intel==2.13.0 (from tensorflow)\n", " Using cached tensorflow_intel-2.13.0-cp38-cp38-win_amd64.whl.metadata (4.1 kB)\n", "Collecting absl-py>=1.0.0 (from tensorflow-intel==2.13.0->tensorflow)\n", " Using cached absl_py-2.1.0-py3-none-any.whl.metadata (2.3 kB)\n", "Requirement already satisfied: astunparse>=1.6.0 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from tensorflow-intel==2.13.0->tensorflow) (1.6.3)\n", "Collecting flatbuffers>=23.1.21 (from tensorflow-intel==2.13.0->tensorflow)\n", " Using cached flatbuffers-24.3.25-py2.py3-none-any.whl.metadata (850 bytes)\n", "Requirement already satisfied: gast<=0.4.0,>=0.2.1 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from tensorflow-intel==2.13.0->tensorflow) (0.3.3)\n", "Requirement already satisfied: google-pasta>=0.1.1 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from tensorflow-intel==2.13.0->tensorflow) (0.2.0)\n", "Requirement already satisfied: h5py>=2.9.0 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from tensorflow-intel==2.13.0->tensorflow) (2.10.0)\n", "Collecting libclang>=13.0.0 (from tensorflow-intel==2.13.0->tensorflow)\n", " Using cached libclang-18.1.1-py2.py3-none-win_amd64.whl.metadata (5.3 kB)\n", "Collecting numpy<=1.24.3,>=1.22 (from tensorflow-intel==2.13.0->tensorflow)\n", " Using cached numpy-1.24.3-cp38-cp38-win_amd64.whl.metadata (5.6 kB)\n", "Requirement already satisfied: opt-einsum>=2.3.2 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from tensorflow-intel==2.13.0->tensorflow) (3.3.0)\n", "Requirement already satisfied: packaging in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from tensorflow-intel==2.13.0->tensorflow) (24.0)\n", "Requirement already satisfied: protobuf!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<5.0.0dev,>=3.20.3 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from tensorflow-intel==2.13.0->tensorflow) (3.20.3)\n", "Requirement already satisfied: setuptools in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from tensorflow-intel==2.13.0->tensorflow) (41.2.0)\n", "Requirement already satisfied: six>=1.12.0 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from tensorflow-intel==2.13.0->tensorflow) (1.15.0)\n", "Requirement already satisfied: termcolor>=1.1.0 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from tensorflow-intel==2.13.0->tensorflow) (1.1.0)\n", "Collecting typing-extensions<4.6.0,>=3.6.6 (from tensorflow-intel==2.13.0->tensorflow)\n", " Using cached typing_extensions-4.5.0-py3-none-any.whl.metadata (8.5 kB)\n", "Requirement already satisfied: wrapt>=1.11.0 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from tensorflow-intel==2.13.0->tensorflow) (1.12.1)\n", "Requirement already satisfied: grpcio<2.0,>=1.24.3 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from tensorflow-intel==2.13.0->tensorflow) (1.32.0)\n", "Collecting tensorboard<2.14,>=2.13 (from tensorflow-intel==2.13.0->tensorflow)\n", " Using cached tensorboard-2.13.0-py3-none-any.whl.metadata (1.8 kB)\n", "Collecting tensorflow-estimator<2.14,>=2.13.0 (from tensorflow-intel==2.13.0->tensorflow)\n", " Using cached tensorflow_estimator-2.13.0-py2.py3-none-any.whl.metadata (1.3 kB)\n", "Collecting keras<2.14,>=2.13.1 (from tensorflow-intel==2.13.0->tensorflow)\n", " Using cached keras-2.13.1-py3-none-any.whl.metadata (2.4 kB)\n", "Collecting tensorflow-io-gcs-filesystem>=0.23.1 (from tensorflow-intel==2.13.0->tensorflow)\n", " Using cached tensorflow_io_gcs_filesystem-0.31.0-cp38-cp38-win_amd64.whl.metadata (14 kB)\n", "Requirement already satisfied: wheel<1.0,>=0.23.0 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from astunparse>=1.6.0->tensorflow-intel==2.13.0->tensorflow) (0.43.0)\n", "Collecting grpcio<2.0,>=1.24.3 (from tensorflow-intel==2.13.0->tensorflow)\n", " Using cached grpcio-1.62.1-cp38-cp38-win_amd64.whl.metadata (4.2 kB)\n", "Requirement already satisfied: google-auth<3,>=1.6.3 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from tensorboard<2.14,>=2.13->tensorflow-intel==2.13.0->tensorflow) (2.29.0)\n", "Collecting google-auth-oauthlib<1.1,>=0.5 (from tensorboard<2.14,>=2.13->tensorflow-intel==2.13.0->tensorflow)\n", " Using cached google_auth_oauthlib-1.0.0-py2.py3-none-any.whl.metadata (2.7 kB)\n", "Requirement already satisfied: markdown>=2.6.8 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from tensorboard<2.14,>=2.13->tensorflow-intel==2.13.0->tensorflow) (3.6)\n", "Requirement already satisfied: requests<3,>=2.21.0 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from tensorboard<2.14,>=2.13->tensorflow-intel==2.13.0->tensorflow) (2.31.0)\n", "Collecting tensorboard-data-server<0.8.0,>=0.7.0 (from tensorboard<2.14,>=2.13->tensorflow-intel==2.13.0->tensorflow)\n", " Using cached tensorboard_data_server-0.7.2-py3-none-any.whl.metadata (1.1 kB)\n", "Requirement already satisfied: werkzeug>=1.0.1 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from tensorboard<2.14,>=2.13->tensorflow-intel==2.13.0->tensorflow) (3.0.2)\n", "Requirement already satisfied: cachetools<6.0,>=2.0.0 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from google-auth<3,>=1.6.3->tensorboard<2.14,>=2.13->tensorflow-intel==2.13.0->tensorflow) (5.3.3)\n", "Requirement already satisfied: pyasn1-modules>=0.2.1 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from google-auth<3,>=1.6.3->tensorboard<2.14,>=2.13->tensorflow-intel==2.13.0->tensorflow) (0.4.0)\n", "Requirement already satisfied: rsa<5,>=3.1.4 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from google-auth<3,>=1.6.3->tensorboard<2.14,>=2.13->tensorflow-intel==2.13.0->tensorflow) (4.9)\n", "Requirement already satisfied: requests-oauthlib>=0.7.0 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from google-auth-oauthlib<1.1,>=0.5->tensorboard<2.14,>=2.13->tensorflow-intel==2.13.0->tensorflow) (2.0.0)\n", "Requirement already satisfied: importlib-metadata>=4.4 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from markdown>=2.6.8->tensorboard<2.14,>=2.13->tensorflow-intel==2.13.0->tensorflow) (7.1.0)\n", "Requirement already satisfied: charset-normalizer<4,>=2 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from requests<3,>=2.21.0->tensorboard<2.14,>=2.13->tensorflow-intel==2.13.0->tensorflow) (3.3.2)\n", "Requirement already satisfied: idna<4,>=2.5 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from requests<3,>=2.21.0->tensorboard<2.14,>=2.13->tensorflow-intel==2.13.0->tensorflow) (3.6)\n", "Requirement already satisfied: urllib3<3,>=1.21.1 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from requests<3,>=2.21.0->tensorboard<2.14,>=2.13->tensorflow-intel==2.13.0->tensorflow) (2.2.1)\n", "Requirement already satisfied: certifi>=2017.4.17 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from requests<3,>=2.21.0->tensorboard<2.14,>=2.13->tensorflow-intel==2.13.0->tensorflow) (2024.2.2)\n", "Requirement already satisfied: MarkupSafe>=2.1.1 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from werkzeug>=1.0.1->tensorboard<2.14,>=2.13->tensorflow-intel==2.13.0->tensorflow) (2.1.5)\n", "Requirement already satisfied: zipp>=0.5 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from importlib-metadata>=4.4->markdown>=2.6.8->tensorboard<2.14,>=2.13->tensorflow-intel==2.13.0->tensorflow) (3.18.1)\n", "Requirement already satisfied: pyasn1<0.7.0,>=0.4.6 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from pyasn1-modules>=0.2.1->google-auth<3,>=1.6.3->tensorboard<2.14,>=2.13->tensorflow-intel==2.13.0->tensorflow) (0.6.0)\n", "Requirement already satisfied: oauthlib>=3.0.0 in c:\\tensor flow object detection\\tfodcourse\\hamza\\lib\\site-packages (from requests-oauthlib>=0.7.0->google-auth-oauthlib<1.1,>=0.5->tensorboard<2.14,>=2.13->tensorflow-intel==2.13.0->tensorflow) (3.2.2)\n", "Using cached tensorflow-2.13.0-cp38-cp38-win_amd64.whl (1.9 kB)\n", "Using cached tensorflow_intel-2.13.0-cp38-cp38-win_amd64.whl (276.5 MB)\n", "Using cached absl_py-2.1.0-py3-none-any.whl (133 kB)\n", "Using cached flatbuffers-24.3.25-py2.py3-none-any.whl (26 kB)\n", "Using cached keras-2.13.1-py3-none-any.whl (1.7 MB)\n", "Using cached libclang-18.1.1-py2.py3-none-win_amd64.whl (26.4 MB)\n", "Using cached numpy-1.24.3-cp38-cp38-win_amd64.whl (14.9 MB)\n", "Using cached tensorboard-2.13.0-py3-none-any.whl (5.6 MB)\n", "Using cached grpcio-1.62.1-cp38-cp38-win_amd64.whl (3.8 MB)\n", "Using cached tensorflow_estimator-2.13.0-py2.py3-none-any.whl (440 kB)\n", "Using cached tensorflow_io_gcs_filesystem-0.31.0-cp38-cp38-win_amd64.whl (1.5 MB)\n", "Using cached typing_extensions-4.5.0-py3-none-any.whl (27 kB)\n", "Using cached google_auth_oauthlib-1.0.0-py2.py3-none-any.whl (18 kB)\n", "Using cached tensorboard_data_server-0.7.2-py3-none-any.whl (2.4 kB)\n", "Installing collected packages: libclang, flatbuffers, typing-extensions, tensorflow-io-gcs-filesystem, tensorflow-estimator, tensorboard-data-server, numpy, keras, grpcio, absl-py, google-auth-oauthlib, tensorboard, tensorflow-intel, tensorflow\n", " Attempting uninstall: flatbuffers\n", " Found existing installation: flatbuffers 1.12\n", " Uninstalling flatbuffers-1.12:\n", " Successfully uninstalled flatbuffers-1.12\n", " Attempting uninstall: typing-extensions\n", " Found existing installation: typing_extensions 4.11.0\n", " Uninstalling typing_extensions-4.11.0:\n", " Successfully uninstalled typing_extensions-4.11.0\n", " Attempting uninstall: tensorflow-estimator\n", " Found existing installation: tensorflow-estimator 2.4.0\n", " Uninstalling tensorflow-estimator-2.4.0:\n", " Successfully uninstalled tensorflow-estimator-2.4.0\n", " Attempting uninstall: tensorboard-data-server\n", " Found existing installation: tensorboard-data-server 0.6.1\n", " Uninstalling tensorboard-data-server-0.6.1:\n", " Successfully uninstalled tensorboard-data-server-0.6.1\n", " Attempting uninstall: numpy\n", " Found existing installation: numpy 1.19.5\n", " Uninstalling numpy-1.19.5:\n", " Successfully uninstalled numpy-1.19.5\n", " Attempting uninstall: keras\n", " Found existing installation: keras 3.1.1\n", " Uninstalling keras-3.1.1:\n", " Successfully uninstalled keras-3.1.1\n", " Attempting uninstall: grpcio\n", " Found existing installation: grpcio 1.32.0\n", " Uninstalling grpcio-1.32.0:\n", " Successfully uninstalled grpcio-1.32.0\n", " Attempting uninstall: absl-py\n", " Found existing installation: absl-py 0.15.0\n", " Uninstalling absl-py-0.15.0:\n", " Successfully uninstalled absl-py-0.15.0\n", " Attempting uninstall: google-auth-oauthlib\n", " Found existing installation: google-auth-oauthlib 0.4.6\n", " Uninstalling google-auth-oauthlib-0.4.6:\n", " Successfully uninstalled google-auth-oauthlib-0.4.6\n", " Attempting uninstall: tensorboard\n", " Found existing installation: tensorboard 2.11.2\n", " Uninstalling tensorboard-2.11.2:\n", " Successfully uninstalled tensorboard-2.11.2\n", " Attempting uninstall: tensorflow\n", " Found existing installation: tensorflow 2.4.0\n", " Uninstalling tensorflow-2.4.0:\n", " Successfully uninstalled tensorflow-2.4.0\n", "Successfully installed absl-py-2.1.0 flatbuffers-24.3.25 google-auth-oauthlib-1.0.0 grpcio-1.62.1 keras-2.13.1 libclang-18.1.1 numpy-1.24.3 tensorboard-2.13.0 tensorboard-data-server-0.7.2 tensorflow-2.13.0 tensorflow-estimator-2.13.0 tensorflow-intel-2.13.0 tensorflow-io-gcs-filesystem-0.31.0 typing-extensions-4.5.0\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.\n", "object-detection 0.1 requires apache-beam, which is not installed.\n", "object-detection 0.1 requires avro-python3, which is not installed.\n", "object-detection 0.1 requires contextlib2, which is not installed.\n", "object-detection 0.1 requires Cython, which is not installed.\n", "object-detection 0.1 requires lvis, which is not installed.\n", "object-detection 0.1 requires lxml, which is not installed.\n", "object-detection 0.1 requires matplotlib, which is not installed.\n", "object-detection 0.1 requires pandas, which is not installed.\n", "object-detection 0.1 requires pillow, which is not installed.\n", "object-detection 0.1 requires pycocotools, which is not installed.\n", "object-detection 0.1 requires tensorflow_io, which is not installed.\n", "object-detection 0.1 requires tf-models-official>=2.5.1, which is not installed.\n", "sacrebleu 2.2.0 requires lxml, which is not installed.\n", "sacrebleu 2.2.0 requires portalocker, which is not installed.\n", "sacrebleu 2.2.0 requires regex, which is not installed.\n", "sacrebleu 2.2.0 requires tabulate>=0.8.9, which is not installed.\n" ] } ], "source": [ "!pip install tensorflow --upgrade" ] }, { "cell_type": "code", "execution_count": 13, "metadata": { "collapsed": true, "jupyter": { "outputs_hidden": true } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Found existing installation: protobuf 3.15.7\n", "Uninstalling protobuf-3.15.7:\n", " Successfully uninstalled protobuf-3.15.7\n", "Found existing installation: matplotlib 3.4.1\n", "Uninstalling matplotlib-3.4.1:\n", " Successfully uninstalled matplotlib-3.4.1\n", "Collecting protobuf" ] }, { "name": "stderr", "output_type": "stream", "text": [ "ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.\n", "apache-beam 2.28.0 requires crcmod<2.0,>=1.7, which is not installed.\n", "apache-beam 2.28.0 requires dill<0.3.2,>=0.3.1.1, which is not installed.\n", "apache-beam 2.28.0 requires fastavro<2,>=0.21.4, which is not installed.\n", "apache-beam 2.28.0 requires future<1.0.0,>=0.18.2, which is not installed.\n", "apache-beam 2.28.0 requires grpcio<2,>=1.29.0, which is not installed.\n", "apache-beam 2.28.0 requires hdfs<3.0.0,>=2.1.0, which is not installed.\n", "apache-beam 2.28.0 requires httplib2<0.18.0,>=0.8, which is not installed.\n", "apache-beam 2.28.0 requires mock<3.0.0,>=1.0.1, which is not installed.\n", "tensorflow 2.5.0rc0 requires astunparse~=1.6.3, which is not installed.\n", "tensorflow 2.5.0rc0 requires flatbuffers~=1.12.0, which is not installed.\n", "tensorflow 2.5.0rc0 requires gast==0.4.0, which is not installed.\n", "tensorflow 2.5.0rc0 requires google-pasta~=0.2, which is not installed.\n", "tensorflow 2.5.0rc0 requires grpcio~=1.34.0, which is not installed.\n", "tensorflow 2.5.0rc0 requires h5py~=3.1.0, which is not installed.\n", "tensorflow 2.5.0rc0 requires keras-nightly~=2.5.0.dev, which is not installed.\n", "tensorflow 2.5.0rc0 requires keras-preprocessing~=1.1.2, which is not installed.\n", "tensorflow 2.5.0rc0 requires opt-einsum~=3.3.0, which is not installed.\n", "tensorflow 2.5.0rc0 requires tensorboard~=2.4, which is not installed.\n", "tensorflow 2.5.0rc0 requires termcolor~=1.1.0, which is not installed.\n", "tensorflow 2.5.0rc0 requires tf-estimator-nightly==2.5.0.dev2021032501, which is not installed.\n", "tensorflow 2.5.0rc0 requires wrapt~=1.12.1, which is not installed.\n", "tensorflow-datasets 4.2.0 requires attrs>=18.1.0, which is not installed.\n", "tensorflow-datasets 4.2.0 requires dill, which is not installed.\n", "tensorflow-datasets 4.2.0 requires future, which is not installed.\n", "tensorflow-datasets 4.2.0 requires importlib-resources, which is not installed.\n", "tensorflow-datasets 4.2.0 requires promise, which is not installed.\n", "tensorflow-datasets 4.2.0 requires tensorflow-metadata, which is not installed.\n", "tensorflow-datasets 4.2.0 requires termcolor, which is not installed.\n", "tensorflow-datasets 4.2.0 requires tqdm, which is not installed.\n", "google-cloud-bigquery 2.13.1 requires google-api-core[grpc]<2.0.0dev,>=1.23.0, which is not installed.\n", "google-cloud-bigquery 2.13.1 requires google-cloud-core<2.0dev,>=1.4.1, which is not installed.\n", "google-cloud-bigquery 2.13.1 requires google-resumable-media<2.0dev,>=0.6.0, which is not installed.\n", "google-cloud-bigquery 2.13.1 requires packaging>=14.3, which is not installed.\n", "google-cloud-bigquery 2.13.1 requires proto-plus>=1.10.0, which is not installed.\n", "apache-beam 2.28.0 requires avro-python3!=1.9.2,<1.10.0,>=1.8.1, but you have avro-python3 1.10.2 which is incompatible.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n", " Downloading protobuf-3.15.7-cp37-cp37m-win_amd64.whl (904 kB)\n", "Collecting matplotlib==3.2\n", " Using cached matplotlib-3.2.0-cp37-cp37m-win_amd64.whl (9.2 MB)\n", "Requirement already satisfied: cycler>=0.10 in d:\\youtube\\od\\tfodcourse\\tfod\\lib\\site-packages\\cycler-0.10.0-py3.7.egg (from matplotlib==3.2) (0.10.0)\n", "Requirement already satisfied: kiwisolver>=1.0.1 in d:\\youtube\\od\\tfodcourse\\tfod\\lib\\site-packages\\kiwisolver-1.3.1-py3.7-win-amd64.egg (from matplotlib==3.2) (1.3.1)\n", "Requirement already satisfied: python-dateutil>=2.1 in d:\\youtube\\od\\tfodcourse\\tfod\\lib\\site-packages (from matplotlib==3.2) (2.8.1)\n", "Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 in d:\\youtube\\od\\tfodcourse\\tfod\\lib\\site-packages\\pyparsing-3.0.0b2-py3.7.egg (from matplotlib==3.2) (3.0.0b2)\n", "Requirement already satisfied: numpy>=1.11 in d:\\youtube\\od\\tfodcourse\\tfod\\lib\\site-packages (from matplotlib==3.2) (1.19.5)\n", "Requirement already satisfied: six in d:\\youtube\\od\\tfodcourse\\tfod\\lib\\site-packages (from cycler>=0.10->matplotlib==3.2) (1.15.0)\n", "Installing collected packages: protobuf, matplotlib\n", "Successfully installed matplotlib-3.2.0 protobuf-3.15.7\n" ] } ], "source": [ "!pip uninstall protobuf matplotlib -y\n", "!pip install protobuf matplotlib==3.2" ] }, { "cell_type": "code", "execution_count": 25, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Collecting tensorflow-object-detection-api\n", " Downloading tensorflow_object_detection_api-0.1.1.tar.gz (577 kB)\n", " ---------------------------------------- 0.0/577.4 kB ? eta -:--:--\n", " -- ------------------------------------ 30.7/577.4 kB 1.3 MB/s eta 0:00:01\n", " -------- ----------------------------- 122.9/577.4 kB 1.2 MB/s eta 0:00:01\n", " --------------- ---------------------- 235.5/577.4 kB 1.6 MB/s eta 0:00:01\n", " ---------------------- --------------- 348.2/577.4 kB 1.8 MB/s eta 0:00:01\n", " ----------------------------- -------- 450.6/577.4 kB 1.8 MB/s eta 0:00:01\n", " ----------------------------------- -- 532.5/577.4 kB 1.8 MB/s eta 0:00:01\n", " -------------------------------------- 577.4/577.4 kB 1.7 MB/s eta 0:00:00\n", " Preparing metadata (setup.py): started\n", " Preparing metadata (setup.py): finished with status 'done'\n", "Requirement already satisfied: Pillow>=1.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow-object-detection-api) (10.3.0)\n", "Requirement already satisfied: Matplotlib>=2.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow-object-detection-api) (3.2.0)\n", "Requirement already satisfied: Cython>=0.28.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow-object-detection-api) (3.0.10)\n", "Requirement already satisfied: Protobuf in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow-object-detection-api) (3.19.6)\n", "Requirement already satisfied: lxml in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow-object-detection-api) (5.2.1)\n", "Requirement already satisfied: jupyter in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow-object-detection-api) (1.0.0)\n", "Requirement already satisfied: tensorflow in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow-object-detection-api) (2.10.1)\n", "Collecting contextlib2 (from tensorflow-object-detection-api)\n", " Downloading contextlib2-21.6.0-py2.py3-none-any.whl.metadata (4.1 kB)\n", "Requirement already satisfied: wheel in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow-object-detection-api) (0.43.0)\n", "Collecting twine (from tensorflow-object-detection-api)\n", " Downloading twine-5.0.0-py3-none-any.whl.metadata (3.3 kB)\n", "Requirement already satisfied: cycler>=0.10 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from Matplotlib>=2.1->tensorflow-object-detection-api) (0.12.1)\n", "Requirement already satisfied: kiwisolver>=1.0.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from Matplotlib>=2.1->tensorflow-object-detection-api) (1.4.5)\n", "Requirement already satisfied: numpy>=1.11 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from Matplotlib>=2.1->tensorflow-object-detection-api) (1.24.3)\n", "Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages\\pyparsing-2.4.7-py3.8.egg (from Matplotlib>=2.1->tensorflow-object-detection-api) (2.4.7)\n", "Requirement already satisfied: python-dateutil>=2.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from Matplotlib>=2.1->tensorflow-object-detection-api) (2.9.0.post0)\n", "Requirement already satisfied: notebook in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyter->tensorflow-object-detection-api) (7.1.2)\n", "Requirement already satisfied: qtconsole in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyter->tensorflow-object-detection-api) (5.5.1)\n", "Requirement already satisfied: jupyter-console in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyter->tensorflow-object-detection-api) (6.6.3)\n", "Requirement already satisfied: nbconvert in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyter->tensorflow-object-detection-api) (7.16.3)\n", "Requirement already satisfied: ipykernel in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyter->tensorflow-object-detection-api) (6.29.4)\n", "Requirement already satisfied: ipywidgets in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyter->tensorflow-object-detection-api) (8.1.2)\n", "Requirement already satisfied: absl-py>=1.0.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow->tensorflow-object-detection-api) (1.4.0)\n", "Requirement already satisfied: astunparse>=1.6.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow->tensorflow-object-detection-api) (1.6.3)\n", "Requirement already satisfied: flatbuffers>=2.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow->tensorflow-object-detection-api) (24.3.25)\n", "Requirement already satisfied: gast<=0.4.0,>=0.2.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow->tensorflow-object-detection-api) (0.4.0)\n", "Requirement already satisfied: google-pasta>=0.1.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow->tensorflow-object-detection-api) (0.2.0)\n", "Requirement already satisfied: h5py>=2.9.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow->tensorflow-object-detection-api) (3.10.0)\n", "Requirement already satisfied: keras-preprocessing>=1.1.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow->tensorflow-object-detection-api) (1.1.2)\n", "Requirement already satisfied: libclang>=13.0.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow->tensorflow-object-detection-api) (18.1.1)\n", "Requirement already satisfied: opt-einsum>=2.3.2 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow->tensorflow-object-detection-api) (3.3.0)\n", "Requirement already satisfied: packaging in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow->tensorflow-object-detection-api) (24.0)\n", "Requirement already satisfied: setuptools in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow->tensorflow-object-detection-api) (41.2.0)\n", "Requirement already satisfied: six>=1.12.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow->tensorflow-object-detection-api) (1.16.0)\n", "Requirement already satisfied: termcolor>=1.1.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow->tensorflow-object-detection-api) (2.4.0)\n", "Requirement already satisfied: typing-extensions>=3.6.6 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow->tensorflow-object-detection-api) (4.5.0)\n", "Requirement already satisfied: wrapt>=1.11.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow->tensorflow-object-detection-api) (1.16.0)\n", "Requirement already satisfied: tensorflow-io-gcs-filesystem>=0.23.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow->tensorflow-object-detection-api) (0.31.0)\n", "Requirement already satisfied: grpcio<2.0,>=1.24.3 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow->tensorflow-object-detection-api) (1.62.1)\n", "Requirement already satisfied: tensorboard<2.11,>=2.10 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow->tensorflow-object-detection-api) (2.10.1)\n", "Requirement already satisfied: tensorflow-estimator<2.11,>=2.10.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow->tensorflow-object-detection-api) (2.10.0)\n", "Requirement already satisfied: keras<2.11,>=2.10.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorflow->tensorflow-object-detection-api) (2.10.0)\n", "Collecting pkginfo>=1.8.1 (from twine->tensorflow-object-detection-api)\n", " Downloading pkginfo-1.10.0-py3-none-any.whl.metadata (11 kB)\n", "Collecting readme-renderer>=35.0 (from twine->tensorflow-object-detection-api)\n", " Downloading readme_renderer-43.0-py3-none-any.whl.metadata (2.8 kB)\n", "Requirement already satisfied: requests>=2.20 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from twine->tensorflow-object-detection-api) (2.31.0)\n", "Collecting requests-toolbelt!=0.9.0,>=0.8.0 (from twine->tensorflow-object-detection-api)\n", " Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl.metadata (14 kB)\n", "Requirement already satisfied: urllib3>=1.26.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from twine->tensorflow-object-detection-api) (2.2.1)\n", "Requirement already satisfied: importlib-metadata>=3.6 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from twine->tensorflow-object-detection-api) (7.1.0)\n", "Collecting keyring>=15.1 (from twine->tensorflow-object-detection-api)\n", " Downloading keyring-25.1.0-py3-none-any.whl.metadata (20 kB)\n", "Collecting rfc3986>=1.4.0 (from twine->tensorflow-object-detection-api)\n", " Downloading rfc3986-2.0.0-py2.py3-none-any.whl.metadata (6.6 kB)\n", "Collecting rich>=12.0.0 (from twine->tensorflow-object-detection-api)\n", " Using cached rich-13.7.1-py3-none-any.whl.metadata (18 kB)\n", "Requirement already satisfied: zipp>=0.5 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from importlib-metadata>=3.6->twine->tensorflow-object-detection-api) (3.18.1)\n", "Collecting jaraco.classes (from keyring>=15.1->twine->tensorflow-object-detection-api)\n", " Downloading jaraco.classes-3.4.0-py3-none-any.whl.metadata (2.6 kB)\n", "Collecting jaraco.functools (from keyring>=15.1->twine->tensorflow-object-detection-api)\n", " Downloading jaraco.functools-4.0.0-py3-none-any.whl.metadata (3.1 kB)\n", "Collecting jaraco.context (from keyring>=15.1->twine->tensorflow-object-detection-api)\n", " Downloading jaraco.context-5.1.0-py3-none-any.whl.metadata (3.9 kB)\n", "Requirement already satisfied: importlib-resources in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from keyring>=15.1->twine->tensorflow-object-detection-api) (6.4.0)\n", "Collecting pywin32-ctypes>=0.2.0 (from keyring>=15.1->twine->tensorflow-object-detection-api)\n", " Downloading pywin32_ctypes-0.2.2-py3-none-any.whl.metadata (3.8 kB)\n", "Collecting nh3>=0.2.14 (from readme-renderer>=35.0->twine->tensorflow-object-detection-api)\n", " Downloading nh3-0.2.17-cp37-abi3-win_amd64.whl.metadata (1.8 kB)\n", "Collecting docutils>=0.13.1 (from readme-renderer>=35.0->twine->tensorflow-object-detection-api)\n", " Downloading docutils-0.20.1-py3-none-any.whl.metadata (2.8 kB)\n", "Requirement already satisfied: Pygments>=2.5.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from readme-renderer>=35.0->twine->tensorflow-object-detection-api) (2.17.2)\n", "Requirement already satisfied: charset-normalizer<4,>=2 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from requests>=2.20->twine->tensorflow-object-detection-api) (3.3.2)\n", "Requirement already satisfied: idna<4,>=2.5 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from requests>=2.20->twine->tensorflow-object-detection-api) (3.6)\n", "Requirement already satisfied: certifi>=2017.4.17 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from requests>=2.20->twine->tensorflow-object-detection-api) (2024.2.2)\n", "Collecting markdown-it-py>=2.2.0 (from rich>=12.0.0->twine->tensorflow-object-detection-api)\n", " Using cached markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB)\n", "Requirement already satisfied: google-auth<3,>=1.6.3 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorboard<2.11,>=2.10->tensorflow->tensorflow-object-detection-api) (2.29.0)\n", "Requirement already satisfied: google-auth-oauthlib<0.5,>=0.4.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorboard<2.11,>=2.10->tensorflow->tensorflow-object-detection-api) (0.4.6)\n", "Requirement already satisfied: markdown>=2.6.8 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorboard<2.11,>=2.10->tensorflow->tensorflow-object-detection-api) (3.6)\n", "Requirement already satisfied: tensorboard-data-server<0.7.0,>=0.6.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorboard<2.11,>=2.10->tensorflow->tensorflow-object-detection-api) (0.6.1)\n", "Requirement already satisfied: tensorboard-plugin-wit>=1.6.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorboard<2.11,>=2.10->tensorflow->tensorflow-object-detection-api) (1.8.1)\n", "Requirement already satisfied: werkzeug>=1.0.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from tensorboard<2.11,>=2.10->tensorflow->tensorflow-object-detection-api) (3.0.2)\n", "Requirement already satisfied: comm>=0.1.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from ipykernel->jupyter->tensorflow-object-detection-api) (0.2.2)\n", "Requirement already satisfied: debugpy>=1.6.5 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from ipykernel->jupyter->tensorflow-object-detection-api) (1.8.1)\n", "Requirement already satisfied: ipython>=7.23.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from ipykernel->jupyter->tensorflow-object-detection-api) (8.12.3)\n", "Requirement already satisfied: jupyter-client>=6.1.12 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from ipykernel->jupyter->tensorflow-object-detection-api) (8.6.1)\n", "Requirement already satisfied: jupyter-core!=5.0.*,>=4.12 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from ipykernel->jupyter->tensorflow-object-detection-api) (5.7.2)\n", "Requirement already satisfied: matplotlib-inline>=0.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from ipykernel->jupyter->tensorflow-object-detection-api) (0.1.6)\n", "Requirement already satisfied: nest-asyncio in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from ipykernel->jupyter->tensorflow-object-detection-api) (1.6.0)\n", "Requirement already satisfied: psutil in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from ipykernel->jupyter->tensorflow-object-detection-api) (5.9.8)\n", "Requirement already satisfied: pyzmq>=24 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from ipykernel->jupyter->tensorflow-object-detection-api) (25.1.2)\n", "Requirement already satisfied: tornado>=6.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from ipykernel->jupyter->tensorflow-object-detection-api) (6.4)\n", "Requirement already satisfied: traitlets>=5.4.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from ipykernel->jupyter->tensorflow-object-detection-api) (5.14.2)\n", "Requirement already satisfied: widgetsnbextension~=4.0.10 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from ipywidgets->jupyter->tensorflow-object-detection-api) (4.0.10)\n", "Requirement already satisfied: jupyterlab-widgets~=3.0.10 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from ipywidgets->jupyter->tensorflow-object-detection-api) (3.0.10)\n", "Requirement already satisfied: prompt-toolkit>=3.0.30 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyter-console->jupyter->tensorflow-object-detection-api) (3.0.43)\n", "Requirement already satisfied: beautifulsoup4 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from nbconvert->jupyter->tensorflow-object-detection-api) (4.12.3)\n", "Requirement already satisfied: bleach!=5.0.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from nbconvert->jupyter->tensorflow-object-detection-api) (6.1.0)\n", "Requirement already satisfied: defusedxml in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from nbconvert->jupyter->tensorflow-object-detection-api) (0.7.1)\n", "Requirement already satisfied: jinja2>=3.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from nbconvert->jupyter->tensorflow-object-detection-api) (3.1.3)\n", "Requirement already satisfied: jupyterlab-pygments in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from nbconvert->jupyter->tensorflow-object-detection-api) (0.3.0)\n", "Requirement already satisfied: markupsafe>=2.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from nbconvert->jupyter->tensorflow-object-detection-api) (2.1.5)\n", "Requirement already satisfied: mistune<4,>=2.0.3 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from nbconvert->jupyter->tensorflow-object-detection-api) (3.0.2)\n", "Requirement already satisfied: nbclient>=0.5.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from nbconvert->jupyter->tensorflow-object-detection-api) (0.10.0)\n", "Requirement already satisfied: nbformat>=5.7 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from nbconvert->jupyter->tensorflow-object-detection-api) (5.10.4)\n", "Requirement already satisfied: pandocfilters>=1.4.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from nbconvert->jupyter->tensorflow-object-detection-api) (1.5.1)\n", "Requirement already satisfied: tinycss2 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from nbconvert->jupyter->tensorflow-object-detection-api) (1.2.1)\n", "Requirement already satisfied: jupyter-server<3,>=2.4.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from notebook->jupyter->tensorflow-object-detection-api) (2.13.0)\n", "Requirement already satisfied: jupyterlab-server<3,>=2.22.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from notebook->jupyter->tensorflow-object-detection-api) (2.25.4)\n", "Requirement already satisfied: jupyterlab<4.2,>=4.1.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from notebook->jupyter->tensorflow-object-detection-api) (4.1.5)\n", "Requirement already satisfied: notebook-shim<0.3,>=0.2 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from notebook->jupyter->tensorflow-object-detection-api) (0.2.4)\n", "Requirement already satisfied: qtpy>=2.4.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from qtconsole->jupyter->tensorflow-object-detection-api) (2.4.1)\n", "Requirement already satisfied: webencodings in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from bleach!=5.0.0->nbconvert->jupyter->tensorflow-object-detection-api) (0.5.1)\n", "Requirement already satisfied: cachetools<6.0,>=2.0.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from google-auth<3,>=1.6.3->tensorboard<2.11,>=2.10->tensorflow->tensorflow-object-detection-api) (5.3.3)\n", "Requirement already satisfied: pyasn1-modules>=0.2.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from google-auth<3,>=1.6.3->tensorboard<2.11,>=2.10->tensorflow->tensorflow-object-detection-api) (0.4.0)\n", "Requirement already satisfied: rsa<5,>=3.1.4 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from google-auth<3,>=1.6.3->tensorboard<2.11,>=2.10->tensorflow->tensorflow-object-detection-api) (4.9)\n", "Requirement already satisfied: requests-oauthlib>=0.7.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from google-auth-oauthlib<0.5,>=0.4.1->tensorboard<2.11,>=2.10->tensorflow->tensorflow-object-detection-api) (2.0.0)\n", "Requirement already satisfied: backcall in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from ipython>=7.23.1->ipykernel->jupyter->tensorflow-object-detection-api) (0.2.0)\n", "Requirement already satisfied: decorator in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from ipython>=7.23.1->ipykernel->jupyter->tensorflow-object-detection-api) (5.1.1)\n", "Requirement already satisfied: jedi>=0.16 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from ipython>=7.23.1->ipykernel->jupyter->tensorflow-object-detection-api) (0.19.1)\n", "Requirement already satisfied: pickleshare in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from ipython>=7.23.1->ipykernel->jupyter->tensorflow-object-detection-api) (0.7.5)\n", "Requirement already satisfied: stack-data in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from ipython>=7.23.1->ipykernel->jupyter->tensorflow-object-detection-api) (0.6.3)\n", "Requirement already satisfied: colorama in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from ipython>=7.23.1->ipykernel->jupyter->tensorflow-object-detection-api) (0.4.6)\n", "Requirement already satisfied: platformdirs>=2.5 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyter-core!=5.0.*,>=4.12->ipykernel->jupyter->tensorflow-object-detection-api) (4.2.0)\n", "Requirement already satisfied: pywin32>=300 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyter-core!=5.0.*,>=4.12->ipykernel->jupyter->tensorflow-object-detection-api) (306)\n", "Requirement already satisfied: anyio>=3.1.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyter-server<3,>=2.4.0->notebook->jupyter->tensorflow-object-detection-api) (4.3.0)\n", "Requirement already satisfied: argon2-cffi in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyter-server<3,>=2.4.0->notebook->jupyter->tensorflow-object-detection-api) (23.1.0)\n", "Requirement already satisfied: jupyter-events>=0.9.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyter-server<3,>=2.4.0->notebook->jupyter->tensorflow-object-detection-api) (0.10.0)\n", "Requirement already satisfied: jupyter-server-terminals in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyter-server<3,>=2.4.0->notebook->jupyter->tensorflow-object-detection-api) (0.5.3)\n", "Requirement already satisfied: overrides in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyter-server<3,>=2.4.0->notebook->jupyter->tensorflow-object-detection-api) (7.7.0)\n", "Requirement already satisfied: prometheus-client in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyter-server<3,>=2.4.0->notebook->jupyter->tensorflow-object-detection-api) (0.20.0)\n", "Requirement already satisfied: pywinpty in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyter-server<3,>=2.4.0->notebook->jupyter->tensorflow-object-detection-api) (2.0.13)\n", "Requirement already satisfied: send2trash>=1.8.2 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyter-server<3,>=2.4.0->notebook->jupyter->tensorflow-object-detection-api) (1.8.2)\n", "Requirement already satisfied: terminado>=0.8.3 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyter-server<3,>=2.4.0->notebook->jupyter->tensorflow-object-detection-api) (0.18.1)\n", "Requirement already satisfied: websocket-client in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyter-server<3,>=2.4.0->notebook->jupyter->tensorflow-object-detection-api) (1.7.0)\n", "Requirement already satisfied: async-lru>=1.0.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyterlab<4.2,>=4.1.1->notebook->jupyter->tensorflow-object-detection-api) (2.0.4)\n", "Requirement already satisfied: httpx>=0.25.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyterlab<4.2,>=4.1.1->notebook->jupyter->tensorflow-object-detection-api) (0.27.0)\n", "Requirement already satisfied: jupyter-lsp>=2.0.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyterlab<4.2,>=4.1.1->notebook->jupyter->tensorflow-object-detection-api) (2.2.4)\n", "Requirement already satisfied: tomli in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyterlab<4.2,>=4.1.1->notebook->jupyter->tensorflow-object-detection-api) (2.0.1)\n", "Requirement already satisfied: babel>=2.10 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyterlab-server<3,>=2.22.1->notebook->jupyter->tensorflow-object-detection-api) (2.14.0)\n", "Requirement already satisfied: json5>=0.9.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyterlab-server<3,>=2.22.1->notebook->jupyter->tensorflow-object-detection-api) (0.9.24)\n", "Requirement already satisfied: jsonschema>=4.18.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyterlab-server<3,>=2.22.1->notebook->jupyter->tensorflow-object-detection-api) (4.21.1)\n", "Collecting mdurl~=0.1 (from markdown-it-py>=2.2.0->rich>=12.0.0->twine->tensorflow-object-detection-api)\n", " Using cached mdurl-0.1.2-py3-none-any.whl.metadata (1.6 kB)\n", "Requirement already satisfied: fastjsonschema>=2.15 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from nbformat>=5.7->nbconvert->jupyter->tensorflow-object-detection-api) (2.19.1)\n", "Requirement already satisfied: wcwidth in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from prompt-toolkit>=3.0.30->jupyter-console->jupyter->tensorflow-object-detection-api) (0.2.13)\n", "Requirement already satisfied: soupsieve>1.2 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from beautifulsoup4->nbconvert->jupyter->tensorflow-object-detection-api) (2.5)\n", "Collecting more-itertools (from jaraco.classes->keyring>=15.1->twine->tensorflow-object-detection-api)\n", " Downloading more_itertools-10.2.0-py3-none-any.whl.metadata (34 kB)\n", "Requirement already satisfied: sniffio>=1.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from anyio>=3.1.0->jupyter-server<3,>=2.4.0->notebook->jupyter->tensorflow-object-detection-api) (1.3.1)\n", "Requirement already satisfied: exceptiongroup>=1.0.2 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from anyio>=3.1.0->jupyter-server<3,>=2.4.0->notebook->jupyter->tensorflow-object-detection-api) (1.2.0)\n", "Requirement already satisfied: pytz>=2015.7 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from babel>=2.10->jupyterlab-server<3,>=2.22.1->notebook->jupyter->tensorflow-object-detection-api) (2024.1)\n", "Requirement already satisfied: httpcore==1.* in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from httpx>=0.25.0->jupyterlab<4.2,>=4.1.1->notebook->jupyter->tensorflow-object-detection-api) (1.0.5)\n", "Requirement already satisfied: h11<0.15,>=0.13 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from httpcore==1.*->httpx>=0.25.0->jupyterlab<4.2,>=4.1.1->notebook->jupyter->tensorflow-object-detection-api) (0.14.0)\n", "Requirement already satisfied: parso<0.9.0,>=0.8.3 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jedi>=0.16->ipython>=7.23.1->ipykernel->jupyter->tensorflow-object-detection-api) (0.8.4)\n", "Requirement already satisfied: attrs>=22.2.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jsonschema>=4.18.0->jupyterlab-server<3,>=2.22.1->notebook->jupyter->tensorflow-object-detection-api) (23.2.0)\n", "Requirement already satisfied: jsonschema-specifications>=2023.03.6 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jsonschema>=4.18.0->jupyterlab-server<3,>=2.22.1->notebook->jupyter->tensorflow-object-detection-api) (2023.12.1)\n", "Requirement already satisfied: pkgutil-resolve-name>=1.3.10 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jsonschema>=4.18.0->jupyterlab-server<3,>=2.22.1->notebook->jupyter->tensorflow-object-detection-api) (1.3.10)\n", "Requirement already satisfied: referencing>=0.28.4 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jsonschema>=4.18.0->jupyterlab-server<3,>=2.22.1->notebook->jupyter->tensorflow-object-detection-api) (0.34.0)\n", "Requirement already satisfied: rpds-py>=0.7.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jsonschema>=4.18.0->jupyterlab-server<3,>=2.22.1->notebook->jupyter->tensorflow-object-detection-api) (0.18.0)\n", "Requirement already satisfied: python-json-logger>=2.0.4 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=2.4.0->notebook->jupyter->tensorflow-object-detection-api) (2.0.7)\n", "Requirement already satisfied: pyyaml>=5.3 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=2.4.0->notebook->jupyter->tensorflow-object-detection-api) (5.4.1)\n", "Requirement already satisfied: rfc3339-validator in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=2.4.0->notebook->jupyter->tensorflow-object-detection-api) (0.1.4)\n", "Requirement already satisfied: rfc3986-validator>=0.1.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jupyter-events>=0.9.0->jupyter-server<3,>=2.4.0->notebook->jupyter->tensorflow-object-detection-api) (0.1.1)\n", "Requirement already satisfied: pyasn1<0.7.0,>=0.4.6 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from pyasn1-modules>=0.2.1->google-auth<3,>=1.6.3->tensorboard<2.11,>=2.10->tensorflow->tensorflow-object-detection-api) (0.6.0)\n", "Requirement already satisfied: oauthlib>=3.0.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from requests-oauthlib>=0.7.0->google-auth-oauthlib<0.5,>=0.4.1->tensorboard<2.11,>=2.10->tensorflow->tensorflow-object-detection-api) (3.2.2)\n", "Requirement already satisfied: argon2-cffi-bindings in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from argon2-cffi->jupyter-server<3,>=2.4.0->notebook->jupyter->tensorflow-object-detection-api) (21.2.0)\n", "Requirement already satisfied: executing>=1.2.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from stack-data->ipython>=7.23.1->ipykernel->jupyter->tensorflow-object-detection-api) (2.0.1)\n", "Requirement already satisfied: asttokens>=2.1.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from stack-data->ipython>=7.23.1->ipykernel->jupyter->tensorflow-object-detection-api) (2.4.1)\n", "Requirement already satisfied: pure-eval in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from stack-data->ipython>=7.23.1->ipykernel->jupyter->tensorflow-object-detection-api) (0.2.2)\n", "Requirement already satisfied: fqdn in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=2.4.0->notebook->jupyter->tensorflow-object-detection-api) (1.5.1)\n", "Requirement already satisfied: isoduration in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=2.4.0->notebook->jupyter->tensorflow-object-detection-api) (20.11.0)\n", "Requirement already satisfied: jsonpointer>1.13 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=2.4.0->notebook->jupyter->tensorflow-object-detection-api) (2.4)\n", "Requirement already satisfied: uri-template in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=2.4.0->notebook->jupyter->tensorflow-object-detection-api) (1.3.0)\n", "Requirement already satisfied: webcolors>=1.11 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=2.4.0->notebook->jupyter->tensorflow-object-detection-api) (1.13)\n", "Requirement already satisfied: cffi>=1.0.1 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from argon2-cffi-bindings->argon2-cffi->jupyter-server<3,>=2.4.0->notebook->jupyter->tensorflow-object-detection-api) (1.16.0)\n", "Requirement already satisfied: pycparser in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from cffi>=1.0.1->argon2-cffi-bindings->argon2-cffi->jupyter-server<3,>=2.4.0->notebook->jupyter->tensorflow-object-detection-api) (2.22)\n", "Requirement already satisfied: arrow>=0.15.0 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=2.4.0->notebook->jupyter->tensorflow-object-detection-api) (1.3.0)\n", "Requirement already satisfied: types-python-dateutil>=2.8.10 in c:\\tensor flow object detection\\tfodcourse\\tensor\\lib\\site-packages (from arrow>=0.15.0->isoduration->jsonschema[format-nongpl]>=4.18.0->jupyter-events>=0.9.0->jupyter-server<3,>=2.4.0->notebook->jupyter->tensorflow-object-detection-api) (2.9.0.20240316)\n", "Downloading contextlib2-21.6.0-py2.py3-none-any.whl (13 kB)\n", "Downloading twine-5.0.0-py3-none-any.whl (37 kB)\n", "Downloading keyring-25.1.0-py3-none-any.whl (37 kB)\n", "Downloading pkginfo-1.10.0-py3-none-any.whl (30 kB)\n", "Downloading readme_renderer-43.0-py3-none-any.whl (13 kB)\n", "Downloading requests_toolbelt-1.0.0-py2.py3-none-any.whl (54 kB)\n", " ---------------------------------------- 0.0/54.5 kB ? eta -:--:--\n", " ---------------------------------------- 54.5/54.5 kB 2.8 MB/s eta 0:00:00\n", "Downloading rfc3986-2.0.0-py2.py3-none-any.whl (31 kB)\n", "Using cached rich-13.7.1-py3-none-any.whl (240 kB)\n", "Downloading docutils-0.20.1-py3-none-any.whl (572 kB)\n", " ---------------------------------------- 0.0/572.7 kB ? eta -:--:--\n", " ------------ --------------------------- 174.1/572.7 kB 5.3 MB/s eta 0:00:01\n", " ------------ --------------------------- 174.1/572.7 kB 5.3 MB/s eta 0:00:01\n", " ----------------------- ---------------- 337.9/572.7 kB 2.3 MB/s eta 0:00:01\n", " -------------------------------------- - 553.0/572.7 kB 2.9 MB/s eta 0:00:01\n", " ---------------------------------------- 572.7/572.7 kB 2.4 MB/s eta 0:00:00\n", "Using cached markdown_it_py-3.0.0-py3-none-any.whl (87 kB)\n", "Downloading nh3-0.2.17-cp37-abi3-win_amd64.whl (571 kB)\n", " ---------------------------------------- 0.0/571.5 kB ? eta -:--:--\n", " -------- ------------------------------- 122.9/571.5 kB 3.6 MB/s eta 0:00:01\n", " ---------------- ----------------------- 235.5/571.5 kB 2.9 MB/s eta 0:00:01\n", " ------------------------- -------------- 358.4/571.5 kB 2.8 MB/s eta 0:00:01\n", " -------------------------------- ------- 460.8/571.5 kB 2.6 MB/s eta 0:00:01\n", " --------------------------------------- 563.2/571.5 kB 2.5 MB/s eta 0:00:01\n", " ---------------------------------------- 571.5/571.5 kB 2.4 MB/s eta 0:00:00\n", "Downloading pywin32_ctypes-0.2.2-py3-none-any.whl (30 kB)\n", "Downloading jaraco.classes-3.4.0-py3-none-any.whl (6.8 kB)\n", "Downloading jaraco.context-5.1.0-py3-none-any.whl (6.3 kB)\n", "Downloading jaraco.functools-4.0.0-py3-none-any.whl (9.8 kB)\n", "Using cached mdurl-0.1.2-py3-none-any.whl (10.0 kB)\n", "Downloading more_itertools-10.2.0-py3-none-any.whl (57 kB)\n", " ---------------------------------------- 0.0/57.0 kB ? eta -:--:--\n", " ---------------------------------------- 57.0/57.0 kB 2.9 MB/s eta 0:00:00\n", "Building wheels for collected packages: tensorflow-object-detection-api\n", " Building wheel for tensorflow-object-detection-api (setup.py): started\n", " Building wheel for tensorflow-object-detection-api (setup.py): finished with status 'done'\n", " Created wheel for tensorflow-object-detection-api: filename=tensorflow_object_detection_api-0.1.1-py3-none-any.whl size=844522 sha256=297183adf90679e583306671dddf7348f258dd7a1b64e2009b6c5efdae20b177\n", " Stored in directory: c:\\users\\mani shah\\appdata\\local\\pip\\cache\\wheels\\93\\4e\\cd\\e2d0aecb1680cbc6730933bc53a776f7213acb08ecbb91c301\n", "Successfully built tensorflow-object-detection-api\n", "Installing collected packages: nh3, rfc3986, pywin32-ctypes, pkginfo, more-itertools, mdurl, jaraco.context, docutils, contextlib2, requests-toolbelt, readme-renderer, markdown-it-py, jaraco.functools, jaraco.classes, rich, keyring, twine, tensorflow-object-detection-api\n", "Successfully installed contextlib2-21.6.0 docutils-0.20.1 jaraco.classes-3.4.0 jaraco.context-5.1.0 jaraco.functools-4.0.0 keyring-25.1.0 markdown-it-py-3.0.0 mdurl-0.1.2 more-itertools-10.2.0 nh3-0.2.17 pkginfo-1.10.0 pywin32-ctypes-0.2.2 readme-renderer-43.0 requests-toolbelt-1.0.0 rfc3986-2.0.0 rich-13.7.1 tensorflow-object-detection-api-0.1.1 twine-5.0.0\n", "Note: you may need to restart the kernel to use updated packages.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.\n", "object-detection 0.1 requires apache-beam, which is not installed.\n", "object-detection 0.1 requires avro-python3, which is not installed.\n", "object-detection 0.1 requires lvis, which is not installed.\n" ] } ], "source": [ "pip install tensorflow-object-detection-api" ] } ], "metadata": { "accelerator": "GPU", "colab": { "name": "3. Training and Detection.ipynb", "provenance": [] }, "kernelspec": { "display_name": "tensor1", "language": "python", "name": "tensor1" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.0" } }, "nbformat": 4, "nbformat_minor": 4 }