Skip to content

Instantly share code, notes, and snippets.

@chottokun
Created October 21, 2024 12:56
Show Gist options
  • Select an option

  • Save chottokun/a02f91615c243a0576160858d4b3b6bd to your computer and use it in GitHub Desktop.

Select an option

Save chottokun/a02f91615c243a0576160858d4b3b6bd to your computer and use it in GitHub Desktop.
granite3-dense.ipynb
Display the source blob
Display the rendered blob
Raw
{
"nbformat": 4,
"nbformat_minor": 0,
"metadata": {
"colab": {
"provenance": [],
"gpuType": "T4",
"collapsed_sections": [
"k8yY0-fnIRpP",
"h8aJAR8xHM1h"
],
"machine_shape": "hm",
"authorship_tag": "ABX9TyOwGG+Q9RtZE9li9dEGoO2C",
"include_colab_link": true
},
"kernelspec": {
"name": "python3",
"display_name": "Python 3"
},
"language_info": {
"name": "python"
},
"accelerator": "GPU"
},
"cells": [
{
"cell_type": "markdown",
"metadata": {
"id": "view-in-github",
"colab_type": "text"
},
"source": [
"<a href=\"https://colab.research.google.com/gist/chottokun/a02f91615c243a0576160858d4b3b6bd/granite3-dense.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
]
},
{
"cell_type": "code",
"source": [
"# 感謝とリファレンス\n",
"# https://github.com/HawkClaws/oyama"
],
"metadata": {
"id": "V0xWAUncPLyo"
},
"execution_count": 11,
"outputs": []
},
{
"cell_type": "markdown",
"source": [
"# ollama+oyamaで起動"
],
"metadata": {
"id": "Jr5QqUjdH2EG"
}
},
{
"cell_type": "code",
"source": [
"#@title ollama、huggingfaceのggufモデル選択\n",
"model_path = \"granite3-dense\" # @param {type:\"string\"}\n"
],
"metadata": {
"cellView": "form",
"id": "8qonLAr4IpHb"
},
"execution_count": 12,
"outputs": []
},
{
"cell_type": "markdown",
"source": [
"## apt & pip\n",
"セッション再起動がchat起動前に必要です。\n"
],
"metadata": {
"id": "k8yY0-fnIRpP"
}
},
{
"cell_type": "code",
"source": [
"# aptとか読み込みとか"
],
"metadata": {
"id": "Z_DS4Oc4H8Iv"
},
"execution_count": 13,
"outputs": []
},
{
"cell_type": "code",
"source": [
"!apt-get -y install pciutils"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "gjQWeyAYO86q",
"outputId": "c378d003-6e63-4b7d-b4db-054d7bb05a9a"
},
"execution_count": 14,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Reading package lists... Done\n",
"Building dependency tree... Done\n",
"Reading state information... Done\n",
"pciutils is already the newest version (1:3.7.0-6).\n",
"0 upgraded, 0 newly installed, 0 to remove and 49 not upgraded.\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"!pip install -q git+https://github.com/HawkClaws/oyama.git ollama"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "9b6iQFXBMTIN",
"outputId": "51d13adc-05db-46b6-92f9-473b409a9a2e"
},
"execution_count": 15,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
" Preparing metadata (setup.py) ... \u001b[?25l\u001b[?25hdone\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"!pip install -q langchain-community tiktoken"
],
"metadata": {
"id": "zJSjnk17Mirg"
},
"execution_count": 16,
"outputs": []
},
{
"cell_type": "code",
"source": [
"!pip install mesop"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "AqZ9wwyVEkVb",
"outputId": "3a6f85ab-8336-41af-a7ac-eb509f735371"
},
"execution_count": 17,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Requirement already satisfied: mesop in /usr/local/lib/python3.10/dist-packages (0.12.7)\n",
"Requirement already satisfied: absl-py in /usr/local/lib/python3.10/dist-packages (from mesop) (1.4.0)\n",
"Requirement already satisfied: deepdiff==6.* in /usr/local/lib/python3.10/dist-packages (from mesop) (6.7.1)\n",
"Requirement already satisfied: flask in /usr/local/lib/python3.10/dist-packages (from mesop) (2.2.5)\n",
"Requirement already satisfied: msgpack in /usr/local/lib/python3.10/dist-packages (from mesop) (1.1.0)\n",
"Requirement already satisfied: protobuf in /usr/local/lib/python3.10/dist-packages (from mesop) (3.20.3)\n",
"Requirement already satisfied: pydantic in /usr/local/lib/python3.10/dist-packages (from mesop) (2.9.2)\n",
"Requirement already satisfied: python-dotenv in /usr/local/lib/python3.10/dist-packages (from mesop) (1.0.1)\n",
"Requirement already satisfied: watchdog in /usr/local/lib/python3.10/dist-packages (from mesop) (5.0.3)\n",
"Requirement already satisfied: ordered-set<4.2.0,>=4.0.2 in /usr/local/lib/python3.10/dist-packages (from deepdiff==6.*->mesop) (4.1.0)\n",
"Requirement already satisfied: Werkzeug>=2.2.2 in /usr/local/lib/python3.10/dist-packages (from flask->mesop) (3.0.4)\n",
"Requirement already satisfied: Jinja2>=3.0 in /usr/local/lib/python3.10/dist-packages (from flask->mesop) (3.1.4)\n",
"Requirement already satisfied: itsdangerous>=2.0 in /usr/local/lib/python3.10/dist-packages (from flask->mesop) (2.2.0)\n",
"Requirement already satisfied: click>=8.0 in /usr/local/lib/python3.10/dist-packages (from flask->mesop) (8.1.7)\n",
"Requirement already satisfied: annotated-types>=0.6.0 in /usr/local/lib/python3.10/dist-packages (from pydantic->mesop) (0.7.0)\n",
"Requirement already satisfied: pydantic-core==2.23.4 in /usr/local/lib/python3.10/dist-packages (from pydantic->mesop) (2.23.4)\n",
"Requirement already satisfied: typing-extensions>=4.6.1 in /usr/local/lib/python3.10/dist-packages (from pydantic->mesop) (4.12.2)\n",
"Requirement already satisfied: MarkupSafe>=2.0 in /usr/local/lib/python3.10/dist-packages (from Jinja2>=3.0->flask->mesop) (3.0.1)\n"
]
}
]
},
{
"cell_type": "markdown",
"source": [
"## モデルの読み込みと動作確認"
],
"metadata": {
"id": "y4ODQIzlIKRf"
}
},
{
"cell_type": "code",
"source": [
"# modelfile = \"\"\"\n",
"# PARAMETER temperature 0.3\n",
"# \"\"\""
],
"metadata": {
"id": "F7VmfJh-XG1N"
},
"execution_count": 18,
"outputs": []
},
{
"cell_type": "code",
"source": [
"from oyama import oyama\n",
"import ollama\n",
"\n",
"# Model Path\n",
"model_name = oyama.run(model_path)"
],
"metadata": {
"id": "FPJYTdEpMaS9",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "bbb49762-e9ae-4e0d-e032-70c4015ebf02"
},
"execution_count": 19,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"command:=ollama --version\n",
"Output: ollama version is 0.3.14\n",
"ollama version is 0.3.14\n",
"Server is ready.\n",
"command:=ollama pull granite3-dense\n",
"Output: \u001b[?25lpulling manifest ⠋ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠙ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠹ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠸ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠼ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠴ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠦ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠧ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠇ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠋ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠋ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠙ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠸ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠸ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠼ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠴ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠦ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠧ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠇ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠏ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠋ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠙ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠹ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠸ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠼ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 348 KB/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 1% ▕ ▏ 20 MB/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 2% ▕ ▏ 26 MB/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 3% ▕ ▏ 52 MB/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 5% ▕ ▏ 72 MB/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 5% ▕ ▏ 87 MB/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 8% ▕█ ▏ 121 MB/1.6 GB 60 MB/s 24s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 9% ▕█ ▏ 150 MB/1.6 GB 60 MB/s 23s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 10% ▕█ ▏ 167 MB/1.6 GB 60 MB/s 23s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 12% ▕█ ▏ 197 MB/1.6 GB 60 MB/s 23s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 14% ▕██ ▏ 230 MB/1.6 GB 60 MB/s 22s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 16% ▕██ ▏ 252 MB/1.6 GB 60 MB/s 22s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 18% ▕██ ▏ 292 MB/1.6 GB 60 MB/s 21s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 20% ▕███ ▏ 323 MB/1.6 GB 60 MB/s 20s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 21% ▕███ ▏ 342 MB/1.6 GB 60 MB/s 20s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 24% ▕███ ▏ 388 MB/1.6 GB 60 MB/s 19s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 26% ▕████ ▏ 420 MB/1.6 GB 140 MB/s 8s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 28% ▕████ ▏ 441 MB/1.6 GB 140 MB/s 8s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 30% ▕████ ▏ 485 MB/1.6 GB 140 MB/s 7s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 33% ▕█████ ▏ 526 MB/1.6 GB 140 MB/s 7s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 34% ▕█████ ▏ 544 MB/1.6 GB 140 MB/s 7s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 37% ▕█████ ▏ 589 MB/1.6 GB 140 MB/s 7s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 39% ▕██████ ▏ 623 MB/1.6 GB 140 MB/s 6s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 40% ▕██████ ▏ 643 MB/1.6 GB 140 MB/s 6s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 42% ▕██████ ▏ 680 MB/1.6 GB 140 MB/s 6s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 45% ▕███████ ▏ 727 MB/1.6 GB 140 MB/s 6s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 47% ▕███████ ▏ 745 MB/1.6 GB 140 MB/s 6s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 49% ▕███████ ▏ 785 MB/1.6 GB 191 MB/s 4s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 51% ▕████████ ▏ 821 MB/1.6 GB 191 MB/s 4s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 52% ▕████████ ▏ 836 MB/1.6 GB 191 MB/s 3s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 55% ▕████████ ▏ 876 MB/1.6 GB 191 MB/s 3s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 57% ▕█████████ ▏ 908 MB/1.6 GB 191 MB/s 3s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 58% ▕█████████ ▏ 930 MB/1.6 GB 191 MB/s 3s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 60% ▕█████████ ▏ 965 MB/1.6 GB 191 MB/s 3s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 63% ▕██████████ ▏ 1.0 GB/1.6 GB 191 MB/s 3s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 65% ▕██████████ ▏ 1.0 GB/1.6 GB 191 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 66% ▕██████████ ▏ 1.1 GB/1.6 GB 191 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 68% ▕██████████ ▏ 1.1 GB/1.6 GB 215 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 69% ▕███████████ ▏ 1.1 GB/1.6 GB 215 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 71% ▕███████████ ▏ 1.1 GB/1.6 GB 215 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 73% ▕███████████ ▏ 1.2 GB/1.6 GB 215 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 74% ▕███████████ ▏ 1.2 GB/1.6 GB 215 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 75% ▕███████████ ▏ 1.2 GB/1.6 GB 215 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 75% ▕███████████ ▏ 1.2 GB/1.6 GB 215 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 75% ▕███████████ ▏ 1.2 GB/1.6 GB 215 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 75% ▕███████████ ▏ 1.2 GB/1.6 GB 215 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 75% ▕███████████ ▏ 1.2 GB/1.6 GB 215 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 75% ▕███████████ ▏ 1.2 GB/1.6 GB 200 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 75% ▕███████████ ▏ 1.2 GB/1.6 GB 200 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 75% ▕████████████ ▏ 1.2 GB/1.6 GB 200 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 75% ▕████████████ ▏ 1.2 GB/1.6 GB 200 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 75% ▕████████████ ▏ 1.2 GB/1.6 GB 200 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 76% ▕████████████ ▏ 1.2 GB/1.6 GB 200 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 77% ▕████████████ ▏ 1.2 GB/1.6 GB 200 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 77% ▕████████████ ▏ 1.2 GB/1.6 GB 200 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 77% ▕████████████ ▏ 1.2 GB/1.6 GB 200 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 77% ▕████████████ ▏ 1.2 GB/1.6 GB 200 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 77% ▕████████████ ▏ 1.2 GB/1.6 GB 177 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 77% ▕████████████ ▏ 1.2 GB/1.6 GB 177 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 77% ▕████████████ ▏ 1.2 GB/1.6 GB 177 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 77% ▕████████████ ▏ 1.2 GB/1.6 GB 177 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 78% ▕████████████ ▏ 1.2 GB/1.6 GB 177 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 78% ▕████████████ ▏ 1.2 GB/1.6 GB 177 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 78% ▕████████████ ▏ 1.2 GB/1.6 GB 177 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 78% ▕████████████ ▏ 1.2 GB/1.6 GB 177 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 78% ▕████████████ ▏ 1.2 GB/1.6 GB 177 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 78% ▕████████████ ▏ 1.2 GB/1.6 GB 177 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 78% ▕████████████ ▏ 1.2 GB/1.6 GB 155 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 78% ▕████████████ ▏ 1.2 GB/1.6 GB 155 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 78% ▕████████████ ▏ 1.2 GB/1.6 GB 155 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 78% ▕████████████ ▏ 1.2 GB/1.6 GB 155 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 78% ▕████████████ ▏ 1.2 GB/1.6 GB 155 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 78% ▕████████████ ▏ 1.2 GB/1.6 GB 155 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 78% ▕████████████ ▏ 1.2 GB/1.6 GB 155 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 82% ▕█████████████ ▏ 1.3 GB/1.6 GB 155 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 83% ▕█████████████ ▏ 1.3 GB/1.6 GB 155 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 85% ▕█████████████ ▏ 1.4 GB/1.6 GB 155 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 85% ▕█████████████ ▏ 1.4 GB/1.6 GB 155 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 86% ▕█████████████ ▏ 1.4 GB/1.6 GB 152 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 88% ▕██████████████ ▏ 1.4 GB/1.6 GB 152 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 88% ▕██████████████ ▏ 1.4 GB/1.6 GB 152 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 90% ▕██████████████ ▏ 1.4 GB/1.6 GB 152 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 91% ▕██████████████ ▏ 1.5 GB/1.6 GB 152 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 92% ▕██████████████ ▏ 1.5 GB/1.6 GB 152 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 92% ▕██████████████ ▏ 1.5 GB/1.6 GB 152 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 93% ▕██████████████ ▏ 1.5 GB/1.6 GB 152 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 93% ▕██████████████ ▏ 1.5 GB/1.6 GB 152 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 94% ▕███████████████ ▏ 1.5 GB/1.6 GB 152 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 95% ▕███████████████ ▏ 1.5 GB/1.6 GB 168 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 95% ▕███████████████ ▏ 1.5 GB/1.6 GB 168 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 96% ▕███████████████ ▏ 1.5 GB/1.6 GB 168 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 96% ▕███████████████ ▏ 1.5 GB/1.6 GB 168 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 96% ▕███████████████ ▏ 1.5 GB/1.6 GB 168 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 97% ▕███████████████ ▏ 1.5 GB/1.6 GB 168 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 97% ▕███████████████ ▏ 1.6 GB/1.6 GB 168 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 97% ▕███████████████ ▏ 1.6 GB/1.6 GB 168 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 97% ▕███████████████ ▏ 1.6 GB/1.6 GB 168 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 97% ▕███████████████ ▏ 1.6 GB/1.6 GB 168 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 97% ▕███████████████ ▏ 1.6 GB/1.6 GB 159 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 98% ▕███████████████ ▏ 1.6 GB/1.6 GB 159 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 98% ▕███████████████ ▏ 1.6 GB/1.6 GB 159 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 98% ▕███████████████ ▏ 1.6 GB/1.6 GB 159 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 98% ▕███████████████ ▏ 1.6 GB/1.6 GB 159 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 98% ▕███████████████ ▏ 1.6 GB/1.6 GB 159 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 98% ▕███████████████ ▏ 1.6 GB/1.6 GB 159 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 159 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 159 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 159 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 129 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 129 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 129 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 129 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 129 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 129 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 129 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 129 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 129 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 129 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 91 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 91 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 91 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 91 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 91 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 91 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 91 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 91 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 91 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 91 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 91 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 57 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 57 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 57 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 57 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 57 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 57 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 57 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 57 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 57 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 57 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 0% ▕ ▏ 0 B/ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 0% ▕ ▏ 0 B/ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 0% ▕ ▏ 0 B/ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 0% ▕ ▏ 0 B/ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 0% ▕ ▏ 0 B/ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 0% ▕ ▏ 0 B/ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 0% ▕ ▏ 0 B/ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 0% ▕ ▏ 0 B/ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 0% ▕ ▏ 0 B/ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 0% ▕ ▏ 0 B/ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 0% ▕ ▏ 0 B/ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 0% ▕ ▏ 0 B/ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 0% ▕ ▏ 0 B/ 417 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 0% ▕ ▏ 0 B/ 417 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 0% ▕ ▏ 0 B/ 417 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 0% ▕ ▏ 0 B/ 417 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 0% ▕ ▏ 0 B/ 417 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 0% ▕ ▏ 0 B/ 417 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠋ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠙ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠹ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠸ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠼ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠴ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠦ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠧ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠇ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠏ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠋ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠙ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠹ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠸ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠼ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠴ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠦ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠧ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠇ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠏ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠋ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠙ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠹ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠸ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠼ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠴ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠦ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠧ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠇ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠏ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠋ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠙ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠹ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠸ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠼ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠴ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠦ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠧ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠇ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠏ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠋ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠙ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠹ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠸ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠼ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠴ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠦ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠧ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest \n",
"writing manifest \n",
"success \u001b[?25h\n",
"\u001b[?25lpulling manifest ⠋ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠙ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠹ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠸ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠼ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠴ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠦ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠧ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠇ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠋ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠋ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠙ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠸ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠸ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠼ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠴ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠦ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠧ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠇ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠏ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠋ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠙ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠹ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠸ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest ⠼ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 0 B/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 0% ▕ ▏ 348 KB/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 1% ▕ ▏ 20 MB/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 2% ▕ ▏ 26 MB/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 3% ▕ ▏ 52 MB/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 5% ▕ ▏ 72 MB/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 5% ▕ ▏ 87 MB/1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 8% ▕█ ▏ 121 MB/1.6 GB 60 MB/s 24s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 9% ▕█ ▏ 150 MB/1.6 GB 60 MB/s 23s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 10% ▕█ ▏ 167 MB/1.6 GB 60 MB/s 23s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 12% ▕█ ▏ 197 MB/1.6 GB 60 MB/s 23s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 14% ▕██ ▏ 230 MB/1.6 GB 60 MB/s 22s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 16% ▕██ ▏ 252 MB/1.6 GB 60 MB/s 22s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 18% ▕██ ▏ 292 MB/1.6 GB 60 MB/s 21s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 20% ▕███ ▏ 323 MB/1.6 GB 60 MB/s 20s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 21% ▕███ ▏ 342 MB/1.6 GB 60 MB/s 20s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 24% ▕███ ▏ 388 MB/1.6 GB 60 MB/s 19s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 26% ▕████ ▏ 420 MB/1.6 GB 140 MB/s 8s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 28% ▕████ ▏ 441 MB/1.6 GB 140 MB/s 8s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 30% ▕████ ▏ 485 MB/1.6 GB 140 MB/s 7s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 33% ▕█████ ▏ 526 MB/1.6 GB 140 MB/s 7s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 34% ▕█████ ▏ 544 MB/1.6 GB 140 MB/s 7s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 37% ▕█████ ▏ 589 MB/1.6 GB 140 MB/s 7s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 39% ▕██████ ▏ 623 MB/1.6 GB 140 MB/s 6s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 40% ▕██████ ▏ 643 MB/1.6 GB 140 MB/s 6s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 42% ▕██████ ▏ 680 MB/1.6 GB 140 MB/s 6s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 45% ▕███████ ▏ 727 MB/1.6 GB 140 MB/s 6s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 47% ▕███████ ▏ 745 MB/1.6 GB 140 MB/s 6s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 49% ▕███████ ▏ 785 MB/1.6 GB 191 MB/s 4s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 51% ▕████████ ▏ 821 MB/1.6 GB 191 MB/s 4s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 52% ▕████████ ▏ 836 MB/1.6 GB 191 MB/s 3s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 55% ▕████████ ▏ 876 MB/1.6 GB 191 MB/s 3s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 57% ▕█████████ ▏ 908 MB/1.6 GB 191 MB/s 3s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 58% ▕█████████ ▏ 930 MB/1.6 GB 191 MB/s 3s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 60% ▕█████████ ▏ 965 MB/1.6 GB 191 MB/s 3s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 63% ▕██████████ ▏ 1.0 GB/1.6 GB 191 MB/s 3s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 65% ▕██████████ ▏ 1.0 GB/1.6 GB 191 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 66% ▕██████████ ▏ 1.1 GB/1.6 GB 191 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 68% ▕██████████ ▏ 1.1 GB/1.6 GB 215 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 69% ▕███████████ ▏ 1.1 GB/1.6 GB 215 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 71% ▕███████████ ▏ 1.1 GB/1.6 GB 215 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 73% ▕███████████ ▏ 1.2 GB/1.6 GB 215 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 74% ▕███████████ ▏ 1.2 GB/1.6 GB 215 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 75% ▕███████████ ▏ 1.2 GB/1.6 GB 215 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 75% ▕███████████ ▏ 1.2 GB/1.6 GB 215 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 75% ▕███████████ ▏ 1.2 GB/1.6 GB 215 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 75% ▕███████████ ▏ 1.2 GB/1.6 GB 215 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 75% ▕███████████ ▏ 1.2 GB/1.6 GB 215 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 75% ▕███████████ ▏ 1.2 GB/1.6 GB 200 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 75% ▕███████████ ▏ 1.2 GB/1.6 GB 200 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 75% ▕████████████ ▏ 1.2 GB/1.6 GB 200 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 75% ▕████████████ ▏ 1.2 GB/1.6 GB 200 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 75% ▕████████████ ▏ 1.2 GB/1.6 GB 200 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 76% ▕████████████ ▏ 1.2 GB/1.6 GB 200 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 77% ▕████████████ ▏ 1.2 GB/1.6 GB 200 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 77% ▕████████████ ▏ 1.2 GB/1.6 GB 200 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 77% ▕████████████ ▏ 1.2 GB/1.6 GB 200 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 77% ▕████████████ ▏ 1.2 GB/1.6 GB 200 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 77% ▕████████████ ▏ 1.2 GB/1.6 GB 177 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 77% ▕████████████ ▏ 1.2 GB/1.6 GB 177 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 77% ▕████████████ ▏ 1.2 GB/1.6 GB 177 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 77% ▕████████████ ▏ 1.2 GB/1.6 GB 177 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 78% ▕████████████ ▏ 1.2 GB/1.6 GB 177 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 78% ▕████████████ ▏ 1.2 GB/1.6 GB 177 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 78% ▕████████████ ▏ 1.2 GB/1.6 GB 177 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 78% ▕████████████ ▏ 1.2 GB/1.6 GB 177 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 78% ▕████████████ ▏ 1.2 GB/1.6 GB 177 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 78% ▕████████████ ▏ 1.2 GB/1.6 GB 177 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 78% ▕████████████ ▏ 1.2 GB/1.6 GB 155 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 78% ▕████████████ ▏ 1.2 GB/1.6 GB 155 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 78% ▕████████████ ▏ 1.2 GB/1.6 GB 155 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 78% ▕████████████ ▏ 1.2 GB/1.6 GB 155 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 78% ▕████████████ ▏ 1.2 GB/1.6 GB 155 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 78% ▕████████████ ▏ 1.2 GB/1.6 GB 155 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 78% ▕████████████ ▏ 1.2 GB/1.6 GB 155 MB/s 2s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 82% ▕█████████████ ▏ 1.3 GB/1.6 GB 155 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 83% ▕█████████████ ▏ 1.3 GB/1.6 GB 155 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 85% ▕█████████████ ▏ 1.4 GB/1.6 GB 155 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 85% ▕█████████████ ▏ 1.4 GB/1.6 GB 155 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 86% ▕█████████████ ▏ 1.4 GB/1.6 GB 152 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 88% ▕██████████████ ▏ 1.4 GB/1.6 GB 152 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 88% ▕██████████████ ▏ 1.4 GB/1.6 GB 152 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 90% ▕██████████████ ▏ 1.4 GB/1.6 GB 152 MB/s 1s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 91% ▕██████████████ ▏ 1.5 GB/1.6 GB 152 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 92% ▕██████████████ ▏ 1.5 GB/1.6 GB 152 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 92% ▕██████████████ ▏ 1.5 GB/1.6 GB 152 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 93% ▕██████████████ ▏ 1.5 GB/1.6 GB 152 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 93% ▕██████████████ ▏ 1.5 GB/1.6 GB 152 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 94% ▕███████████████ ▏ 1.5 GB/1.6 GB 152 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 95% ▕███████████████ ▏ 1.5 GB/1.6 GB 168 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 95% ▕███████████████ ▏ 1.5 GB/1.6 GB 168 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 96% ▕███████████████ ▏ 1.5 GB/1.6 GB 168 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 96% ▕███████████████ ▏ 1.5 GB/1.6 GB 168 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 96% ▕███████████████ ▏ 1.5 GB/1.6 GB 168 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 97% ▕███████████████ ▏ 1.5 GB/1.6 GB 168 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 97% ▕███████████████ ▏ 1.6 GB/1.6 GB 168 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 97% ▕███████████████ ▏ 1.6 GB/1.6 GB 168 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 97% ▕███████████████ ▏ 1.6 GB/1.6 GB 168 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 97% ▕███████████████ ▏ 1.6 GB/1.6 GB 168 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 97% ▕███████████████ ▏ 1.6 GB/1.6 GB 159 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 98% ▕███████████████ ▏ 1.6 GB/1.6 GB 159 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 98% ▕███████████████ ▏ 1.6 GB/1.6 GB 159 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 98% ▕███████████████ ▏ 1.6 GB/1.6 GB 159 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 98% ▕███████████████ ▏ 1.6 GB/1.6 GB 159 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 98% ▕███████████████ ▏ 1.6 GB/1.6 GB 159 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 98% ▕███████████████ ▏ 1.6 GB/1.6 GB 159 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 159 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 159 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 159 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 129 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 129 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 129 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 129 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 129 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 129 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 129 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 129 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 129 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 129 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 91 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 91 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 91 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 91 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 99% ▕███████████████ ▏ 1.6 GB/1.6 GB 91 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 91 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 91 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 91 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 91 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 91 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 91 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 57 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 57 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 57 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 57 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 57 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 57 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 57 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 57 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 57 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕███████████████ ▏ 1.6 GB/1.6 GB 57 MB/s 0s\u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 0% ▕ ▏ 0 B/ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 0% ▕ ▏ 0 B/ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 0% ▕ ▏ 0 B/ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 0% ▕ ▏ 0 B/ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 0% ▕ ▏ 0 B/ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 0% ▕ ▏ 0 B/ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 0% ▕ ▏ 0 B/ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 0% ▕ ▏ 0 B/ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 0% ▕ ▏ 0 B/ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 0% ▕ ▏ 0 B/ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 0% ▕ ▏ 0 B/ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 0% ▕ ▏ 0 B/ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 0% ▕ ▏ 0 B/ 417 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 0% ▕ ▏ 0 B/ 417 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 0% ▕ ▏ 0 B/ 417 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 0% ▕ ▏ 0 B/ 417 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 0% ▕ ▏ 0 B/ 417 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 0% ▕ ▏ 0 B/ 417 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠋ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠙ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠹ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠸ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠼ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠴ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠦ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠧ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠇ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠏ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠋ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠙ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠹ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠸ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠼ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠴ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠦ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠧ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠇ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠏ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠋ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠙ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠹ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠸ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠼ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠴ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠦ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠧ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠇ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠏ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠋ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠙ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠹ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠸ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠼ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠴ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠦ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠧ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠇ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠏ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠋ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠙ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠹ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠸ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠼ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠴ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠦ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest ⠧ \u001b[?25h\u001b[?25l\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1G\u001b[A\u001b[2K\u001b[1Gpulling manifest \n",
"pulling 63dd4fe4571a... 100% ▕████████████████▏ 1.6 GB \n",
"pulling 604785e698e9... 100% ▕████████████████▏ 664 B \n",
"pulling 43070e2d4e53... 100% ▕████████████████▏ 11 KB \n",
"pulling a8ea06414c19... 100% ▕████████████████▏ 417 B \n",
"verifying sha256 digest \n",
"writing manifest \n",
"success \u001b[?25h\n",
"Enable Model:granite3-dense\n"
]
}
]
},
{
"cell_type": "markdown",
"source": [
"# 質問に答えてもらいます。"
],
"metadata": {
"id": "bw253pGUDiiB"
}
},
{
"cell_type": "code",
"source": [
"%%time\n",
"response = ollama.chat(model=model_name, messages=[\n",
" {\n",
" 'role': 'user',\n",
" 'content': '日本でお薦めの観光地を5つあげてください。',\n",
" },\n",
"])\n",
"print(response['message']['content'])"
],
"metadata": {
"id": "L8F01aS8MiWh",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "4ffecc05-f57a-4e2d-867a-e5aeb93ed733"
},
"execution_count": 20,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"1. 京都:京都は歴史が長く、文化的な資源が豊富な場所です。庭園、寺院、城を含む多くの遺産があります。\n",
"2. 山口:山口は美しい海岸を持っています。白沙浜や小鳥島などの観光地があり、水族館もおすすめです。\n",
"3. 山梨:山梨はスキー・サーチスなどのウォーキングとスポーツを楽しむことができます。秋、銀色の秋葉樹が美しい景色を見ることができます。\n",
"4. 福岛:福岛は高島や大阪の近くにあるため、両都市をぎゅうで訪れることができます。福岛銀行倉庫も美しい建物です。\n",
"5. 大分:大分は美しい海岸を持っています。宮古島も観光地の一つで、美味しい食べ物や美しい景色が楽しめます。\n",
"CPU times: user 33.6 ms, sys: 4.48 ms, total: 38.1 ms\n",
"Wall time: 5.28 s\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"%%time\n",
"response = ollama.chat(model=model_name, messages=[\n",
" {\n",
" 'role': 'user',\n",
" 'content': 'まどか☆マギカで一番かわいいのは?',\n",
" },\n",
"])\n",
"print(response['message']['content'])"
],
"metadata": {
"id": "htFWenBFOTlT",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "c400f839-86cf-4e58-d170-0e30012d0615"
},
"execution_count": 21,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"その答えは、決して定めることができないですね。\n",
"一番かわいいと感じる人は、さまざまな理由があります。\n",
"例えば、キャラクターの個性や表情、絵 Style などを好みます。\n",
"もちろん、皮肉や愛らしいシーンも大きな要因です。\n",
"私は、一番かわいいと感じるのは、まどか☆マギカのカチャオです。\n",
"彼女の可愛さと、遊び心がとても強い印象でした。\n",
"CPU times: user 12.2 ms, sys: 1.78 ms, total: 14 ms\n",
"Wall time: 2.07 s\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"%%time\n",
"query = \"\"\"日本で二番目に高い山を検討して答えてください。\n",
"\"\"\"\n",
"response = ollama.chat(model=model_name, messages=[\n",
" {\n",
" 'role': 'user',\n",
" 'content': query,\n",
" },\n",
"])\n",
"print(response['message']['content'])"
],
"metadata": {
"id": "K5Bi0gbBcvNs",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "9e0d2326-0241-4690-9095-358614af1788"
},
"execution_count": 22,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"二番目に高い山は、日本の三国山の一つである、美しくも知られている、朝日山(Hida-Sanzan)です。\n",
"朝日山は、長野県東京市の出身で、1394年に建設された第一の山々です。この山は、広く見ることができる美しい景色と、三国山の一つであるため、日本の二番目に高い山と呼ばれています。\n",
"CPU times: user 7.05 ms, sys: 4.21 ms, total: 11.3 ms\n",
"Wall time: 1.61 s\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"%%time\n",
"query = \"\"\"\n",
"以下を簡単にまとめてください。\n",
"\n",
"ウィキペディア(英: Wikipedia)は、世界中のボランティアの共同作業によって執筆及び作成されるフリーの多言語[6]インターネット百科事典[7]。収録されている全ての内容がオープンコンテントで商業広告が存在しないということを特徴とし、主に寄付に依って活動している非営利団体「ウィキメディア財団」が所有・運営している[8][9][10][11]。「ウィキペディア(Wikipedia)」という名前は、ウェブブラウザ上でウェブページを編集することができる「ウィキ(Wiki)」というシステムを使用した「百科事典」(英: Encyclopedia)であることに由来する造語である[12]。設立者の1人であるラリー・サンガーにより命名された[13][14]。\n",
"\"\"\"\n",
"response = ollama.chat(model=model_name, messages=[\n",
" {\n",
" 'role': 'user',\n",
" 'content': query,\n",
" },\n",
"])\n",
"print(response['message']['content'])"
],
"metadata": {
"id": "yuoewzZkdS8f",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "0be99be7-f968-42a9-d993-a6a7b170b514"
},
"execution_count": 23,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"ウィキペディアは、ボランティアによって編集されるオープンコンテントの多言語百科事典で、非営利団体「ウィキメディア財団」が所有・運営している。名前は「ウェブページ編集システム」を意味する「ウィキ」と「百科事典」から来る。\n",
"CPU times: user 12.3 ms, sys: 0 ns, total: 12.3 ms\n",
"Wall time: 1.49 s\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"%%time\n",
"query = \"\"\"\n",
"1+1*2+3/2+2^10を計算してください。計算が終わったら検算をしてください。最後に最終的な計算経過と結果を答えてください。\n",
"\"\"\"\n",
"response = ollama.chat(model=model_name, messages=[\n",
" {\n",
" 'role': 'user',\n",
" 'content': query,\n",
" },\n",
"])\n",
"print(response['message']['content'])"
],
"metadata": {
"id": "HWZrbaPH-VAt",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "cf2e5748-edca-4fe5-f5a7-7fc506481636"
},
"execution_count": 24,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"1+1*2+3/2+2^10 = 35.1\n",
"\n",
"Explanation:\n",
"\n",
"According to the order of operations (PEMDAS/BODMAS), we perform multiplication and division before addition and subtraction. So, let's calculate it step by step:\n",
"\n",
"1. Multiply 1 by 2: 1 * 2 = 2\n",
"2. Divide 3 by 2: 3 / 2 = 1.5\n",
"3. Calculate the exponent: 2^10 = 1024\n",
"4. Now, put it all together: 1 + 2 + 1.5 + 1024 = 1028.5\n",
"\n",
"So, the final answer is 35.1 (after rounding to two decimal places).\n",
"\n",
"To verify the result, you can use a calculator or perform the calculation again manually. The result should be the same.\n",
"CPU times: user 11.8 ms, sys: 1.83 ms, total: 13.6 ms\n",
"Wall time: 2.67 s\n"
]
}
]
},
{
"cell_type": "markdown",
"source": [
"# langchainで使ってみます。"
],
"metadata": {
"id": "3_edPDrVDsBb"
}
},
{
"cell_type": "code",
"source": [
"!pip install langchain"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "DCS8UQycNjZM",
"outputId": "4352472c-5e7f-4f82-98c4-8ec12f529240"
},
"execution_count": 25,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Requirement already satisfied: langchain in /usr/local/lib/python3.10/dist-packages (0.3.4)\n",
"Requirement already satisfied: PyYAML>=5.3 in /usr/local/lib/python3.10/dist-packages (from langchain) (6.0.2)\n",
"Requirement already satisfied: SQLAlchemy<3,>=1.4 in /usr/local/lib/python3.10/dist-packages (from langchain) (2.0.36)\n",
"Requirement already satisfied: aiohttp<4.0.0,>=3.8.3 in /usr/local/lib/python3.10/dist-packages (from langchain) (3.10.10)\n",
"Requirement already satisfied: async-timeout<5.0.0,>=4.0.0 in /usr/local/lib/python3.10/dist-packages (from langchain) (4.0.3)\n",
"Requirement already satisfied: langchain-core<0.4.0,>=0.3.12 in /usr/local/lib/python3.10/dist-packages (from langchain) (0.3.12)\n",
"Requirement already satisfied: langchain-text-splitters<0.4.0,>=0.3.0 in /usr/local/lib/python3.10/dist-packages (from langchain) (0.3.0)\n",
"Requirement already satisfied: langsmith<0.2.0,>=0.1.17 in /usr/local/lib/python3.10/dist-packages (from langchain) (0.1.136)\n",
"Requirement already satisfied: numpy<2,>=1 in /usr/local/lib/python3.10/dist-packages (from langchain) (1.26.4)\n",
"Requirement already satisfied: pydantic<3.0.0,>=2.7.4 in /usr/local/lib/python3.10/dist-packages (from langchain) (2.9.2)\n",
"Requirement already satisfied: requests<3,>=2 in /usr/local/lib/python3.10/dist-packages (from langchain) (2.32.3)\n",
"Requirement already satisfied: tenacity!=8.4.0,<10,>=8.1.0 in /usr/local/lib/python3.10/dist-packages (from langchain) (9.0.0)\n",
"Requirement already satisfied: aiohappyeyeballs>=2.3.0 in /usr/local/lib/python3.10/dist-packages (from aiohttp<4.0.0,>=3.8.3->langchain) (2.4.3)\n",
"Requirement already satisfied: aiosignal>=1.1.2 in /usr/local/lib/python3.10/dist-packages (from aiohttp<4.0.0,>=3.8.3->langchain) (1.3.1)\n",
"Requirement already satisfied: attrs>=17.3.0 in /usr/local/lib/python3.10/dist-packages (from aiohttp<4.0.0,>=3.8.3->langchain) (24.2.0)\n",
"Requirement already satisfied: frozenlist>=1.1.1 in /usr/local/lib/python3.10/dist-packages (from aiohttp<4.0.0,>=3.8.3->langchain) (1.4.1)\n",
"Requirement already satisfied: multidict<7.0,>=4.5 in /usr/local/lib/python3.10/dist-packages (from aiohttp<4.0.0,>=3.8.3->langchain) (6.1.0)\n",
"Requirement already satisfied: yarl<2.0,>=1.12.0 in /usr/local/lib/python3.10/dist-packages (from aiohttp<4.0.0,>=3.8.3->langchain) (1.15.2)\n",
"Requirement already satisfied: jsonpatch<2.0,>=1.33 in /usr/local/lib/python3.10/dist-packages (from langchain-core<0.4.0,>=0.3.12->langchain) (1.33)\n",
"Requirement already satisfied: packaging<25,>=23.2 in /usr/local/lib/python3.10/dist-packages (from langchain-core<0.4.0,>=0.3.12->langchain) (24.1)\n",
"Requirement already satisfied: typing-extensions>=4.7 in /usr/local/lib/python3.10/dist-packages (from langchain-core<0.4.0,>=0.3.12->langchain) (4.12.2)\n",
"Requirement already satisfied: httpx<1,>=0.23.0 in /usr/local/lib/python3.10/dist-packages (from langsmith<0.2.0,>=0.1.17->langchain) (0.27.2)\n",
"Requirement already satisfied: orjson<4.0.0,>=3.9.14 in /usr/local/lib/python3.10/dist-packages (from langsmith<0.2.0,>=0.1.17->langchain) (3.10.9)\n",
"Requirement already satisfied: requests-toolbelt<2.0.0,>=1.0.0 in /usr/local/lib/python3.10/dist-packages (from langsmith<0.2.0,>=0.1.17->langchain) (1.0.0)\n",
"Requirement already satisfied: annotated-types>=0.6.0 in /usr/local/lib/python3.10/dist-packages (from pydantic<3.0.0,>=2.7.4->langchain) (0.7.0)\n",
"Requirement already satisfied: pydantic-core==2.23.4 in /usr/local/lib/python3.10/dist-packages (from pydantic<3.0.0,>=2.7.4->langchain) (2.23.4)\n",
"Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.10/dist-packages (from requests<3,>=2->langchain) (3.4.0)\n",
"Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.10/dist-packages (from requests<3,>=2->langchain) (3.10)\n",
"Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/local/lib/python3.10/dist-packages (from requests<3,>=2->langchain) (2.2.3)\n",
"Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.10/dist-packages (from requests<3,>=2->langchain) (2024.8.30)\n",
"Requirement already satisfied: greenlet!=0.4.17 in /usr/local/lib/python3.10/dist-packages (from SQLAlchemy<3,>=1.4->langchain) (3.1.1)\n",
"Requirement already satisfied: anyio in /usr/local/lib/python3.10/dist-packages (from httpx<1,>=0.23.0->langsmith<0.2.0,>=0.1.17->langchain) (3.7.1)\n",
"Requirement already satisfied: httpcore==1.* in /usr/local/lib/python3.10/dist-packages (from httpx<1,>=0.23.0->langsmith<0.2.0,>=0.1.17->langchain) (1.0.6)\n",
"Requirement already satisfied: sniffio in /usr/local/lib/python3.10/dist-packages (from httpx<1,>=0.23.0->langsmith<0.2.0,>=0.1.17->langchain) (1.3.1)\n",
"Requirement already satisfied: h11<0.15,>=0.13 in /usr/local/lib/python3.10/dist-packages (from httpcore==1.*->httpx<1,>=0.23.0->langsmith<0.2.0,>=0.1.17->langchain) (0.14.0)\n",
"Requirement already satisfied: jsonpointer>=1.9 in /usr/local/lib/python3.10/dist-packages (from jsonpatch<2.0,>=1.33->langchain-core<0.4.0,>=0.3.12->langchain) (3.0.0)\n",
"Requirement already satisfied: propcache>=0.2.0 in /usr/local/lib/python3.10/dist-packages (from yarl<2.0,>=1.12.0->aiohttp<4.0.0,>=3.8.3->langchain) (0.2.0)\n",
"Requirement already satisfied: exceptiongroup in /usr/local/lib/python3.10/dist-packages (from anyio->httpx<1,>=0.23.0->langsmith<0.2.0,>=0.1.17->langchain) (1.2.2)\n"
]
}
]
},
{
"cell_type": "markdown",
"source": [
"## 動作確認"
],
"metadata": {
"id": "zRPu7fqHKKyg"
}
},
{
"cell_type": "code",
"source": [
"from langchain_community.llms import Ollama\n",
"\n",
"llm = Ollama(model=\"granite3-dense\",temperature=0,)\n",
"\n",
"# llm = Ollama(\n",
"# model=model_path,\n",
"# temperature=0,\n",
"# )\n",
"\n",
"print(llm.invoke(\"面白いジョークを言ってください。\"))"
],
"metadata": {
"id": "irIGA8DuQb7c",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "765216e0-de58-4430-88cc-9d81b7e8e8b6"
},
"execution_count": 26,
"outputs": [
{
"output_type": "stream",
"name": "stderr",
"text": [
"<ipython-input-26-98e3652b2243>:3: LangChainDeprecationWarning: The class `Ollama` was deprecated in LangChain 0.3.1 and will be removed in 1.0.0. An updated version of the class exists in the :class:`~langchain-ollama package and should be used instead. To use it run `pip install -U :class:`~langchain-ollama` and import as `from :class:`~langchain_ollama import OllamaLLM``.\n",
" llm = Ollama(model=\"granite3-dense\",temperature=0,)\n"
]
},
{
"output_type": "stream",
"name": "stdout",
"text": [
"私は人工知能で、人間の感情や幻想に触れることができません。しかし、私は笑顔を見せる動物の画像を生成することができます:\n",
"\n",
"```\n",
"🐶 笑顔をつけてください!\n",
"🐱 猫の笑顔を見せますか?\n",
"🦁 象の笑顔はとても面白いですね!\n",
"```\n",
"\n",
"これらの画像は、人間の笑顔や表情に近いように見えますが、実際には動物の表情ではありません。私は人工知能であり、人間の感情や幻想に触れることができません。\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"from langchain.chains.summarize import load_summarize_chain\n",
"from langchain_community.document_loaders import WebBaseLoader\n",
"\n",
"loader = WebBaseLoader(\"https://www.aozora.gr.jp/cards/000879/files/127_15260.html\")\n",
"docs = loader.load()\n",
"chain = load_summarize_chain(llm, chain_type=\"stuff\")\n",
"result = chain.invoke(docs)\n",
"print(result[\"output_text\"])"
],
"metadata": {
"id": "JYAl9aIfQVi4",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "8800f74e-950c-4b8b-a20c-9db0b5d59436"
},
"execution_count": 27,
"outputs": [
{
"output_type": "stream",
"name": "stderr",
"text": [
"WARNING:langchain_community.utils.user_agent:USER_AGENT environment variable not set, consider setting it to identify your requests.\n"
]
},
{
"output_type": "stream",
"name": "stdout",
"text": [
"The text provided appears to be a short story or excerpt from a novel, written in Japanese. It describes a man who saves a woman from starvation and theft by killing the old woman who was causing her distress. The man then carries the woman back to his home, where he tends to her wounds and gives her food and clothing. The story is set in the early 20th century and is written in a style that reflects the time period.\n"
]
}
]
},
{
"cell_type": "markdown",
"source": [
"## 要約させてみます。"
],
"metadata": {
"id": "PrCoHVTDKTD8"
}
},
{
"cell_type": "code",
"source": [
"# WebLoader\n",
"loader = WebBaseLoader(\"https://ja.wikipedia.org/wiki/%E5%8C%97%E5%B2%B3\")"
],
"metadata": {
"id": "LpP1Z36FQX3W"
},
"execution_count": 28,
"outputs": []
},
{
"cell_type": "markdown",
"source": [],
"metadata": {
"id": "wRWbCob3IA91"
}
},
{
"cell_type": "code",
"source": [
"%%time\n",
"docs = loader.load()\n",
"chain = load_summarize_chain(llm, chain_type=\"stuff\")\n",
"result = chain.invoke(docs)\n",
"print(result[\"output_text\"])"
],
"metadata": {
"id": "AU2CsdpdQlHu",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "28467f54-d099-4d23-e3e6-517b7aeb6fa0"
},
"execution_count": 29,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"The text provided appears to be a list of mountains in the Northern Japan Alps, specifically in the region of Nagano Prefecture. The list includes various mountain names and their corresponding Japanese and English translations. Some notable mountains on this list include Mount Fuji, Mount Yoshidzuki, and Mount Kita. The text also mentions that the information is sourced from the Wikipedia article on \"North Island\" (北岳) and was last updated on July 16, 2024.\n",
"CPU times: user 828 ms, sys: 6.46 ms, total: 834 ms\n",
"Wall time: 3.27 s\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"%%time\n",
"docs = loader.load()\n",
"chain = load_summarize_chain(llm, chain_type=\"refine\")\n",
"result = chain.invoke(docs)\n",
"print(result[\"output_text\"])"
],
"metadata": {
"id": "5y4lrTyLQnW8",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "c5d50078-bf76-4468-fb8b-5695bfb42d1f"
},
"execution_count": 30,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"The text provided appears to be a list of mountains in the Northern Japan Alps, specifically in the region of Nagano Prefecture. The list includes various mountain names and their corresponding Japanese and English translations. Some notable mountains on this list include Mount Fuji, Mount Yoshidzuki, and Mount Kita. The text also mentions that the information is sourced from the Japanese Wikipedia page for \"North Island's Hundred Peaks\" and was last updated on July 16, 2024.\n",
"CPU times: user 792 ms, sys: 5.44 ms, total: 798 ms\n",
"Wall time: 2.69 s\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"%%time\n",
"from langchain.chains.combine_documents.stuff import StuffDocumentsChain\n",
"from langchain_core.prompts import PromptTemplate\n",
"\n",
"prompt_template = \"\"\"以下のテキストの簡潔な要約をします。:\n",
"\"{text}\"\n",
"要約:\"\"\"\n",
"prompt = PromptTemplate.from_template(prompt_template)\n",
"\n",
"# LLMChain\n",
"# llm_chain = LLMChain(llm=llm, prompt=prompt)\n",
"\n",
"# StuffDocumentsChain\n",
"stuff_chain = prompt | llm\n",
"\n",
"# loader\n",
"docs = loader.load()\n",
"# generate\n",
"print(stuff_chain.invoke({\"text\": docs}))"
],
"metadata": {
"id": "pJC9AA-PVTUq",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "faa76c71-f4fe-49b0-b3a0-b42489297811"
},
"execution_count": 31,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"このテキストは、山梨県の北岳山脈にある山名をリストしています。\n",
"CPU times: user 711 ms, sys: 5.14 ms, total: 716 ms\n",
"Wall time: 1.83 s\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"from langchain_core.prompts import ChatPromptTemplate\n",
"from langchain_core.pydantic_v1 import BaseModel, Field\n",
"\n",
"tagging_prompt = ChatPromptTemplate.from_template(\n",
" \"\"\"\n",
"Extract the desired information from the following passage.\n",
"\n",
"Only extract the properties mentioned in the 'Classification' function.\n",
"\n",
"Passage:\n",
"{input}\n",
"\"\"\"\n",
")\n",
"\n",
"\n",
"class Classification(BaseModel):\n",
" sentiment: str = Field(description=\"The sentiment of the text\")\n",
" aggressiveness: int = Field(\n",
" description=\"How aggressive the text is on a scale from 1 to 10\"\n",
" )\n",
" language: str = Field(description=\"The language the text is written in\")\n",
"\n",
"\n",
"tagging_chain = tagging_prompt | llm"
],
"metadata": {
"id": "aZGKbDlESB0t",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "1b4d62f2-3b92-4586-edb0-8af3dbb0fb55"
},
"execution_count": 32,
"outputs": [
{
"output_type": "stream",
"name": "stderr",
"text": [
"/usr/local/lib/python3.10/dist-packages/IPython/core/interactiveshell.py:3553: LangChainDeprecationWarning: As of langchain-core 0.3.0, LangChain uses pydantic v2 internally. The langchain_core.pydantic_v1 module was a compatibility shim for pydantic v1, and should no longer be used. Please update the code to import from Pydantic directly.\n",
"\n",
"For example, replace imports like: `from langchain_core.pydantic_v1 import BaseModel`\n",
"with: `from pydantic import BaseModel`\n",
"or the v1 compatibility namespace if you are working in a code base that has not been fully upgraded to pydantic 2 yet. \tfrom pydantic.v1 import BaseModel\n",
"\n",
" exec(code_obj, self.user_global_ns, self.user_ns)\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"inp = \"Estoy increiblemente contento de haberte conocido! Creo que seremos muy buenos amigos!\"\n",
"tagging_chain.invoke({\"input\": inp})"
],
"metadata": {
"id": "h2oigNAbSNgf",
"colab": {
"base_uri": "https://localhost:8080/",
"height": 53
},
"outputId": "dda8dce9-7c45-4cea-f5de-a908ac818817"
},
"execution_count": 33,
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/plain": [
"'1. Emotion: \"increiblemente contento\" (extremely happy)\\n2. Future relationship: \"seremos muy buenos amigos\" (we will be very good friends)'"
],
"application/vnd.google.colaboratory.intrinsic+json": {
"type": "string"
}
},
"metadata": {},
"execution_count": 33
}
]
},
{
"cell_type": "code",
"source": [
"inp = \"Estoy muy enojado con vos! Te voy a dar tu merecido!\"\n",
"res = tagging_chain.invoke({\"input\": inp})\n",
"print(res)"
],
"metadata": {
"id": "UbwklWDzSPW9",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "2304d551-b073-4806-ef1a-ce9f3a57db6b"
},
"execution_count": 34,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"The passage does not contain any properties mentioned in the 'Classification' function. It is a statement of anger and a threat to leave. Please provide a different passage with properties mentioned in the 'Classification' function for me to extract.\n"
]
}
]
},
{
"cell_type": "markdown",
"source": [
"# チャット形式遊ぶ"
],
"metadata": {
"id": "klIe7eoRDxNf"
}
},
{
"cell_type": "markdown",
"source": [
"## mesop"
],
"metadata": {
"id": "h8aJAR8xHM1h"
}
},
{
"cell_type": "code",
"source": [],
"metadata": {
"id": "8r-jfnqE_fZI"
},
"execution_count": 34,
"outputs": []
},
{
"cell_type": "code",
"source": [
"import mesop as me\n",
"import mesop.labs as mel\n",
"\n",
"me.colab_run()"
],
"metadata": {
"id": "2gI8-eKo_VP7",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "e0417636-c0f5-43b0-eb09-997544f26df7"
},
"execution_count": 35,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"\n",
"\u001b[32mRunning server on: http://localhost:32123\u001b[0m\n",
" * Serving Flask app 'mesop.server.server'\n",
" * Debug mode: off\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"@me.page(\n",
" path=\"/chat\",\n",
" title=\"Chat demo\",\n",
")\n",
"def page():\n",
" mel.chat(transform, title=\"Demo Chat\", bot_user=model_path)\n",
"\n",
"def transform(input: str, history: list[mel.ChatMessage]) -> str:\n",
"\n",
" messages = []\n",
" for his in history:\n",
" messages.extend([{'role': his.role, 'content': his.content}])\n",
"\n",
" last_message = [\n",
" {\n",
" 'role': 'user',\n",
" 'content': input,\n",
" },\n",
" ]\n",
"\n",
" messages.extend(last_message)\n",
"\n",
" res = ollama.chat(model=model_name,\n",
" messages=messages)\n",
"\n",
" res = res['message']['content']\n",
" return res"
],
"metadata": {
"id": "h9BjdHfu_Xis",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "921da5b1-718a-42ce-a328-867c6062ec55"
},
"execution_count": 36,
"outputs": [
{
"output_type": "stream",
"name": "stderr",
"text": [
"INFO:werkzeug:\u001b[31m\u001b[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.\u001b[0m\n",
" * Running on all addresses (::)\n",
" * Running on http://[::1]:32123\n",
" * Running on http://[::1]:32123\n",
"INFO:werkzeug:\u001b[33mPress CTRL+C to quit\u001b[0m\n"
]
}
]
},
{
"cell_type": "markdown",
"source": [
"## チャット"
],
"metadata": {
"id": "SNdeF8V2HP3Y"
}
},
{
"cell_type": "code",
"source": [
"me.colab_show(path=\"/chat\", height=600)"
],
"metadata": {
"id": "1pYXJQkB_blP",
"colab": {
"base_uri": "https://localhost:8080/",
"height": 621
},
"outputId": "503c6961-f08c-4ee4-f4ae-ac560d44145d"
},
"execution_count": 37,
"outputs": [
{
"output_type": "display_data",
"data": {
"text/plain": [
"<IPython.core.display.Javascript object>"
],
"application/javascript": [
"(async (port, path, width, height, cache, element) => {\n",
" if (!google.colab.kernel.accessAllowed && !cache) {\n",
" return;\n",
" }\n",
" element.appendChild(document.createTextNode(''));\n",
" const url = await google.colab.kernel.proxyPort(port, {cache});\n",
" const iframe = document.createElement('iframe');\n",
" iframe.src = new URL(path, url).toString();\n",
" iframe.height = height;\n",
" iframe.width = width;\n",
" iframe.style.border = 0;\n",
" iframe.allow = [\n",
" 'accelerometer',\n",
" 'autoplay',\n",
" 'camera',\n",
" 'clipboard-read',\n",
" 'clipboard-write',\n",
" 'gyroscope',\n",
" 'magnetometer',\n",
" 'microphone',\n",
" 'serial',\n",
" 'usb',\n",
" 'xr-spatial-tracking',\n",
" ].join('; ');\n",
" element.appendChild(iframe);\n",
" })(32123, \"/chat\", \"100%\", 600, false, window.element)"
]
},
"metadata": {}
}
]
},
{
"cell_type": "code",
"source": [
"!nvidia-smi"
],
"metadata": {
"id": "7JCAX3VkW06h",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "2cb40e9d-fc14-40be-9cd1-72709ed681d2"
},
"execution_count": 38,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Mon Oct 21 12:53:16 2024 \n",
"+---------------------------------------------------------------------------------------+\n",
"| NVIDIA-SMI 535.104.05 Driver Version: 535.104.05 CUDA Version: 12.2 |\n",
"|-----------------------------------------+----------------------+----------------------+\n",
"| GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC |\n",
"| Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. |\n",
"| | | MIG M. |\n",
"|=========================================+======================+======================|\n",
"| 0 Tesla T4 Off | 00000000:00:04.0 Off | 0 |\n",
"| N/A 60C P0 39W / 70W | 2821MiB / 15360MiB | 0% Default |\n",
"| | | N/A |\n",
"+-----------------------------------------+----------------------+----------------------+\n",
" \n",
"+---------------------------------------------------------------------------------------+\n",
"| Processes: |\n",
"| GPU GI CI PID Type Process name GPU Memory |\n",
"| ID ID Usage |\n",
"|=======================================================================================|\n",
"+---------------------------------------------------------------------------------------+\n"
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment